/* ═══════════════════════════════════════════════════════════
   VERBAWAVE — shared stylesheet
   Design tokens as CSS custom properties · BEM-ish naming
   1-level nesting max · mobile-first breakpoints restored
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #161310;
  --ink-2: #211c17;
  --ink-3: #2c251e;
  --line: rgba(244, 236, 224, 0.10);
  --line-2: rgba(244, 236, 224, 0.18);
  --line-3: rgba(244, 236, 224, 0.16);
  --cream: #f4ece0;
  --muted: #b3a595;
  --muted-2: #8c8073;
  --muted-3: #9c9082;
  --accent: #d9ad63;
  --accent-rgb: 217, 173, 99;
  --accent-hi: #e8c07f;
  --accent-2: #e8705a;
  --accent-2-rgb: 232, 112, 90;
  --num-gold: rgba(217, 173, 99, 0.65); /* section numerals — clearly gold, still secondary to the eyebrow beside them */

  --font-display: 'Fraunces', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  --container-max: 1160px;
  --container-pad: 24px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p, ul { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #1a1208; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.vw-body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  position: relative;
}

/* ═══ layout ═══ */
.vw-wrap { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.vw-wrap--narrow { max-width: 760px; }
.vw-section { padding: 96px 0; }
.vw-section--tight { padding: 0 0 96px; }
.vw-section--alt { background: var(--ink-2); }
@media (max-width: 720px) {
  .vw-section { padding: 64px 0; }
  .vw-section--tight { padding: 0 0 64px; }
}

/* ═══ nav ═══ */
.vw-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22, 19, 16, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.vw-nav.is-scrolled { border-bottom-color: var(--line); background: rgba(22, 19, 16, 0.92); }
.vw-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; position: relative; }
.vw-logo { font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: -.01em; display: inline-flex; align-items: baseline; }
.vw-logo--sm { font-size: 17px; }
.vw-logo em { font-style: italic; }
.vw-logo .wave { color: var(--accent); }
.vw-nav__links { display: flex; align-items: center; gap: 34px; }
.vw-nav__link { font-size: 15px; color: var(--muted); transition: color .2s ease; }
.vw-nav__link:hover { color: var(--cream); }
.vw-nav__cta {
  padding: 10px 20px; border-radius: var(--radius-pill); font-size: 14.5px; font-weight: 600;
  background: var(--accent); color: #1a1208; transition: transform .25s ease, background .25s ease;
}
.vw-nav__cta:hover { background: var(--accent-hi); transform: translateY(-1px); }
.vw-nav__menu-btn {
  display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-2);
  background: none; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
}
.vw-nav__menu-btn span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--cream); transition: transform .3s ease; }
.vw-nav__panel {
  position: absolute; top: 72px; left: 0; right: 0;
  background: rgba(22, 19, 16, 0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--container-pad) 24px;
  display: none; flex-direction: column;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.vw-nav__panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.vw-nav__panel a { padding: 15px 2px; font-size: 17px; color: var(--cream); border-bottom: 1px solid var(--line); }
.vw-nav__panel .vw-nav__cta { margin-top: 14px; padding: 14px; text-align: center; border-bottom: none; }

@media (max-width: 720px) {
  .vw-nav__links { display: none; }
  .vw-nav__menu-btn { display: inline-flex; }
  .vw-nav__panel { display: flex; }
}

/* ═══ hero ═══ */
.vw-hero { padding: 78px 0 40px; position: relative; }
.vw-hero__grid { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.vw-hero__copy { flex: 1 1 480px; min-width: 0; }
.vw-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 10px;
}
.vw-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .7; }
.vw-hero__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(2.9rem, 6.4vw, 5rem);
  line-height: 1; letter-spacing: -.028em; margin: 22px 0 0; text-wrap: balance; color: var(--cream);
}
.vw-hero__title em { font-style: italic; color: var(--accent); }
.vw-hero__sub { color: var(--muted); font-size: 19px; line-height: 1.6; margin: 26px 0 0; max-width: 46ch; }
.vw-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.vw-hero__note { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--muted-2); font-size: 14px; }
.vw-hero__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }

