/* Versioned asset: prevents stale Cloudflare cache mixes. */
:root {
  color-scheme: dark;
  --ink: #f7f8fc;
  --muted: #a9b3c9;
  --quiet: #78849d;
  --background: #080d1b;
  --surface: #11182a;
  --surface-strong: #182137;
  --line: rgba(201, 214, 242, .13);
  --lavender: #cbb1ff;
  --lavender-deep: #8e70d4;
  --recovery: #a8d97d;
  --energy: #9dd4ff;
  --gold: #e7bd78;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% -6%, rgba(142, 112, 212, .22), transparent 34rem),
    radial-gradient(circle at -10% 32%, rgba(157, 212, 255, .10), transparent 30rem),
    var(--background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--background);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(8, 13, 27, .78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.nav {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 650; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.button { color: #171022; }

.nav-toggle, .mobile-nav { display: none; }
.nav-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(24, 33, 55, .9);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.nav-toggle .close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .menu-icon { display: none; }
.nav-toggle[aria-expanded="true"] .close-icon { display: block; }
.mobile-nav {
  position: absolute;
  z-index: 40;
  top: calc(100% - 2px);
  right: 0;
  width: min(340px, 100%);
  padding: 12px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(17, 24, 42, .98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .46);
}
.mobile-nav a:not(.button) { min-height: 48px; padding: 12px 14px; display: flex; align-items: center; border-radius: 12px; color: var(--muted); text-decoration: none; font-weight: 650; }
.mobile-nav a:not(.button):hover, .mobile-nav a:not(.button):focus-visible { background: rgba(203, 177, 255, .09); color: var(--ink); }
.mobile-nav .button { width: 100%; margin-top: 6px; }

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(203, 177, 255, .28);
  border-radius: 999px;
  background: var(--lavender);
  color: #171022;
  text-decoration: none;
  font-weight: 760;
  box-shadow: 0 12px 34px rgba(142, 112, 212, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(142, 112, 212, .34); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.button.secondary:hover { border-color: rgba(203, 177, 255, .42); }

:focus-visible { outline: 3px solid var(--energy); outline-offset: 4px; }

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

.hero {
  min-height: 780px;
  padding: 92px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}
.hero-copy { min-width: 0; }
.hero h1, .hero .lede { max-width: 100%; }

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lavender);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 span {
  background: linear-gradient(100deg, var(--lavender), var(--energy) 48%, var(--recovery));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { max-width: 650px; margin-bottom: 32px; color: var(--muted); font-size: clamp(20px, 2.2vw, 25px); line-height: 1.45; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: 14px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--recovery); box-shadow: 0 0 0 5px rgba(168, 217, 125, .1); }

.device-stage { position: relative; display: grid; place-items: center; }
.device-stage::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(142, 112, 212, .28);
  filter: blur(72px);
}

.phone {
  position: relative;
  width: min(100%, 390px);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 54px;
  background: linear-gradient(145deg, #4a5266, #151b28 32%, #050710 80%);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone img { width: 100%; border-radius: 45px; background: #0a1020; }
.phone::after { content: ""; position: absolute; inset: 3px; border-radius: 51px; border: 1px solid rgba(255,255,255,.10); pointer-events: none; }

.section { padding: 112px 0; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 60px); line-height: 1.06; letter-spacing: -.045em; }
.section-heading p { color: var(--muted); font-size: 20px; }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24, 33, 55, .96), rgba(14, 21, 38, .96));
}
.card h3 { margin-bottom: 10px; font-size: 25px; letter-spacing: -.025em; }
.card p { margin-bottom: 0; color: var(--muted); }
.card.large { grid-column: span 7; min-height: 360px; }
.card.medium { grid-column: span 5; min-height: 360px; }
.card.third { grid-column: span 4; min-height: 280px; }
.metric { margin: 28px 0 18px; display: flex; align-items: baseline; gap: 9px; font-size: 76px; font-weight: 760; line-height: 1; letter-spacing: -.05em; color: var(--recovery); }
.metric small { color: var(--muted); font-size: 17px; font-weight: 600; letter-spacing: 0; }
.meter { height: 12px; overflow: hidden; border-radius: 999px; background: rgba(168, 217, 125, .13); }
.meter span { display: block; width: 81%; height: 100%; border-radius: inherit; background: var(--recovery); }
.privacy-mark { width: 64px; height: 64px; margin-bottom: 48px; display: grid; place-items: center; border-radius: 20px; background: rgba(203, 177, 255, .12); color: var(--lavender); font-size: 31px; }
.mini-chart { height: 132px; margin-top: 42px; display: flex; align-items: end; gap: 8px; }
.mini-chart i { flex: 1; height: var(--h); border-radius: 7px 7px 3px 3px; background: linear-gradient(var(--energy), rgba(157, 212, 255, .16)); opacity: .9; }

.showcase { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr); align-items: center; gap: clamp(46px, 8vw, 120px); }
.showcase + .showcase { margin-top: 130px; }
.showcase.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr); }
.showcase-copy h2 { font-size: clamp(38px, 5vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.showcase-copy > p { color: var(--muted); font-size: 20px; }
.feature-list { margin: 30px 0 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.feature-list li { position: relative; padding-left: 30px; color: var(--muted); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--recovery); font-weight: 800; }
.screenshot-card { padding: 18px; border: 1px solid var(--line); border-radius: 38px; background: rgba(17, 24, 42, .72); box-shadow: var(--shadow); }
.screenshot-card img { border-radius: 25px; }
.screen-crop { max-height: 720px; overflow: hidden; }

.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24, 33, 55, .96), rgba(14, 21, 38, .96));
}
.journey-visual { height: 440px; padding: 18px 18px 0; overflow: hidden; background: rgba(203, 177, 255, .035); }
.journey-visual img { width: 100%; border-radius: 26px 26px 0 0; }
.journey-copy { padding: 26px; }
.journey-copy h3 { margin-bottom: 8px; font-size: 24px; letter-spacing: -.025em; }
.journey-copy p { margin-bottom: 0; color: var(--muted); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { padding: 30px; border-top: 1px solid var(--line); }
.principle strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: 21px; }
.principle p { color: var(--muted); }

