:root {
  --ivory: #F8FFD1;
  --olive: #96A139;
  --lime: #ABC130;
  --grass: #6C7D47;
  --gray-moss: #575C55;
  --twilight: #464259;
  --deep-night: #1F1D28;
  --deep-night-2: #16151d;
  --rule: rgba(248,255,209,0.18);
  --rule-soft: rgba(248,255,209,0.08);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Manrope", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  background: var(--deep-night);
  color: var(--ivory);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--olive); color: var(--deep-night); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; line-height: 0.92; font-feature-settings: "liga","dlig"; }
.mono { font-family: var(--mono); font-weight: 400; }
.italic { font-style: italic; }
.accent { color: var(--olive); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 56px; }

.kicker {
  font-family: var(--body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive);
}

/* shared section heading */
.sec-head {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px;
  padding: 0 0 18px; border-bottom: 1px solid var(--rule);
}
.sec-head .idx { font-family: var(--mono); font-size: 12px; color: rgba(248,255,209,0.45); }
.sec-title { font-size: clamp(48px, 8vw, 120px); margin: 22px 0 0; line-height: 0.92; }
section { position: relative; }
.pad { padding: 120px 0; }
.pad-t { padding-top: 120px; }
.pad-b { padding-bottom: 120px; }

/* ============ PROMO BANNER ============ */
.promo-banner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; background: var(--lime); color: var(--deep-night); padding: 11px 20px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em; transition: background .25s ease; }
.promo-banner:hover { background: var(--ivory); }
.pb-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid rgba(31,29,40,0.45); border-radius: 999px; padding: 3px 10px; }
.pb-cta { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; font-weight: 700; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  backdrop-filter: blur(14px);
  background: rgba(31,29,40,0.55);
  border-bottom: 1px solid rgba(248,255,209,0.06);
  transition: background .3s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 56px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg, .nav-logo img { width: 26px; height: 26px; object-fit: contain; }
.nav-logo .wordmark { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: 0.04em; }
.nav ul { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; font-size: 13px; letter-spacing: 0.04em; font-weight: 500; }
.nav ul a { opacity: 0.75; transition: opacity .2s, color .2s; }
.nav ul a:hover { opacity: 1; color: var(--olive); }
.nav-cta {
  border: 1px solid var(--ivory); padding: 10px 18px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  transition: all .25s ease; white-space: nowrap;
}
.nav-cta:hover { background: var(--ivory); color: var(--deep-night); }
.nav-burger { display: none; background: none; border: 0; color: var(--ivory); cursor: pointer; padding: 8px; }
.nav-burger svg { width: 24px; height: 24px; }
.nav-burger .ico-close { display: none; }
.nav.menu-open .nav-burger .ico-menu { display: none; }
.nav.menu-open .nav-burger .ico-close { display: block; }
.mobile-menu { display: none; }

/* ============ BUTTONS ============ */
.btn {
  padding: 16px 26px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: all .25s ease; cursor: pointer; border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--body);
}
.btn-primary { background: var(--ivory); color: var(--deep-night); }
.btn-primary:hover { background: var(--lime); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(248,255,209,0.4); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--ivory); background: rgba(248,255,209,0.05); }
.btn-block { width: 100%; justify-content: center; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: url("assets/hero.jpeg") center / cover no-repeat var(--deep-night); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,29,40,0.42) 0%, rgba(31,29,40,0.06) 36%, rgba(31,29,40,0.12) 66%, rgba(31,29,40,0.55) 100%);
}
.hero-kicker { position: absolute; z-index: 2; left: 56px; top: 140px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248,255,209,0.88); text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.hero-title { margin: 0; }
.hero-title .ht { position: absolute; z-index: 2; font-weight: 500; font-size: clamp(56px, 9.2vw, 160px); line-height: 0.9; letter-spacing: -0.01em; color: var(--ivory); text-shadow: 0 2px 34px rgba(0,0,0,0.28); }
.ht-top { top: 12vh; right: 56px; text-align: right; }
.ht-bottom { left: 56px; bottom: 6vh; }
.hero-side { position: absolute; z-index: 2; right: 56px; bottom: 8vh; max-width: 380px; display: grid; justify-items: end; gap: 26px; text-align: right; }
.hero-side .hero-sub { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(248,255,209,0.92); text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.hero-cta { border-color: rgba(248,255,209,0.7); backdrop-filter: blur(3px); }
.hero-cta:hover { background: var(--ivory); color: var(--deep-night); border-color: var(--ivory); }

/* ============ MARQUEE ============ */
.marquee { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 26px 0; overflow: hidden; white-space: nowrap; background: var(--deep-night-2); }
.marquee-track { display: inline-flex; gap: 56px; animation: marq 55s linear infinite; font-family: var(--display); font-size: 48px; font-weight: 500; line-height: 1; }
.marquee-track .dot { color: var(--olive); }
.marquee-track em { font-style: italic; color: var(--olive); font-weight: 400; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ IMAGE BAND ============ */
.band { position: relative; min-height: 56vh; display: grid; place-items: center; overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.band-bg { position: absolute; inset: 0; background: url("assets/green-balls.jpeg") center / cover no-repeat var(--deep-night-2); }
.band-bg::after { content: ""; position: absolute; inset: 0; background: rgba(31,29,40,0.42); }
.band-inner { position: relative; z-index: 2; text-align: center; padding: 110px 32px; }
.band-inner h2 { font-size: clamp(40px, 6vw, 96px); line-height: 0.95; margin: 18px 0 0; color: var(--ivory); text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.band-inner h2 em { font-style: italic; color: var(--lime); }

/* ============ PROBLEM ============ */
.problem { background: var(--deep-night); }
.problem-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.problem-lead { font-family: var(--display); font-size: clamp(24px, 2.6vw, 36px); font-weight: 400; line-height: 1.35; }
.problem-lead .accent { font-style: italic; }
.problem-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.problem-list li { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.problem-list .n { font-family: var(--mono); font-size: 12px; color: var(--olive); }
.problem-list .t { font-size: 16px; opacity: 0.85; line-height: 1.55; }

/* ============ SOLUTION (3 steps) ============ */
.solution { background: var(--deep-night-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 56px; }
.step { background: var(--deep-night-2); padding: 44px 36px 40px; min-height: 300px; display: flex; flex-direction: column; }
.step .step-n { font-family: var(--display); font-size: 72px; line-height: 0.8; color: var(--olive); }
.step h3 { font-family: var(--display); font-weight: 500; font-size: 30px; margin: 28px 0 14px; line-height: 1.05; }
.step p { font-size: 15px; opacity: 0.78; margin: 0; line-height: 1.65; }
.step .step-ico { margin-top: auto; padding-top: 24px; }
.step .step-ico svg { width: 48px; height: 48px; }
.solution-micro { text-align: center; margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(248,255,209,0.6); }

/* ============ PRODUCT ============ */
.product-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--rule); }
.product-row:last-child { border-bottom: 0; }
.product-row.flip .product-media { order: 2; }
.product-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--olive); text-transform: uppercase; }
.product-row h3 { font-family: var(--display); font-weight: 500; font-size: clamp(40px, 4.6vw, 68px); line-height: 0.98; margin: 14px 0 20px; }
.product-row p { font-size: 16px; opacity: 0.82; max-width: 46ch; line-height: 1.7; margin: 0; }
.product-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.pill { border: 1px solid var(--rule); border-radius: 999px; padding: 7px 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: rgba(248,255,209,0.75); text-transform: uppercase; }
.product-media { position: relative; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden; linear-gradient(160deg, #25232f, #16151d); display: grid; place-items: center; }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-media img.app-shot { position: relative; width: auto; height: 88%; object-fit: contain; }
.product-media .ph-note { position: absolute; left: 14px; bottom: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: rgba(248,255,209,0.4); }

/* ============ UMFRAGE-BAND (full-bleed) ============ */
.survey { position: relative; padding: 130px 0; overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.survey::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(38,48,18,0.5), rgba(38,48,18,0.6)), url("assets/umfrage-bg.jpeg") center / cover no-repeat; }
.survey-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.survey-copy h2 { font-size: clamp(36px, 4.4vw, 68px); margin: 0 0 14px; line-height: 0.95; color: var(--ivory); text-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.survey-copy p { margin: 0; max-width: 54ch; font-size: 15.5px; line-height: 1.65; color: rgba(248,255,209,0.92); text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.survey-btn { border: 1px solid rgba(248,255,209,0.75); color: var(--ivory); white-space: nowrap; backdrop-filter: blur(3px); }
.survey-btn:hover { background: var(--ivory); color: var(--deep-night); }

/* ============ FEATURES ============ */
.feat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; background: var(--rule); margin-top: 56px; border: 1px solid var(--rule); }
.feat { background: var(--deep-night); padding: 38px 30px 34px; display: flex; flex-direction: column; min-height: 280px; transition: background .3s; }
.feat:hover { background: #25232f; }
.feat .fi { font-family: var(--mono); font-size: 11px; color: var(--olive); letter-spacing: 0.16em; }
.feat .feat-ico { margin: 24px 0 18px; }
.feat .feat-ico svg { width: 40px; height: 40px; }
.feat h4 { font-family: var(--display); font-weight: 500; font-size: 28px; line-height: 1.08; margin: auto 0 12px; }
.feat p { font-size: 14px; line-height: 1.65; opacity: 0.78; margin: 0; }
.feat.span-4 { grid-column: span 4; }
.feat.span-6 { grid-column: span 6; }

/* ============ APP PREVIEW ============ */
.app-preview { background: var(--deep-night-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.app-wrap { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 72px; margin-top: 56px; align-items: center; }
.app-media { display: grid; place-items: center; }
.app-media img { width: min(100%, 380px); height: auto; }
.app-copy .app-lead { font-family: var(--display); font-size: clamp(22px, 2.3vw, 34px); font-weight: 400; line-height: 1.3; margin: 0 0 34px; max-width: 30ch; }
.app-feats { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.app-feats li { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.app-feats .n { font-family: var(--mono); font-size: 12px; color: var(--olive); }
.app-feats h4 { font-family: var(--display); font-size: 24px; font-weight: 500; margin: 0 0 6px; line-height: 1; }
.app-feats p { margin: 0; font-size: 14.5px; opacity: 0.78; line-height: 1.6; }
.app-planned { margin-top: 32px; display: grid; gap: 14px; }
.app-note { text-align: center; margin-top: 26px; font-size: 12px; opacity: 0.55; font-family: var(--mono); letter-spacing: 0.08em; }

/* ============ USE CASES ============ */
.usecases { background: var(--deep-night); }
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 56px; }
.uc { background: var(--deep-night); padding: 44px 34px; min-height: 320px; display: flex; flex-direction: column; }
.uc .uc-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--olive); text-transform: uppercase; }
.uc h3 { font-family: var(--display); font-weight: 500; font-size: 34px; margin: 20px 0 16px; line-height: 1; }
.uc p { font-size: 15px; opacity: 0.8; line-height: 1.65; margin: 0; }
.uc .uc-ico { margin-top: auto; padding-top: 28px; }
.uc .uc-ico svg { width: 44px; height: 44px; }

/* ============ ROADMAP ============ */
.roadmap { background: var(--deep-night-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.timeline { margin-top: 60px; border-top: 1px solid var(--rule); }
.tl-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--rule); align-items: baseline; transition: background .3s; }
.tl-item:hover { background: rgba(248,255,209,0.02); }
.tl-phase { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--olive); }
.tl-body h3 { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3vw, 44px); margin: 0 0 10px; line-height: 1; }
.tl-body p { font-size: 15px; opacity: 0.78; margin: 0; max-width: 60ch; line-height: 1.6; }
.tl-status { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--rule); white-space: nowrap; color: rgba(248,255,209,0.7); }
.tl-status.now { color: var(--deep-night); background: var(--lime); border-color: var(--lime); }
.tl-status.next { color: var(--lime); border-color: rgba(171,193,48,0.5); }

/* ============ VISION ============ */
.vision { background: var(--deep-night); }
.vision-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.vision-lead { font-family: var(--display); font-size: clamp(26px, 3vw, 44px); font-weight: 400; line-height: 1.25; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); align-self: start; }
.vision-grid .vg { background: var(--deep-night); padding: 22px 20px; display: flex; align-items: center; gap: 12px; min-height: 84px; }
.vision-grid .vg .vn { font-family: var(--mono); font-size: 11px; color: var(--olive); }
.vision-grid .vg .vt { font-size: 14px; opacity: 0.85; }

/* ============ EARLY ACCESS FORM ============ */
.early { background: var(--deep-night-2); border-top: 1px solid var(--rule); }
.early-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; margin-top: 56px; align-items: start; }
.early-copy h2 { font-family: var(--display); font-weight: 500; font-size: clamp(40px, 4.8vw, 72px); line-height: 0.98; margin: 0 0 22px; }
.early-copy p { font-size: 16px; opacity: 0.82; line-height: 1.7; max-width: 44ch; }
.early-trust { margin-top: 36px; display: grid; gap: 14px; }
.early-trust .et { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; font-size: 14px; opacity: 0.85; }
.early-trust .et svg { width: 22px; height: 22px; }
.form-card { background: var(--deep-night); border: 1px solid var(--rule); border-radius: 24px; padding: 40px; }
.form-row { display: grid; gap: 8px; margin-bottom: 22px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row.two > div { display: grid; gap: 8px; }
label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(248,255,209,0.7); }
input[type="text"], input[type="email"], select {
  width: 100%; background: var(--deep-night-2); border: 1px solid var(--rule); border-radius: 10px;
  padding: 13px 14px; color: var(--ivory); font-family: var(--body); font-size: 15px; font-weight: 300;
  transition: border-color .2s;
}
input::placeholder { color: rgba(248,255,209,0.35); }
input:focus, select:focus { outline: none; border-color: var(--olive); }
select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2396A139' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.chips-field { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-check { position: relative; cursor: pointer; }
.chip-check input { position: absolute; opacity: 0; pointer-events: none; }
.chip-check span { display: inline-block; border: 1px solid var(--rule); border-radius: 999px; padding: 9px 14px; font-size: 13px; transition: all .2s; }
.chip-check input:checked + span { background: var(--olive); border-color: var(--olive); color: var(--deep-night); font-weight: 600; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin-bottom: 24px; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--olive); }
.consent label { font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: 12.5px; line-height: 1.5; color: rgba(248,255,209,0.7); }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; margin: 0 auto 20px; }
.form-success h3 { font-family: var(--display); font-weight: 500; font-size: 36px; margin: 0 0 12px; }
.form-success p { opacity: 0.8; font-size: 15px; max-width: 36ch; margin: 0 auto; }
.form-hidden { display: none; }
.early-photo { margin: 40px 0 0; }
.early-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; border: 1px solid var(--rule); }
.early-photo figcaption { margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,255,209,0.5); }

