/* ============================================================
   Soula Homepage v3 — adapted to the Soula DS
   Depends on: ds/fonts.css, ds/tokens.css, ds/orb.css
   Builds the marketing site on top of the same tokens the app uses.
   ============================================================ */

/* ───────── base ───────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg-stage); color: var(--ink-1); }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }

/* DS sets <em> to bolder, no italic — keep that; pink emphasis variant. */
em {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
}
em.pink {
  color: var(--pink-1);
  font-weight: 500;
}

::selection { background: var(--pink-soft); color: var(--ink-1); }

/* ───────── layout ───────── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ───────── type primitives ───────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center;
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink-1);
  margin-right: 10px;
}

.h-display {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink-1);
}
h1.h-display { font-size: clamp(60px, 9vw, 132px); }
h2.h-display { font-size: clamp(44px, 6vw, 88px); line-height: 1.05; }
h3.h-display { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; }

.h-display em {
  color: var(--pink-1);
  font-weight: 400;
}

.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 60ch;
}

/* ───────── buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 20px;
  border-radius: var(--r-pill);
  font-weight: 500; font-size: 14px;
  white-space: nowrap;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-dark { background: var(--ink-1); color: var(--ink-on-dark); }
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-cta); }
.btn-light { background: #fff; color: var(--ink-1); border: 1px solid var(--hair-strong); }
.btn-light:hover { border-color: var(--ink-1); }
.btn-ghost { color: var(--ink-1); padding: 0 4px; height: 44px; }
.btn-ghost:hover { color: var(--pink-1); }
.btn-lg { height: 56px; padding: 0 28px; font-size: 15px; }

.mic-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  padding: 18px 0;
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(239, 237, 233, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--hair);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.brand .brand-orb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 55% 60% at 38% 38%, rgba(255, 30, 110, 1) 0%, rgba(255, 30, 110, 0) 60%),
    radial-gradient(ellipse 45% 48% at 62% 56%, rgba(255, 96, 70, 0.7) 0%, transparent 60%),
    radial-gradient(circle, rgba(255, 200, 215, 0.6) 0%, transparent 70%);
  filter: blur(2px) saturate(1.1);
}
.brand-name {
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: 32px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links a:hover { color: var(--ink-1); background: rgba(15,15,15,.045); }
.nav-links a.is-active { color: var(--ink-1); background: rgba(15,15,15,.06); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 60px 0 100px;
  position: relative;
  text-align: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  font-size: 12px; color: var(--ink-3);
}
.hero-eyebrow .pill {
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--pink-soft);
  color: var(--pink-pressed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.hero-orb-wrap {
  margin: 8px 0 -28px;
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  position: relative;
  z-index: 2;
}
.hero-headline em {
  color: var(--pink-1);
  font-weight: 400;
}
.hero-sub {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 580px;
}
.hero-cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px;
}
.badges-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 14px;
}
.store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink-1); color: var(--ink-on-dark);
  padding: 9px 16px 9px 12px;
  border-radius: 12px;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.store:hover { transform: translateY(-1px); box-shadow: var(--shadow-cta); }
.store svg path { fill: var(--ink-on-dark); }
.store span { display: flex; flex-direction: column; line-height: 1.05; }
.store .lbl-small { font-size: 8.5px; letter-spacing: 0.06em; opacity: .72; }
.store .lbl-big { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }

.trust-mini {
  margin-top: 26px;
  display: inline-flex; gap: 18px; justify-content: center;
  font-size: 12.5px; color: var(--ink-3);
  flex-wrap: wrap;
}
.trust-mini .star { color: var(--pink-1); margin-right: 5px; }
.trust-mini strong { color: var(--ink-1); font-weight: 600; }

/* ============================================================
   STAT BAND
   ============================================================ */
.stat-band {
  padding: 44px 0;
  background: var(--bg-screen);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--hair);
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .stat-num {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--pink-1);
}
.stat-cell .stat-num em {
  color: var(--pink-1);
  font-weight: 400;
}
.stat-cell .stat-lbl {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  max-width: 22ch;
}
@media (max-width: 900px) {
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stat-cell { border-right: 0; }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--hair); }
}