.vw-hero__visual { flex: 1 1 400px; min-width: 0; position: relative; }
.vw-hero__glow {
  position: absolute; inset: -18% -14% -22% -10%; z-index: 0;
  background:
    radial-gradient(closest-side, rgba(var(--accent-2-rgb), .42), transparent 70%) 22% 32% / 62% 62% no-repeat,
    radial-gradient(closest-side, rgba(var(--accent-rgb), .40), transparent 70%) 78% 68% / 64% 64% no-repeat;
  filter: blur(34px); opacity: .5; animation: vw-drift 16s ease-in-out infinite alternate;
}
.vw-composer {
  position: relative; z-index: 1; margin: 0;
  background: linear-gradient(160deg, rgba(33,28,23,.92), rgba(22,19,16,.92));
  border: 1px solid var(--line-2); border-radius: 20px; padding: 30px 30px 26px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.vw-composer__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.vw-composer__for { font-size: 13px; color: var(--muted); }
.vw-composer__for b { color: var(--cream); font-weight: 600; }
.vw-composer__live { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); line-height: 1; margin-right: -.14em; }
.vw-composer__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: vw-pulse 2s infinite; flex-shrink: 0; }
.vw-composer__text {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.42; letter-spacing: -.01em; min-height: 7.4em; padding: 24px 0 6px; margin: 0; color: var(--cream);
}
.vw-composer__cursor { display: inline-block; width: 2px; height: 1.05em; background: var(--accent); margin-left: 2px; transform: translateY(3px); animation: vw-blink 1s step-end infinite; }
.vw-composer__tags { display: flex; flex-wrap: wrap; gap: 8px; min-height: 34px; padding-bottom: 14px; opacity: 0; transform: translateY(4px); transition: opacity .45s ease, transform .45s ease; }
.vw-composer__tags.is-visible { opacity: 1; transform: none; }
.vw-tag { font-size: 12.5px; padding: 5px 11px; border-radius: var(--radius-pill); border: 1px solid rgba(244,236,224,.14); color: var(--muted-3); white-space: nowrap; }
.vw-composer__foot { display: flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted-2); }

/* ═══ buttons ═══ */
.vw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 28px; border-radius: var(--radius-pill); font-size: 16px; font-weight: 600;
  white-space: nowrap; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
  cursor: pointer; border: none; font-family: inherit;
}
.vw-btn--gold { background: var(--accent); color: #1a1208; }
.vw-btn--gold:hover { background: var(--accent-hi); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(var(--accent-rgb), .5); }
.vw-btn--outline { border: 1px solid var(--line-2); color: var(--cream); background: transparent; }
.vw-btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.vw-btn--block { width: 100%; box-sizing: border-box; }
.vw-btn--sm { padding: 10px 18px; font-size: 14.5px; }

/* ═══ editorial band ═══ */
.vw-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0 58px; text-align: center; }
.vw-band__line {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem); line-height: 1.22; letter-spacing: -.012em;
  max-width: 26ch; margin: 0 auto; min-height: 2.5em; color: var(--cream);
}
.vw-band__line em { color: var(--accent); font-style: italic; }
.vw-band__cursor { display: inline-block; width: 2px; height: .95em; background: var(--accent); margin-left: 3px; transform: translateY(3px); animation: vw-blink 1s step-end infinite; opacity: 0; transition: opacity .5s ease; }
.vw-band__cursor.is-visible { opacity: 1; }
.vw-band__sub {
  margin: 20px 0 0; font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2);
  opacity: 0; transform: translateY(8px); transition: opacity .65s ease, transform .65s ease;
}
.vw-band__sub.is-visible { opacity: 1; transform: none; }

/* ═══ values grid ═══ */
.vw-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: 38px; align-items: start; }
.vw-value { padding-top: 24px; border-top: 1px solid var(--line-3); }
.vw-value__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; line-height: 1.12; margin: 16px 0 12px; letter-spacing: -.01em; color: var(--cream); }
.vw-value__desc { color: var(--muted); font-size: 16.5px; margin: 0; }

/* ═══ problem statement ═══ */
.vw-problem__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 4.2vw, 2.7rem); line-height: 1.12; letter-spacing: -.015em; margin: 0; text-wrap: balance; color: var(--cream); max-width: 22ch; }
.vw-problem__body { color: var(--muted); margin: 20px 0 0; font-size: 19px; line-height: 1.6; max-width: 56ch; }

