@font-face {
  font-family: "Quicksand";
  src: url("fonts/Quicksand-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: "Quicksand", system-ui, sans-serif;
  background: #000;
  color: var(--vs-fg);
  --site-black: #000;
  --page-width: 1180px;
  --lane: var(--vs-orange);
}

* { box-sizing: border-box; }
html { background: var(--site-black); scroll-behavior: smooth; scrollbar-gutter: stable; }
body { margin: 0; overflow-x: hidden; background: var(--site-black); color: var(--vs-fg); font-weight: 300; }
body.cold-locked { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000; padding: 10px 14px;
  background: var(--vs-fg); color: var(--vs-bg); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 120; display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 22px clamp(20px, 4vw, 52px); }
.site-brand { display: block; width: 154px; }
.site-menu-button { display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; padding: 0; border: 1px solid var(--vs-border); border-radius: 50%; background: rgba(0, 0, 0, .82); cursor: pointer; }
.site-menu-button span { display: block; width: 18px; height: 1px; background: var(--vs-fg); transition: transform .2s ease, opacity .2s ease; }
.site-menu-button[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.site-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-menu-button[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
.site-menu { position: absolute; right: clamp(20px, 4vw, 52px); top: 76px; display: grid; min-width: 235px; padding: 8px; border: 1px solid var(--vs-border-bright); border-radius: 12px; background: rgba(0, 0, 0, .96); box-shadow: 0 18px 50px rgba(0, 0, 0, .55); }
.site-menu[hidden] { display: none; }
.site-menu a { padding: 12px 14px; border-radius: 8px; color: var(--vs-fg-muted); font-size: 13px; text-decoration: none; }
.site-menu a:hover, .site-menu a:focus-visible, .site-menu a[aria-current="page"] { background: color-mix(in srgb, var(--vs-orange) 12%, transparent); color: var(--vs-fg); }

.scroll-rail { position: fixed; inset: 0 0 auto; height: 2px; z-index: 90; background: var(--vs-border); }
.scroll-rail span { display: block; width: 100%; height: 100%; background: var(--vs-orange); transform: scaleX(var(--scroll-progress, 0)); transform-origin: left; animation: scroll-progress 1ms linear both; animation-timeline: scroll(root block); }
@keyframes scroll-progress { to { transform: scaleX(1); } }
@supports not (animation-timeline: scroll()) { .scroll-rail span { animation: none; } }

.section-shell { width: min(var(--page-width), calc(100% - 48px)); margin-inline: auto; padding-block: 120px; }
.eyebrow { margin: 0 0 12px; color: var(--vs-fg-muted); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, h4, p { text-wrap: pretty; }
h1, h2, h3, h4 { margin-top: 0; font-weight: 500; letter-spacing: -.005em; }
h2 { max-width: 820px; margin-bottom: 48px; font-size: clamp(34px, 5.3vw, 68px); line-height: 1.04; }
h3 { font-size: clamp(27px, 3.6vw, 46px); line-height: 1.08; }
p { line-height: 1.7; }

.primary-cta {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 14px 22px;
  border: 0; border-radius: var(--vs-radius, 14px); cursor: pointer; text-decoration: none;
  color: white; background: var(--lane);
  font-weight: 600; transition: transform .1s ease, opacity .15s ease;
}
.primary-cta:hover { opacity: .92; }
.primary-cta:active { transform: scale(.97); }
.primary-cta:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--lane); outline-offset: 4px;
}

/* Cold open */
.cold-open {
  position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; overflow: hidden;
  background-color: var(--site-black); opacity: 0; visibility: hidden; transition: background-color 900ms ease, opacity .35s ease, visibility .35s;
}
.cold-open.active { opacity: 1; visibility: visible; }
.cold-open.handoff-active { background-color: transparent; }
.cold-open.finished { opacity: 0; visibility: hidden; pointer-events: none; }
.cold-message {
  position: absolute; left: var(--x); top: var(--y); max-width: min(310px, 42vw); opacity: 0;
  color: var(--vs-fg); font-size: clamp(15px, 2.35vw, 30px); font-weight: 450; line-height: 1.15;
  text-shadow: 0 0 20px rgba(255, 255, 255, .12); transform: translate(-50%, -50%) scale(.2) rotate(var(--tilt));
}
.cold-open.playing .cold-message { animation: cold-burst 3.8s var(--delay) cubic-bezier(.16, 1, .3, 1) both; }
.cold-wave { position: absolute; width: min(270px, 48vw); opacity: 0; }
.cold-open.playing .cold-wave { animation: cold-wave-flow 2.1s 4.4s cubic-bezier(.37, 0, .32, 1) both, cold-wave-breathe 4.6s 6.5s ease-in-out infinite; }
.cold-wave.handoff-fixed { position: fixed; z-index: 2; max-width: none; margin: 0; animation: none !important; opacity: 1; transform: none; transform-origin: top left; will-change: transform; }
.cold-wave.handoff-active { transition: transform 900ms cubic-bezier(.4, 0, .2, 1), opacity 900ms ease; opacity: .72; transform: translate(var(--handoff-x), var(--handoff-y)) scale(var(--handoff-scale)); }
.cold-wave.handoff-complete { opacity: 0; }
.cold-close { position: absolute; max-width: min(700px, calc(100% - 48px)); margin: 0; color: var(--vs-fg); font-size: clamp(18px, 2.7vw, 30px); text-align: center; opacity: 0; }
.cold-open.playing .cold-close { animation: cold-close-in .45s 5.7s ease forwards; }
.cold-open.handoff-active .cold-close { opacity: 0; transition: opacity 900ms ease; }
.cold-skip { position: absolute; right: 24px; top: 24px; border: 1px solid var(--vs-border); border-radius: 99px; padding: 9px 15px; background: var(--site-black); color: var(--vs-fg-muted); cursor: pointer; }
@keyframes cold-burst {
  0% { opacity: 0; filter: blur(8px); transform: translate(-50%, -50%) scale(.2) rotate(var(--tilt)); }
  18%, 68% { opacity: 1; filter: blur(0); transform: translate(-50%, -50%) scale(1.06) rotate(var(--tilt)); }
  78% { opacity: .92; transform: translate(-50%, -50%) scale(1) rotate(var(--tilt)); }
  100% { opacity: 0; filter: blur(3px); transform: translate(-50%, -50%) scale(1.16) rotate(var(--tilt)); }
}
@keyframes cold-wave-flow {
  0% { opacity: 0; filter: blur(6px); transform: translate(0, -58px) scale(.86); }
  55% { opacity: 1; filter: blur(0); transform: translate(0, -70px) scale(1.05); }
  100% { opacity: 1; filter: blur(0); transform: translate(0, -70px) scale(1); }
}
@keyframes cold-wave-breathe {
  0%, 100% { transform: translate(0, -70px) scale(1); }
  50% { transform: translate(0, -70px) scale(1.05); }
}
@keyframes cold-close-in { to { opacity: 1; transform: translateY(70px); } }

/* Hero */
.hero { min-height: 100dvh; display: grid; place-content: center; justify-items: center; gap: 17px; width: min(960px, calc(100% - 48px)); margin-inline: auto; padding: 100px 0 80px; text-align: center; }
.hero-lockup { position: relative; display: grid; justify-items: center; gap: 11px; }
.hero-wave-trigger { position: relative; z-index: 2; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.hero-wave { width: clamp(240px, 24vw, 340px); animation: wave-breathe 4.1s ease-in-out infinite; transition: filter .3s ease; }
.hero-wave.awaiting-handoff { visibility: hidden; animation: none; transform: scale(.94); opacity: .72; }
.hero-wave-trigger:hover .hero-wave, .hero-wave-trigger:focus-visible .hero-wave { filter: drop-shadow(0 0 18px color-mix(in srgb, var(--vs-orange) 74%, transparent)) drop-shadow(0 0 40px color-mix(in srgb, var(--vs-call-purple) 42%, transparent)); }
.wave-whispers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.wave-whisper { position: absolute; left: calc(50% + var(--whisper-x)); top: calc(50% + var(--whisper-y)); width: max-content; max-width: 190px; color: var(--vs-fg-muted); font-size: 12px; opacity: 0; transform: translate(-50%, -50%) scale(.75); animation: whisper-in 3.2s ease forwards; }
.hero-status { order: 2; display: inline-flex; align-items: center; gap: 9px; margin: 0; color: var(--vs-fg-muted); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vs-success); box-shadow: 0 0 0 0 color-mix(in srgb, var(--vs-success) 48%, transparent); animation: status-blink 1.7s ease-in-out infinite; }
.hero-wordmark { order: 3; width: clamp(190px, 28vw, 320px); }
@keyframes wave-breathe { 0%, 100% { transform: scale(.94); opacity: .72; } 50% { transform: scale(1.09); opacity: 1; } }
@keyframes status-blink { 0%, 100% { opacity: .3; box-shadow: 0 0 0 0 transparent; } 50% { opacity: 1; box-shadow: 0 0 0 5px color-mix(in srgb, var(--vs-success) 16%, transparent); } }
@keyframes whisper-in { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.75); } 18%, 75% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(-50%, -65%) scale(.96); } }
.tagline { margin: 8px 0 16px; color: var(--vs-white); font-size: 14px; letter-spacing: .12em; }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(42px, 7vw, 84px); line-height: .98; }
.hero-support { max-width: 720px; margin: 0 0 16px; color: var(--vs-fg-muted); font-size: clamp(17px, 2.2vw, 22px); line-height: 1.55; }
.replay-cold { border: 0; background: transparent; color: var(--vs-fg-dim); font-size: 12px; cursor: pointer; }