/* ============================================================
   PRESS
   ============================================================ */
.press {
  padding: 36px 0;
  background: var(--bg-stage);
}
.press-inner {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.press-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-4); font-weight: 600;
}
.press-logos {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  flex: 1;
}
.press-logos a {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
  transition: color .15s var(--ease);
}
.press-logos a:hover { color: var(--ink-1); }
.press-logos .lg-vogue { font-family: serif; font-style: italic; font-weight: 400; letter-spacing: 0.18em; font-size: 22px; }
.press-logos .lg-femtech { letter-spacing: 0.04em; font-size: 14px; }
.press-logos .lg-forbes { font-weight: 800; letter-spacing: 0; font-size: 22px; text-transform: none; }
.press-logos .lg-bi { font-size: 13px; }
.press-logos .lg-tc { letter-spacing: -0.01em; text-transform: none; font-size: 18px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 130px 0; }
.section.compact { padding: 100px 0; }
.section-pink { background: var(--bg-card-pink); }
.section-ink { background: var(--bg-dark); color: var(--ink-on-dark); }
.section-screen { background: var(--bg-screen); }

.s-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding: 0 8px;
}
.s-head .lead { text-align: center; }

/* ============================================================
   HOW IT WORKS — phone + annotations
   ============================================================ */
.demo-section { padding: 130px 0 120px; }

.annot-wrap {
  display: grid;
  grid-template-columns: minmax(340px, 380px) 1fr;
  gap: 88px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
}
.annot-phone {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  position: sticky;
  top: 90px;
}
.demo-orb-bg {
  position: absolute;
  inset: -8% -10%;
  background: radial-gradient(ellipse at 50% 45%, rgba(255, 46, 110, .14) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.annot-stack {
  display: flex; flex-direction: column;
  position: relative;
  padding-top: 8px;
}
.annot-stack::before {
  content: "";
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 1px; background: var(--hair-strong);
}
.annot {
  display: flex;
  gap: 22px;
  padding: 22px 0 22px 32px;
  position: relative;
  align-items: flex-start;
}
.annot + .annot { border-top: 1px solid var(--hair); }
.annot::before {
  content: "";
  position: absolute;
  left: -4px; top: 36px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--pink-1);
  box-shadow: 0 0 0 4px rgba(255, 46, 110, .14);
}
.annot-num {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--pink-1);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  min-width: 26px;
  padding-top: 6px;
}
.annot-body h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  margin-bottom: 8px;
}
.annot-body h4 em { color: var(--pink-1); font-weight: 500; }
.annot-body p {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 42ch;
}
.annot.annot-featured {
  background: var(--bg-card-pink);
  border-radius: var(--r-xl);
  padding: 26px 26px 28px 32px;
  margin-top: 14px;
  margin-left: -6px;
}
.annot.annot-featured + .annot,
.annot + .annot.annot-featured { border-top: 0; }
.annot.annot-featured::before {
  top: 38px; left: 0;
  box-shadow: 0 0 0 5px rgba(255, 46, 110, .2);
  width: 11px; height: 11px;
}
.annot.annot-featured .annot-body h4 { font-size: 30px; }
.annot.annot-featured .annot-body p { color: var(--ink-2); }
.annot-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-pressed); font-weight: 700;
  padding: 4px 10px;
  background: rgba(255, 46, 110, .13);
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.annot-badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink-1);
}

@media (max-width: 900px) {
  .annot-wrap { grid-template-columns: 1fr; gap: 48px; max-width: 420px; }
  .annot-phone { max-width: 360px; margin: 0 auto; position: static; }
  .annot-stack::before { display: none; }
}

/* ============================================================
   PHONE MOCK — built to match the actual current Home screen
   ============================================================ */
.phone-mock {
  position: relative;
  width: 380px;
  height: 820px;
  background: var(--bg-screen);
  border-radius: var(--r-phone);
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  border: 1px solid rgba(15,15,15,.06);
}
.phone-mock::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 28px;
  background: var(--ink-1);
  border-radius: 0 0 16px 16px;
  z-index: 4;
}
.pm-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 26px 0;
  font-size: 14px; font-weight: 600;
  color: var(--ink-1);
}
.pm-statusbar .sb-icons { display: inline-flex; gap: 5px; }
.pm-scroll {
  height: calc(100% - 102px); /* leave room for bottom nav */
  overflow: hidden;
  padding: 14px 20px 0;
}

