/* ═══════════════════════════════════════════════════════════════
   Veros — Landing v5  ·  clean / calm / quick to scan
   New design language (Plus Jakarta Sans, white + turquoise bands,
   centered hero, compact scannable sections). Palette tokens shared
   with the Tweaks panel so Rosa / Azul / Turquesa still toggle.
   ═══════════════════════════════════════════════════════════════ */

/* ---- palette tokens (theme-able) ---- */
:root {
  /* cool, clean neutrals */
  --bg:    #FFFFFF;
  --panel: #F4F8F7;
  --panel-2: #EAF2F0;
  --card:  #FFFFFF;
  --ink:   #122120;
  --ink-2: #46544F;
  --ink-3: #7C8784;
  --line:  #E5ECEA;
  --line-2:#EEF3F1;

  /* accent (Rosa default — overridden by data-palette) */
  --forest:   #241019;
  --accent:   #C42E6E;
  --accent-d: #A0245A;
  --accent-2: #FAD9E7;
  --tint:     #FBE7F0;
  --tint-line:#F2BBD3;
  --tint-ink: #8E1F4C;
  --pulse: 196,46,110;

  /* warm orange — "notes" accent (palette-independent, like the real Veros) */
  --orange:      #EF8A3C;
  --orange-deep: #D26F22;
  --orange-soft: #FCEBD8;
  --orange-line: #F3CFA6;
  --warm: #FF8A5E;

  --maxw: 1140px;
  --r:   18px;   /* base radius */
  --r-l: 28px;   /* large radius */
  --shadow: 16,72,80;
}
html[data-palette="azul"] {
  --forest:#0F1E3A; --accent:#2D63D8; --accent-d:#1F4DB0; --accent-2:#DCE6FB;
  --tint:#EAF0FD; --tint-line:#C6D8F6; --tint-ink:#1B3F8E; --pulse:45,99,216;
}
html[data-palette="turquesa"] {
  --forest:#0C2C31; --accent:#13A2B6; --accent-d:#0E8090; --accent-2:#D6F0F4;
  --tint:#E3F4F5; --tint-line:#B6E2E8; --tint-ink:#0C6976; --pulse:19,162,182;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body { font-size: 17px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; color: inherit; }
.mono { font-family: "Geist Mono", ui-monospace, monospace; }
::selection { background: var(--accent); color: #fff; }

/* ---- layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }
.center { text-align: center; }
.eyebrow { font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-d); display: inline-flex; align-items: center; gap: 9px; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.center .eyebrow { justify-content: center; }

/* type scale */
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; font-weight: 800; line-height: 1.04; }
.display { font-size: clamp(44px, 6.4vw, 86px); letter-spacing: -0.04em; }
.h-sec   { font-size: clamp(34px, 4.4vw, 56px); }
.lead    { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); line-height: 1.55; font-weight: 400; }
.accent  { color: var(--accent); }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 24px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .12s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -14px var(--accent); }
.btn.primary:hover { box-shadow: 0 16px 34px -14px var(--accent); }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--ink); background: var(--panel); }
.btn.dark { background: var(--ink); color: #fff; }
.btn.sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn.block { width: 100%; }

/* ---- nav ---- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-2); transition: box-shadow .25s ease; }
.nav.scrolled { box-shadow: 0 10px 30px -26px rgba(var(--shadow),.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-size: 26px; font-weight: 800; letter-spacing: -0.04em; }
.logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 880px) { .nav-links { display: none; } }
@media (max-width: 520px) { .nav-cta .ghost { display: none; } }

/* ═══════════ HERO (centered, product showcased below) ═══════════ */
.hero { padding: 72px 0 56px; text-align: center; }
.hero .pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  background: var(--tint); color: var(--tint-ink); border: 1px solid var(--tint-line);
  font-size: 13px; font-weight: 600; }
