:root {
  --bg: #f6f3ff;
  --bg-2: #fffaf6;
  --surface: rgba(255,255,255,.76);
  --surface-strong: #ffffff;
  --text: #22193f;
  --muted: #6d6685;
  --line: rgba(34,25,63,.09);
  --primary: #6b53ff;
  --primary-soft: rgba(107,83,255,.12);
  --warm: #ff8a54;
  --warm-soft: rgba(255,138,84,.14);
  --gold: #ffce6b;
  --teal: #79e2d0;
  --shadow: 0 20px 60px rgba(49, 38, 94, .12);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 18%, rgba(121, 226, 208, .18), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(255, 206, 107, .18), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, #fbf8ff 46%, var(--bg-2) 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .28;
  background-image: linear-gradient(rgba(34,25,63,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(34,25,63,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 88%);
}
.ambient {
  position: fixed; border-radius: 999px; filter: blur(60px); pointer-events: none; opacity: .5;
}
.ambient-one {
  width: 320px; height: 320px; background: rgba(255, 138, 84, .18); top: 8%; right: -80px; animation: drift 12s ease-in-out infinite;
}
.ambient-two {
  width: 300px; height: 300px; background: rgba(107, 83, 255, .18); left: -80px; bottom: 10%; animation: drift 15s ease-in-out infinite reverse;
}

.wrapper {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 14px;
  z-index: 40;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 10px 34px rgba(49, 38, 94, .08);
  backdrop-filter: blur(16px);
  border-radius: 999px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 18px; overflow: hidden; flex: none;
  background: linear-gradient(135deg, #22193f 0%, #412d7e 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.brand-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.brand-copy small { color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav a {
  padding: 12px 18px; border-radius: 999px; color: var(--muted); font-weight: 700;
}
.site-nav a:hover { background: rgba(34,25,63,.05); color: var(--text); }
.site-nav .nav-button {
  background: linear-gradient(135deg, var(--warm), var(--gold)); color: #2c1d00;
}
.menu-toggle {
  display: none;
  font: inherit;
  border: 0;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  padding: 74px 0 42px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7c7396;
}
.hero h1,
.section-heading h2,
.timeline-head h2,
.contact-intro h2,
.policy-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: .96;
}
.hero h1 { font-size: clamp(3rem, 6vw, 5.6rem); max-width: 10.8ch; }
.lead {
  margin: 22px 0 0;
  max-width: 60ch;
  color: #574f71;
  line-height: 1.85;
  font-size: 1.08rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(49,38,94,.12); }
.button-primary { background: linear-gradient(135deg, var(--primary), #9370ff); color: #fff; }
.button-secondary { background: rgba(34,25,63,.06); color: var(--text); }

.hero-ribbon {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-ribbon span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  color: #5f5779;
  font-weight: 700;
}

.hero-visual { position: relative; min-height: 760px; }
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.86);
  padding: 14px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.hero-card img,
.device-shell img { border-radius: 24px; }
.hero-main { width: 340px; left: 0; top: 80px; transform: rotate(-5deg); }
.hero-side { width: 356px; right: 0; top: 0; transform: rotate(8deg); }
.floating-panel {
  position: absolute;
  max-width: 230px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.floating-panel strong { display: block; margin-bottom: 6px; }
.floating-panel span { color: var(--muted); line-height: 1.55; font-size: .95rem; }
.panel-a { left: 10px; bottom: 160px; }
.panel-b { right: 10px; bottom: 70px; }

.logo-strip {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}
.strip-track {
  display: flex; gap: 28px; padding: 18px 0; white-space: nowrap; animation: marquee 24s linear infinite;
  font-weight: 800; color: #675e82; text-transform: uppercase; letter-spacing: .08em;
}
.strip-track span::before { content: "✦"; color: var(--warm); margin-right: 28px; }

.section-grid,
.company-section,
.services-section,
.metrics-section,
.timeline-section,
.contact-section { padding: 64px 0 22px; }
.section-heading { margin-bottom: 26px; }
.section-heading h2,
.timeline-head h2,
.contact-intro h2,
.policy-hero h1 { font-size: clamp(2.2rem, 3.8vw, 4rem); }
.section-heading p,
.contact-intro p,
.timeline-item p,
.process-card p,
.feature-card p,
.service-card p,
.contact-card p,
.policy-hero p,
.policy-section p,
.policy-section li { color: var(--muted); line-height: 1.78; font-size: 1.03rem; }
.section-heading.narrow,
.contact-intro { max-width: 760px; }

.feature-layout {
  display: grid; grid-template-columns: 1.05fr .95fr .95fr; gap: 18px; align-items: stretch;
}
.feature-large,
.feature-card,
.feature-wide,
.process-card,
.service-card,
.metric-card,
.contact-card,
.policy-card,
.timeline-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}
.feature-large { grid-row: span 2; padding: 18px; }
.device-shell {
  height: 100%;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
  box-shadow: inset 0 0 0 1px rgba(34,25,63,.06);
}
.device-shell.compact { max-width: 300px; }
.feature-card { padding: 28px; }
.feature-card h3,
.feature-wide h3,
.process-card h3,
.service-card h3,
.contact-card h3,
.timeline-item h3,
.metric-card span { margin: 0 0 12px; }
.feature-index {
  display: inline-flex; margin-bottom: 14px; font-weight: 800; color: var(--primary);
}
.tone-card { background: linear-gradient(135deg, rgba(255,138,84,.08), rgba(255,255,255,.82)); }
.feature-wide {
  grid-column: span 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: center; padding: 26px;
}
.feature-wide ul { margin: 16px 0 0 18px; color: var(--muted); line-height: 1.8; }

.promo-section { padding: 14px 0 8px; }
.promo-card {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid rgba(255,255,255,.82); box-shadow: var(--shadow); border-radius: var(--radius-lg);
  padding: 26px;
}
.promo-image img { width: 100%; border-radius: 24px; box-shadow: 0 16px 40px rgba(49,38,94,.12); }

.process-grid,
.services-grid,
.metrics-grid,
.contact-grid {
  display: grid; gap: 18px;
}
.process-grid { grid-template-columns: repeat(3, 1fr); }
.process-card,
.service-card,
.contact-card { padding: 28px; }
.process-card span {
  width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center;
  background: var(--primary-soft); color: var(--primary); font-weight: 800; margin-bottom: 16px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.metrics-grid { grid-template-columns: repeat(3, 1fr); }
.metric-card {
  padding: 28px; text-align: center;
}
.metric-card strong {
  display: block; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--warm);
}
.metric-card span { display: block; margin-top: 10px; color: var(--muted); line-height: 1.65; }

.timeline-head { margin-bottom: 18px; }
.timeline-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.timeline-item { padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.dot {
  width: 14px; height: 14px; border-radius: 50%; margin-top: 10px; flex: none;
  background: linear-gradient(135deg, var(--warm), var(--gold)); box-shadow: 0 0 0 6px rgba(255,138,84,.12);
}

.contact-grid { grid-template-columns: repeat(4, 1fr); }
.contact-card a { color: var(--primary); font-weight: 700; }
.accent-contact { background: linear-gradient(135deg, rgba(121,226,208,.16), rgba(255,255,255,.84)); }

.site-footer {
  padding: 40px 0 28px; margin-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 18px;
}
.site-footer strong { font-family: "Space Grotesk", sans-serif; }
.site-footer p, .footer-meta span { color: var(--muted); }
.footer-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-meta a { font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(.985);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Privacy page */
.policy-shell { width: min(calc(100% - 32px), 980px); margin: 24px auto 70px; }
.policy-topbar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow); border-radius: 999px; padding: 14px 18px; margin-bottom: 20px; backdrop-filter: blur(14px);
}
.policy-topbar a { color: var(--primary); font-weight: 800; }
.policy-hero,
.policy-card {
  background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.82); box-shadow: var(--shadow);
}
.policy-hero { padding: 34px; border-radius: 34px; margin-bottom: 18px; }
.policy-card { padding: 34px; border-radius: 30px; }
.policy-section + .policy-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.policy-section h2 { margin: 0 0 10px; font-size: 1.18rem; }
.policy-section ul { margin: 12px 0 0 18px; }
.policy-note {
  margin-top: 24px; padding: 16px 18px; border-radius: 18px; background: var(--primary-soft); color: var(--text); font-weight: 700;
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; }
  .promo-card { grid-template-columns: 1fr; }
  .feature-layout { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-row: auto; }
  .feature-wide { grid-column: span 2; }
  .process-grid,
  .services-grid,
  .metrics-grid,
  .timeline-list,
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .site-header { border-radius: 30px; align-items: flex-start; flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-top: 8px; }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { padding-top: 42px; }
  .hero-visual { min-height: 680px; }
  .hero-main { width: 300px; left: 0; }
  .hero-side { width: 310px; right: 8px; }
  .panel-a { bottom: 170px; }
  .process-grid,
  .services-grid,
  .metrics-grid,
  .timeline-list,
  .contact-grid,
  .feature-layout { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .policy-topbar { border-radius: 24px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .wrapper, .site-header, .policy-shell { width: min(calc(100% - 20px), var(--max)); }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { font-size: .75rem; }
  .hero { gap: 28px; }
  .hero-visual { min-height: 540px; }
  .hero-main { width: 230px; top: 90px; }
  .hero-side { width: 244px; top: 16px; }
  .floating-panel { max-width: 190px; padding: 14px 16px; }
  .floating-panel span { font-size: .88rem; }
  .hero-actions { flex-direction: column; }
  .policy-hero, .policy-card { padding: 24px; border-radius: 24px; }
}
