/* =========================================================
   VEILLE — Landing page (light theme, TalkToMedi × Voksha)
   Tokens → base → components (mobile-first).
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Accent — Voksha electric blue */
  --accent: #0447ff;
  --accent-600: #0339db;
  --accent-700: #052bb0;
  --accent-soft: #e7ecff;
  --accent-orange: #ff4704;

  /* Action = black pill */
  --cta: #0a0a0a;
  --cta-hover: #262626;

  /* Cool neutrals (Voksha) */
  --ink: #0a0a0a;
  --ink-2: #3d3d3d;
  --ink-3: #6e6e6e;
  --ink-4: #a0a0a0;
  --line: #e7e6e3;
  --line-2: #dcdbd7;

  --bg: #fdfcfc;
  --bg-soft: #f5f4f2;
  --bg-cream: #ecebe7;

  /* Pastels (bento + panels) */
  --pastel-blue: #e7ecff;
  --pastel-peach: #fbeadd;
  --pastel-mint: #dff0e7;
  --pastel-sand: #f0eee9;
  --panel-dark: #0a0a0a;
  /* Signature dark-card gradient (from countdown card) */
  --grad-dark:
    radial-gradient(120% 140% at 100% 0%, rgba(4,71,255,0.38), transparent 55%),
    radial-gradient(110% 130% at 0% 100%, rgba(255,71,4,0.18), transparent 52%),
    linear-gradient(135deg, #13131c 0%, #0a0a0a 62%);

  /* Fonts — Satoshi display (Voksha) + Inter body */
  --font-head: "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-logo: "Fredoka", "Satoshi", sans-serif;

  /* Radii — generous, TalkToMedi-round */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadows — soft, warm */
  --sh-sm: 0 2px 8px rgba(40, 32, 16, 0.05);
  --sh-md: 0 14px 34px rgba(40, 32, 16, 0.08);
  --sh-lg: 0 30px 70px rgba(35, 28, 14, 0.12);
  --sh-cta: 0 12px 26px rgba(22, 20, 15, 0.24);

  /* Type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body: 1.075rem;
  --fs-lede: 1.28rem;
  --fs-h3: 1.4rem;
  --fs-h2: clamp(2.1rem, 5vw, 3.6rem);
  --fs-h1: clamp(2.7rem, 6.6vw, 5rem);

  /* Spacing */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;    --sp-5: 3rem;   --sp-6: 4.5rem;  --sp-7: 7rem;

  --container: 1200px;
  --container-narrow: 800px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.06; letter-spacing: -0.03em; }
h1, h2 { font-weight: 500; letter-spacing: -0.035em; }
ul { list-style: none; padding: 0; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--sp-6); }
@media (min-width: 768px) { .section { padding-block: var(--sp-7); } }
.bg-cream { background: var(--bg-cream); }
.bg-soft { background: var(--bg-soft); }

/* ---------- SECTION FRAME (rails + dividers) ---------- */
main { position: relative; }
main::before, main::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line); z-index: 4; pointer-events: none; }
main::before { left: max(0px, calc(50% - 600px)); }
main::after { right: max(0px, calc(50% - 600px)); }
main > section:not(.hero) { border-top: 1px solid var(--line); }

