/* =========================================================================
   Vibe Decode - vibedecode.app marketing site
   Plain static CSS. No build step. Fonts self-hosted (variable woff2).
   ========================================================================= */

/* ---------- Fonts (self-hosted variable woff2: one file covers 400-700) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-italic-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-italic-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --bg-base: #060912;
  --grad-1: #0B0814; --grad-2: #140F24; --grad-3: #1C1535; --grad-4: #221A3E; --grad-5: #120E1C;
  --amber: #D8A15E;
  --amber-bright: #E8B86D;
  --lavender: #9D90D4;
  --lavender-warm: #BBA4F0;
  --sage: #6DB89B;
  --silver: #C0C8E0;
  --rose: #FB7185;
  --text-1: #F2F5FF;
  --text-2: rgba(242, 245, 255, 0.80);
  --text-muted: rgba(242, 245, 255, 0.65);
  --text-faint: rgba(242, 245, 255, 0.45);
  --on-amber: #1A1020;
  --surface-1: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.12);
  --surface-3: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.16);
  --r-card: 20px;
  --r-hero: 28px;
  --r-chip: 12px;
  --ease-std: cubic-bezier(0.2, 0, 0, 1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, "SF Pro Display", system-ui, sans-serif;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-padding-top: 88px; background: var(--bg-base); }

body {
  font-family: var(--sans);
  background: var(--bg-base);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); font-family: var(--sans);
}
.eyebrow.lav { color: var(--lavender-warm); }
.eyebrow.sage { color: var(--sage); }

.display {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.12; text-wrap: balance;
}

/* ---------- Logo ---------- */
.vd-logo-mark { display: block; flex: none; }
.vd-wordmark { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-1); min-height: 44px; }
.vd-wordmark .wm-name { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 21px; letter-spacing: 0.01em; white-space: nowrap; }

/* ---------- Keyboard focus (a11y) ---------- */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Skip link (a11y / agent experience) ---------- */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 100;
  background: var(--amber); color: var(--on-amber);
  padding: 10px 16px; border-radius: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; text-decoration: none;
  transition: top 160ms var(--ease-std);
}
.skip-link:focus { top: 8px; }