/* ── Today caption ── */
.pm-today-cap {
  text-align: center;
  margin-bottom: 14px;
}
.pm-today-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
  margin-bottom: 4px;
}
.pm-today-state {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink-1);
}

/* ── Weekstrip ── */
.pm-weekstrip {
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 4px 6px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 10px;
}
.pm-ws-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  place-items: center;
}
.pm-ws-letters span {
  font-size: 11px; color: var(--ink-4); font-weight: 500;
  letter-spacing: 0.04em;
}
.pm-ws-letters span.active { color: var(--ink-1); }
.pm-ws-dates span {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.pm-ws-dates span.active {
  background: var(--pink-1); color: white;
  font-size: 13px; font-weight: 600;
}
.pm-ws-dots i {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--pink-soft);
}
.pm-ws-dots i.active { background: var(--pink-1); transform: scale(1.4); }

/* ── Orb block ── */
.pm-orb-block {
  display: flex; justify-content: center;
  margin: 4px 0 -2px;
}
.pm-orb-block .orb-wrap.orb-lg {
  width: 180px; height: 180px;
}

/* ── Editorial line ── */
.pm-talk-line {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink-1);
  margin: 8px 8px 14px;
}
.pm-talk-line em { color: var(--pink-1); font-weight: 500; }

/* ── Talk pill ── */
.pm-talk-cta-wrap {
  display: flex; justify-content: center;
  margin-bottom: 18px;
}
.pm-talk-cta-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px;
  background: var(--ink-1); color: white;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-card);
}

/* ── Section heads ── */
.pm-sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 0 10px;
}
.pm-sec-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}

/* ── 2-col Personal practice grid ── */
.pm-pgrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.pm-pcard2 {
  position: relative;
  border-radius: var(--r-lg);
  padding: 14px 14px 16px;
  min-height: 130px;
  display: flex; flex-direction: column; gap: 18px;
  color: white;
  overflow: hidden;
}
.pm-pcard2.pcard-cbt-blue  { background: linear-gradient(155deg, #6E8DE8 0%, #3654B5 100%); }
.pm-pcard2.pcard-nav-peach { background: linear-gradient(155deg, #FFB389 0%, #F37A5E 100%); }
.pm-pcard2-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 9.5px; letter-spacing: 0.16em; color: rgba(255,255,255,.78);
  font-weight: 600;
}
.pm-pcard2-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: white;
  margin-top: auto;
}

/* ── 2-col For right now grid ── */
.pm-rgrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.pm-rcard {
  position: relative;
  height: 130px;
  border-radius: var(--r-lg);
  background-size: cover; background-position: center;
  padding: 10px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.pm-rcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.45) 100%);
}
.pm-rcard > * { position: relative; z-index: 2; }
.pm-rcard-top {
  display: flex; align-items: center; justify-content: space-between;
}
.pm-rtag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px;
  background: rgba(255,255,255,.92);
  color: var(--ink-1);
  border-radius: var(--r-pill);
  font-size: 9px; font-weight: 600; letter-spacing: 0.05em;
}
.pm-rtag-light {
  background: rgba(255,255,255,.18);
  color: white;
  backdrop-filter: blur(6px);
}
.pm-rdur {
  padding: 3px 8px;
  background: rgba(255,255,255,.92);
  color: var(--ink-1);
  border-radius: var(--r-pill);
  font-size: 9px; font-weight: 600; letter-spacing: 0.05em;
}
.pm-rdur-light { background: rgba(255,255,255,.18); color: white; backdrop-filter: blur(6px); }
.pm-rcard-meta { color: white; }
.pm-reye {
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.85); font-weight: 600;
  margin-bottom: 3px;
}
.pm-reye-light { color: rgba(255,255,255,.7); }
.pm-rtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: white;
}
.pm-rtitle-light { color: white; }