.hero .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(var(--pulse),.5); animation: pulse 1.8s infinite; }
.hero h1 { margin: 26px auto 0; max-width: 14ch; }
.hero .lead { margin: 22px auto 0; max-width: 600px; }
.hero-ctas { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-trust { margin-top: 22px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-3); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .ck { color: var(--accent-d); font-weight: 800; }

/* hand-drawn orange underline under the highlighted hero word */
.uline { position: relative; display: inline-block; }
.uline > svg { position: absolute; left: -2%; width: 104%; bottom: -0.14em; height: 0.3em; overflow: visible; pointer-events: none; }
.uline > svg path { stroke: var(--orange); stroke-width: 8; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 460; stroke-dashoffset: 460; animation: udraw 1.1s .5s cubic-bezier(.6,.1,.3,1) forwards; }
@keyframes udraw { to { stroke-dashoffset: 0; } }
/* orange "note" callout */
.note-orange { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 9px 16px 9px 14px;
  background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-deep);
  border-radius: 14px; font-size: 14.5px; font-weight: 600; }
.note-orange .nd { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .uline > svg path { animation: none; stroke-dashoffset: 0; } }

/* product showcase frame */
.showcase { margin-top: 52px; position: relative; }
.showcase-frame { position: relative; border-radius: 32px; padding: clamp(20px, 4vw, 48px);
  background: radial-gradient(120% 130% at 50% -10%, var(--tint) 0%, var(--panel) 60%, #fff 100%);
  border: 1px solid var(--line); }
.showcase-frame::after { content: ""; position: absolute; inset: 0; border-radius: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7); pointer-events: none; }

/* ═══════════ sections ═══════════ */
.section { padding: 92px 0; }
.section.tight { padding: 72px 0; }
.band { background: var(--panel); }
.band-line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.sec-head .lead { margin-top: 16px; }

/* ---- problem (calm stat moment) ---- */
.problem-wrap { text-align: center; max-width: 880px; margin: 0 auto; }
.problem-stat { font-size: clamp(64px, 11vw, 150px); font-weight: 800; letter-spacing: -0.05em; line-height: 0.92; }
.problem-stat em { font-style: normal; color: var(--accent); }
.problem-sub { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); margin: 22px auto 0; max-width: 660px; }
.problem-belief { display: inline-block; margin-top: 26px; padding: 12px 22px; border-radius: 999px;
  background: var(--tint); color: var(--tint-ink); border: 1px solid var(--tint-line); font-weight: 600; font-size: 16px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; text-align: left; }
@media (max-width: 760px) { .problem-grid { grid-template-columns: 1fr; } }
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.pcard .pn { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-d); }
.pcard .ph { font-size: 20px; font-weight: 700; margin-top: 12px; letter-spacing: -0.02em; }
.pcard p { margin: 8px 0 0; color: var(--ink-2); font-size: 15px; }

/* ---- features (compact, scannable row) ---- */
/* features (v4-style spacious 2-up triptych) */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 820px) { .features { grid-template-columns: 1fr; } }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 24px;
  display: flex; flex-direction: column; gap: 12px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.fcard:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -32px rgba(var(--shadow),.4); border-color: var(--tint-line); }
.fchip { width: 40px; height: 40px; border-radius: 12px; background: var(--tint); color: var(--accent-d);
  display: grid; place-items: center; }
.fchip svg { width: 20px; height: 20px; }
.fcard .fnum { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; }
.fcard h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.fcard p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.fcard .ftag { padding-top: 6px; font-family: "Geist Mono", monospace; font-size: 11px;
  letter-spacing: 0.06em; color: var(--accent-d); }
.fcard .fviz { margin-top: auto; }

/* per-feature mini visual mockups (v4-style, replaces text-heavy cards) */
.fviz { margin-top: 4px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 13px; }
.fviz .row { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-2); padding: 5px 0; line-height: 1.35; }
.fviz .row .d { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fviz .tag { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-d); display: inline-flex; align-items: center; gap: 7px; margin-bottom: 4px; }
.fviz .tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
/* evidence source rows */
.fviz .src { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; padding: 8px 10px; border-radius: 9px;
  background: var(--card); border: 1px solid var(--line); margin-top: 7px; font-size: 12px; color: var(--ink-2); }