/* ---------- Store badges ---------- */
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 10px 18px 10px 14px;
  text-decoration: none; color: var(--text-1); font-family: var(--sans);
  transition: background 180ms var(--ease-std), border-color 180ms var(--ease-std), transform 180ms var(--ease-std);
}
.store-badge:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.26); transform: translateY(-1px); }
.store-badge svg { width: 24px; height: 24px; flex: none; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge .sb-top { font-size: 10.5px; color: var(--text-muted); letter-spacing: 0.02em; }
.store-badge .sb-bottom { font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }

/* ---------- Feature cards ---------- */
.vd-feature {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 28px; font-family: var(--sans);
  transition: border-color 320ms var(--ease-std), background 320ms var(--ease-std);
}
.vd-feature:hover { background: var(--surface-2); }
.vd-feature.t-amber:hover { border-color: rgba(216, 161, 94, 0.40); }
.vd-feature.t-lav:hover { border-color: rgba(157, 144, 212, 0.40); }
.vd-feature.t-sage:hover { border-color: rgba(109, 184, 155, 0.40); }
.vd-feature.t-silver:hover { border-color: rgba(192, 200, 224, 0.40); }
.vd-feature-icon {
  width: 42px; height: 42px; border-radius: var(--r-chip);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.t-amber .vd-feature-icon { background: rgba(216, 161, 94, 0.13); color: var(--amber); }
.t-lav .vd-feature-icon { background: rgba(157, 144, 212, 0.13); color: var(--lavender-warm); }
.t-sage .vd-feature-icon { background: rgba(109, 184, 155, 0.13); color: var(--sage); }
.t-silver .vd-feature-icon { background: rgba(192, 200, 224, 0.13); color: var(--silver); }
.vd-feature h3 { font-size: 17.5px; font-weight: 600; margin: 0 0 9px; letter-spacing: -0.01em; color: var(--text-1); }
.vd-feature p { font-size: 14.5px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; margin: 0; }
.vd-feature p em { color: var(--text-1); font-style: italic; font-family: var(--serif); }

/* ---------- Phone screen: shared chrome ---------- */
.ph-screen {
  height: 100%; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #0B0814, #140F24 30%, #1C1535 65%, #221A3E);
  display: flex; flex-direction: column;
  font-family: var(--sans); color: var(--text-1);
}
.ph-title {
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); padding: 76px 0 12px;
}
.ph-scroll { padding: 0 16px; display: flex; flex-direction: column; gap: 12px; }
.ph-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 96px; pointer-events: none; z-index: 5;
  background: linear-gradient(180deg, transparent, rgba(18, 11, 30, 0.94));
}
.ph-card {
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px; padding: 15px 16px;
}
.ph-card.hero { border-radius: 24px; border-color: rgba(216, 161, 94, 0.28); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); }
.ph-eyebrow { font-size: 9.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.ph-eyebrow.sage { color: var(--sage); }
.ph-eyebrow.lav { color: var(--lavender-warm); }

/* decode result screen */
.ph-header { display: flex; align-items: center; gap: 11px; padding: 2px 2px 0; }
.ph-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #2A3A55, #18243C);
  border: 1px solid rgba(192, 200, 224, 0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--silver);
}
.ph-header .name { font-size: 16px; font-weight: 600; }
.ph-header .meta { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.ph-trend { font-size: 11.5px; color: var(--text-muted); padding: 0 4px; }
.ph-trend b { color: var(--rose); font-weight: 600; }
.ph-gauge-wrap { display: flex; flex-direction: column; align-items: center; padding: 6px 0 4px; }
.ph-score { font-size: 34px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; line-height: 1; }
.ph-score small { font-size: 17px; font-weight: 600; color: var(--text-muted); }
.ph-verdict { font-family: var(--serif); font-style: italic; font-size: 17.5px; margin-top: 7px; }
.ph-msg { font-size: 13px; line-height: 1.55; color: var(--text-2); font-style: italic; }
.ph-evidence { display: flex; flex-direction: column; gap: 6px; }
.ph-evidence span { font-size: 12px; line-height: 1.5; color: var(--text-2); display: flex; gap: 8px; }
.ph-evidence span::before { content: "\2014"; color: var(--sage); flex: none; }
.ph-evidence .foot { font-size: 10.5px; color: var(--text-muted); font-style: italic; margin-top: 4px; }
.ph-evidence .foot::before { content: none; }
.ph-replies { display: flex; flex-direction: column; gap: 8px; }
.ph-reply {
  font-size: 12px; line-height: 1.5; color: var(--text-1);
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px; padding: 10px 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.ph-reply .cp { font-size: 9.5px; font-weight: 600; color: var(--amber-bright); flex: none; letter-spacing: 0.04em; }

/* decode input screen */
.ph-planet-row {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px; padding: 12px 14px;
}
.ph-planet-row .chev { margin-left: auto; color: var(--text-faint); font-size: 16px; }
.ph-textarea {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px; padding: 14px 15px; min-height: 150px;
  font-size: 13.5px; line-height: 1.6; color: var(--text-1);
}
.ph-textarea .ph-cursor {
  display: inline-block; width: 2px; height: 15px; background: var(--amber);
  vertical-align: -2px; margin-left: 1px;
  animation: ph-blink 1.1s steps(1) infinite;
}
@keyframes ph-blink { 50% { opacity: 0; } }
.ph-counter { text-align: right; font-size: 10.5px; color: var(--text-faint); padding: 6px 4px 0; }
.ph-toggle-row {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px; padding: 12px 14px; font-size: 13px; color: var(--text-2);
}
.ph-switch { margin-left: auto; width: 40px; height: 24px; border-radius: 999px; background: rgba(255,255,255,0.14); position: relative; flex: none; }
.ph-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.65); }
.ph-switch.on { background: rgba(216, 161, 94, 0.55); }
.ph-switch.on::after { left: auto; right: 3px; background: #fff; }
.ph-submit {
  margin-top: 4px; height: 54px; border-radius: 999px;
  background: linear-gradient(180deg, #E2AC66, #CE9551);
  color: var(--on-amber); font-size: 15.5px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 6px 24px rgba(216, 161, 94, 0.30);
}

/* chat screen */
.ph-chat-hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 10px 10px 4px; gap: 12px; }
.ph-advisor-orb {
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #C8BCF2, var(--lavender) 55%, var(--amber) 115%);
  box-shadow: 0 0 28px rgba(157, 144, 212, 0.45);
}
.ph-chat-greet { font-family: var(--serif); font-style: italic; font-size: 22px; }
.ph-chat-body { font-size: 12px; line-height: 1.6; color: var(--text-muted); max-width: 25em; }
.ph-bubble {
  max-width: 82%; border-radius: 18px; padding: 11px 14px;
  font-size: 12.5px; line-height: 1.55;
}
.ph-bubble.user {
  align-self: flex-end; background: rgba(216, 161, 94, 0.16);
  border: 1px solid rgba(216, 161, 94, 0.30); border-bottom-right-radius: 6px;
}
.ph-bubble.advisor {
  align-self: flex-start; background: rgba(157, 144, 212, 0.12);
  border: 1px solid rgba(157, 144, 212, 0.30); border-bottom-left-radius: 6px;
  display: flex; gap: 9px;
}
.ph-bubble.advisor .mini-orb {
  width: 18px; height: 18px; border-radius: 50%; flex: none; margin-top: 2px;
  background: radial-gradient(circle at 32% 28%, #C8BCF2, var(--lavender) 55%, var(--amber) 115%);
}
.ph-caret { display: inline-block; width: 2px; height: 12px; background: var(--lavender-warm); vertical-align: -2px; margin-left: 2px; animation: ph-blink 0.6s steps(1) infinite; }
.ph-chat-input {
  margin-top: auto; display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px; padding: 10px 10px 10px 16px; font-size: 13px; color: var(--text-faint);
}
.ph-send {
  width: 34px; height: 34px; border-radius: 50%; flex: none; margin-left: auto;
  background: linear-gradient(180deg, #E2AC66, #CE9551);
  display: flex; align-items: center; justify-content: center; color: var(--on-amber);
}

/* ---------- iOS device frame (static port of iOS.jsx) ---------- */
.vd-phone { position: relative; flex: none; overflow: hidden; }
.vd-phone--hero { width: 297px; height: 647px; }
.vd-phone--rail { width: 225px; height: 489px; }
.ios-device {
  width: 402px; height: 874px; border-radius: 48px; overflow: hidden;
  position: relative; background: #000; transform-origin: top left;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.12);
  font-family: -apple-system, system-ui, sans-serif; -webkit-font-smoothing: antialiased;
}
.vd-phone--hero .ios-device { transform: scale(0.74); }
.vd-phone--rail .ios-device { transform: scale(0.56); }
.ios-island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 126px; height: 37px; border-radius: 24px; background: #000; z-index: 50;
}
.ios-statusbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; gap: 154px; align-items: center; justify-content: center;
  padding: 21px 24px 19px; width: 100%;
}
.ios-statusbar .sb-time {
  flex: 1; height: 22px; display: flex; align-items: center; justify-content: center; padding-top: 1.5px;
  font-family: -apple-system, "SF Pro", system-ui; font-weight: 590; font-size: 17px; line-height: 22px; color: #fff;
}
.ios-statusbar .sb-icons {
  flex: 1; height: 22px; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding-top: 1px; padding-right: 1px;
}
.ios-content { height: 100%; display: flex; flex-direction: column; }
.ios-content > .ph-screen { flex: 1; overflow: auto; }
.ios-home {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 60; height: 34px;
  display: flex; justify-content: center; align-items: flex-end; padding-bottom: 8px; pointer-events: none;
}
.ios-home i { width: 139px; height: 5px; border-radius: 100px; background: rgba(255,255,255,0.7); }

/* ---------- Background ---------- */
.vd-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, var(--grad-1) 0%, var(--grad-2) 24%, var(--grad-3) 50%, var(--grad-4) 76%, var(--grad-5) 100%);
  background-size: 100% 1200px; background-repeat: repeat-y;
}
.vd-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(216, 161, 94, 0.07), transparent 65%),
    radial-gradient(800px 600px at 12% 92%, rgba(157, 144, 212, 0.07), transparent 65%);
}
.vd-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.vd-star {
  position: absolute; border-radius: 50%; background: #F2F5FF;
  animation: vd-twinkle var(--tw-dur, 5s) ease-in-out var(--tw-delay, 0s) infinite;
}
@keyframes vd-twinkle {
  0%, 100% { opacity: var(--tw-lo, 0.10); }
  50% { opacity: var(--tw-hi, 0.38); }
}
@media (prefers-reduced-motion: reduce) {
  .vd-star { animation: none; opacity: var(--tw-lo, 0.12); }
}