/* ── Personal programm with vertical timeline ── */
.pm-prog-v2 {
  margin-top: 4px;
}
.pm-prog-v2-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.pm-prog-v2-counter {
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.pm-prog-v2-bar {
  height: 4px;
  background: rgba(15,15,15,.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}
.pm-prog-v2-bar span {
  display: block;
  height: 100%;
  background: var(--pink-1);
  border-radius: 4px;
}
.pm-timeline {
  position: relative;
  padding-left: 26px;
}
.pm-timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 16px; bottom: 8px;
  width: 1px;
  border-left: 1px dashed var(--hair-strong);
}
.pm-tl-item {
  position: relative;
  margin-bottom: 10px;
}
.pm-tl-dot {
  position: absolute;
  left: -26px; top: 50px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-screen);
  border: 1.5px solid var(--hair-strong);
  display: inline-flex; align-items: center; justify-content: center;
}
.pm-tl-item.done .pm-tl-dot {
  background: var(--pink-1);
  border-color: var(--pink-1);
}
.pm-tl-card {
  height: 96px;
  border-radius: var(--r-lg);
  background-size: cover; background-position: center;
  padding: 10px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.pm-tl-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.5) 100%);
}
.pm-tl-card > * { position: relative; z-index: 2; }
.pm-tl-card-dark::after {
  background: linear-gradient(180deg, rgba(15,18,40,.2) 0%, rgba(15,18,40,.6) 100%);
}

/* ── 3-tab bottom nav ── */
.pm-bottom-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 10px 8px 22px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hair);
  z-index: 3;
}
.pm-bottom-nav-3 { padding-bottom: 26px; }
.pm-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--ink-4);
  font-size: 10px; font-weight: 500;
  padding: 4px 16px;
}
.pm-nav-item.active { color: var(--ink-1); font-weight: 600; }
.pm-nav-item.active svg { stroke-width: 2.4; }

/* ============================================================
   FOUNDER SECTION — Natallia Miranchuk
   ============================================================ */
.founder {
  background: var(--bg-card-warm);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: "";
  position: absolute;
  right: -120px; top: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,46,110,.18) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.founder-grid {
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; max-width: 560px; margin: 0 auto; }
}

/* Portrait */
.founder-portrait {
  position: sticky;
  top: 100px;
}
.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(255, 200, 215, .9) 0%, transparent 70%),
    radial-gradient(ellipse 70% 60% at 50% 85%, rgba(255, 122, 90, .7) 0%, transparent 70%),
    linear-gradient(160deg, #FFE6EC 0%, #FFC8D7 45%, #FF8A8A 100%);
  box-shadow: var(--shadow-float);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.founder-photo::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.25));
  pointer-events: none;
}
.founder-photo-initial {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 240px;
  line-height: 1;
  color: rgba(255,255,255,.65);
  letter-spacing: -0.04em;
  z-index: 1;
}
.founder-name-tag {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--bg-screen);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
}
.founder-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  margin-bottom: 8px;
}
.founder-eyebrow .dot {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--pink-1);
}
.founder-name {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink-1);
}
.founder-name em { color: var(--pink-1); font-weight: 500; }
.founder-loc {
  margin-top: 8px;
  font-size: 12px; color: var(--ink-3);
}

/* Body */
.founder-body { padding-top: 4px; }
.founder-head {
  margin: 18px 0 32px;
  max-width: 22ch;
  font-size: clamp(36px, 4.8vw, 64px);
}
.founder-head em { color: var(--pink-1); font-weight: 500; }
.founder-quote {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  border-left: 3px solid var(--pink-1);
  padding-left: 22px;
  max-width: 32ch;
}
.founder-quote-attr {
  margin: 12px 0 32px 22px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.founder-text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
  max-width: 62ch;
}
.founder-text p em { color: var(--pink-1); font-weight: 500; }

/* Stats row */
.founder-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
  padding: 28px 24px;
  background: var(--bg-screen);
  border: 1px solid var(--hair);
  border-radius: var(--r-2xl);
}
.founder-stat {
  display: flex; flex-direction: column; gap: 6px;
}
.founder-stat-num {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--pink-1);
  display: inline-flex; align-items: baseline; gap: 1px;
}
.founder-stat-num .unit {
  font-size: 0.42em;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 3px;
  transform: translateY(-0.18em);
}
.founder-stat-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 700px) {
  .founder-stats { grid-template-columns: 1fr 1fr; }
}