/* ═══ founder note ═══ */
.vw-founder-note {
  max-width: 680px; border-left: 2px solid var(--accent); padding: 6px 0 6px 28px;
}
.vw-founder-note p {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.55; letter-spacing: -.005em; color: var(--cream);
}

/* ═══ section headers ═══ */
.vw-sec-head { max-width: 680px; margin-bottom: 52px; }
.vw-sec-head__num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 500; color: var(--num-gold); line-height: 1; }
.vw-sec-head__row { display: flex; align-items: baseline; gap: 18px; }
.vw-sec-head__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.08; letter-spacing: -.015em; margin: 18px 0 0; text-wrap: balance; color: var(--cream); }
.vw-sec-head__sub { color: var(--muted); margin: 16px 0 0; font-size: 18px; max-width: 52ch; }
.vw-sec-head--flex { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 32px; max-width: 880px; }

/* ═══ before/after ═══ */
.vw-compare { display: flex; flex-wrap: wrap; gap: 24px; max-width: 980px; }
.vw-compare__card { flex: 1 1 340px; min-width: 0; border: 1px solid var(--line); border-radius: 20px; padding: 30px; background: var(--ink-2); display: flex; flex-direction: column; }
.vw-compare__card--after { border-color: rgba(var(--accent-rgb), .5); background: linear-gradient(180deg, rgba(var(--accent-rgb), .07), rgba(33,28,23,1) 48%); }
.vw-badge { align-self: flex-start; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid var(--line-2); color: var(--muted); }
.vw-badge--filled { font-weight: 600; background: var(--accent); border-color: var(--accent); color: #1a1208; }
.vw-compare__text { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.5; letter-spacing: -.01em; margin: 22px 0 0; color: var(--muted); }
.vw-compare__card--after .vw-compare__text { color: var(--cream); }
.vw-compare__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.vw-tag--faint { border-color: var(--line); color: var(--muted-2); }
.vw-compare__caption { margin-top: auto; padding-top: 22px; font-size: 13.5px; color: var(--muted-2); }
.vw-compare__card--after .vw-compare__caption { color: var(--muted); }

/* ═══ examples gallery ═══ */
.vw-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 24px; }
.vw-example { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--ink); display: flex; flex-direction: column; }
.vw-example__body { padding: 28px 26px 26px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.vw-example__label { align-self: flex-start; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 10px; }
.vw-example__label::before { content: ""; width: 22px; height: 1px; background: var(--accent); opacity: .7; }
.vw-example__text { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; color: var(--cream); margin: 0; }
.vw-example__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 8px; }

/* ═══ steps ═══ */
.vw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 32px 28px; }
.vw-step { padding: 8px 0; }
.vw-step__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--num-gold); line-height: 1; }
.vw-step__title { font-family: var(--font-display); font-weight: 500; font-size: 1.32rem; margin: 20px 0 14px; letter-spacing: -.01em; color: var(--cream); }
.vw-step__desc { color: var(--muted); font-size: 16px; margin: 0; line-height: 1.55; }
@media (max-width: 720px) {
  .vw-steps { gap: 40px 24px; }
}