#vd-root { position: relative; z-index: 1; }
.vd-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ---------- Reveal-on-scroll (only hides when JS is present) ---------- */
html.js .rv { opacity: 0; transform: translateY(12px); transition: opacity 420ms var(--ease-std), transform 420ms var(--ease-std); }
html.js .rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 90ms; }
.rv-d2 { transition-delay: 180ms; }
.rv-d3 { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  html.js .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- Nav ---------- */
.vd-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(6, 9, 18, 0.62);
  border-bottom: 1px solid transparent;
  transition: border-color 320ms var(--ease-std);
}
.vd-nav.scrolled { border-bottom-color: var(--line); }
.vd-nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.vd-nav-links { display: flex; gap: 28px; margin-left: auto; }
.vd-nav-links a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 180ms var(--ease-std);
}
.vd-nav-links a:hover { color: var(--text-1); }
.vd-nav-cta {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  background: var(--amber); color: var(--on-amber);
  font-size: 14px; font-weight: 600; text-decoration: none;
  padding: 11px 22px; border-radius: 999px;
  transition: transform 180ms var(--ease-std), box-shadow 180ms var(--ease-std);
}
.vd-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(216, 161, 94, 0.35); }
.vd-nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: 4px;
  background: transparent; border: 0; color: var(--text-1); cursor: pointer;
}
.vd-nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.vd-hero { padding: 84px 0 30px; }
.vd-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 48px; align-items: center;
}
.vd-hero h1 { font-size: clamp(42px, 5.2vw, 62px); margin: 20px 0 22px; }
.vd-hero h1 .accent { color: var(--amber); }
.vd-hero-sub { font-size: 18px; line-height: 1.65; color: var(--text-2); max-width: 33em; text-wrap: pretty; }
.vd-hero-ctas { display: flex; align-items: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.vd-hero-note { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 13px; color: var(--text-muted); }
.vd-hero-note .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-faint); }
.vd-hero-phone { display: flex; justify-content: center; position: relative; }
.vd-hero-phone::before {
  content: ""; position: absolute; width: 440px; max-width: 100%; height: 440px; top: 50%; left: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 144, 212, 0.16), transparent 68%);
  pointer-events: none;
}