/* ---------- ELEMENTS ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: transparent;
  padding: 0; border-radius: 0;
  margin-bottom: var(--sp-3);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.eyebrow--center { justify-content: center; }

.section__head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: var(--sp-5); }
.section__head--left { margin-inline: 0; text-align: left; }
.section__title { font-size: var(--fs-h2); }
.section__lede { font-size: var(--fs-lede); color: var(--ink-3); font-weight: 400; margin-top: var(--sp-3); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 500; font-size: 0.98rem; padding: 13px 24px; border-radius: var(--r-pill);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn--primary { background: var(--cta); color: #fff; box-shadow: var(--sh-cta); }
.btn--primary:hover { background: var(--cta-hover); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-sm); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-md); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn__play { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; }
.btn__play svg { width: 11px; height: 11px; }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.55);
  backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; }
.nav.is-scrolled { border-bottom-color: rgba(226,232,240,0.7); background: rgba(255,255,255,0.68); box-shadow: 0 8px 30px rgba(15,23,42,0.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-logo); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.01em; text-transform: lowercase; color: #211e46; }
.nav__logo-mark { width: 27px; height: 27px; flex-shrink: 0; }
.nav__links { display: none; gap: 2px; }
.nav__links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-2); padding: 9px 16px; border-radius: var(--r-pill); transition: background 0.25s, color 0.25s; }
.nav__links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .btn { display: none; padding: 11px 22px; }
.nav__toggle { display: grid; gap: 5px; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: grid; gap: 4px; max-height: 0; overflow: hidden; padding-inline: 24px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(18px); transition: max-height 0.35s var(--ease), padding 0.35s var(--ease); }
.nav__mobile.is-open { max-height: 400px; padding-block: 12px 20px; border-bottom: 1px solid var(--line); }
.nav__mobile a { padding: 13px 14px; border-radius: var(--r-md); font-weight: 500; color: var(--ink-2); }
.nav__mobile a:hover { background: var(--bg-soft); }
.nav__mobile .btn { margin-top: 8px; }
@media (min-width: 920px) { .nav__links { display: flex; } .nav__actions .btn { display: inline-flex; } .nav__toggle { display: none; } }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding-block: var(--sp-5) var(--sp-6); background: var(--bg); }
.hero__blob { position: absolute; width: 640px; height: 640px; border-radius: 50%; filter: blur(80px); opacity: 0.4; pointer-events: none; }
.hero__blob--1 { top: -300px; right: -140px; background: radial-gradient(circle, rgba(4,71,255,0.18), transparent 62%); }
.hero__blob--2 { bottom: -340px; left: -180px; background: radial-gradient(circle, rgba(255,71,4,0.12), transparent 62%); }
.hero__inner { position: relative; z-index: 5; display: grid; gap: var(--sp-5); align-items: center; }
@media (min-width: 980px) { .hero__inner { grid-template-columns: 1.02fr 1fr; gap: var(--sp-6); } }
.hero__title { font-size: var(--fs-h1); font-weight: 500; letter-spacing: -0.04em; margin-bottom: var(--sp-3); }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__sub { font-size: var(--fs-lede); color: var(--ink-3); font-weight: 400; max-width: 42ch; margin-bottom: var(--sp-4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--sp-4); }
.hero__proof { display: flex; align-items: center; gap: 14px; }
.hero__proof-num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.03em; }
.hero__proof-txt { font-size: 0.9rem; color: var(--ink-3); max-width: 24ch; }

/* Hero stage (call console card) */
.hero__stage { position: relative; display: grid; place-items: center; }
.stage { position: relative; width: 100%; max-width: 420px; min-height: 480px; background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 18px; overflow: hidden; }
.stage::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-xl); box-shadow: inset 0 0 0 1px var(--line); pointer-events: none; }

.convo { position: relative; transition: opacity 0.5s, transform 0.5s var(--ease); }
.convo__header { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.convo__avatar { width: 40px; height: 40px; border-radius: 13px; background: linear-gradient(160deg, var(--accent), var(--accent-700)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.convo__header strong { display: block; font-size: 0.96rem; }
.convo__header small { color: var(--ink-4); font-size: 0.76rem; }
.convo__badge { margin-left: auto; font-size: 0.68rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); }
.convo__badge--live { background: rgba(255,71,4,0.12); color: var(--accent-orange); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; }
.convo__badge--live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-orange); box-shadow: 0 0 0 0 rgba(255,71,4,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,71,4,0.5); } 70% { box-shadow: 0 0 0 8px rgba(255,71,4,0); } 100% { box-shadow: 0 0 0 0 rgba(255,71,4,0); } }
.convo__body { display: flex; flex-direction: column; gap: 9px; min-height: 330px; }