/* ═══ pricing ═══ */
.vw-toggle-row { display: flex; justify-content: flex-start; max-width: 880px; margin: 0 0 32px; }
.vw-toggle { display: inline-flex; gap: 4px; padding: 5px; border: 1px solid var(--line-2); border-radius: var(--radius-pill); background: rgba(244,236,224,.03); flex-shrink: 0; }
.vw-toggle__btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-pill); font-size: 14.5px; font-weight: 600; border: none; cursor: pointer; font-family: inherit; background: transparent; color: var(--muted); transition: background .25s ease, color .25s ease; }
.vw-toggle__btn.is-active { background: var(--accent); color: #1a1208; }
.vw-toggle__save { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-pill); background: rgba(var(--accent-rgb), .14); color: var(--accent); }
.vw-toggle__btn.is-active .vw-toggle__save { background: rgba(26,18,8,.18); color: #1a1208; }

.vw-plans { display: flex; flex-wrap: wrap; gap: 24px; max-width: 880px; margin: 0; }
.vw-plan { flex: 1 1 340px; min-width: 0; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 34px 34px; display: flex; flex-direction: column; transition: border-color .3s ease; }
.vw-plan:hover { border-color: var(--line-2); }
.vw-plan--featured { border-color: rgba(var(--accent-rgb), .5); background: linear-gradient(180deg, rgba(var(--accent-rgb), .07), rgba(33,28,23,1) 42%); transition: transform .25s ease; }
.vw-plan--featured:hover { transform: translateY(-4px); }
.vw-plan__head { display: flex; align-items: center; justify-content: space-between; }
.vw-plan__name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; color: var(--cream); }
.vw-plan__badge { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #1a1208; background: var(--accent); padding: 6px 12px; border-radius: var(--radius-pill); }
.vw-plan__price-row { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.vw-plan__price { font-family: var(--font-display); font-size: 3.2rem; font-weight: 500; letter-spacing: -.02em; line-height: 1; color: var(--cream); }
.vw-plan__period { color: var(--muted); font-size: 16px; }
.vw-plan__billing { font-size: 13.5px; color: var(--muted-2); min-height: 1.4em; margin: 0; }
.vw-plan__tagline { color: var(--muted); font-size: 15px; margin: 10px 0 0; }
.vw-plan__features { list-style: none; margin: 26px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.vw-plan__features li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; color: var(--cream); }
.vw-plan__features svg { flex-shrink: 0; margin-top: 3px; }
.vw-plan__cta { margin-top: auto; padding-top: 18px; }
.vw-plan__fineprint { text-align: left; max-width: 880px; color: var(--muted-2); font-size: 14.5px; margin: 30px 0 0; }

@media (max-width: 720px) {
  .vw-plan { padding: 30px 26px 28px; }
}

/* ═══ FAQ ═══ */
.vw-faq { max-width: 760px; }
.vw-faq__item { border-bottom: 1px solid var(--line); }
.vw-faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 0; font-size: 18.5px; font-weight: 500; color: var(--cream);
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.vw-faq__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; display: inline-block; }
.vw-faq__icon::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 2px; transform: translateY(-50%); }
.vw-faq__icon-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--accent); border-radius: 2px; transform: translateX(-50%); transition: opacity .3s ease, transform .3s ease; }
.vw-faq__q[aria-expanded="true"] .vw-faq__icon-v { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.vw-faq__a { height: 0; overflow: hidden; }
.vw-faq__a-inner { padding: 0 0 24px; color: var(--muted); font-size: 16.5px; line-height: 1.6; max-width: 60ch; }

/* ═══ final CTA ═══ */
.vw-final { position: relative; overflow: hidden; }
.vw-final__glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 70%; height: 100%; background: radial-gradient(closest-side, rgba(var(--accent-rgb), .16), transparent 72%); filter: blur(20px); z-index: 0; }
.vw-final__card {
  position: relative; z-index: 1; text-align: center; border: 1px solid var(--line-2); border-radius: 26px;
  padding: 66px 32px; background: linear-gradient(160deg, rgba(33,28,23,.6), rgba(22,19,16,.6));
}
.vw-final__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.06; letter-spacing: -.02em; margin: 0; text-wrap: balance; color: var(--cream); }
.vw-final__sub { color: var(--muted); font-size: 19px; margin: 18px auto 34px; max-width: 44ch; }
.vw-final__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.vw-final__alt { margin-top: 26px; font-size: 15px; color: var(--muted-2); }
.vw-final__alt a { color: var(--muted); border-bottom: 1px solid var(--line-2); padding-bottom: 1px; transition: color .2s ease, border-color .2s ease; }
.vw-final__alt a:hover { color: var(--accent); border-color: var(--accent); }
.vw-final__signature {
  margin: 30px auto 0; padding-top: 26px; border-top: 1px solid var(--line); max-width: 52ch;
  font-family: var(--font-display); font-style: italic; font-size: 16px; line-height: 1.55; color: var(--muted-3);
}
@media (max-width: 720px) {
  .vw-final__card { padding: 44px 24px; }
}

/* ═══ footer ═══ */
.vw-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.vw-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.vw-footer__meta { color: var(--muted-2); font-size: 14px; }
.vw-footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.vw-footer__links a { color: var(--muted); font-size: 14px; transition: color .2s ease; }
.vw-footer__links a:hover { color: var(--accent); }