/* ---------- Monologue band ---------- */
.vd-monologue { padding: 100px 0 56px; text-align: center; }
.vd-monologue-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.3; color: var(--text-1);
  min-height: 2.7em; display: flex; align-items: center; justify-content: center;
  transition: opacity 480ms var(--ease-std);
}
.vd-monologue-quote.fade { opacity: 0; }
.vd-monologue-caption { margin-top: 14px; font-size: 15px; color: var(--text-muted); }
.vd-monologue-dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.vd-monologue-dots i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--text-faint);
  transition: background 320ms var(--ease-std), transform 320ms var(--ease-std);
}
.vd-monologue-dots i.on { background: var(--amber); transform: scale(1.25); }

/* ---------- Sections ---------- */
section.vd-section { padding: 96px 0; position: relative; }
.vd-section-head { max-width: 640px; margin-bottom: 56px; }
.vd-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.vd-section-head h2 { font-size: clamp(32px, 3.8vw, 46px); margin: 16px 0 16px; }
.vd-section-head p { font-size: 17px; line-height: 1.65; color: var(--text-2); text-wrap: pretty; }

/* ---------- How it works rail ---------- */
.vd-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 28px; align-items: start; justify-items: center; }
.vd-rail-item { display: flex; flex-direction: column; align-items: center; }
.vd-rail-cap { margin-top: 24px; text-align: center; }
.vd-rail-cap .step { font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); }
.vd-rail-cap .t { font-size: 18px; font-weight: 600; margin-top: 8px; }
.vd-rail-cap .d { font-size: 14.5px; color: var(--text-muted); margin-top: 6px; max-width: 23em; line-height: 1.6; }

