/* =========================================================================
   Flowers — marketing site
   Design tokens ported from the app (DesignTokens.swift: Brand.pink/yellow,
   the pink→yellow gradient, AppRadius, and the .ultraThinMaterial surfaces).
   ========================================================================= */

:root {
  /* Brand (exact from app) */
  --pink:   #FFB5CC;   /* Brand.pink  rgb(255,181,204) */
  --yellow: #FFF58C;   /* Brand.yellow rgb(255,245,140) */
  --brand-gradient: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 100%);

  /* Neutrals */
  --cream:  #FDF6F1;   /* warm off-white, matches the app icon backdrop */
  --cream-2:#FBEFE9;   /* slightly deeper cream for section banding */
  --paper:  #FFFFFF;
  --ink:    #2B2530;   /* warm near-black for body text */
  --ink-2:  #6A6270;   /* secondary text */
  --ink-3:  #9A93A0;   /* tertiary / captions */
  --hair:   rgba(43, 37, 48, 0.08);  /* hairline borders (≈ secondary.opacity) */
  --hair-2: rgba(43, 37, 48, 0.14);

  /* Soft pastel accents (echo DetailTab + modality colors) */
  --blue:   #7FB1E3;
  --teal:   #6FC6C0;
  --purple: #B49BE0;
  --orange: #F2B57E;
  --rose:   #F5A0C0;
  --green:  #94CFA3;
  --mint:   #8FD9C6;
  --indigo: #98A0E2;

  /* Radii (echoes AppRadius 6/10/14, scaled up for web) */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows — soft, diffuse, low-contrast */
  --shadow-sm: 0 1px 2px rgba(43,37,48,.04), 0 2px 8px rgba(43,37,48,.04);
  --shadow:    0 4px 16px rgba(43,37,48,.06), 0 12px 36px rgba(43,37,48,.07);
  --shadow-lg: 0 10px 40px rgba(220,140,170,.14), 0 30px 80px rgba(43,37,48,.10);

  /* Type */
  --font: -apple-system, "SF Pro Display", "SF Pro Text", BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1160px;
  --nav-h: 64px;
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--rose); outline-offset: 3px; border-radius: 6px; }

