:root {
  --vd-bg: #0b1220;
  --vd-bg-2: #101a2a;
  --vd-panel: #121d2e;
  --vd-panel-2: #182538;
  --vd-green: #10b981;
  --vd-green-dark: #047857;
  --vd-green-soft: #dff8ef;
  --vd-white: #f5f7fa;
  --vd-light: #f8fafc;
  --vd-light-2: #eef3f7;
  --vd-ink: #0f172a;
  --vd-slate: #334155;
  --vd-muted: #cbd5e1;
  --vd-muted-dark: #526174;
  --vd-line: #29405a;
  --vd-line-light: #d8e1ea;
  --vd-warning: #f7c873;
  --vd-danger: #b42318;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --container-narrow: 780px;
  --space-1: .35rem;
  --space-2: .65rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --radius-sm: .65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-1: 0 12px 35px rgba(4, 11, 25, .16);
  --shadow-2: 0 26px 80px rgba(4, 11, 25, .28);
  --focus: 0 0 0 3px rgba(16, 185, 129, .38), 0 0 0 6px rgba(245, 247, 250, .95);
  --transition: 180ms ease;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 28px); }
body { margin: 0; min-width: 320px; overflow-x: clip; background: var(--vd-bg); color: var(--vd-white); font-family: var(--font-sans); font-size: 17px; line-height: 1.62; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
p, h1, h2, h3, h4, ul, ol, blockquote { margin-top: 0; }
button { border: 0; }
[hidden] { display: none !important; }

:focus-visible { outline: none; box-shadow: var(--focus); border-radius: .35rem; }
::selection { background: rgba(16, 185, 129, .32); color: #fff; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); padding: .7rem 1rem; border-radius: .55rem; background: #fff; color: #07101f; font-weight: 800; transition: transform var(--transition); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow, .narrow { width: min(100%, var(--container-narrow)); }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; position: relative; }
.section-light { background: var(--vd-light); color: var(--vd-ink); }
.section-dark { background: var(--vd-bg); color: var(--vd-white); }
.centered { text-align: center; }

.announcement { background: #07101d; border-bottom: 1px solid rgba(203, 213, 225, .14); font-size: .9rem; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: .8rem; text-align: center; }
.announcement a { color: #80e7c3; font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(11, 18, 32, .94); border-bottom: 1px solid rgba(203, 213, 225, .14); backdrop-filter: blur(16px); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 225px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 1.25rem; font-size: .92rem; font-weight: 720; }
.primary-nav > a:not(.button) { color: #d8e1ea; text-decoration: none; padding: .6rem .1rem; }
.primary-nav > a:not(.button):hover { color: #fff; }
.menu-button { display: none; width: 46px; height: 46px; border-radius: .7rem; background: transparent; color: #fff; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid rgba(203, 213, 225, .24); }
.menu-button span:not(.sr-only) { width: 22px; height: 2px; background: currentColor; border-radius: 10px; transition: transform var(--transition), opacity var(--transition); }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .82rem 1.2rem; border: 1px solid transparent; border-radius: .72rem; text-decoration: none; font-weight: 820; line-height: 1.15; cursor: pointer; transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition); }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--vd-green); color: #052118; box-shadow: 0 10px 24px rgba(16, 185, 129, .22); }
.button-primary:hover { background: #2bc995; }
.button-secondary { background: transparent; border-color: rgba(203, 213, 225, .34); color: var(--vd-white); }
.section-light .button-secondary, .button-ghost-dark { color: var(--vd-ink); border-color: #b9c6d4; }
.button-secondary:hover { border-color: var(--vd-green); color: var(--vd-green); }
.button-small { min-height: 42px; padding: .65rem .9rem; font-size: .9rem; }
.button-full { width: 100%; }

.eyebrow { margin-bottom: 1rem; color: #75e0b9; font-size: .78rem; font-weight: 860; text-transform: uppercase; letter-spacing: .11em; }
.eyebrow.dark { color: var(--vd-green-dark); }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 5.7vw, 5.25rem); max-width: 12ch; margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 4.2vw, 3.55rem); margin-bottom: 1.15rem; }
h3 { font-size: clamp(1.18rem, 2.1vw, 1.55rem); margin-bottom: .7rem; }
.section-heading { margin-bottom: clamp(2.4rem, 5vw, 4.2rem); }
.section-heading.narrow { max-width: 800px; }
.section-heading.centered { margin-left: auto; margin-right: auto; }
.section-heading p:last-child { max-width: 68ch; margin-bottom: 0; color: inherit; opacity: .78; }

.hero { overflow: hidden; padding: clamp(4rem, 8vw, 7.2rem) 0 2.2rem; }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(16,185,129,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(16,185,129,.08) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.25) 65%, transparent 100%); pointer-events: none; }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: clamp(2.2rem, 5vw, 5rem); }
.hero-copy { position: relative; z-index: 1; }
.hero-lede { max-width: 59ch; color: var(--vd-muted); font-size: clamp(1.08rem, 1.8vw, 1.28rem); margin-bottom: 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.trust-microcopy { margin: 1rem 0 0; color: #b6c3d3; font-size: .88rem; }
.hero-visual { position: relative; }
.hero-visual picture { border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid rgba(203,213,225,.18); background: var(--vd-panel); }
.hero-visual img { width: 100%; height: auto; }
.hero-metrics { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); margin-top: clamp(2.4rem, 5vw, 4.5rem); border: 1px solid rgba(203,213,225,.18); border-radius: 1rem; background: rgba(18,29,46,.78); }
.hero-metrics div { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: .1rem; border-right: 1px solid rgba(203,213,225,.14); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong { display: block; margin-bottom: .28rem; color: var(--vd-green); font-size: 1.3rem; line-height: 1; }
.hero-metrics span { color: var(--vd-muted); font-size: .88rem; }

.credibility-strip { background: #0f1a2b; border-top: 1px solid rgba(203,213,225,.1); border-bottom: 1px solid rgba(203,213,225,.12); }
.credibility-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.credibility-grid p { margin: 0; padding: 1.25rem 1.1rem; border-right: 1px solid rgba(203,213,225,.12); }
.credibility-grid p:last-child { border-right: 0; }
.credibility-grid strong, .credibility-grid span { display: block; }
.credibility-grid strong { font-size: .94rem; }
.credibility-grid span { margin-top: .15rem; color: var(--vd-muted); font-size: .8rem; }

.three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.four-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.card { border: 1px solid var(--vd-line-light); border-radius: var(--radius-lg); background: #fff; padding: 1.6rem; box-shadow: 0 14px 35px rgba(15,23,42,.06); }
.problem-card { min-height: 270px; }
.card-index { display: inline-flex; margin-bottom: 2rem; color: var(--vd-green-dark); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.problem-card p { color: var(--vd-muted-dark); }
.bridge-callout { width: fit-content; margin: 2rem auto 0; padding: .9rem 1.2rem; border-radius: 999px; background: var(--vd-ink); color: #fff; font-weight: 800; text-align: center; }

.transformation { background: var(--vd-bg-2); }
.transformation-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 1.4rem; }
.transformation-column { border: 1px solid var(--vd-line); border-radius: var(--radius-lg); background: var(--vd-panel); padding: 1.7rem; }
.transformation-column h3 { color: var(--vd-green); }
.transformation-column ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.transformation-column li { position: relative; padding-left: 1.45rem; color: var(--vd-muted); }
.transformation-column li::before { position: absolute; left: 0; top: .7em; content: ""; width: .58rem; height: .58rem; border-radius: 50%; background: #64748b; }
.transformation-column.after li::before { background: var(--vd-green); }
.decision-flow { width: 190px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .75rem; text-align: center; color: var(--vd-muted); font-size: .85rem; font-weight: 800; }
.decision-flow span { width: 100%; padding: .65rem .8rem; border: 1px solid var(--vd-line); border-radius: .65rem; background: #0d1626; }
.decision-flow i { color: var(--vd-green); font-size: 1.5rem; font-style: normal; transform: rotate(90deg); }

.stage-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5,1fr); gap: .75rem; }
.stage-grid li { min-height: 270px; padding: 1.35rem; border-radius: var(--radius-lg); border: 1px solid var(--vd-line-light); background: #fff; }
.stage-grid > li > span { display: inline-flex; color: var(--vd-green-dark); font-size: .82rem; font-weight: 900; margin-bottom: 2rem; }
.stage-grid p { color: var(--vd-muted-dark); font-size: .94rem; }
.stage-grid small { display: block; margin-top: 1rem; color: var(--vd-green-dark); font-weight: 820; }
.centered-cta { text-align: center; margin-top: 2rem; }

.demo-section { background: #0f1a2b; }
.demo-layout { display: grid; grid-template-columns: minmax(0,.75fr) minmax(480px,1.25fr); gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.demo-copy p:not(.eyebrow) { color: var(--vd-muted); }
.chapter-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; grid-template-columns: repeat(2,1fr); gap: .6rem; }
.chapter-list button { width: 100%; min-height: 44px; padding: .65rem .8rem; border-radius: .6rem; background: var(--vd-panel); border: 1px solid var(--vd-line); color: #fff; text-align: left; cursor: pointer; font-weight: 750; }
.chapter-list button:hover { border-color: var(--vd-green); }
.transcript { border-top: 1px solid var(--vd-line); padding-top: 1rem; }
.transcript summary { cursor: pointer; font-weight: 800; color: #fff; }
.transcript div { padding-top: .8rem; }
.video-shell { border-radius: var(--radius-lg); padding: .6rem; background: #07101d; border: 1px solid var(--vd-line); box-shadow: var(--shadow-2); }
.video-shell video { width: 100%; aspect-ratio: 16/9; border-radius: 1rem; background: #000; }

.gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.gallery-item { position: relative; padding: 0; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--vd-line-light); background: #fff; color: var(--vd-ink); cursor: zoom-in; box-shadow: 0 12px 30px rgba(15,23,42,.08); text-align: left; }
.gallery-item picture { aspect-ratio: 16/10; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.gallery-item:hover img { transform: scale(1.018); }
.gallery-item > span { display: block; padding: .8rem .9rem; font-weight: 820; }

.outcome-section { background: var(--vd-bg); }
.outcome-row { display: grid; grid-template-columns: minmax(0,.8fr) minmax(480px,1.2fr); gap: clamp(2rem,5vw,5rem); align-items: center; }
.outcome-row.reverse { direction: rtl; }
.outcome-row.reverse > * { direction: ltr; }
.outcome-copy p:not(.eyebrow) { color: var(--vd-muted); max-width: 56ch; }
.outcome-copy aside { margin-top: 1.5rem; padding: 1rem 1.1rem; border-left: 3px solid var(--vd-green); background: var(--vd-panel); color: var(--vd-muted); border-radius: 0 .6rem .6rem 0; }
.section-light .outcome-copy p:not(.eyebrow) { color: var(--vd-muted-dark); }
.section-light .outcome-copy aside { background: #fff; color: var(--vd-muted-dark); border: 1px solid var(--vd-line-light); border-left: 3px solid var(--vd-green); }
.product-crop { padding: 0; border-radius: var(--radius-lg); border: 1px solid rgba(203,213,225,.22); background: var(--vd-panel); overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-2); color: #fff; }
.section-light .product-crop { border-color: var(--vd-line-light); background: #fff; color: var(--vd-ink); box-shadow: var(--shadow-1); }
.product-crop img { width: 100%; height: auto; }
.product-crop span { display: block; padding: .75rem 1rem; text-align: left; font-weight: 800; }

.included-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.included-card { border: 1px solid var(--vd-line-light); border-radius: var(--radius-lg); background: #fff; padding: 1.5rem; }
.included-card > span { color: var(--vd-green-dark); font-size: .74rem; font-weight: 900; letter-spacing: .12em; }
.included-card p { color: var(--vd-muted-dark); }
.included-card code { display: block; overflow-wrap: anywhere; padding: .65rem .75rem; border-radius: .55rem; background: var(--vd-light-2); color: var(--vd-slate); font-size: .78rem; }
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin-top: 1rem; }
.spec-grid div { padding: 1rem; border: 1px solid var(--vd-line-light); border-radius: .8rem; background: #fff; }
.spec-grid strong, .spec-grid span { display: block; }
.spec-grid strong { font-size: .78rem; color: var(--vd-green-dark); text-transform: uppercase; letter-spacing: .05em; }
.spec-grid span { margin-top: .2rem; color: var(--vd-muted-dark); }
.download-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.table-scroll-cue { display: none; color: var(--vd-muted); font-size: .85rem; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--vd-line); border-radius: var(--radius-lg); background: var(--vd-panel); box-shadow: var(--shadow-1); }
.comparison-table { width: 100%; min-width: 1050px; border-collapse: collapse; font-size: .86rem; }
.comparison-table th, .comparison-table td { padding: .9rem .8rem; border-bottom: 1px solid var(--vd-line); border-right: 1px solid var(--vd-line); vertical-align: top; text-align: center; }
.comparison-table th:first-child { position: sticky; left: 0; z-index: 2; min-width: 210px; text-align: left; background: #111c2c; }
.comparison-table thead th { background: #101a2a; color: #fff; font-weight: 850; }
.comparison-table td { color: var(--vd-muted); }
.comparison-table .is-vd { background: rgba(16,185,129,.11); color: #fff; font-weight: 780; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }

.persona-grid article { padding: 1.4rem; border: 1px solid var(--vd-line-light); border-radius: var(--radius-lg); background: #fff; }
.persona-grid article::before { content: ""; display: block; width: 32px; height: 4px; background: var(--vd-green); margin-bottom: 1rem; }
.persona-grid p { color: var(--vd-muted-dark); }
.not-fit { margin-top: 1.5rem; border: 1px solid var(--vd-line-light); border-radius: var(--radius-lg); padding: 1.35rem 1.5rem; background: #fff; }
.not-fit ul { columns: 2; margin-bottom: 0; color: var(--vd-muted-dark); }

.proof-section { background: #0f1a2b; }
.proof-grid article { border: 1px solid var(--vd-line); border-radius: var(--radius-lg); padding: 1.5rem; background: var(--vd-panel); }
.proof-grid p { color: var(--vd-muted); }
.proof-grid a { color: #76e4bd; font-weight: 820; }

.founder-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.founder-card { align-self: start; display: flex; align-items: center; gap: 1rem; width: 100%; max-width: 380px; padding: 1.1rem; border: 1px solid var(--vd-line-light); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 14px 34px rgba(15,23,42,.08); }
.founder-card img { width: 96px; height: 96px; flex: 0 0 96px; object-fit: cover; border-radius: 1rem; }
.founder-card strong, .founder-card span, .founder-card small { display: block; }
.founder-card strong { font-size: 1.2rem; }
.founder-card span { margin-top: .25rem; color: var(--vd-muted-dark); }
.founder-card small { margin-top: .55rem; color: var(--vd-green-dark); font-weight: 800; }
.founder-copy blockquote { margin: 1.5rem 0; padding: 0 0 0 1.25rem; border-left: 4px solid var(--vd-green); color: var(--vd-slate); font-size: 1.22rem; font-weight: 680; }
.founder-copy p { color: var(--vd-muted-dark); }

.pricing-section { background: #0f1a2b; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 1.2rem; padding: 1.5rem; border: 1px solid var(--vd-line); border-radius: var(--radius-lg); background: var(--vd-panel); }
.price-card.recommended { border-color: var(--vd-green); box-shadow: 0 0 0 1px rgba(16,185,129,.35), var(--shadow-2); }
.recommendation { position: absolute; top: -14px; left: 1rem; margin: 0; padding: .4rem .7rem; border-radius: 999px; background: var(--vd-green); color: #052118; font-size: .75rem; font-weight: 900; }
.plan { margin: 0; color: var(--vd-green); font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.price { display: flex; align-items: flex-start; margin: .65rem 0; line-height: 1; }
.price span { margin-top: .35rem; font-size: 1.2rem; }
.price strong { font-size: 3.4rem; }
.price-card p { color: var(--vd-muted); }
.price-card ul { padding-left: 1.2rem; color: var(--vd-muted); }
.price-card li { margin-bottom: .45rem; }
.price-card .button { width: 100%; }
.licence-link { text-align: center; color: #78e1bb; font-size: .84rem; font-weight: 760; }
.licence-mini-compare { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 1rem; border: 1px solid var(--vd-line); border-radius: var(--radius-md); overflow: hidden; background: var(--vd-line); }
.licence-mini-compare div { padding: .9rem 1rem; background: var(--vd-panel); }
.licence-mini-compare strong, .licence-mini-compare span { display: block; }
.licence-mini-compare span { color: var(--vd-muted); font-size: .82rem; }

.confidence-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.confidence-grid div { padding: 1rem; border: 1px solid var(--vd-line-light); border-radius: var(--radius-md); background: #fff; }
.confidence-grid strong, .confidence-grid span { display: block; }
.confidence-grid strong { color: var(--vd-green-dark); }
.confidence-grid span { margin-top: .2rem; color: var(--vd-muted-dark); }
.scope-note { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: .8rem; background: #fff6d8; color: #493a09; border: 1px solid #ead28a; }

.launch-section { background: var(--vd-bg); }
.launch-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.launch-layout > div > p:not(.eyebrow), .launch-layout > div li { color: var(--vd-muted); }
.check-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.6rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--vd-green); font-weight: 900; }
.check-list.dark li { color: var(--vd-muted-dark); }
.prelaunch-status { padding: .8rem 1rem; border: 1px solid var(--vd-line); border-radius: .7rem; background: var(--vd-panel); }
.lead-form { padding: clamp(1.2rem,3vw,2rem); border: 1px solid var(--vd-line); border-radius: var(--radius-lg); background: var(--vd-panel); box-shadow: var(--shadow-2); }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: .4rem; color: #fff; font-weight: 790; }
.field label span { color: var(--vd-muted); font-size: .85rem; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .75rem .8rem; border: 1px solid #466078; border-radius: .65rem; background: #0d1726; color: #fff; }
.field textarea { resize: vertical; min-height: 150px; }
.field input::placeholder, .field textarea::placeholder { color: #8fa0b4; }
.field [aria-invalid="true"], .checkbox-field input[aria-invalid="true"] { border-color: #ff8b86; }
.field-error { display: block; min-height: 1.2em; margin-top: .28rem; color: #ffaaa6; font-size: .82rem; }
.checkbox-field { display: grid; grid-template-columns: 24px 1fr; gap: .65rem; align-items: start; margin-top: .5rem; }
.checkbox-field input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--vd-green); }
.checkbox-field label { color: var(--vd-muted); font-size: .9rem; }
.form-privacy { color: var(--vd-muted); font-size: .82rem; }
.form-privacy a { color: #7be5be; }
.form-status { min-height: 1.5em; margin: .5rem 0; color: #9ff0d0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.accordion details { border-top: 1px solid var(--vd-line-light); }
.accordion details:last-child { border-bottom: 1px solid var(--vd-line-light); }
.accordion summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-weight: 820; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; flex: 0 0 auto; color: var(--vd-green-dark); font-size: 1.4rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 2rem 1.2rem 0; color: var(--vd-muted-dark); }

.final-cta { padding: 4rem 0; background: linear-gradient(135deg,#0b1220,#102338); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { max-width: 18ch; }
.final-cta p:not(.eyebrow) { color: var(--vd-muted); margin-bottom: 0; }

.site-footer { padding: 4rem 0 1.2rem; background: #07101d; border-top: 1px solid rgba(203,213,225,.14); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3,1fr); gap: 2rem; }
.footer-logo img { width: 210px; }
.footer-brand p { max-width: 48ch; color: var(--vd-muted); font-size: .9rem; }
.footer-origin { color: #78e1bb !important; font-weight: 720; }
.footer-grid h2 { font-size: .9rem; letter-spacing: .02em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: .48rem; }
.footer-grid a { color: var(--vd-muted); text-decoration: none; font-size: .88rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(203,213,225,.12); color: #94a3b8; font-size: .8rem; }
.footer-bottom p { margin: 0; }
.mobile-sticky-cta { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; padding: 20px; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(3,7,18,.92); }
.lightbox-dialog { position: relative; z-index: 1; width: min(96vw,1400px); max-height: 94vh; overflow: auto; padding: 1rem; border-radius: 1rem; background: #07101d; border: 1px solid var(--vd-line); box-shadow: var(--shadow-2); }
.lightbox-dialog img { width: 100%; height: auto; border-radius: .7rem; background: #fff; }
.lightbox-dialog p { margin: .75rem .3rem .1rem; color: var(--vd-muted); }
.icon-button { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: var(--vd-ink); font-size: 1.7rem; cursor: pointer; }
.lightbox-close { position: sticky; top: .2rem; float: right; z-index: 2; margin: 0 0 .4rem .4rem; }
body.is-locked { overflow: hidden; }

.consent { position: fixed; right: 1rem; bottom: 1rem; z-index: 6000; width: min(520px,calc(100% - 2rem)); padding: 1rem; border: 1px solid var(--vd-line); border-radius: 1rem; background: #0d1726; box-shadow: var(--shadow-2); display: flex; gap: 1rem; align-items: center; }
.consent p { margin: .2rem 0 0; color: var(--vd-muted); font-size: .84rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: .5rem; flex: 0 0 auto; }

.simple-main, .legal-main, .resource-main { min-height: 60vh; background: var(--vd-light); color: var(--vd-ink); }
.simple-hero, .legal-hero, .resource-hero { padding: clamp(4rem,8vw,7rem) 0; background: var(--vd-bg); color: #fff; }
.simple-hero p:not(.eyebrow), .legal-hero p:not(.eyebrow), .resource-hero p:not(.eyebrow) { max-width: 65ch; color: var(--vd-muted); }
.resource-download-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 2rem 0; }
.download-card { display: block; padding: 1.3rem; border: 1px solid var(--vd-line); border-radius: var(--radius-md); background: var(--vd-panel); text-decoration: none; }
.download-card strong, .download-card span { display: block; }
.download-card strong { color: #fff; }
.download-card span { margin-top: .3rem; color: var(--vd-muted); font-size: .9rem; }
.form-page-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; }
.form-page-grid .lead-form { margin-top: -6rem; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 3rem; padding: 4rem 0 6rem; }
.legal-nav { position: sticky; top: calc(var(--header-height) + 1rem); height: fit-content; display: flex; flex-direction: column; gap: .4rem; }
.legal-nav a { padding: .55rem .7rem; border-radius: .45rem; color: var(--vd-muted-dark); text-decoration: none; }
.legal-nav a:hover { background: var(--vd-light-2); color: var(--vd-ink); }
.prose { max-width: 820px; }
.prose h2 { margin-top: 2.3rem; font-size: 1.55rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--vd-muted-dark); }
.prose a { color: var(--vd-green-dark); font-weight: 700; }
.checklist-list { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checklist-list li { position: relative; padding: .8rem 1rem .8rem 2.8rem; border: 1px solid var(--vd-line-light); border-radius: .65rem; background: #fff; }
.checklist-list li::before { content: "□"; position: absolute; left: 1rem; top: .72rem; color: var(--vd-green-dark); font-size: 1.2rem; }

@media (max-width: 1100px) {
  .primary-nav { gap: .8rem; font-size: .86rem; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stage-grid { grid-template-columns: repeat(3,1fr); }
  .gallery { grid-template-columns: repeat(3,1fr); }
  .four-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3,.8fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .menu-button { display: inline-flex; }
  .primary-nav { position: fixed; inset: calc(var(--header-height) + 38px) 16px auto 16px; max-height: calc(100vh - 120px); overflow: auto; display: none; padding: 1rem; border: 1px solid var(--vd-line); border-radius: 1rem; background: #0a1423; box-shadow: var(--shadow-2); flex-direction: column; align-items: stretch; gap: .2rem; }
  .primary-nav[data-open="true"] { display: flex; }
  .primary-nav > a:not(.button) { min-height: 46px; display: flex; align-items: center; padding: .6rem .75rem; border-radius: .55rem; }
  .primary-nav .button { margin-top: .5rem; }
  .hero-layout, .demo-layout, .outcome-row, .launch-layout, .faq-layout, .founder-layout, .form-page-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  h1 { max-width: 14ch; }
  .hero-visual { max-width: 760px; }
  .hero-metrics { grid-template-columns: repeat(2,1fr); }
  .hero-metrics div:nth-child(2) { border-right: 0; }
  .hero-metrics div:nth-child(-n+2) { border-bottom: 1px solid rgba(203,213,225,.14); }
  .credibility-grid { grid-template-columns: repeat(2,1fr); }
  .credibility-grid p:nth-child(2) { border-right: 0; }
  .credibility-grid p:nth-child(-n+2) { border-bottom: 1px solid rgba(203,213,225,.12); }
  .three-grid, .pricing-grid, .confidence-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .transformation-grid { grid-template-columns: 1fr; }
  .decision-flow { width: auto; flex-direction: row; }
  .decision-flow i { transform: none; }
  .stage-grid { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .outcome-row.reverse { direction: ltr; }
  .included-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
  .not-fit ul { columns: 1; }
  .founder-card { max-width: 620px; }
  .licence-mini-compare { grid-template-columns: 1fr; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
  .form-page-grid .lead-form { margin-top: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .announcement-inner { padding: .45rem 0; flex-direction: column; gap: .05rem; }
  .site-header { top: 0; }
  .brand img { width: 190px; }
  .primary-nav { inset: calc(var(--header-height) + 70px) 12px auto 12px; }
  .section { padding: 4rem 0; }
  .hero { padding-top: 3.6rem; }
  h1 { font-size: clamp(2.35rem,12vw,3.5rem); }
  h2 { font-size: clamp(1.85rem,8.7vw,2.75rem); }
  .hero-actions, .download-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button, .download-actions .button { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div { border-right: 0; border-bottom: 1px solid rgba(203,213,225,.14); }
  .hero-metrics div:last-child { border-bottom: 0; }
  .credibility-grid { grid-template-columns: 1fr; }
  .credibility-grid p { border-right: 0; border-bottom: 1px solid rgba(203,213,225,.12); }
  .credibility-grid p:last-child { border-bottom: 0; }
  .decision-flow { flex-direction: column; }
  .decision-flow i { transform: rotate(90deg); }
  .stage-grid { grid-template-columns: 1fr; }
  .stage-grid li { min-height: auto; }
  .chapter-list { grid-template-columns: 1fr; }
  .gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .6rem; gap: .75rem; }
  .gallery-item { flex: 0 0 84vw; scroll-snap-align: center; }
  .four-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .table-scroll-cue { display: block; }
  .comparison-wrap { margin-right: calc((100vw - 100%) / -2); border-radius: .85rem 0 0 .85rem; }
  .founder-card { align-items: flex-start; }
  .founder-card img { width: 76px; height: 76px; flex-basis: 76px; }
  .confidence-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky-cta { position: fixed; z-index: 1500; left: 0; right: 0; bottom: 0; display: block; padding: .55rem 12px calc(.55rem + env(safe-area-inset-bottom)); background: rgba(7,16,29,.96); border-top: 1px solid rgba(203,213,225,.2); backdrop-filter: blur(14px); }
  .mobile-sticky-cta .button { width: 100%; }
  .lightbox { padding: 8px; }
  .lightbox-dialog { max-height: 96vh; padding: .55rem; }
  .consent { flex-direction: column; align-items: stretch; }
  .consent-actions { flex-direction: column; }
  .resource-download-grid { grid-template-columns: 1fr; }
  .legal-nav { grid-template-columns: 1fr; }
  .simple-hero, .legal-hero, .resource-hero { padding: 4rem 0; }
}

@media (max-width: 375px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand img { width: 172px; }
  .button { padding-inline: .85rem; }
  .gallery-item { flex-basis: 88vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media print {
  .announcement, .site-header, .mobile-sticky-cta, .site-footer, .button, .video-shell, .gallery, .lightbox, .consent { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .section, .simple-hero, .legal-hero, .resource-hero { padding: 1rem 0; background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* Final v2.0 stability refinements */
.nowrap { white-space: nowrap; }
.hero-copy h1 { max-width: 17ch; text-wrap: balance; }
.founder-card img { aspect-ratio: 1; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 12px 22px rgba(15, 23, 42, .14)); }
.founder-card small { max-width: 27ch; line-height: 1.45; }
.lightbox[hidden], .consent[hidden] { display: none !important; }
body.is-locked, body.no-scroll { overflow: hidden; }
[data-site-mode="live"] [data-prelaunch-only] { display: none !important; }
[data-site-mode="prelaunch"] [data-live-only] { display: none !important; }
@media (max-width: 720px) {
  .nowrap { white-space: normal; }
  .hero-copy h1 { max-width: 13ch; }
}
.featured-download { grid-column: 1 / -1; border-color: var(--vd-green); background: var(--vd-green-soft); }
.featured-download strong { color: var(--vd-green-dark); }

/* v2.2 — route-independent Netlify form confirmation */
.inline-success-panel {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 1rem;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgba(16, 185, 129, .5);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(16, 185, 129, .14), rgba(15, 23, 42, .92));
  box-shadow: var(--shadow-2);
  scroll-margin-top: calc(var(--header-height) + 42px);
}
.inline-success-panel[hidden] { display: none !important; }
.inline-success-panel.is-visible { display: block; }
.inline-success-panel h2,
.inline-success-panel h3 { max-width: 22ch; margin-bottom: .65rem; color: #fff; }
.inline-success-panel > p:not(.eyebrow) { max-width: 70ch; color: var(--vd-muted); }
.inline-success-panel .resource-download-grid { margin-bottom: 1rem; }
.inline-success-panel .download-card { background: rgba(7, 16, 29, .72); }
.inline-success-panel .download-card:hover,
.inline-success-panel .download-card:focus-visible { border-color: var(--vd-green); transform: translateY(-2px); }
.inline-success-panel .featured-download { background: rgba(16, 185, 129, .12); }
.inline-success-panel .featured-download strong { color: #d7fff0; }
.inline-success-panel .success-note { margin: 0; font-size: .92rem; }
.inline-contact-success { width: min(calc(100% - 32px), var(--container)); margin: 2rem auto 0; }
.form-noscript { margin-top: 1rem; color: var(--vd-muted); font-size: .9rem; }
.lead-form[aria-busy="true"] { cursor: progress; }
.lead-form button[disabled] { cursor: progress; opacity: .72; }

@media (max-width: 640px) {
  .inline-success-panel { padding: 1rem; }
  .inline-success-panel .resource-download-grid { gap: .75rem; }
}