/* ---------- Feature grid ---------- */
.vd-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Honesty band ---------- */
.vd-honesty { text-align: center; padding: 118px 0; }
.vd-honesty .mark { color: var(--lavender); font-size: 20px; letter-spacing: 0.45em; margin-bottom: 28px; }
.vd-honesty blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.28; max-width: 18em; margin: 0 auto;
  text-wrap: balance;
}
.vd-honesty blockquote .hl { color: var(--amber); }
.vd-honesty p { margin: 28px auto 0; max-width: 36em; font-size: 17px; line-height: 1.7; color: var(--text-2); text-wrap: pretty; }
.vd-honesty-fine { margin: 30px auto 0; max-width: 40em; font-size: 12.5px; line-height: 1.65; color: var(--text-faint); letter-spacing: 0.01em; }

/* ---------- FAQ ---------- */
.vd-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.vd-faq details {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 4px 22px;
  transition: border-color 240ms var(--ease-std), background 240ms var(--ease-std);
}
.vd-faq details[open] { background: var(--surface-2); border-color: var(--line-strong); }
.vd-faq summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-size: 16.5px; font-weight: 600; color: var(--text-1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.vd-faq summary::-webkit-details-marker { display: none; }
.vd-faq summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--amber); flex: none;
  transition: transform 240ms var(--ease-std);
}
.vd-faq details[open] summary::after { transform: rotate(45deg); }
.vd-faq .vd-faq-a { padding: 0 0 20px; font-size: 15px; line-height: 1.65; color: var(--text-2); text-wrap: pretty; }
.vd-faq .vd-faq-a a { color: var(--amber-bright); }

/* ---------- Final CTA ---------- */
.vd-final { text-align: center; padding: 130px 0 120px; position: relative; }
.vd-final::before {
  content: ""; position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: 640px; max-width: 100%; height: 480px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(216, 161, 94, 0.10), transparent 65%);
}
.vd-final h2 { font-size: clamp(40px, 5.4vw, 62px); }
.vd-final .tagline { margin-top: 20px; font-size: 18px; color: var(--text-2); }
.vd-final-ctas { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.vd-final-note { margin-top: 18px; font-size: 13px; color: var(--text-muted); }

/* ---------- Footer ---------- */
.vd-footer { border-top: 1px solid var(--line); padding: 44px 0 52px; position: relative; z-index: 1; }
.vd-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.vd-footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.vd-footer-links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--text-muted); font-size: 13.5px; text-decoration: none; transition: color 180ms var(--ease-std); }
.vd-footer-links a:hover { color: var(--text-1); }
.vd-footer-legal { margin-top: 30px; font-size: 12.5px; line-height: 1.7; color: var(--text-faint); max-width: 56em; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .vd-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .vd-hero { padding-top: 48px; }
  .vd-features { grid-template-columns: 1fr; }
  .vd-rail { grid-template-columns: 1fr; gap: 48px; max-width: 360px; margin: 0 auto; }
  section.vd-section { padding: 72px 0; }

  /* mobile nav menu */
  .vd-nav-toggle { display: inline-flex; }
  .vd-nav-cta { margin-left: auto; }
  .vd-nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; margin-left: 0;
    background: rgba(6, 9, 18, 0.94);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 6px 0;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height 260ms var(--ease-std), opacity 200ms var(--ease-std);
  }
  .vd-nav.open .vd-nav-links { max-height: 360px; opacity: 1; pointer-events: auto; }
  .vd-nav-links a { width: 100%; min-height: 50px; padding: 4px 32px; }
}