.fviz .src:first-of-type { margin-top: 0; }
.fviz .src.hl { border-color: var(--tint-line); background: var(--tint); color: var(--tint-ink); }
.fviz .src .org { font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; color: var(--accent-d); white-space: nowrap; }
/* patient rows */
.fviz .pt { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; padding: 7px 0; }
.fviz .pt .av { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.fviz .pt .nm { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.fviz .pt .mt { font-size: 11px; color: var(--ink-3); }
.fviz .pt .tm { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--accent-d); }
/* report lines */
.fviz .ln { height: 7px; border-radius: 4px; background: var(--line); margin-top: 8px; }
.fviz .ln:first-child { margin-top: 0; }
.fviz .ln.s1 { width: 86%; } .fviz .ln.s2 { width: 96%; } .fviz .ln.s3 { width: 72%; } .fviz .ln.s4 { width: 90%; }
.fviz .sign { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.fviz .sign .nm { font-size: 12px; font-weight: 700; }
.fviz .sign .ck { font-family: "Geist Mono", monospace; font-size: 10.5px; color: var(--accent-d); }
.fcard .ph { font-size: 23px; font-weight: 700; letter-spacing: -0.022em; line-height: 1.12; }
.fcard .ph em { font-style: normal; color: var(--accent); }

/* ---- how it works (horizontal stepper) ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 22px; } }
.step { position: relative; }
.step .sn { width: 52px; height: 52px; border-radius: 999px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.step h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin: 18px 0 8px; }
.step p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 26px; left: 64px; right: -14px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--tint-line) 0 7px, transparent 7px 14px); }
@media (max-width: 820px) { .step::after { display: none; } }

/* ---- privacy / trust ---- */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card, .trust-grid .badges { height: 100%; }
.trust-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 36px; }
.trust-card h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 22px; }
.tlist { display: flex; flex-direction: column; gap: 16px; }
.tlist .ti { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.tlist .tk { width: 28px; height: 28px; border-radius: 9px; background: var(--tint); color: var(--accent-d);
  display: grid; place-items: center; font-size: 14px; margin-top: 1px; }
.tlist .tv { font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.tlist .tv strong { color: var(--ink); font-weight: 700; }
.badges { background: var(--forest); border-radius: var(--r-l); padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.badges .blabel { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.badge-item { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; }
.badge-item .nm { color: #fff; font-weight: 600; font-size: 14.5px; }
.badge-item .st { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--tint-line); display: inline-flex; align-items: center; gap: 6px; }
.badge-item .st i { width: 7px; height: 7px; border-radius: 50%; background: var(--tint-line); }
.trust-line { margin-top: 22px; text-align: center; padding: 18px 24px; border: 1px dashed var(--line);
  border-radius: 999px; background: var(--card); color: var(--ink-2); font-size: 15.5px; font-weight: 500; }

/* ---- pricing ---- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pricing { grid-template-columns: 1fr; } }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 4px; transition: transform .2s ease, box-shadow .2s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -32px rgba(var(--shadow),.4); }
.plan.featured { background: var(--forest); border-color: var(--forest); }
.plan .pn { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.plan.featured .pn { color: var(--tint-line); }
.plan .pp { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; margin-top: 10px; }
.plan.featured .pp { color: #fff; }
.plan .pu { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.plan.featured .pu { color: var(--tint-line); }
.plan .ps { font-size: 14px; color: var(--ink-3); margin-top: 8px; }
.plan.featured .ps { color: rgba(255,255,255,.7); }
.plan .ptag { align-self: flex-start; margin-bottom: 6px; font-family: "Geist Mono", monospace; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--tint);
  border: 1px solid var(--tint-line); padding: 3px 9px; border-radius: 999px; }
.plan-custom { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 24px 30px; }
.plan-custom .pcn { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.plan-custom .pcp { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin-top: 4px; }
.plan-custom .pcp em { font-style: normal; color: var(--accent); }
.plan-note { margin-top: 16px; text-align: center; padding: 20px 28px; background: var(--tint);
  border: 1px solid var(--tint-line); border-radius: var(--r-l); color: var(--tint-ink); font-weight: 500; font-size: 16px; }

/* ---- register form ---- */
.reg-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { .reg-grid { grid-template-columns: 1fr; gap: 32px; } }
.reg-aside h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin-top: 14px; }
.reg-aside .lead { margin-top: 16px; max-width: 440px; }
.reg-points { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.reg-points .rp { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 15px; color: var(--ink-2); }
.reg-points .ck { color: var(--accent); font-weight: 800; }
.reg-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 34px;
  box-shadow: 0 30px 70px -52px rgba(var(--shadow),.5); }
@media (max-width: 560px) { .reg-card { padding: 24px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.fg:first-child { margin-top: 0; }
.fg label { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.fg label .req { color: var(--accent); }
.field { background: var(--panel); border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 14px;
  font-size: 15px; outline: none; width: 100%; transition: border-color .15s, box-shadow .15s, background .15s; }
.field:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-2); }
textarea.field { resize: vertical; min-height: 82px; line-height: 1.5; }
select.field { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%237C8784' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-error { color: #C0203F; font-size: 12px; margin-top: 6px; display: none; }
.fg.invalid .field { border-color: #C0203F; }
.fg.invalid .form-error { display: block; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.consent a { color: var(--accent-d); border-bottom: 1px solid var(--line); }
.reg-submit { margin-top: 20px; }
.reg-fine { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); text-align: center; }
.reg-success { display: none; text-align: center; padding: 16px 8px; }
.reg-success.show { display: block; animation: fadeUp .4s ease; }
.reg-card.done .reg-form { display: none; }
.reg-success .tick { width: 64px; height: 64px; border-radius: 999px; background: var(--tint); color: var(--accent-d);
  display: grid; place-items: center; font-size: 28px; margin: 0 auto 18px; }
.reg-success h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.reg-success p { color: var(--ink-2); font-size: 15px; max-width: 360px; margin: 0 auto; }
.reg-success .summary { margin-top: 20px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; text-align: left; font-size: 13.5px; color: var(--ink-2); }
.reg-success .summary .sk { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* ---- faq ---- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; transition: color .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; padding: 0 0 22px; margin: 0; max-width: 680px; }

/* ---- closing CTA (turquoise band) ---- */
.cta { background: var(--forest); color: #fff; text-align: center; }
.cta h2 { font-size: clamp(40px, 5.4vw, 72px); font-weight: 800; letter-spacing: -0.035em; max-width: 16ch; margin: 0 auto; }
.cta h2 em { font-style: normal; color: var(--tint-line); }
.cta .lead { color: rgba(255,255,255,.78); margin: 18px auto 0; max-width: 560px; }
.cta-ctas { margin-top: 28px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.cta .btn.ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.cta .fine { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.6); }

/* ---- footer ---- */
footer { padding: 64px 0 40px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h4 { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 14px; font-weight: 500; }
.foot-grid a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--ink-2); }
.foot-grid a:hover { color: var(--ink); }
.foot-brand .logo { font-size: 32px; }
.foot-brand p { color: var(--ink-3); font-size: 14px; max-width: 280px; margin-top: 10px; }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--ink-3); }

/* ═══════════ animated product demo (reused, restyled) ═══════════ */
.preview { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 16px; max-width: 720px; margin: 0 auto; box-shadow: 0 30px 64px -42px rgba(var(--shadow),.5); }
.preview::before { content: ""; position: absolute; inset: -1px -1px auto -1px; height: 36px;
  background: linear-gradient(var(--panel), var(--card)); border-radius: 20px 20px 0 0; border-bottom: 1px solid var(--line); }
.preview-dots { position: absolute; top: 13px; left: 16px; display: flex; gap: 6px; z-index: 1; }
.preview-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--panel-2); }
.preview-dots span:nth-child(1) { background: var(--accent); }
.preview-dots span:nth-child(2) { background: var(--tint-line); }
.preview-title { position: absolute; top: 9px; left: 0; right: 0; text-align: center; font-size: 12px; color: var(--ink-3); z-index: 1; }
.preview-inner { margin-top: 28px; border-radius: 14px; overflow: hidden; }

.demo { position: relative; min-height: 320px; }
.demo .stage { position: absolute; inset: 0; opacity: 0; transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease; pointer-events: none; }
.demo .stage.active { opacity: 1; transform: none; pointer-events: auto; }

/* STAGE 1 — dark recording screen, mirrors the real Veros app */
.rec-screen { background: #14110F; border-radius: 14px; padding: 26px 22px; min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; color: #F4EFE6; }
.rec-screen .rlabel { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.rec-screen .rlabel i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse-o 1.6s infinite; }
@keyframes pulse-o { 0% { box-shadow: 0 0 0 0 rgba(239,138,60,.55); } 70% { box-shadow: 0 0 0 12px rgba(239,138,60,0); } 100% { box-shadow: 0 0 0 0 rgba(239,138,60,0); } }
.rec-screen .rname { font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.rec-screen .rmeta { font-size: 12.5px; color: rgba(244,239,230,.6); margin-top: 3px; }
.rec-mic { width: 92px; height: 92px; border-radius: 999px; background: var(--accent); display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(var(--pulse),.5); animation: pulse 1.8s infinite; }
.rec-mic svg { width: 34px; height: 34px; color: #fff; }
.rec-timer { font-family: "Geist Mono", monospace; font-size: 38px; font-weight: 300; letter-spacing: 0.04em; }
.rec-screen .waveform { height: 30px; width: 100%; max-width: 360px; }
.rec-screen .waveform span { background: rgba(244,239,230,.4); }
.rec-screen .waveform span:nth-child(odd) { background: var(--accent); opacity: .9; }
.rec-actions { display: flex; gap: 10px; }
.rec-actions .rbtn { height: 38px; padding: 0 16px; border-radius: 999px; font-size: 13px; font-weight: 700; border: 1px solid;
  display: inline-flex; align-items: center; gap: 7px; }
.rec-actions .rbtn.ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: #F4EFE6; }
.rec-actions .rbtn.go { background: var(--orange); border-color: var(--orange); color: #2A1A08; }

.scribe-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.scribe-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.scribe-head .nm { font-weight: 700; font-size: 14.5px; }
.scribe-head .meta { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--ink-3); }
.rec-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(var(--pulse),.6); animation: pulse 1.6s infinite; }
.rec-tag { font-family: "Geist Mono", monospace; font-size: 12px; color: var(--accent); white-space: nowrap; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(var(--pulse),.55); } 70% { box-shadow: 0 0 0 14px rgba(var(--pulse),0); } 100% { box-shadow: 0 0 0 0 rgba(var(--pulse),0); } }
.waveform { height: 36px; display: flex; align-items: end; gap: 3px; margin-top: 14px; }
.waveform span { width: 3px; background: var(--forest); border-radius: 2px; opacity: 0.5; animation: wave 1.2s ease-in-out infinite; }
.waveform span:nth-child(odd) { background: var(--accent); opacity: 0.85; }
@keyframes wave { 0%, 100% { height: 6px; } 50% { height: 28px; } }
.scribe-transcript { margin-top: 16px; font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.scribe-transcript .ts { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--ink-3); margin-right: 6px; }
.tline { opacity: 0; transform: translateY(5px); transition: opacity .45s ease, transform .45s ease; padding: 3px 0; }
.tline.show { opacity: 1; transform: none; }
.tline .who { font-weight: 700; color: var(--ink); }

.proc-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.proc-head { display: flex; align-items: center; gap: 12px; }
.proc-spin { width: 32px; height: 32px; border-radius: 999px; border: 3px solid var(--panel-2); border-top-color: var(--accent); animation: spin 1s linear infinite; flex-shrink: 0; }
.proc-head .nm { font-weight: 700; font-size: 14.5px; }
.proc-head .meta { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--ink-3); }
@keyframes spin { to { transform: rotate(360deg); } }
.pchecks { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.pcheck { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-3);
  background: var(--card); border: 1px solid var(--line); border-radius: 9px; padding: 8px 11px; transition: color .3s ease; }
.pcheck .box { width: 18px; height: 18px; border-radius: 999px; background: var(--panel-2); display: grid; place-items: center; flex-shrink: 0; color: #fff; transition: background .3s ease; }
.pcheck .box svg { opacity: 0; transition: opacity .3s ease; }
.pcheck.done { color: var(--ink); }
.pcheck.done .box { background: var(--accent); }
.pcheck.done .box svg { opacity: 1; }
.proc-note { margin-top: 12px; display: flex; gap: 8px; font-size: 12px; color: var(--accent-d);
  background: var(--accent-2); border: 1px solid var(--tint-line); border-radius: 10px; padding: 9px 11px; line-height: 1.45; }

.soap-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.soap-header { display: flex; align-items: center; justify-content: space-between; }
.soap-header .nm { font-weight: 700; font-size: 14.5px; }
.soap-header .badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: var(--tint);
  color: var(--accent-d); border-radius: 999px; font-size: 11px; font-weight: 600; }
.soap-grid4 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.scell { background: var(--panel); border-radius: 10px; padding: 10px 12px; opacity: 0; transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease; }
.scell.show { opacity: 1; transform: none; }
.scell .k { display: flex; align-items: center; gap: 6px; font-family: "Geist Mono", monospace; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.scell .k i { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.scell .v { font-size: 11px; color: var(--ink-2); margin-top: 5px; line-height: 1.4; }
.soap-foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.soap-foot .nm { font-weight: 700; font-size: 13px; }
.soap-foot .clk { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--accent); }

/* floating chips flanking the showcase */
.floater { position: absolute; z-index: 5; background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 42px -22px rgba(var(--shadow),.45); padding: 11px 15px; display: flex; align-items: center; gap: 11px; font-size: 13.5px; }
.floater .ic { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: var(--tint); color: var(--accent-d); font-weight: 700; }
.floater .ic.ok { background: var(--accent); color: #fff; }
.floater .ft { font-weight: 700; }
.floater .fs { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--ink-3); }
.floater.left { left: -10px; top: 40px; animation: bob 4.6s ease-in-out infinite; }
.floater.right { right: -10px; bottom: 48px; opacity: 0; transform: translateY(10px) scale(.96); transition: opacity .5s ease, transform .5s ease; }
.floater.right.show { opacity: 1; transform: none; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 1080px) { .floater { display: none; } }

/* ---- scroll reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.65,.25,1), transform .7s cubic-bezier(.2,.65,.25,1); }
  .rv.in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .floater.left { animation: none; }
  .waveform span, .rec-dot, .proc-spin, .hero .pill .dot { animation: none !important; }
}

/* ═══════════ orange details — warm secondary accent, palette-independent ═══════════ */
/* every section eyebrow gets a warm orange dot */
.eyebrow::before { background: var(--orange); }
.eyebrow { color: var(--orange-deep); }
/* checkmarks warm up */
.hero-trust .ck, .reg-points .ck { color: var(--orange-deep); }
/* "popular" pricing tag → orange */
.plan .ptag { color: var(--orange-deep); background: var(--orange-soft); border-color: var(--orange-line); }
/* FAQ +/− markers → orange */
.faq-item summary::after { color: var(--orange); }
.faq-item summary:hover { color: var(--orange-deep); }
/* feature number labels carry an orange tick */
.fcard .fnum::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); margin-right: 8px; vertical-align: middle; }
/* second how-it-works step badge → orange (rhythm) */
.step:nth-child(2) .sn { background: var(--orange); }
.step:nth-child(2)::after { background: repeating-linear-gradient(90deg, var(--orange-line) 0 7px, transparent 7px 14px); }
/* problem belief pill → warm */
.problem-belief { background: var(--orange-soft); color: var(--orange-deep); border-color: var(--orange-line); }
/* trust list key icons alternate to orange */
.tlist .ti:nth-child(odd) .tk { background: var(--orange-soft); color: var(--orange-deep); }
/* dashed trust line → warm */
.trust-line { border-color: var(--orange-line); color: var(--orange-deep); }
/* right-hand floating chip "ready" icon → orange check */
.floater .ic.ok { background: var(--orange); color: #2A1A08; }
/* closing CTA highlight → orange */
.cta h2 em { color: var(--orange); }
/* nav + footer logo dot keeps the warm spark */
.foot-brand .logo .dot { color: var(--orange); }

/* ═══════════ demo: 4-tab product tour ═══════════ */
.demo-tabs { display: flex; gap: 6px; padding: 0 2px 12px; margin-bottom: 14px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.dtab { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3); padding: 7px 12px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  user-select: none; transition: color .2s ease, background .2s ease, border-color .2s ease; white-space: nowrap; }
.dtab:hover { color: var(--ink); }
.dtab.active { color: var(--accent-d); background: var(--tint); border-color: var(--tint-line); }
.demo { min-height: 332px; }

.dr { opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease; }
.dr.show { opacity: 1; transform: none; }

.ev-card, .pt-card, .rp-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
/* evidence */
.ev-q { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--ink); background: var(--panel);
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; line-height: 1.4; }
.ev-q svg { width: 16px; height: 16px; color: var(--accent-d); flex-shrink: 0; margin-top: 1px; }
.ev-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.ev-list .src { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: center; padding: 11px 12px;
  border-radius: 10px; background: var(--panel); border: 1px solid var(--line); font-size: 12.5px; color: var(--ink-2); }
.ev-list .src.hl { background: var(--tint); border-color: var(--tint-line); color: var(--tint-ink); }
.ev-list .src .org { font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 600; color: var(--accent-d); white-space: nowrap; }
.ev-note { margin-top: 12px; font-family: "Geist Mono", monospace; font-size: 11px; color: var(--orange-deep); display: flex; align-items: center; gap: 7px; }
.ev-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
/* patient profile */
.pt-top { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; }
.pt-top .av { width: 42px; height: 42px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.pt-top .nm { font-weight: 700; font-size: 15px; }
.pt-top .mt { font-size: 12px; color: var(--ink-3); }
.pt-top .tm { font-family: "Geist Mono", monospace; font-size: 12px; color: var(--accent-d); }
.pt-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.pt-tags span { font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: var(--tint); color: var(--tint-ink); border: 1px solid var(--tint-line); white-space: nowrap; }
.pt-rows { margin-top: 8px; display: flex; flex-direction: column; }
.pt-rows .pr { display: grid; grid-template-columns: 100px 1fr; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line-2); font-size: 13px; align-items: baseline; }
.pt-rows .pr .k { font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.pt-rows .pr .v { color: var(--ink-2); }
/* reports */
.rp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.rp-head .nm { font-weight: 700; font-size: 15px; }
.rp-head .badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: var(--tint); color: var(--accent-d); border-radius: 999px; font-size: 11px; font-weight: 600; }
.rp-doc { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.rp-doc .rt { font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 10px; }
.rp-doc .ln { height: 8px; border-radius: 4px; background: var(--line); margin-top: 9px; }
.rp-doc .ln.s1 { width: 92%; } .rp-doc .ln.s2 { width: 99%; } .rp-doc .ln.s3 { width: 78%; } .rp-doc .ln.s4 { width: 88%; }
.rp-sign { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.rp-sign .nm { font-weight: 700; font-size: 13px; }
.rp-sign .ck { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--accent-d); }