/* Actions */
.actions-section { border-top: 1px solid var(--vs-border); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.flow-card { padding: clamp(24px, 4vw, 48px); border: 1px solid var(--vs-border); border-radius: var(--vs-radius, 14px); background: var(--site-black); }
.flow-card--sync { --lane: var(--vs-orange); border-color: color-mix(in srgb, var(--lane) 38%, var(--vs-border)); }
.flow-kicker { margin: 0 0 18px; color: var(--vs-fg-muted); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.flow-lockup { height: 32px; margin-bottom: 7px; }
.flow-lockup img { width: 120px; max-height: 28px; object-fit: contain; object-position: left center; }
.flow-count { margin: -11px 0 24px; color: var(--vs-fg-dim); font-size: 11px; }
.flow-card--sync .flow-count { color: var(--vs-orange); }
.flow-card h3 { margin-bottom: 32px; font-size: clamp(24px, 3vw, 36px); }
.flow-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.flow-list li { display: grid; grid-template-columns: 30px 1fr; gap: 3px 12px; padding: 16px 0; border-top: 1px solid var(--vs-border); }
.flow-list li > span { grid-row: 1 / 3; display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--vs-border); border-radius: 50%; background: var(--site-black); color: var(--vs-fg-muted); font-size: 11px; }
.flow-card--sync .flow-list li > span { background: color-mix(in srgb, var(--vs-orange) 13%, transparent); color: var(--vs-orange); }
.flow-list strong { font-weight: 500; }
.flow-list small { color: var(--vs-fg-muted); font-size: 13px; line-height: 1.5; }

/* Product tabs */
.family { border-top: 1px solid var(--vs-border); }
.product-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 48px; }
.product-tab { --tab-lane-border: color-mix(in srgb, var(--tab-lane) 24%, transparent); --tab-lane-wash: color-mix(in srgb, var(--tab-lane) 5%, transparent); display: flex; min-width: 0; align-items: center; justify-content: center; gap: 12px; padding: 20px 12px; border: 1px solid var(--tab-lane-border); border-radius: var(--vs-radius, 14px); background: var(--tab-lane-wash); color: var(--vs-fg-muted); cursor: pointer; transition: border-color .15s ease, background .15s ease, transform .1s ease; }
.product-tab img { width: min(225px, 92%); height: 60px; object-fit: contain; opacity: .65; }
.product-tab > span { display: grid; gap: 5px; text-align: left; font-weight: 500; }
.lane-tab-head { display: grid !important; width: 100%; justify-items: center; gap: 9px !important; text-align: center !important; }
.lane-tab-lockup { object-fit: contain; }
.product-tab small { color: var(--vs-fg-dim); font-size: 10px; font-weight: 400; letter-spacing: .04em; }
.product-tab:hover { border-color: color-mix(in srgb, var(--tab-lane) 48%, transparent); }
.product-tab:active { transform: scale(.97); }
.product-tab.active { border-color: color-mix(in srgb, var(--tab-lane) 72%, transparent); background: color-mix(in srgb, var(--tab-lane) 10%, transparent); color: var(--vs-fg); }
.product-tab.active img { opacity: 1; }
.product-tab[data-lane="count"] { --tab-lane: var(--vs-count-green); }
.product-tab[data-lane="sync"] { --tab-lane: var(--vs-orange); }
.product-tab[data-lane="call"] { --tab-lane: var(--vs-call-purple); }
.product-panel { --lane: var(--vs-orange); animation: panel-in .3s ease both; }
.product-panel[data-lane="count"] { --lane: var(--vs-count-green); }
.product-panel[data-lane="call"] { --lane: var(--vs-call-purple); }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } }
.product-heading { max-width: 820px; margin-bottom: 56px; }
.product-status { color: var(--lane); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.product-heading h3 { margin-bottom: 20px; }
.product-heading > p:last-child { max-width: 720px; color: var(--vs-fg-muted); font-size: 18px; }

.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.phase { min-height: 210px; padding: 24px; border: 1px solid var(--vs-border); border-radius: var(--vs-radius, 14px); background: var(--site-black); }
.phase > span, .journey-copy > span { color: var(--lane); font-size: clamp(24px, 3vw, 36px); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.phase h4 { margin: 30px 0 10px; font-size: 24px; }
.phase p { margin: 0; color: var(--vs-fg-muted); font-size: 14px; }

/* Product imagery and gallery triggers */
.visual-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.visual-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.phone-gallery { display: block; width: 100%; margin: 0; padding: 0; border: 0; background: transparent; cursor: zoom-in; transition: transform .1s ease; }
.phone-device { position: relative; display: block; width: min(100%, 390px); aspect-ratio: 600 / 1227; margin-inline: auto; }
.phone-screen { position: absolute; z-index: 1; left: 4.7%; top: 3.4%; width: 90.6%; height: 93.1%; border-radius: 12% / 5.6%; object-fit: fill; object-position: top center; background: #000; }
.phone-frame { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.product-panel[data-lane="call"] .phone-device { overflow: hidden; border-radius: 19% / 9.5%; }
.product-panel[data-lane="call"] .phone-screen { left: 2.2%; top: 1.5%; width: 95.6%; height: 97%; border-radius: 17% / 8.2%; }
.phone-gallery:active { transform: scale(.97); }
.product-supporting-copy { max-width: 620px; margin: 34px 0 0; color: var(--vs-fg-muted); font-size: 13px; }

.future-block { margin-top: 88px; padding-top: 48px; border-top: 1px solid var(--vs-border); }
.future-block > h4 { max-width: 720px; margin-bottom: 14px; font-size: clamp(28px, 4vw, 44px); }
.future-block > p:not(.eyebrow) { max-width: 700px; color: var(--vs-fg-muted); }
.manager-media { --lane: var(--vs-manager-blue); display: grid; gap: 12px; margin-top: 34px; }
.manager-media-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.manager-media-head img { width: min(170px, 48%); max-height: 36px; object-fit: contain; object-position: left center; }
.manager-media-head span { color: var(--vs-manager-blue); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.manager-screen { display: block; width: 100%; margin: 0; padding: 0; overflow: hidden; border: 0; background: transparent; cursor: zoom-in; transition: transform .1s ease; }
.manager-screen img { width: 100%; object-fit: contain; object-position: top center; }
.manager-screen:active { transform: scale(.985); }
.manager-visuals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.journey-carousel { display: grid; grid-template-columns: 50px minmax(0, 1fr) 50px; gap: 18px; align-items: center; outline: none; touch-action: pan-y; }
.journey-viewport { min-width: 0; overflow: hidden; }
.journey-track { display: flex; min-width: 0; transition: transform .48s cubic-bezier(.22, .72, .2, 1); will-change: transform; }
.journey-slide { display: grid; flex: 0 0 100%; grid-template-columns: .82fr .72fr 1.18fr; gap: 20px; align-items: center; min-width: 0; }
.journey-slide--phone { grid-template-columns: minmax(180px, .72fr) minmax(240px, .78fr); justify-content: center; }
.journey-copy > span { font-size: clamp(36px, 5vw, 54px); }
.journey-copy h4 { margin: 14px 0 8px; font-size: clamp(27px, 4vw, 44px); }
.journey-copy p { color: var(--vs-fg-muted); }
.journey-arrow { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid color-mix(in srgb, var(--lane) 42%, var(--vs-border)); border-radius: 50%; background: color-mix(in srgb, var(--lane) 6%, transparent); color: var(--lane); font-size: 30px; cursor: pointer; transition: transform .1s ease, border-color .15s ease; }
.journey-arrow:hover { border-color: var(--lane); }
.journey-arrow:active { transform: scale(.97); }
.journey-pagination { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }
.journey-dot { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 9px; min-width: 0; padding: 10px 12px; border: 1px solid var(--vs-border); border-radius: var(--vs-radius-sm, 8px); background: transparent; color: var(--vs-fg-muted); text-align: left; cursor: pointer; }
.journey-dot strong { color: var(--lane); font-size: 24px; font-weight: 600; }
.journey-dot span { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.journey-dot[aria-current="step"] { border-color: color-mix(in srgb, var(--lane) 58%, transparent); background: color-mix(in srgb, var(--lane) 8%, transparent); color: var(--vs-fg); }
.benefit-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 48px 0 0; padding: 0; border: 1px solid var(--vs-border); border-radius: var(--vs-radius, 14px); list-style: none; overflow: hidden; }
.benefit-list li { display: grid; gap: 10px; padding: 20px; border-right: 1px solid var(--vs-border); }
.benefit-list li:last-child { border-right: 0; }
.benefit-list strong { color: var(--lane); font-size: 13px; font-weight: 500; }
.benefit-list span { color: var(--vs-fg-muted); font-size: 12px; line-height: 1.5; }
.schools-promise { margin: 42px 0; color: var(--vs-call-purple); font-size: clamp(20px, 3vw, 30px); font-weight: 500; }

/* Flexible copy */
.flexible-copy { border-top: 1px solid var(--vs-border); }
.philosophy { padding-bottom: 0; }
.flexible-copy h2 { margin-bottom: 36px; }
.copy-stack { display: grid; gap: 20px; max-width: 780px; }
.copy-stack p { margin: 0; color: var(--vs-fg-muted); font-size: clamp(16px, 2vw, 19px); }
.copy-stack em, .signature { color: var(--vs-fg); }
.philosophy-proof { color: var(--vs-fg) !important; font-weight: 500; }

.audience { padding-top: 44px; }
.audience-label { margin: 0 0 16px; color: var(--vs-fg-muted); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-align: center; text-transform: uppercase; }
.audience-tabs { display: grid; grid-template-columns: repeat(2, 1fr); width: min(620px, 100%); margin: 0 auto 54px; padding: 3px; border: 1px solid color-mix(in srgb, var(--vs-orange) 38%, var(--vs-border)); border-radius: 999px; }
.audience-tabs button { min-height: 48px; padding: 10px 16px; border: 0; border-radius: 999px; background: transparent; color: var(--vs-fg-muted); cursor: pointer; }
.audience-tabs button[aria-selected="true"] { background: var(--vs-orange); color: white; font-weight: 600; }
.audience-panels { width: min(900px, 100%); margin-inline: auto; }
.audience-panels section[hidden] { display: none; }
.audience-panels h2 { margin-bottom: 28px; }

.founder { display: grid; grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr); gap: clamp(42px, 8vw, 110px); }
.founder-intro h2 { font-size: clamp(34px, 4.7vw, 60px); }
.founder-copy { max-width: none; }
.mission-callout { display: grid; gap: 14px; margin-top: 36px; padding-top: 34px; border-top: 1px solid var(--vs-border); }
.mission-callout h3 { margin: 0; font-size: clamp(25px, 3vw, 38px); }
.mission-callout a { width: fit-content; color: var(--vs-orange); font-weight: 600; text-underline-offset: 5px; }

/* Mission page */
.mission-page .site-header { position: relative; }
.mission-page main { padding-top: 30px; }
.mission-hero { padding-bottom: 72px; }
.mission-hero h1 { max-width: 900px; margin-bottom: 32px; font-size: clamp(54px, 9vw, 104px); line-height: .95; }
.mission-hero > p:last-child { max-width: 780px; color: var(--vs-fg-muted); font-size: clamp(19px, 2.4vw, 25px); }
.mission-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: space-between; gap: clamp(54px, 9vw, 130px); padding-top: 0; }
.mission-toc { position: sticky; top: 32px; display: grid; align-self: start; gap: 4px; padding-top: 10px; }
.mission-toc a { padding: 8px 0; color: var(--vs-fg-dim); font-size: 12px; text-decoration: none; }
.mission-toc a:hover, .mission-toc a:focus-visible { color: var(--vs-orange); }
.mission-content { display: grid; }
.mission-content section { padding: 0 0 70px; margin-bottom: 70px; border-bottom: 1px solid var(--vs-border); scroll-margin-top: 32px; }
.mission-content section:last-child { border-bottom: 0; }
.mission-content h2 { margin-bottom: 28px; color: var(--vs-orange); font-size: clamp(34px, 4.7vw, 54px); }
.mission-content h3 { margin: 42px 0 16px; color: var(--vs-orange); font-size: clamp(22px, 3vw, 30px); }
.mission-content p { margin: 0 0 20px; color: var(--vs-fg-muted); font-size: clamp(16px, 2vw, 19px); }
.mission-content .principle { color: var(--vs-orange); font-size: clamp(21px, 3vw, 30px); font-weight: 500; }
.mission-content .closing-line { color: var(--vs-white); font-size: clamp(21px, 3vw, 30px); font-weight: 500; }
.mission-content .closing-signoff { display: flex; align-items: center; flex-wrap: nowrap; gap: 10px; margin-top: 34px; white-space: nowrap; color: var(--vs-white); font-size: clamp(17px, 2.5vw, 30px); font-weight: 500; }
.closing-signoff img { width: clamp(112px, 18vw, 200px); flex: 0 0 auto; }
.mission-cta { display: grid; justify-items: center; gap: 24px; padding: 100px 24px; border-top: 1px solid var(--vs-border); text-align: center; }
.mission-cta h2 { margin: 0; }
.site-footer { display: grid; justify-items: center; gap: 18px; padding: 64px 24px 100px; border-top: 1px solid var(--vs-border); }
.site-footer nav, .site-footer { font-size: 12px; }

/* Interest form */
.interest { --lane: var(--vs-orange); border-top: 1px solid var(--vs-border); }
.interest > h2 { margin-bottom: 16px; }
.interest > p:not(.eyebrow) { color: var(--vs-fg-muted); }
.interest-form { display: grid; gap: 24px; max-width: 800px; margin-top: 44px; padding: clamp(22px, 4vw, 40px); border: 1px solid var(--vs-border); border-radius: var(--vs-radius, 14px); background: var(--site-black); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.interest-form label { display: grid; gap: 8px; color: var(--vs-fg); font-size: 13px; }
.interest-form label > span small { color: var(--vs-fg-dim); }
.interest-form input:not([type="checkbox"]), .interest-form textarea { width: 100%; border: 1px solid var(--vs-border); border-radius: var(--vs-radius-sm, 8px); padding: 13px 14px; background: var(--site-black); color: var(--vs-fg); resize: vertical; }
.interest-form input:focus, .interest-form textarea:focus { border-color: var(--lane); outline: 0; }
.interest-form fieldset { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; padding: 0; border: 0; }
.interest-form legend { margin-bottom: 10px; font-size: 13px; }
.product-choice { display: flex !important; align-items: center; gap: 10px !important; padding: 13px; border: 1px solid var(--vs-border); border-radius: var(--vs-radius-sm, 8px); background: var(--site-black); cursor: pointer; }
.product-choice input { width: 18px; height: 18px; accent-color: var(--vs-orange); }
.product-choice > span { display: grid; gap: 3px; }
.product-choice small { color: var(--vs-fg-muted); font-size: 10px; }
.honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-container { min-height: 1px; }
.form-submit { justify-self: start; min-width: 150px; }
.form-submit:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.form-status { min-height: 24px; margin: 0; color: var(--vs-fg-muted); font-size: 13px; }
.form-status.success { color: var(--vs-success); }
.form-status.error { color: var(--vs-danger); }
.form-privacy { margin: 0; color: var(--vs-fg-muted); font-size: 11px; }
.form-privacy a { color: var(--vs-orange); }
.direct-email { margin-top: 24px; font-size: 13px; }
.direct-email a { color: var(--vs-orange); }

footer { display: grid; justify-items: center; gap: 12px; padding: 72px 24px 110px; border-top: 1px solid var(--vs-border); color: var(--vs-fg-muted); text-align: center; }
.footer-lockup { display: grid; justify-items: center; gap: 10px; }
.footer-lockup img { width: 190px; }
footer p { margin: 0; color: var(--vs-white); font-size: 12px; letter-spacing: .1em; }
footer nav { display: flex; gap: 18px; font-size: 12px; }
footer a { color: var(--vs-orange); }
footer small { color: var(--vs-fg-dim); }

.sticky-cta { position: fixed; right: 22px; bottom: 22px; z-index: 70; min-height: 48px; padding: 13px 18px; border: 0; border-radius: 99px; background: var(--vs-orange); color: white; font-weight: 600; opacity: 0; visibility: hidden; transform: translateY(30px); transition: opacity .25s ease, transform .25s ease, visibility .25s; cursor: pointer; box-shadow: 0 6px 20px rgba(255, 106, 0, .45); }
.sticky-cta.visible { opacity: 1; visibility: visible; transform: none; }
.sticky-cta[data-product="vybecount"] { background: var(--vs-count-green); color: var(--vs-bg); box-shadow: none; }
.sticky-cta[data-product="vybecall"] { background: var(--vs-call-purple); box-shadow: none; }

/* Accessible product gallery */
.gallery { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: transparent; color: var(--vs-fg); }
.gallery::backdrop { background: rgba(0, 0, 0, .88); }
.gallery-shell { position: relative; display: grid; grid-template-columns: 52px minmax(0, 1fr) 52px; width: 100%; height: 100%; align-items: center; gap: 12px; padding: 72px 20px 30px; background: rgba(0, 0, 0, .72); }
.gallery figure { display: grid; min-width: 0; max-height: 100%; justify-items: center; gap: 14px; margin: 0; }
.gallery-media { position: relative; display: grid; max-width: 100%; max-height: calc(100vh - 190px); place-items: center; }
.gallery #gallery-image { max-width: 100%; max-height: calc(100vh - 190px); object-fit: contain; }
.gallery-phone-frame { display: none; }
.gallery.phone-media .gallery-media { display: block; width: min(390px, calc((100vh - 190px) * 600 / 1227), 100%); max-height: none; aspect-ratio: 600 / 1227; }
.gallery.phone-media #gallery-image { position: absolute; z-index: 1; left: 4.7%; top: 3.4%; width: 90.6%; height: 93.1%; max-height: none; border-radius: 12% / 5.6%; object-fit: cover; object-position: top center; background: #000; }
.gallery.phone-media .gallery-phone-frame { position: absolute; z-index: 2; inset: 0; display: block; width: 100%; height: 100%; pointer-events: none; }
.gallery.phone-media.phone-full-bleed .gallery-media { overflow: hidden; border-radius: 19% / 9.5%; }
.gallery.phone-media.phone-full-bleed #gallery-image { left: 2.2%; top: 1.5%; width: 95.6%; height: 97%; border-radius: 17% / 8.2%; }
.gallery figcaption { display: grid; max-width: 680px; gap: 5px; color: var(--vs-fg-muted); font-size: 13px; text-align: center; }
.gallery figcaption strong { color: var(--vs-fg); font-size: 15px; font-weight: 600; }
.gallery figcaption span { line-height: 1.5; }
.gallery-close, .gallery-nav { border: 1px solid var(--vs-border-bright); border-radius: 50%; background: var(--site-black); color: var(--vs-fg); cursor: pointer; }
.gallery-close { position: absolute; right: 20px; top: 20px; width: 42px; height: 42px; font-size: 25px; }
.gallery-nav { width: 48px; height: 48px; font-size: 30px; }

@media (max-width: 960px) {
  .journey-slide { grid-template-columns: .8fr 1fr; }
  .journey-slide > .manager-media { grid-column: 1 / -1; }
  .benefit-list { grid-template-columns: repeat(2, 1fr); }
  .benefit-list li { border-bottom: 1px solid var(--vs-border); }
  .benefit-list li:nth-child(even) { border-right: 0; }
  .visual-grid--three { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .section-shell { width: min(100% - 32px, var(--page-width)); padding-block: 84px; }
  h2 { margin-bottom: 34px; }
  .hero { width: calc(100% - 32px); }
  .hero-wave { width: clamp(190px, 66vw, 280px); }
  .cold-message { max-width: 46vw; font-size: clamp(13px, 4.2vw, 20px); }
  .comparison-grid { grid-template-columns: 1fr; }
  .product-tabs { grid-template-columns: 1fr; gap: 10px; }
  .product-tab { justify-content: flex-start; }
  .product-tab img { width: min(220px, 72vw); height: 56px; }
  .phase-grid { grid-auto-flow: column; grid-auto-columns: minmax(230px, 82vw); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; }
  .phase { scroll-snap-align: start; }
  .visual-grid, .visual-grid--three { grid-auto-flow: column; grid-auto-columns: minmax(230px, 78vw); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; }
  .visual-grid > * { scroll-snap-align: center; }
  .manager-visuals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phase { min-height: 0; }
  .phone-device { width: min(100%, 280px); }
  .manager-screen { max-height: 360px; }
  .manager-screen img { max-height: 360px; }
  .journey-carousel { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 5px; }
  .journey-slide { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 12px; }
  .journey-slide > .manager-media { grid-column: 1 / -1; margin-top: 8px; }
  .journey-arrow { width: 36px; height: 36px; font-size: 24px; }
  .journey-pagination { grid-column: 1 / -1; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit-list li { border-right: 0; }
  .form-grid, .interest-form fieldset { grid-template-columns: 1fr; }
  .sticky-cta { right: 50%; transform: translate(50%, 30px); width: calc(100% - 32px); }
  .sticky-cta.visible { transform: translate(50%, 0); }
  .gallery-shell { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 4px; padding-inline: 6px; }
  .gallery-nav { width: 40px; height: 40px; }
  .site-brand { width: 132px; }
  .site-header { padding-inline: 16px; }
  .site-menu { right: 16px; }
  .audience-label { font-size: 10px; }
  .audience-tabs button { padding-inline: 9px; font-size: 12px; }
  .founder { grid-template-columns: 1fr; gap: 18px; }
  .mission-layout { grid-template-columns: 1fr; gap: 54px; }
  .mission-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: 30px; border-bottom: 1px solid var(--vs-border); }
  .mission-content section { scroll-margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero-wave { animation: none; opacity: 1; }
  .status-dot { animation: none; opacity: 1; }
  .journey-track { transition: none; }
}