/* --------------------------------------------------------------- layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.7); border: 1px solid var(--hair);
  backdrop-filter: blur(8px);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-gradient); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); margin: 18px 0 14px; }
.section-head p { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); }

.text-grad {
  background: linear-gradient(120deg, #E98AB0 0%, #E0A93E 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 0.05em;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 16px; font-weight: 600; line-height: 1;
  padding: 14px 24px; border-radius: var(--r-pill); border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #4A2238;
  background: var(--brand-gradient);
  box-shadow: 0 6px 20px rgba(255,150,185,.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,150,185,.55); }
.btn-ghost {
  background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--hair-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 17px 30px; font-size: 17px; }

.req-note { font-size: 13.5px; color: var(--ink-3); margin-top: 12px; }
.req-note svg { width: 14px; height: 14px; display: inline; vertical-align: -2px; margin-right: 4px; }

/* ----------------------------------------------------------------- bloom */
/* Soft floral light behind sections — decorative, low opacity. */
.bloom { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0; pointer-events: none; }
.bloom.pink   { background: radial-gradient(circle, var(--pink), transparent 70%); }
.bloom.yellow { background: radial-gradient(circle, var(--yellow), transparent 70%); }
.bloom.rose   { background: radial-gradient(circle, #FFC9DD, transparent 70%); }

/* ------------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(253,246,241,.78);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--hair);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15.5px; font-weight: 500; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ----------------------------------------------------------------- hero */
.hero { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 8vw, 100px); overflow: hidden; }
.hero .bloom.pink   { width: 620px; height: 620px; top: -240px; left: -160px; }
.hero .bloom.yellow { width: 520px; height: 520px; top: -120px; right: -180px; opacity: .42; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-mark { width: 76px; height: 76px; margin-bottom: 26px; filter: drop-shadow(0 10px 24px rgba(255,150,185,.35)); }
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); font-weight: 700; }
.hero .lede { font-size: clamp(18px, 1.9vw, 22px); color: var(--ink-2); margin: 22px 0 14px; max-width: 540px; }
.hero-trust {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 9px 16px 9px 13px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.65); border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm); margin-bottom: 30px;
}
.hero-trust svg { width: 18px; height: 18px; color: #C77BA0; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* ----------------------------------------------- feature screenshot */
.feat-screenshot {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
}

.demo-note { font-size: 12px; color: var(--ink-3); text-align: center; margin-top: 10px; }
.coming-soon { font-size: 15px; font-weight: 600; color: var(--ink-2); margin-top: 14px; }

/* ----------------------------------------------- hero screenshot */
.hero-screenshot {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
}

/* ----------------------------------------------- macOS app-window mockup */
.window {
  position: relative;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.win-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-bottom: 1px solid var(--hair);
  background: rgba(255,255,255,.5);
}
.traffic { display: flex; gap: 8px; }
.traffic i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.traffic i:nth-child(1){ background:#FF6159; } .traffic i:nth-child(2){ background:#FFBD2E; } .traffic i:nth-child(3){ background:#28C840; }
.win-title { font-size: 13px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 7px; }
.win-title .mark { width: 16px; height: 16px; }
.win-body { display: grid; grid-template-columns: 168px 1fr; min-height: 360px; }

.win-side { padding: 14px 10px; border-right: 1px solid var(--hair); background: rgba(255,255,255,.35); display: flex; flex-direction: column; gap: 3px; }
.side-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.side-item svg { width: 16px; height: 16px; flex: none; }
.side-item.active { background: var(--brand-gradient); color: #4A2238; font-weight: 600; box-shadow: 0 3px 10px rgba(255,160,190,.4); }
.side-item .lock { margin-left: auto; width: 12px; height: 12px; color: var(--ink-3); }

.win-main { padding: 18px 20px; display: flex; flex-direction: column; gap: 13px; }
.note-head { display: flex; align-items: center; justify-content: space-between; }
.note-chip { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: rgba(111,198,192,.18); color: #2E8C84; }
.note-meta { font-size: 12px; color: var(--ink-3); }
.note-h { font-size: 16px; font-weight: 700; margin-top: 2px; }
.note-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: #B49BE0; text-transform: uppercase; }
.skel { height: 9px; border-radius: 5px; background: linear-gradient(90deg, var(--hair) 25%, rgba(43,37,48,.05) 50%, var(--hair) 75%); background-size: 200% 100%; }
.skel.short { width: 55%; } .skel.mid { width: 80%; } .skel.tiny { width: 34%; }
.gen-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-2); margin-top: 4px; }
.gen-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-gradient); }
.caret { display: inline-block; width: 2px; height: 13px; background: #C77BA0; vertical-align: -2px; margin-left: 2px; }

/* ------------------------------------------------------------ trust strip */
.trust-strip { background: var(--paper); border-block: 1px solid var(--hair); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 22px 6px; }
.trust-item .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(255,181,204,.16); color: #C77BA0; }
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item h4 { font-size: 15.5px; }
.trust-item p { font-size: 13px; color: var(--ink-2); margin-top: 2px; }

/* --------------------------------------------------- data-ownership band */
.ownership { background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%); overflow: hidden; }
.ownership .bloom.rose { width: 560px; height: 560px; top: -180px; right: -120px; opacity: .4; }
.own-card {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 60px); align-items: center;
  background: rgba(255,255,255,.66);
  border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 56px);
  box-shadow: var(--shadow); backdrop-filter: blur(14px);
}
.own-card h2 { font-size: clamp(28px, 3.6vw, 42px); }
.own-card .lede { font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-2); margin-top: 16px; }
.own-list { display: grid; gap: 14px; }
.own-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.own-list .x { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(245,160,192,.18); color: #C77BA0; margin-top: 1px; }
.own-list .x svg { width: 15px; height: 15px; }
.own-list b { font-weight: 650; }
.own-list span { color: var(--ink-2); }

/* ------------------------------------------------------------- features */
.features { background: var(--cream); }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(40px, 5vw, 64px);
}
.feature:nth-child(even) .feat-visual { order: -1; }
.feat-icon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; }
.feat-icon svg { width: 27px; height: 27px; }
.feature h3 { font-size: clamp(24px, 2.8vw, 32px); }
.feature .feat-body { font-size: 17px; color: var(--ink-2); margin-top: 14px; max-width: 460px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { font-size: 13px; font-weight: 500; color: var(--ink-2); padding: 6px 13px; border-radius: var(--r-pill); background: rgba(255,255,255,.75); border: 1px solid var(--hair); }
.pro-pill { font-size: 11px; font-weight: 700; letter-spacing: .03em; padding: 4px 10px; border-radius: var(--r-pill); background: var(--brand-gradient); color: #4A2238; margin-left: 10px; vertical-align: 3px; }

/* accent tints applied per feature */
.acc-teal   .feat-icon { background: rgba(111,198,192,.16); color: #2E8C84; }
.acc-blue   .feat-icon { background: rgba(127,177,227,.18); color: #3D77B5; }
.acc-purple .feat-icon { background: rgba(180,155,224,.18); color: #7A5BC0; }
.acc-rose   .feat-icon { background: rgba(245,160,192,.18); color: #C77BA0; }
.acc-orange .feat-icon { background: rgba(242,181,126,.20); color: #C9803A; }
.acc-green  .feat-icon { background: rgba(148,207,163,.20); color: #4E9A63; }
.acc-indigo .feat-icon { background: rgba(152,160,226,.18); color: #5E66C0; }
.acc-mint   .feat-icon { background: rgba(143,217,198,.20); color: #2E9A85; }

/* feature visual cards */
.feat-visual { position: relative; }
.card {
  background: rgba(255,255,255,.72); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.card-title { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.card-title .ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; }
.card-title .ic svg { width: 14px; height: 14px; }

/* transcript bubbles */
.bubble { display: flex; gap: 10px; margin-bottom: 12px; }
.bubble .who { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; height: fit-content; white-space: nowrap; }
.bubble.t .who { background: rgba(127,177,227,.2); color: #3D77B5; }
.bubble.c .who { background: rgba(245,160,192,.2); color: #C77BA0; }
.bubble .lines { flex: 1; display: grid; gap: 6px; padding-top: 2px; }
.ts { font-size: 10px; color: var(--ink-3); font-variant-numeric: tabular-nums; margin-bottom: 4px; }

/* note-type segmented control */
.seg { display: inline-flex; padding: 3px; border-radius: 10px; background: rgba(43,37,48,.05); gap: 2px; }
.seg span { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 8px; color: var(--ink-2); }
.seg span.on { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }

/* prep checklist */
.prep-item { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--hair); }
.prep-item:last-child { border-bottom: 0; }
.prep-item .pchk { flex: none; width: 19px; height: 19px; border-radius: 6px; background: rgba(127,177,227,.18); color: #3D77B5; display: grid; place-items: center; margin-top: 2px; }
.prep-item .pchk svg { width: 12px; height: 12px; }
.prep-item .ptxt { display: grid; gap: 5px; flex: 1; }

/* skill bars (Growth) */
.skill-row { display: grid; grid-template-columns: 130px 1fr 22px; gap: 12px; align-items: center; padding: 7px 0; }
.skill-row .lbl { font-size: 12px; color: var(--ink-2); }
.skill-track { height: 7px; border-radius: 4px; background: rgba(43,37,48,.06); overflow: hidden; }
.skill-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green), var(--mint)); }
.skill-row .val { font-size: 12px; font-weight: 700; color: #4E9A63; text-align: right; }

/* modality lenses */
.lens-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.lens { font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: var(--r-pill); border: 1px solid var(--hair); color: var(--ink-2); background: rgba(255,255,255,.7); }
.lens.on { background: rgba(180,155,224,.16); color: #7A5BC0; border-color: rgba(180,155,224,.4); }

/* concept map (SVG container) */
.map-card { padding: 0; overflow: hidden; }
.map-card svg { width: 100%; height: auto; display: block; }

/* finances chart */
.fin-figures { display: flex; gap: 22px; margin-bottom: 16px; }
.fin-fig .big { font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.fin-fig .cap { font-size: 12px; color: var(--ink-3); }
.fin-fig .big.grad { background: linear-gradient(120deg,#E98AB0,#E0A93E); -webkit-background-clip:text; background-clip:text; color:transparent; }
.bars { display: flex; align-items: flex-end; gap: 9px; height: 96px; }
.bars .bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--pink), #FFD9A8); opacity: .85; }

/* ------------------------------------------------------------- privacy */
.privacy { background: var(--paper); border-block: 1px solid var(--hair); overflow: hidden; }
.privacy .bloom.pink { width: 480px; height: 480px; bottom: -220px; left: -120px; opacity: .3; }
.priv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }
.priv-card { padding: 26px; border-radius: var(--r); border: 1px solid var(--hair); background: var(--cream); }
.priv-card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,181,204,.16); color: #C77BA0; margin-bottom: 16px; }
.priv-card .ic svg { width: 23px; height: 23px; }
.priv-card h4 { font-size: 18px; }
.priv-card p { font-size: 15px; color: var(--ink-2); margin-top: 8px; }
.priv-foot { margin-top: 22px; text-align: center; font-size: 14px; color: var(--ink-3); position: relative; z-index: 1; }

/* ------------------------------------------------------------- pricing */
.pricing { background: var(--cream); overflow: hidden; }
.pricing .bloom.yellow { width: 460px; height: 460px; top: 40px; right: -160px; opacity: .35; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; z-index: 1; max-width: 880px; margin-inline: auto; }
.price-card { background: rgba(255,255,255,.8); border: 1px solid var(--hair); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow); backdrop-filter: blur(12px); display: flex; flex-direction: column; }
.price-card.featured { border-color: rgba(255,150,185,.55); box-shadow: var(--shadow-lg); }
.early-bird-wrap { display: flex; align-items: center; gap: 10px; margin: 10px 0 2px; flex-wrap: wrap; }
.early-bird-badge { font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 5px 12px; border-radius: var(--r-pill); background: var(--brand-gradient); color: #5A2840; }
.early-bird-scarcity { font-size: 12.5px; color: var(--ink-2); font-weight: 500; }
.price-was { font-size: 18px; color: var(--ink-3); text-decoration: line-through; margin-left: 4px; align-self: flex-end; padding-bottom: 10px; }
.price-name { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-2); }
.price-name .pill { font-size: 11px; padding: 4px 11px; border-radius: var(--r-pill); background: var(--brand-gradient); color: #4A2238; letter-spacing: 0; text-transform: none; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; }
.price-amt .num { font-size: 50px; font-weight: 700; letter-spacing: -.03em; }
.price-amt .per { font-size: 16px; color: var(--ink-2); }
.price-sub { font-size: 15px; color: var(--ink-2); min-height: 44px; }
.price-feats { display: grid; gap: 13px; margin: 24px 0 28px; }
.price-feats li { display: flex; gap: 11px; font-size: 15.5px; align-items: flex-start; }
.price-feats .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(148,207,163,.22); color: #4E9A63; margin-top: 1px; }
.price-feats .ck svg { width: 13px; height: 13px; }
.price-feats small { color: var(--ink-3); display: block; font-size: 13px; margin-top: 2px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-note {
  position: relative; z-index: 1; max-width: 760px; margin: 28px auto 0; text-align: center;
  font-size: 15px; color: var(--ink-2);
  background: rgba(255,255,255,.6); border: 1px solid var(--hair); border-radius: var(--r);
  padding: 18px 24px;
}
.price-note b { color: var(--ink); }

/* ----------------------------------------------------------------- faq */
.faq { background: var(--paper); border-top: 1px solid var(--hair); }
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; padding: 22px 4px; text-align: left; font-size: 18px; font-weight: 600; color: var(--ink); }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--ink-3); transition: transform .3s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }
.faq-a-inner { padding: 0 4px 24px; font-size: 16px; color: var(--ink-2); }
.faq-a-inner a { color: #C77BA0; font-weight: 600; }

/* ------------------------------------------------------------- final cta */
.final { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--cream-2), var(--cream)); }
.final .bloom.pink   { width: 540px; height: 540px; top: -160px; left: 10%; opacity: .5; }
.final .bloom.yellow { width: 460px; height: 460px; bottom: -200px; right: 8%; opacity: .45; }
.final-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin-inline: auto; }
.final-mark { width: 64px; height: 64px; margin: 0 auto 24px; filter: drop-shadow(0 10px 24px rgba(255,150,185,.35)); }
.final h2 { font-size: clamp(32px, 4.6vw, 52px); }
.final p { font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-2); margin: 18px auto 30px; max-width: 540px; }

/* ----------------------------------------------------------------- footer */
.footer { background: var(--ink); color: #D9D2DE; padding-block: 56px 36px; }
.footer a { color: #D9D2DE; }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand { max-width: 320px; }
.foot-brand .brand { color: #fff; margin-bottom: 12px; }
.foot-brand p { font-size: 14px; color: #A79FAE; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h5 { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: #8C8492; margin: 0 0 14px; font-weight: 700; }
.foot-col a { display: block; font-size: 14.5px; color: #C9C2CF; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.foot-bottom .copy { font-size: 13px; color: #8C8492; }
.disclaimer { font-size: 12.5px; color: #8C8492; max-width: 620px; margin-top: 14px; line-height: 1.5; }

/* ----------------------------------------------------------- reveal anim */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .skel { animation: none !important; }
}

/* ----------------------------------------------------------- responsive */
@media (max-width: 920px) {
  .hero-grid, .own-card, .feature, .priv-grid, .price-grid { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feat-visual { order: 0; }
  .feat-visual { max-width: 520px; }
  .own-card { text-align: left; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.menu-open { background: rgba(253,246,241,.96); backdrop-filter: blur(20px); }
  .mobile-menu {
    display: none; position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
    background: rgba(253,246,241,.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hair); padding: 12px 24px 22px;
    flex-direction: column; gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 13px 6px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--hair); }
  .mobile-menu .btn { margin-top: 14px; }
}
@media (min-width: 921px) { .mobile-menu { display: none; } }

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item { padding: 14px 4px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .win-body { grid-template-columns: 56px 1fr; }
  .side-item span { display: none; }
  .side-item { justify-content: center; padding: 9px; }
  .price-amt .num { font-size: 42px; }
}