.privacy-cta {
  padding: clamp(32px, 6vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(203, 177, 255, .24);
  border-radius: 36px;
  background: linear-gradient(120deg, rgba(142, 112, 212, .18), rgba(157, 212, 255, .08));
}
.privacy-cta h2 { margin-bottom: 10px; font-size: clamp(32px, 4vw, 50px); letter-spacing: -.04em; }
.privacy-cta p { max-width: 690px; margin-bottom: 0; color: var(--muted); }

.faq { max-width: 820px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 24px 4px; cursor: pointer; font-size: 20px; font-weight: 700; }
details p { padding: 0 40px 24px 4px; color: var(--muted); }

.site-footer { padding: 54px 0 42px; border-top: 1px solid var(--line); color: var(--quiet); font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.footer-grid a { color: var(--muted); text-decoration: none; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }

.legal-main { padding: 82px 0 110px; }
.legal-hero { max-width: 820px; margin-bottom: 54px; }
.legal-hero h1 { margin-bottom: 22px; font-size: clamp(46px, 7vw, 78px); line-height: 1; letter-spacing: -.052em; }
.legal-hero p { max-width: 760px; color: var(--muted); font-size: 20px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--quiet); font-size: 14px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); justify-content: space-between; gap: 64px; }
.legal-toc { position: sticky; top: 100px; align-self: start; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(17, 24, 42, .92); }
.legal-toc strong { display: block; margin-bottom: 12px; }
.legal-toc ol { margin: 0; padding-left: 22px; }
.legal-toc li + li { margin-top: 8px; }
.legal-toc a { color: var(--muted); font-size: 14px; text-decoration: none; }
.legal-toc a:hover { color: var(--ink); }
.legal-article { min-width: 0; }
.legal-section { margin-bottom: 18px; padding: clamp(24px, 4vw, 38px); scroll-margin-top: 100px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(24, 33, 55, .96), rgba(14, 21, 38, .96)); }
.legal-section h2 { margin-bottom: 16px; font-size: clamp(26px, 3vw, 34px); line-height: 1.18; letter-spacing: -.025em; }
.legal-section h3 { margin: 26px 0 10px; font-size: 21px; }
.legal-section p:last-child, .legal-section ul:last-child { margin-bottom: 0; }
.legal-section p, .legal-section li { color: var(--muted); }
.legal-section li + li { margin-top: 8px; }
.legal-callout { margin: 22px 0; padding: 18px 20px; border-left: 4px solid var(--lavender); border-radius: 12px; background: rgba(203, 177, 255, .09); }
.legal-callout p { margin: 0; color: var(--ink); }
.legal-missing { border-color: rgba(231, 189, 120, .42); background: rgba(231, 189, 120, .08); }
.legal-missing strong { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .mobile-nav:not([hidden]) { display: grid; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding-top: 72px; text-align: center; }
  .hero-copy { width: 100%; display: grid; justify-items: center; }
  .hero h1, .hero .lede { width: 100%; }
  .trust-row { justify-content: center; }
  .device-stage { margin-top: 20px; }
  .phone { width: min(82vw, 390px); transform: none; }
  .card.large, .card.medium, .card.third { grid-column: span 6; }
  .showcase, .showcase.reverse { grid-template-columns: 1fr; }
  .showcase.reverse .showcase-copy { order: -1; }
  .screenshot-card { width: min(100%, 520px); margin: auto; }
  .principles { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { display: grid; grid-template-columns: minmax(220px, .8fr) 1fr; }
  .journey-visual { height: 390px; }
  .journey-copy { align-self: center; }
  .privacy-cta { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; }
  .legal-toc ol { columns: 2; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell, .nav { width: min(calc(100% - 28px), var(--max)); }
  .nav { height: 68px; }
  .nav .button { min-height: 42px; padding: 9px 14px; font-size: 14px; }
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .lede { font-size: 19px; }
  .actions { width: 100%; }
  .actions .button { width: 100%; }
  .section { padding: 78px 0; }
  .card.large, .card.medium, .card.third { grid-column: 1 / -1; min-height: auto; }
  .metric { font-size: 64px; }
  .showcase + .showcase { margin-top: 92px; }
  .screen-crop { max-height: 610px; }
  .journey-card { display: block; }
  .journey-visual { height: 390px; }
  .privacy-cta { border-radius: 28px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .legal-main { padding-top: 56px; }
  .legal-toc ol { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