/* ========================================================================
   Guides / content hub (answer pages for SEO / AEO / GEO)
   ======================================================================== */
.guide-main { position: relative; z-index: 1; }
.guide-wrap { max-width: 760px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

.guide-breadcrumb { font-size: 13px; color: var(--text-faint); padding: 30px 0 0; }
.guide-breadcrumb a { color: var(--text-muted); text-decoration: none; display: inline-block; padding: 9px 4px; margin: -6px 0; }
.guide-breadcrumb a:hover { color: var(--text-1); }
.guide-breadcrumb span { padding: 0 7px; opacity: 0.5; }

.guide-article { padding: 14px 0 36px; position: relative; }
.guide-article::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 680px; max-width: 100%; height: 360px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 28%, rgba(216, 161, 94, 0.10), transparent 62%);
}
.guide-byline { font-size: 13px; color: var(--text-faint); margin: -4px 0 24px; }
.guide-byline strong { color: var(--text-muted); font-weight: 600; }
.guide-article table { width: 100%; border-collapse: collapse; margin: 6px 0 22px; font-family: var(--sans); }
.guide-article th, .guide-article td { text-align: left; padding: 11px 14px; font-size: 14.5px; line-height: 1.5; border-bottom: 1px solid var(--line); vertical-align: top; }
.guide-article th { color: var(--text-1); font-weight: 600; border-bottom-color: var(--line-strong); }
.guide-article td { color: var(--text-2); }
.guide-article thead th:first-child, .guide-article tbody td:first-child { width: 46%; }
@media (max-width: 560px) { .guide-article th, .guide-article td { padding: 9px 10px; font-size: 13.5px; } }
.guide-article .eyebrow { display: block; margin-bottom: 14px; color: var(--acc, var(--amber)); }
.guide-article h1 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(30px, 4.4vw, 46px); line-height: 1.16; letter-spacing: -0.01em;
  margin: 0 0 18px; text-wrap: balance;
}
.guide-article h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(23px, 2.7vw, 29px); margin: 40px 0 14px; letter-spacing: -0.005em; line-height: 1.2; }
.guide-article h3 { font-size: 18px; font-weight: 600; margin: 26px 0 8px; }
.guide-article p { font-size: 17px; line-height: 1.75; color: var(--text-2); margin: 0 0 16px; text-wrap: pretty; }
.guide-article ul, .guide-article ol { margin: 0 0 18px; padding-left: 22px; }
.guide-article li { font-size: 17px; line-height: 1.7; color: var(--text-2); margin-bottom: 9px; }
.guide-article strong { color: var(--text-1); }
.guide-article a { color: var(--amber-bright); text-decoration: none; }
.guide-article a:hover { text-decoration: underline; }

.guide-tldr {
  background: var(--surface-1); border: 1px solid var(--line-strong);
  border-left: 3px solid var(--acc, var(--amber)); border-radius: 14px;
  padding: 18px 22px; margin: 6px 0 30px;
}
.guide-tldr .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--acc, var(--amber)); display: block; margin-bottom: 8px; }
.guide-tldr p { font-size: 16.5px; line-height: 1.6; color: var(--text-1); margin: 0; }