/* Creed strip */
.founder-creed {
  margin-top: 24px;
  padding: 22px 26px;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 8px;
}
.founder-creed-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,.55);
  font-weight: 600;
}
.founder-creed-list {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-on-dark);
  flex-wrap: wrap;
}
.founder-creed-list .dot { color: rgba(250,250,248,.4); }
.founder-creed-list .em { color: var(--pink-1); font-weight: 500; }

/* ============================================================
   STATES GRID
   ============================================================ */
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.state-card {
  background: var(--bg-screen);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 26px 22px 22px;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.state-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-card);
}
.state-card .small {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-1); font-weight: 600;
}
.state-card h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink-1);
  margin-top: 14px;
  flex: 1;
}
.state-card h4 em { color: var(--pink-1); font-weight: 500; }
.state-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}
.state-tag {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.3;
}
.state-arrow { color: var(--ink-3); transition: color .2s, transform .2s; }
.state-card:hover .state-arrow { color: var(--pink-1); transform: translate(2px, -2px); }

@media (max-width: 1000px) { .states-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .states-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AGENTS
   ============================================================ */
.section-ink .s-head h2,
.section-ink .s-head h3 { color: var(--ink-on-dark); }
.section-ink .lead { color: rgba(250,250,248,.7); }
.section-ink .eyebrow { color: rgba(250,250,248,.55); }

.agents-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.agent {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 28px 22px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.agent:hover { transform: translateY(-3px); background: rgba(255,255,255,.06); }
.agent .a-orb {
  width: 64px; height: 64px;
  border-radius: 50%;
  filter: blur(3px) saturate(1.15);
}
.agent[data-c="neutral"]   .a-orb { background: radial-gradient(circle at 35% 30%, #FFE3EC 0%, #FF5B8C 40%, #FF1E6E 100%); }
.agent[data-c="emergency"] .a-orb { background: radial-gradient(circle at 35% 30%, #FFE5D9 0%, #FF8A46 40%, #C7402C 100%); }
.agent[data-c="bestie"]    .a-orb { background: radial-gradient(circle at 35% 30%, #FFE5D2 0%, #FFB46E 40%, #FF963C 100%); }
.agent[data-c="cbt"]       .a-orb { background: radial-gradient(circle at 35% 30%, #DCE5F9 0%, #7DA0EE 40%, #5082E6 100%); }
.agent[data-c="navigator"] .a-orb { background: radial-gradient(circle at 35% 30%, #D9EBE2 0%, #78C8A5 40%, #3CAA82 100%); }
.a-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,250,248,.6); font-weight: 600;
}
.agent h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px; letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-on-dark);
}
.agent h4 em { color: var(--pink-1); font-weight: 500; }
.agent p {
  font-size: 13px; line-height: 1.55;
  color: rgba(250,250,248,.65);
}
.a-tag {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,248,.5); font-weight: 500;
}

@media (max-width: 1100px) { .agents-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .agents-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   DIFFERENT BY DESIGN
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.diff-card {
  background: var(--bg-screen);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.diff-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-card);
}
.diff-card .diff-art {
  height: 130px;
  border-radius: var(--r-lg);
  background: var(--bg-card-pink);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.diff-card .diff-orb {
  width: 80px; height: 80px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 55% 60% at 38% 38%, rgba(255, 30, 110, 1) 0%, rgba(255, 30, 110, 0) 60%),
    radial-gradient(ellipse 45% 48% at 62% 56%, rgba(255, 96, 70, 0.7) 0%, transparent 60%),
    radial-gradient(circle, rgba(255, 200, 215, 0.7) 0%, transparent 75%);
  filter: blur(6px) saturate(1.15);
}
.diff-art-multi {
  display: flex; gap: 6px;
}
.diff-art-multi span {
  display: block; width: 30px; height: 30px; border-radius: 50%;
  filter: blur(1.5px);
}
.diff-art-multi span:nth-child(1) { background: radial-gradient(circle at 32% 28%, #FFE3EC, #FF1E6E); }
.diff-art-multi span:nth-child(2) { background: radial-gradient(circle at 32% 28%, #FFE5D2, #FF963C); }
.diff-art-multi span:nth-child(3) { background: radial-gradient(circle at 32% 28%, #FFE9F4, #C7402C); transform: scale(1.18); z-index: 2; }
.diff-art-multi span:nth-child(4) { background: radial-gradient(circle at 32% 28%, #DCE5F9, #5082E6); }
.diff-art-multi span:nth-child(5) { background: radial-gradient(circle at 32% 28%, #D9EBE2, #3CAA82); }

.diff-num {
  font-weight: 500;
  font-size: 14px;
  color: var(--pink-1);
  letter-spacing: 0.04em;
}
.diff-card h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 28px; letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink-1);
}
.diff-card h3 em { color: var(--pink-1); font-weight: 500; }
.diff-card p {
  color: var(--ink-3);
  font-size: 14.5px; line-height: 1.55;
}
.diff-foot {
  margin-top: auto; padding-top: 16px;
  border-top: 1px dashed var(--hair-strong);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-1); font-weight: 600;
}
.diff-foot em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--pink-1);
  font-size: 13.5px;
}

@media (max-width: 1000px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STORIES — quote cards
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.video-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(160deg, #F9D9E0 0%, #FF2E6E 100%);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.video-card.v-1 { background: linear-gradient(160deg, #FFE6EC 0%, #FF2E6E 100%); }
.video-card.v-2 { background: linear-gradient(160deg, #E1DAEC 0%, #7B5AD2 100%); }
.video-card.v-3 { background: linear-gradient(160deg, #D9EBE2 0%, #3C9178 100%); }
.video-card.v-4 { background: linear-gradient(160deg, #FFE5D2 0%, #FF8A46 100%); }
.video-card.v-5 { background: linear-gradient(160deg, #FCD9E2 0%, #B91D54 100%); }
.video-card.v-6 { background: linear-gradient(160deg, #FFE8D9 0%, #C97A2A 100%); }

.video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,15,15,.55) 100%);
}
.video-card .v-initial {
  position: absolute; top: 24px; left: 28px; z-index: 2;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 110px;
  color: rgba(255,255,255,.55);
  line-height: 1;
  letter-spacing: -0.04em;
}
.video-card .v-bottom {
  position: relative;
  padding: 24px 28px 26px;
  z-index: 2; color: #fff;
}
.video-card .v-quote {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 19px; line-height: 1.32; letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.video-card .v-quote em { color: rgba(255,255,255,.95); font-weight: 500; }
.video-card .v-attr {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 12.5px;
}
.video-card .v-name { font-weight: 600; }
.video-card .v-tag {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: .8;
}

@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }

/* Reviews — masonry */
.reviews-grid {
  columns: 3;
  column-gap: 16px;
}
.review {
  background: var(--bg-screen);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 16px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.review.tinted { background: var(--bg-card-pink); border-color: rgba(255,46,110,.1); }
.review .stars {
  color: var(--pink-1);
  font-size: 13px; letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.review p {
  font-size: 14.5px; line-height: 1.5;
  color: var(--ink-1);
  margin-bottom: 14px;
}
.review p em { color: var(--pink-1); font-weight: 500; }
.review .who {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
}
.review .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; color: var(--ink-1); font-size: 12.5px;
}
.review .name { font-size: 13px; font-weight: 600; color: var(--ink-1); }
.review .meta { font-size: 11.5px; color: var(--ink-3); }

@media (max-width: 1000px) { .reviews-grid { columns: 2; } }
@media (max-width: 600px) { .reviews-grid { columns: 1; } }

/* ============================================================
   BACKED BY
   ============================================================ */
.backed-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
  margin-top: 32px;
}
.backed-feat {
  background: var(--bg-card-pink);
  border-radius: var(--r-2xl);
  padding: 40px 40px 36px;
  position: relative; overflow: hidden;
}
.backed-feat::before {
  content: "";
  position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,46,110,.3) 0%, transparent 60%);
  filter: blur(20px);
}
.feat-eyebrow {
  position: relative;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-pressed); font-weight: 700;
  margin-bottom: 22px;
}
.feat-quote {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 26px; letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-1);
  margin-bottom: 26px;
}
.feat-quote em { color: var(--pink-1); font-weight: 500; }
.feat-attr {
  position: relative;
  display: flex; align-items: center; gap: 12px;
}
.feat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink-1); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 500;
}
.feat-name { font-size: 14px; font-weight: 600; color: var(--ink-1); }
.feat-role { font-size: 12px; color: var(--ink-3); }

.investors {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.inv-card {
  background: var(--bg-screen);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.inv-name { font-size: 14px; font-weight: 500; color: var(--ink-1); letter-spacing: -0.01em; }
.inv-name em { color: var(--pink-1); font-weight: 500; }
.inv-meta { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

@media (max-width: 900px) { .backed-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG TEASER
   ============================================================ */
.blog-teaser-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; gap: 24px;
  flex-wrap: wrap;
}
.blog-teaser-head h2 { margin-bottom: 12px; }
.blog-teaser-head .lead { max-width: 50ch; }
.blog-teaser-head .all-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--ink-1); color: white;
  font-size: 13px; font-weight: 500;
}
.blog-teaser-head .all-link:hover { transform: translateY(-1px); }

.blog-teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-screen);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--hair);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--pink-soft);
}
.blog-cover {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.blog-cover.cv-rose    { background: radial-gradient(at 30% 40%, #FFC8D7 0%, transparent 55%), radial-gradient(at 70% 60%, #FF6092 0%, transparent 55%), linear-gradient(160deg, #FFE6EC, #F9C8D4); }
.blog-cover.cv-peach   { background: radial-gradient(at 30% 70%, #FFB46E 0%, transparent 55%), radial-gradient(at 70% 30%, #FF6092 0%, transparent 55%), linear-gradient(160deg, #FFE8D9, #FFD0AA); }
.blog-cover.cv-sage    { background: radial-gradient(at 30% 40%, #C8E6A8 0%, transparent 55%), radial-gradient(at 70% 60%, #78C879 0%, transparent 55%), linear-gradient(160deg, #E5F0CC, #C7DC8E); }
.blog-cover.cv-night   { background: radial-gradient(at 30% 40%, #4A6AC5 0%, transparent 60%), radial-gradient(at 70% 60%, #1B2D7A 0%, transparent 60%), linear-gradient(160deg, #1B2D7A, #0A1A4D); }
.blog-cover.cv-night::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,.5), transparent);
}
.blog-cover.cv-lilac   { background: radial-gradient(at 30% 40%, #D8CCEF 0%, transparent 55%), radial-gradient(at 70% 60%, #A582D7 0%, transparent 55%), linear-gradient(160deg, #E7DDF3, #C9B7E4); }
.blog-cover.cv-azure   { background: radial-gradient(at 35% 40%, #3B5BD9 0%, transparent 60%), radial-gradient(at 70% 70%, #8EB4F2 0%, transparent 55%), linear-gradient(160deg, #E5EEFB, #B8CDF1); }
.blog-cover.cv-figure  { background: radial-gradient(circle at 38% 60%, rgba(255,150,80,.85) 0%, transparent 35%), radial-gradient(circle at 38% 45%, rgba(255,180,130,.7) 0%, transparent 22%), linear-gradient(160deg, #E2D7E8, #D5C8E2); }
.blog-cover.cv-bloom   { background: radial-gradient(circle at 35% 60%, #FF6E4E 0%, transparent 18%), radial-gradient(circle at 65% 45%, #5A8AE8 0%, transparent 20%), linear-gradient(160deg, #F4DACB, #D9C9EB); }

.blog-meta {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.blog-cat {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-1); font-weight: 600;
}
.blog-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 21px; letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink-1);
}
.blog-title em { color: var(--pink-1); font-weight: 500; }
.blog-card .blog-foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px;
  font-size: 11.5px; color: var(--ink-3);
}
.blog-foot .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); }

@media (max-width: 900px) { .blog-teaser-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-teaser-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--hair);
}
.faq-item:last-child { border-bottom: 1px solid var(--hair); }
.faq-q {
  width: 100%; text-align: left;
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--ink-1);
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--pink-1); }
.faq-q em { color: var(--pink-1); font-weight: 500; }
.faq-q .faq-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink-1);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.faq-q .faq-plus svg line { transition: transform .35s var(--ease-out); transform-origin: center; }
.faq-item.open .faq-plus { background: var(--ink-1); color: white; border-color: var(--ink-1); }
.faq-item.open .faq-plus svg line:last-child { transform: rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  color: var(--ink-3); font-size: 15.5px; line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 0 26px;
}
.faq-a a { color: var(--pink-1); border-bottom: 1px solid var(--pink-soft); }
.faq-a strong { color: var(--ink-1); font-weight: 600; }
.faq-a em { color: var(--pink-1); font-weight: 500; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 140px 0 130px;
  background: var(--bg-dark); color: var(--ink-on-dark);
  position: relative; overflow: hidden;
}
.fc-orb-bg {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 46, 110, .55) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 122, 90, .35) 0%, transparent 50%);
  filter: blur(20px);
  z-index: 1;
}
.final-cta-inner {
  position: relative; z-index: 2; text-align: center;
}
.final-cta .eyebrow { color: rgba(250,250,248,.5); margin-bottom: 24px; }
.final-cta h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(60px, 9vw, 156px); line-height: 0.95; letter-spacing: -0.04em;
  color: var(--ink-on-dark);
  margin-bottom: 28px;
}
.final-cta h2 em { color: var(--pink-1); font-weight: 400; }
.final-cta p {
  font-size: 19px; color: rgba(250,250,248,.7); line-height: 1.55;
  max-width: 560px; margin: 0 auto 40px;
}
.final-cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.final-cta .store {
  background: var(--ink-on-dark); color: var(--ink-1); padding: 14px 22px 14px 16px; border-radius: 14px;
}
.final-cta .store svg path { fill: var(--ink-1); }
.final-cta .store-talk {
  background: transparent; border: 1px solid rgba(250,250,248,.25); color: var(--ink-on-dark);
  height: auto; padding: 14px 24px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 10px; font-weight: 500;
}
.final-cta .store-talk:hover { border-color: var(--ink-on-dark); }
.fc-mini {
  margin-top: 28px; display: inline-flex; gap: 16px; font-size: 12.5px;
  color: rgba(250,250,248,.55); justify-content: center; flex-wrap: wrap;
}
.fc-mini .star { color: var(--pink-1); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 80px 0 40px;
  background: var(--bg-stage);
  border-top: 1px solid var(--hair);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hair);
}
.foot-brand p {
  margin-top: 14px;
  font-size: 13.5px; color: var(--ink-3); line-height: 1.55;
  max-width: 32ch;
}
.foot-col h5 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 14px; color: var(--ink-1);
  transition: color .15s var(--ease);
}
.foot-col a:hover { color: var(--pink-1); }
.foot-fine {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--ink-3);
}
.foot-fine a { color: var(--ink-3); }
.foot-fine a:hover { color: var(--ink-1); }

@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  z-index: var(--z-sticky);
  background: var(--ink-1); color: white;
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 18px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13.5px; font-weight: 500;
  box-shadow: var(--shadow-float);
  transition: transform .35s var(--ease-out), opacity .35s var(--ease);
  pointer-events: none;
}
.sticky-cta.shown {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta .mini-orb {
  width: 24px; height: 24px; border-radius: 50%;
  background:
    radial-gradient(ellipse 55% 60% at 38% 38%, rgba(255, 30, 110, 1) 0%, rgba(255, 30, 110, 0) 60%),
    radial-gradient(ellipse 45% 48% at 62% 56%, rgba(255, 96, 70, 0.7) 0%, transparent 60%),
    radial-gradient(circle, rgba(255, 200, 215, 0.7) 0%, transparent 75%);
  filter: blur(2px);
}
.sticky-cta .right {
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--pink-1); color: white; font-size: 12.5px;
}

/* ============================================================
   REVEAL — no-op (kept for class compatibility)
   ============================================================ */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE: mobile nav, smaller sections
   ============================================================ */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .section.compact { padding: 64px 0; }
  .hero { padding: 32px 0 80px; }
}