/* ============ ABOUT / TEAM ============ */
.about { background: var(--deep-night); }
.story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.story figure { margin: 0; }
.story img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 20px; border: 1px solid var(--rule); }
.story figcaption { margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,255,209,0.55); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.about-copy p { font-size: 16px; opacity: 0.82; line-height: 1.7; max-width: 48ch; }
.about-copy .made { margin-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--olive); }
.team { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.team .tm { background: var(--deep-night); padding: 26px 28px; display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; }
.team .tm .av { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--grass), var(--twilight)); display: grid; place-items: center; font-family: var(--display); font-size: 20px; color: var(--ivory); }
.team .tm .av-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 1px solid var(--rule); }
.team .tm .nm { font-family: var(--display); font-size: 22px; font-weight: 500; line-height: 1; }
.team .tm .rl { font-size: 13px; opacity: 0.7; margin-top: 4px; }
.team .tm.ceo { grid-template-columns: 96px 1fr; padding: 32px 30px; }
.team .tm.ceo .av-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 1px solid var(--rule); }
.team .tm.ceo .ceo-note { margin: 12px 0 0; font-size: 13.5px; opacity: 0.7; line-height: 1.6; }

/* ============ FAQ ============ */
.faq { background: var(--deep-night-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.faq-list { margin-top: 56px; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { width: 100%; background: none; border: 0; color: var(--ivory); cursor: pointer; text-align: left; padding: 28px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; font-family: var(--display); font-size: clamp(20px, 2.2vw, 30px); font-weight: 500; }
.faq-q .ico { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--olive); transition: transform .3s; }
.faq-q .ico::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-q .ico::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-q .ico::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { margin: 0 0 28px; max-width: 70ch; font-size: 15.5px; opacity: 0.8; line-height: 1.7; padding-right: 46px; }

/* ============ FINAL CTA ============ */
.final-cta { padding: 150px 0; text-align: center; position: relative; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(31,29,40,0.78), rgba(31,29,40,0.85)), url("assets/schlaeger-ball.jpeg") center / cover no-repeat; pointer-events: none; }
.final-cta h2 { font-family: var(--display); font-weight: 500; font-size: clamp(48px, 8vw, 130px); line-height: 0.95; margin: 22px 0 30px; position: relative; }
.final-cta h2 em { font-style: italic; color: var(--olive); }
.final-cta p { max-width: 50ch; margin: 0 auto 44px; opacity: 0.82; font-size: 16px; position: relative; }
.final-cta .cta-actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; position: relative; }

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--rule); padding: 70px 0 36px; font-size: 13px; }
.foot-wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .nav-logo { margin-bottom: 18px; }
.foot-brand p { opacity: 0.7; margin: 0 0 18px; max-width: 34ch; line-height: 1.6; }
.foot-brand .claim { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--olive); }
.foot-wrap h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--olive); text-transform: uppercase; margin: 0 0 18px; font-weight: 500; }
.foot-wrap ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-wrap a { opacity: 0.75; transition: opacity .2s, color .2s; }
.foot-wrap a:hover { opacity: 1; color: var(--olive); }
.foot-mark { overflow: hidden; }
.foot-mark .display { font-size: clamp(56px, 12.5vw, 200px); line-height: 0.85; margin: 40px 0 0; letter-spacing: -0.03em; white-space: nowrap; text-align: center; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(248,255,209,0.5); }
.foot-disclaimer { max-width: 60ch; line-height: 1.5; text-transform: none; letter-spacing: 0; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); transition: transform .35s ease; background: rgba(22,21,29,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--rule); }
.sticky-cta .btn { width: 100%; justify-content: center; }
.sticky-cta.hide { transform: translateY(110%); }