.bubble { max-width: 84%; padding: 10px 14px; border-radius: 17px; font-size: 0.86rem; line-height: 1.42; opacity: 0; transform: translateY(8px); animation: bubbleIn 0.4s var(--ease) forwards; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
.bubble--in { align-self: flex-start; background: var(--bg-soft); color: var(--ink-2); border-bottom-left-radius: 6px; }
.bubble--out { align-self: flex-end; background: linear-gradient(160deg, var(--accent-600), var(--accent-700)); color: #fff; border-bottom-right-radius: 6px; }
.bubble--tag { align-self: center; background: #fff; box-shadow: var(--sh-sm); color: var(--accent-700); font-weight: 600; font-size: 0.74rem; padding: 7px 13px; border-radius: var(--r-pill); }
.bubble--tag b { color: #1e9b5c; }
.typing { display: inline-flex; gap: 3px; align-items: center; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-4); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

.digest { position: absolute; inset: 18px; background: #fff; border-radius: var(--r-lg); padding: 20px; opacity: 0; transform: translateY(16px) scale(0.98); pointer-events: none; transition: opacity 0.5s, transform 0.5s var(--ease); }
.stage.show-digest .convo { opacity: 0; transform: scale(0.97); }
.stage.show-digest .digest { opacity: 1; transform: translateY(0) scale(1); }
.digest__top { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.digest__top strong { font-size: 1.05rem; font-family: var(--font-head); }
.digest__time { font-size: 0.72rem; color: var(--ink-4); font-weight: 600; }
.digest__row { display: flex; gap: 11px; padding: 12px 12px; border-radius: 14px; align-items: center; margin-bottom: 8px; background: var(--bg-soft); }
.digest__row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-4); flex-shrink: 0; }
.digest__row strong { display: block; font-size: 0.84rem; }
.digest__row small { color: var(--ink-4); font-size: 0.75rem; }
.digest__row--urgent { background: rgba(255,122,92,0.1); }
.digest__row--urgent .dot { background: #ff7a5c; box-shadow: 0 0 0 3px rgba(255,122,92,0.16); }

.floaty { position: absolute; display: flex; align-items: center; gap: 11px; background: #fff; padding: 12px 16px; border-radius: var(--r-md); box-shadow: var(--sh-lg); font-size: 0.8rem; animation: floaty 4s ease-in-out infinite; }
.floaty__dot { width: 10px; height: 10px; border-radius: 50%; background: #34c77b; box-shadow: 0 0 0 4px rgba(52,199,123,0.16); flex-shrink: 0; }
.floaty strong { display: block; font-size: 0.85rem; }
.floaty small { color: var(--ink-4); font-size: 0.72rem; }
.floaty--1 { top: 12%; left: -8%; }
.floaty--2 { bottom: 10%; right: -6%; animation-delay: 1.6s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 540px) { .floaty--1 { left: -2%; } .floaty--2 { right: -2%; } }

/* ---------- COUNTDOWN ---------- */
.countdown { position: relative; z-index: 1; margin-top: var(--sp-4); }
.countdown__card { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-3) var(--sp-4);
  color: #fff; border-radius: var(--r-xl); padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--grad-dark);
  box-shadow: var(--sh-lg); }
.countdown__lead { display: flex; flex-direction: column; gap: 12px; }
.countdown__badge { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; background: rgba(255,255,255,0.08); padding: 6px 12px; border-radius: var(--r-pill); }
.countdown__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-orange); box-shadow: 0 0 0 0 rgba(255,71,4,0.6); animation: pulse 1.8s infinite; }
.countdown__title { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.25rem, 2.6vw, 1.8rem); letter-spacing: -0.02em; color: rgba(255,255,255,0.72); }
.countdown__title strong { color: #fff; font-weight: 700; }
.countdown__timer { display: flex; align-items: flex-start; gap: clamp(6px, 1.4vw, 14px); }
.countdown__unit { display: flex; flex-direction: column; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border-radius: var(--r-md); padding: 12px clamp(10px, 2vw, 18px); min-width: clamp(58px, 9vw, 84px); }
.countdown__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; color: #fff; }
.countdown__label { font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.countdown__sep { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1; color: rgba(255,255,255,0.3); padding-top: 12px; }
.countdown.is-live .countdown__title strong { color: var(--accent-orange); }
@media (max-width: 600px) { .countdown__card { justify-content: center; text-align: center; } .countdown__lead { align-items: center; } .countdown__badge { align-self: center; } }

/* ---------- TRUST STRIP ---------- */
.trust { background: #fff; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-2) var(--sp-5); padding-block: var(--sp-3); }
.trust__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.trust__markers { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-4); }
.trust__markers li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--ink-2); }
.trust__markers li::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }

/* ---------- GRID / PROBLEM CARDS ---------- */
.split { display: grid; gap: var(--sp-4); }
@media (min-width: 900px) { .split { grid-template-columns: 0.9fr 1.05fr; gap: var(--sp-6); align-items: start; } .split__head { position: sticky; top: 100px; } }
.split__body { display: flex; flex-direction: column; }
.prow { display: flex; gap: var(--sp-3); padding: var(--sp-4) 0; border-top: 1px solid var(--line); transition: gap 0.3s var(--ease); }
.prow:last-child { border-bottom: 1px solid var(--line); }
.prow:hover { gap: var(--sp-4); }
.prow__num { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--accent); letter-spacing: 0.02em; padding-top: 5px; min-width: 34px; }
.prow__text h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.prow__text p { color: var(--ink-3); font-size: 1rem; }

.grid--3 { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid--3 { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
.card { background: #fff; border-radius: var(--r-lg); padding: var(--sp-4); box-shadow: inset 0 0 0 1px var(--line), var(--sh-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.card--problem:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line), var(--sh-md); }
.card__index { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--accent); letter-spacing: -0.04em; margin-bottom: var(--sp-2); }
.card--problem h3 { font-size: var(--fs-h3); margin-bottom: 10px; }
.card--problem p { color: var(--ink-3); font-size: 1rem; }

/* ---------- BENTO (benefits) ---------- */
.bento { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 680px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .bento { grid-template-columns: repeat(3, 1fr); } }
.bento__card { border-radius: var(--r-lg); padding: var(--sp-4); min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--sh-sm); transition: transform 0.3s var(--ease); }
.bento__card--vcenter { justify-content: center; gap: var(--sp-2); }
.bento__card:hover { transform: translateY(-4px); }
.bento__stat { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.4rem); letter-spacing: -0.04em; line-height: 1; }
.bento__card p { font-size: 1rem; color: var(--ink-2); font-weight: 500; margin-top: var(--sp-2); }
.bento__card--blue { background: var(--pastel-blue); }
.bento__card--peach { background: var(--pastel-peach); }
.bento__card--mint { background: var(--pastel-mint); }
.bento__card--wide { grid-column: 1 / -1; background: var(--grad-dark); color: #fff; justify-content: flex-start; }
@media (min-width: 940px) { .bento__card--wide { grid-column: span 2; } }
.bento__card--wide p { color: rgba(255,255,255,0.7); }
.bento__eyebrow { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; }
.ba { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-top: auto; padding-top: var(--sp-3); }
.ba__label { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.ba__pile { display: grid; gap: 7px; }
.ba__chip { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09); border-radius: 10px; padding: 9px 13px; font-size: 0.8rem; font-weight: 500; }
.ba__arrow { color: rgba(255,255,255,0.3); font-size: 1.5rem; }
.ba__digest { background: #fff; color: var(--ink); border-radius: 14px; padding: 16px; box-shadow: 0 14px 34px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(4,71,255,0.25); }
.ba__digest strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.ba__digest span { display: block; margin-top: 4px; font-size: 0.82rem; font-weight: 500; color: var(--ink-3); }

/* ---------- SOLUTIONS (sticky intro + scrolling cards) ---------- */
.sol { display: grid; gap: var(--sp-4); }
@media (min-width: 900px) {
  .sol { grid-template-columns: 0.8fr 1.2fr; gap: var(--sp-6); align-items: start; }
  .sol__intro { position: sticky; top: 100px; }
}
.sol__cards { display: flex; flex-direction: column; gap: var(--sp-3); }
.sol-card { background: var(--pastel-blue); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 40px); }
.sol-card__num { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--accent); letter-spacing: 0.04em; }
.sol-card h3 { font-size: 1.45rem; letter-spacing: -0.02em; margin: 10px 0 8px; }
.sol-card__text p { color: var(--ink-2); margin-bottom: var(--sp-3); }
.sol-card__visual .mock-card { max-width: none; }
@keyframes fadeSwap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- VERTICAL SWITCHER ---------- */
.switcher { max-width: 1000px; margin-inline: auto; }
.switcher__tabs { display: flex; justify-content: center; gap: 4px; padding: 5px; background: #fff; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px var(--line), var(--sh-sm); margin: 0 auto var(--sp-4); width: fit-content; max-width: 100%; }
.switcher__tab { padding: 11px 24px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.92rem; color: var(--ink-3); transition: color 0.25s, background 0.25s; white-space: nowrap; }
.switcher__tab.is-active { background: var(--cta); color: #fff; }
.switcher__panel { display: grid; gap: var(--sp-4); align-items: center; padding: var(--sp-5); background: #fff; border-radius: var(--r-xl); box-shadow: inset 0 0 0 1px var(--line), var(--sh-md); }

@media (min-width: 820px) { .switcher__panel { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }
.switcher__copy h3 { font-size: 1.8rem; margin-bottom: var(--sp-2); }
.switcher__copy p { color: var(--ink-3); margin-bottom: var(--sp-3); }
.switcher__list { display: grid; gap: 11px; }
.switcher__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.switcher__list li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='%2300a6fb' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.fade-swap { animation: fadeSwap 0.35s var(--ease); }
.switcher__mock { display: grid; place-items: center; }
.mini-chat { width: 100%; max-width: 340px; background: var(--bg-soft); border-radius: var(--r-lg); padding: 16px; display: flex; flex-direction: column; gap: 8px; min-height: 240px; }
.mini-chat .bubble { animation: none; opacity: 1; transform: none; }

/* ---------- FEATURE PANELS ---------- */
.feature { display: grid; gap: var(--sp-4); align-items: center; margin-bottom: var(--sp-4); background: var(--pastel-blue); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 56px); }
@media (min-width: 860px) { .feature { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } .feature--reverse .feature__copy { order: 2; } }
.feature__copy .pill-tag { display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--accent-700); background: #fff; padding: 6px 13px; border-radius: var(--r-pill); margin-bottom: var(--sp-2); box-shadow: var(--sh-sm); }
.feature__copy h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: var(--sp-2); letter-spacing: -0.035em; }
.feature__copy > p { color: var(--ink-2); font-size: 1.1rem; margin-bottom: var(--sp-3); }
.feature__list { display: grid; gap: 10px; }
.feature__list li { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.feature__list li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.feature__mock { display: grid; place-items: center; }

.mock-card { width: 100%; max-width: 380px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 22px; }
.mock-card__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.mock-card__head strong { font-family: var(--font-head); font-size: 1.05rem; }
.mock-card__head span { font-size: 0.72rem; font-weight: 600; color: var(--accent-700); background: var(--accent-soft); padding: 4px 11px; border-radius: var(--r-pill); }
.mock-row { display: flex; align-items: center; gap: 11px; padding: 12px; border-radius: 14px; background: var(--bg-soft); margin-bottom: 8px; }
.mock-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-4); flex-shrink: 0; }
.mock-row strong { display: block; font-size: 0.85rem; }
.mock-row small { color: var(--ink-4); font-size: 0.75rem; }
.mock-row--urgent { background: rgba(255,122,92,0.1); }
.mock-row--urgent .dot { background: #ff7a5c; box-shadow: 0 0 0 3px rgba(255,122,92,0.16); }
.mock-field { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mock-field:last-child { border-bottom: none; }
.mock-field small { color: var(--ink-4); font-size: 0.78rem; }
.mock-field strong { font-size: 0.9rem; }
.mock-bar { height: 13px; border-radius: var(--r-pill); background: rgba(255,122,92,0.2); overflow: hidden; margin-bottom: 12px; }
.mock-bar span { display: block; height: 100%; background: #34c77b; border-radius: var(--r-pill); }
.mock-legend { display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 600; color: var(--ink-3); }
.mock-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 6px; }
.lg--urgent { background: #ff7a5c; } .lg--ok { background: #34c77b; }

/* ---------- LAUNCH BAND ---------- */
.launch { max-width: 1000px; margin: 0 auto var(--sp-6); }
.launch__steps { display: grid; gap: var(--sp-3); }
@media (min-width: 720px) { .launch__steps { grid-template-columns: repeat(3, 1fr); } }
.launch__step { display: flex; gap: 14px; align-items: flex-start; background: #fff; border-radius: var(--r-lg); padding: 20px; box-shadow: inset 0 0 0 1px var(--line); }
.launch__num { flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-700); font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.launch__step strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.launch__step small { color: var(--ink-3); font-size: 0.86rem; }

/* ---------- PRICING ---------- */
.pricing { display: grid; gap: var(--sp-3); align-items: start; max-width: 1200px; margin-inline: auto; }
@media (min-width: 640px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pricing { grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); align-items: stretch; } }
.price { position: relative; background: #fff; border-radius: var(--r-lg); padding: var(--sp-4); box-shadow: inset 0 0 0 1px var(--line), var(--sh-sm); display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.price:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line), var(--sh-md); }
.price--featured { box-shadow: 0 0 0 2px var(--accent), var(--sh-lg); }
@media (min-width: 1040px) { .price--featured { transform: scale(1.04); z-index: 2; } .price--featured:hover { transform: scale(1.04) translateY(-5px); } }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-sm); white-space: nowrap; }
.price__name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.price__tagline { color: var(--ink-3); font-size: 0.88rem; margin-top: 4px; min-height: 38px; }
.price__amount { display: flex; align-items: baseline; gap: 2px; margin-block: var(--sp-3); }
.price__currency { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.price__value { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price__value--text { font-size: 2.2rem; }
.price__per { font-size: 0.9rem; color: var(--ink-4); }
.price .btn { margin-bottom: var(--sp-3); }
.price__attrs { display: grid; gap: 0; }
.price__attr { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 0.88rem; }
.price__attr:first-child { border-top: none; }
.price__attr-key { color: var(--ink-4); }
.price__attr-val { color: var(--ink); font-weight: 600; text-align: right; }
.price__attr-val--no { color: var(--ink-4); font-weight: 400; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border-radius: var(--r-md); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; flex-shrink: 0; width: 22px; height: 22px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%2300a6fb' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat; transition: transform 0.3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__body { padding: 0 24px 22px; color: var(--ink-3); }
.faq__body p { max-width: 62ch; }

/* ---------- FINAL CTA ---------- */
.cta { padding-block: var(--sp-6); }
.cta__card { max-width: 900px; margin-inline: auto; text-align: center; background: var(--grad-dark); color: #fff; border-radius: var(--r-xl); padding: clamp(2.6rem, 6vw, 5rem) var(--sp-4); position: relative; overflow: hidden; }
.cta__card::before { content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,166,251,0.4), transparent 65%); filter: blur(30px); }
.cta__card h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: var(--sp-2); position: relative; }
.cta__card p { color: rgba(255,255,255,0.72); font-size: 1.18rem; max-width: 46ch; margin: 0 auto var(--sp-4); position: relative; }
.cta__card .btn--primary { background: #fff; color: var(--ink); position: relative; }
.cta__card .btn--primary:hover { background: var(--bg-soft); }
.cta__sub { display: block; margin-top: var(--sp-3); font-size: 0.85rem; color: rgba(255,255,255,0.5); position: relative; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-cream); border-top: 1px solid var(--line); padding-block: var(--sp-6) var(--sp-4); }
.footer__inner { display: grid; gap: var(--sp-4); grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-5); } }
.footer__brand { grid-column: 1 / -1; }
@media (min-width: 720px) { .footer__brand { grid-column: auto; max-width: 300px; } }
.footer__brand .nav__logo { margin-bottom: var(--sp-2); }
.footer__brand p { color: var(--ink-3); font-size: 0.92rem; }
.footer__col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); margin-bottom: var(--sp-2); }
.footer__col a { display: block; color: var(--ink-2); font-size: 0.92rem; padding-block: 6px; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent-700); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-4); }
.footer__legal { display: flex; gap: var(--sp-3); }
.footer__legal a:hover { color: var(--accent-700); }

/* ---------- RESPONSIVE FINE-TUNING ---------- */
@media (max-width: 600px) {
  .container { padding-inline: 18px; }
  /* Vertical switcher tabs: share the row instead of overflowing */
  .switcher__tabs { width: 100%; }
  .switcher__tab { flex: 1 1 0; padding: 11px 6px; font-size: 0.8rem; text-align: center; }
  .switcher__panel { padding: var(--sp-4); }
  /* Bento before/after: stack so nothing clips */
  .ba { grid-template-columns: 1fr; gap: 14px; }
  .ba__arrow { justify-self: center; transform: rotate(90deg); }
}
@media (max-width: 480px) {
  /* Full-width, easy-to-tap hero CTAs */
  .hero__cta { gap: 10px; }
  .hero__cta .btn { width: 100%; }
  /* Proof line reads cleaner stacked */
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero__proof-txt { max-width: none; }
  /* Give big feature panels a touch more breathing room */
  .feature { padding: 24px; }
  .cta__card { padding-inline: 22px; }
}

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- A11Y ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