/* ═══ reveal animation ═══ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-shown { opacity: 1; transform: none; transition: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }

/* ═══ keyframes ═══ */
@keyframes vw-drift { 0% { transform: translate3d(-4%, -2%, 0) scale(1); } 100% { transform: translate3d(5%, 4%, 0) scale(1.12); } }
@keyframes vw-pulse { 0% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), .5); } 70% { box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0); } 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); } }
@keyframes vw-blink { 50% { opacity: 0; } }
@keyframes vw-priceswap { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════════════
   ONBOARDING PAGE — component classes
   ═══════════════════════════════════════════════════════════ */
.vw-ob-wrap { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.vw-ob-head { padding: 58px 0 38px; }
.vw-ob-head h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 5.4vw, 3.3rem); line-height: 1.05; letter-spacing: -.02em; margin-top: 18px; text-wrap: balance; }
.vw-ob-head h1 em { font-style: italic; color: var(--accent); }
.vw-ob-head p { color: var(--muted); margin-top: 16px; max-width: 50ch; font-size: 17.5px; }
.vw-ob-head p b { color: var(--cream); font-weight: 600; }

.vw-card { background: linear-gradient(160deg, rgba(33,28,23,.92), rgba(22,19,16,.92)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 34px 30px 30px; margin-bottom: 26px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.7); }
.vw-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.vw-field label { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.vw-field label .vw-opt { color: var(--muted-2); letter-spacing: .1em; text-transform: none; font-weight: 500; }
.vw-field input, .vw-field select, .vw-field textarea { background: var(--ink); border: 1px solid var(--line-2); border-radius: 11px; color: var(--cream); padding: 13px 15px; font-family: inherit; font-size: 15.5px; width: 100%; }
.vw-field textarea { resize: vertical; min-height: 110px; }
.vw-field input:focus, .vw-field select:focus, .vw-field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.vw-field__hint { font-size: 12.5px; color: var(--accent); margin-top: 2px; }
.vw-field__hint button { background: none; border: none; color: inherit; text-decoration: underline; cursor: pointer; font: inherit; padding: 0; }
.vw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .vw-row { grid-template-columns: 1fr; } }

.vw-form-note { text-align: center; font-size: 13.5px; color: var(--muted-2); margin-top: 14px; }
.vw-error { display: none; margin-top: 16px; border: 1px solid rgba(var(--accent-2-rgb), .5); border-radius: 12px; padding: 13px 16px; font-size: 14px; color: var(--accent-2); }
.vw-error.is-shown { display: block; }
.vw-error a { color: var(--cream); border-bottom: 1px solid var(--line-2); }

.vw-success { text-align: center; padding: 26px 6px 10px; display: none; }
.vw-success.is-shown { display: block; }
.vw-success__tick { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 20px; border: 1.5px solid rgba(var(--accent-rgb), .6); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.vw-success h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; letter-spacing: -.015em; margin-bottom: 12px; }
.vw-success p { color: var(--muted); max-width: 42ch; margin: 0 auto; }
.vw-success p b { color: var(--cream); font-weight: 600; }

.vw-next { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px 26px; margin-bottom: 60px; }
.vw-next__title { font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.vw-next ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vw-next li { display: flex; gap: 12px; font-size: 15px; color: var(--muted); line-height: 1.5; }
.vw-next li .vw-next__n { font-family: var(--font-display); color: var(--accent); font-weight: 500; flex-shrink: 0; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
   PRIVACY PAGE — component classes
   ═══════════════════════════════════════════════════════════ */
.vw-legal { padding: 20px 0 40px; }
.vw-legal h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; line-height: 1.15; letter-spacing: -.01em; color: var(--cream); margin: 44px 0 14px; }
.vw-legal p { color: #cbbfb0; margin: 0 0 16px; }
.vw-legal ul { color: #cbbfb0; margin: 0 0 16px; padding-left: 22px; }
.vw-legal li { margin-bottom: 9px; }
.vw-legal strong { color: var(--cream); font-weight: 600; }
.vw-legal a.vw-inline-link { color: var(--accent); border-bottom: 1px solid rgba(var(--accent-rgb), .4); padding-bottom: 1px; }
.vw-legal a.vw-inline-link:hover { border-color: var(--accent); }
.vw-updated { color: var(--muted-2); font-size: 14px; margin: 18px 0 0; }