.guide-cta {
  text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, rgba(216,161,94,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(216, 161, 94, 0.28); border-radius: 20px;
  padding: 32px 28px; margin: 44px 0 8px;
}
.guide-cta-title { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 26px; margin: 0 0 8px; color: var(--text-1); }
.guide-cta p { font-size: 15.5px; color: var(--text-2); margin: 0 0 20px; }
.guide-cta .vd-nav-cta, .guide-cta .vd-nav-cta:hover { color: var(--on-amber); text-decoration: none; }

.guide-related { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 28px; }
.guide-related h2 { font-size: 16px; font-weight: 600; letter-spacing: 0.02em; color: var(--text-muted); margin-bottom: 16px; }
.guide-related-list { display: grid; gap: 12px; }
.guide-related-list a { color: var(--text-1); text-decoration: none; font-size: 16.5px; line-height: 1.4; display: flex; gap: 10px; align-items: baseline; padding: 7px 0; }
.guide-related-list a::before { content: "\2192"; color: var(--amber); flex: none; }
.guide-related-list a:hover { color: var(--amber-bright); }

/* hub index */
.guides-hub { padding: 30px 0 10px; position: relative; }
.guides-hub::before {
  content: ""; position: absolute; top: -10px; left: 0; width: 560px; max-width: 90%; height: 300px;
  z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 22% 32%, rgba(216, 161, 94, 0.11), transparent 60%);
}
.guides-hub .vd-wrap { position: relative; z-index: 1; }
.guides-hub-head { max-width: 640px; margin-bottom: 36px; }
.guides-hub-head h1 { font-size: clamp(34px, 4.6vw, 50px); margin: 14px 0 14px; }
.guides-hub-head p { font-size: 17px; line-height: 1.65; color: var(--text-2); }
.guides-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guide-card {
  display: block; background: var(--surface-1); border: 1px solid var(--line-strong);
  border-radius: var(--r-card); padding: 22px 22px 24px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: border-color 280ms var(--ease-std), background 280ms var(--ease-std), transform 280ms var(--ease-std), box-shadow 280ms var(--ease-std);
}
.guide-card:hover { background: var(--surface-2); border-color: var(--acc-border, var(--line-strong)); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30); }
.guide-card .gc-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }
.guide-card h2 { font-size: 19px; font-weight: 600; color: var(--text-1); margin: 11px 0 8px; letter-spacing: -0.01em; line-height: 1.25; }
.guide-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* hub: topic clusters */
.guides-cluster { margin-bottom: 54px; }
.guides-cluster-head { margin-bottom: 20px; }
.guides-cluster-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; letter-spacing: -0.01em; margin: 10px 0 8px; }
.guides-cluster-head h2 a { color: var(--text-1); text-decoration: none; }
.guides-cluster-head h2 a:hover { color: var(--amber-bright); }
.guides-cluster-head p { font-size: 15.5px; line-height: 1.55; color: var(--text-muted); max-width: 52em; }

/* per-cluster accent system (echoes the landing's feature-card colors) */
.acc-amber  { --acc: var(--amber);         --acc-bg: rgba(216, 161, 94, 0.14);  --acc-border: rgba(216, 161, 94, 0.45); }
.acc-lav    { --acc: var(--lavender-warm); --acc-bg: rgba(157, 144, 212, 0.16); --acc-border: rgba(157, 144, 212, 0.45); }
.acc-sage   { --acc: var(--sage);          --acc-bg: rgba(109, 184, 155, 0.16); --acc-border: rgba(109, 184, 155, 0.45); }
.acc-silver { --acc: var(--silver);        --acc-bg: rgba(192, 200, 224, 0.16); --acc-border: rgba(192, 200, 224, 0.45); }

.guides-cluster-icon {
  width: 46px; height: 46px; border-radius: var(--r-chip);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: 16px; background: var(--acc-bg, var(--surface-2)); color: var(--acc, var(--amber));
}
.guides-cluster .guides-cluster-head .eyebrow { color: var(--acc); }
.guides-cluster .gc-eyebrow { color: var(--acc); }

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