/* ============ REVEAL ANIM ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .container, .container-wide { padding: 0 32px; }
  .nav ul { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .pad { padding: 84px 0; }
  .hero { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 142px 28px 60px; min-height: 82svh; }
  .hero-bg { background-position: center 38%; }
  .pb-text { display: none; }
  .hero-kicker { position: static; }
  .hero-title { display: grid; gap: 26px; }
  .hero-title .ht { position: static; text-align: left; }
  .hero-side { position: static; max-width: 46ch; justify-items: start; text-align: left; }
  .story { gap: 14px; }
  .problem-wrap, .vision-wrap, .about-wrap, .early-wrap { grid-template-columns: 1fr; gap: 40px; }
  .app-wrap { grid-template-columns: 1fr; gap: 44px; }
  .steps { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .product-row.flip .product-media { order: 0; }
  .survey { padding: 90px 0; }
  .survey-inner { grid-template-columns: 1fr; justify-items: start; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat.span-4, .feat.span-6 { grid-column: span 1; }
  .uc-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 12px; }
  .tl-status { justify-self: start; }
  .foot-wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: span 2; }
  .sticky-cta { display: block; }
  .nav.menu-open { bottom: 0; height: 100dvh; display: flex; flex-direction: column; overflow: hidden; }
  .mobile-menu { display: none; flex-direction: column; padding: 8px 32px 24px; background: rgba(22,21,29,0.99); opacity: 0; transition: opacity .3s ease; }
  .nav.menu-open .mobile-menu { display: flex; flex: 1; min-height: 0; opacity: 1; border-top: 1px solid var(--rule-soft); overflow-y: auto; }
  .mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; }
  .mobile-menu ul a { display: block; padding: 16px 0; font-family: var(--display); font-size: 30px; font-weight: 500; line-height: 1; border-bottom: 1px solid var(--rule-soft); }
  .mobile-menu .btn { margin-top: 18px; }
  input[type="text"], input[type="email"], select { font-size: 16px; }
  footer { padding-bottom: 130px; }
  html { scroll-padding-top: 110px; }
}
@media (max-width: 560px) {
  .container, .container-wide { padding: 0 20px; }
  .hero { padding: 136px 20px 52px; min-height: 74svh; gap: 18px; }
  .hero-title .ht { font-size: clamp(46px, 12.5vw, 76px); }
  .story { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .foot-wrap { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .foot-brand { grid-column: span 2; }
  .nav-inner { padding: 14px 20px; }
  .mobile-menu { padding: 0 20px; }
  .nav.menu-open .mobile-menu { padding: 6px 20px 22px; }
  .promo-banner { padding: 10px 14px; font-size: 12.5px; gap: 10px; }
  .pad { padding: 72px 0; }
  .sec-title { font-size: clamp(40px, 11.5vw, 64px); }
  .band { min-height: 46vh; }
  .band-inner { padding: 80px 20px; }
  .step { padding: 36px 24px 34px; min-height: 0; }
  .feat { padding: 32px 24px 30px; min-height: 0; }
  .uc { padding: 36px 24px; min-height: 0; }
  .chip-check span { padding: 11px 16px; font-size: 14px; }
  .consent input { width: 22px; height: 22px; }
  .faq-q { padding: 24px 0; }
  .faq-a p { padding-right: 24px; }
  .survey { padding: 70px 0; }
  .survey-btn { width: 100%; justify-content: center; }
  .cta-actions { display: grid; width: 100%; gap: 12px; }
  .cta-actions .btn { justify-content: center; }
  .final-cta { padding: 100px 0; }
  .team .tm.ceo { grid-template-columns: 1fr; padding: 26px 22px; row-gap: 16px; }
}
