:root {
  --ink: #172026;
  --deep: #10171c;
  --panel: #202c33;
  --raised: #293840;
  --border: #2f4048;
  --strong: #40565f;
  --text: #f4f5f2;
  --secondary: #ccd7d8;
  --muted: #94a4a7;
  --blue: #21bdb2;
  --blue-fill: #16aaa1;
  --blue-light: #5be2d6;
  --accent-wash: rgba(45, 211, 198, .18);
  --amber: #ed9d6c;
  --ok: #66d19a;
  --warn: #f0b15c;
  --serif: "Charter", "Iowan Old Style", "Source Serif 4", Cambria, Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max: 1340px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; background: var(--deep); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 28% 7%, rgba(45, 211, 198, .13), transparent 29%),
    radial-gradient(circle at 88% 24%, rgba(237, 157, 108, .045), transparent 24%),
    linear-gradient(180deg, var(--deep), var(--ink) 20%, var(--ink));
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue-light); color: var(--deep); }
:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 3px; }
.shell { width: min(calc(100% - 100px), var(--max)); margin-inline: auto; }
.skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 5px;
  background: var(--text);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 82px;
  border-bottom: 1px solid var(--border);
  background: rgba(16, 23, 28, .9);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; min-height: 82px; align-items: center; gap: 28px; }
.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1;
}
.brand em {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.nav { display: flex; margin-left: auto; align-items: center; gap: clamp(18px, 2.6vw, 42px); }
.nav a { padding: 10px 0; color: var(--secondary); font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--text); }
.locale { display: flex; gap: 3px; padding: 3px; border: 1px solid var(--strong); border-radius: 999px; }
.locale button {
  min-height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.locale button.active { background: var(--raised); color: var(--text); }
.cta-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px !important;
  border: 1px solid var(--strong);
  border-radius: 5px;
  background: rgba(33, 189, 178, .06);
  color: var(--blue-light) !important;
}
.cta-link:hover { border-color: var(--blue-light); background: var(--accent-wash); }
.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--strong);
  border-radius: 5px;
  background: rgba(33, 189, 178, .06);
  color: var(--blue-light);
  font-size: 12px;
}

.hero { position: relative; overflow: hidden; }
.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(91, 226, 214, .05) 1px, transparent 1px),
    linear-gradient(rgba(91, 226, 214, .04) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 100px), var(--max));
  min-height: calc(100svh - 82px);
  margin-inline: auto;
  padding: 54px 0 72px;
  align-items: center;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
.hero-copy { grid-column: 1 / 6; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.hero-title-line { display: block; }
.accent { color: var(--blue-light); }
.hero-summary {
  max-width: 550px;
  margin: 26px 0 0;
  color: var(--secondary);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--blue-fill), var(--blue)); color: var(--deep); }
.button.primary:hover { background: linear-gradient(135deg, var(--blue), #32d2c5); }
.button.secondary { border-color: var(--blue-light); background: rgba(33, 189, 178, .05); color: var(--blue-light); }
.button.secondary:hover { background: var(--accent-wash); color: var(--text); }
.snapshot {
  overflow: hidden;
  grid-column: 7 / 13;
  border: 1px solid var(--strong);
  border-radius: 8px;
  background: rgba(32, 44, 51, .95);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
}
.snapshot-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.snap-row { display: flex; min-height: 132px; align-items: center; gap: 22px; padding: 22px; border-bottom: 1px solid var(--border); }
.snap-copy { display: grid; min-width: 0; }
.snap-label { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.snap-value { margin-top: 10px; font-size: clamp(25px, 2.1vw, 31px); font-weight: 600; line-height: 1; }
.snap-value.accent { color: var(--blue-light); }
.snap-value.ok { color: var(--ok); }
.snap-note { margin-top: 9px; color: var(--secondary); font-size: 12px; line-height: 1.5; }
.gauge { position: relative; width: 82px; height: 82px; margin-left: auto; flex: 0 0 82px; }
.gauge svg { width: 82px; height: 82px; transform: rotate(-90deg); }
.gauge .arc { stroke-dashoffset: 150.8; }
.gv { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.gv strong { display: block; font-size: 20px; }
.gv small { display: block; color: var(--muted); font: 9px var(--mono); }
.snapshot-foot { display: flex; margin: 0; align-items: center; gap: 10px; padding: 15px 22px; color: var(--muted); font-size: 11px; }
.snapshot-foot i { width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: var(--ok); }

.overview { background: transparent; }
.overview-title {
  margin: 0;
  padding: 84px 0 34px;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.native-feature, .native-feature.reverse {
  display: grid;
  padding: 76px 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: clamp(54px, 7vw, 100px);
  border-top: 1px solid var(--border);
}
.native-feature.reverse { grid-template-columns: minmax(320px, .96fr) minmax(0, 1.04fr); }
.native-feature.reverse .native-visual { order: 2; }
.native-copy { max-width: 560px; }
.native-copy h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(31px, 3.1vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.native-copy p { max-width: 54ch; margin: 20px 0 0; color: var(--secondary); font-size: 17px; line-height: 1.58; }
.native-visual {
  min-width: 0;
  overflow: visible;
}
.artboard-svg { display: block; width: 100%; max-height: 440px; overflow: visible; }
.artboard-svg text { font-family: var(--sans); user-select: text; }
.artboard-svg .svg-label { font-weight: 700; }
.artboard-svg .svg-small { font-family: var(--mono); }
.artboard-svg .svg-shadow { filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .2)); }
.artboard-svg stop[stop-color="#65778d"], .artboard-svg stop[stop-color="#6e86a8"] { stop-color: var(--strong); }
.artboard-svg stop[stop-color="#4d6075"], .artboard-svg stop[stop-color="#526b88"] { stop-color: var(--raised); }
.artboard-svg stop[stop-color="#9bb5a4"] { stop-color: var(--blue); }
.artboard-svg stop[stop-color="#6f8f81"], .artboard-svg stop[stop-color="#7f9f91"] { stop-color: var(--blue-fill); }
.artboard-svg [fill="#65778d"] { fill: var(--strong); }
.artboard-svg [fill="#9bb5a4"] { fill: var(--blue); }
.artboard-svg [fill="#18242a"], .artboard-svg [fill="#171d26"], .artboard-svg [fill="#222329"] { fill: var(--deep); }
.artboard-svg [fill="#55ddd3"] { fill: var(--blue-light); }
.artboard-svg [stroke="#65778d"] { stroke: var(--strong); }
.artboard-svg [stroke="#7f9f91"], .artboard-svg [stroke="#55ddd3"] { stroke: var(--blue-light); }
.artboard-svg .high-contrast-label { fill: var(--deep); }

.video-section { padding: 88px 0 100px; border-top: 1px solid var(--border); }
.section-head { max-width: 720px; margin-bottom: 38px; }
.section-head h2 { margin: 0; font-family: var(--sans); font-size: clamp(31px, 3.3vw, 46px); line-height: 1.1; }
.section-head p:last-child { max-width: 650px; margin: 20px 0 0; color: var(--secondary); font-size: 17px; line-height: 1.6; }
.launch-note { color: var(--muted) !important; font-size: 13px !important; }
.launch-note.full { grid-column: 1 / 3; margin: 0; }
.video-card {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding: 12px;
  border: 1px solid var(--strong);
  border-radius: 8px;
  background: rgba(32, 44, 51, .9);
  box-shadow: 0 26px 66px rgba(0, 0, 0, .22);
}
.video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 4px; background: #070a0b; object-fit: contain; }

.contact {
  width: min(calc(100% - 48px), 1440px);
  margin: 54px auto 24px;
  padding: clamp(46px, 6vw, 82px);
  border: 1px solid var(--strong);
  border-radius: 8px;
  background: radial-gradient(circle at 10% 18%, rgba(45, 211, 198, .1), transparent 31%), var(--panel);
}
.contact-grid { display: grid; width: 100%; grid-template-columns: .9fr 1.1fr; gap: clamp(52px, 8vw, 110px); }
.contact .section-head { margin: 0; }
.contact-details { display: grid; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); gap: 14px; }
.contact-details span, .contact-details a { color: var(--secondary); font-size: 13px; }
.contact-details a { color: var(--blue-light); }
.contact-form { display: grid; padding: 28px; border: 1px solid var(--strong); border-radius: 6px; background: rgba(16, 23, 28, .72); grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.contact-form[hidden] { display: none; }
.field { display: grid; gap: 7px; }
.field.full, .form-consent.full, .turnstile-area.full, .form-error.full, .form-actions { grid-column: 1 / 3; }
.field label { color: var(--secondary); font-size: 12px; font-weight: 500; }
.field input, .field textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--strong); border-radius: 4px; background: rgba(32, 44, 51, .98); color: var(--text); }
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue-light); outline: 0; box-shadow: 0 0 0 3px rgba(91, 226, 214, .14); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { display: flex; align-items: flex-start; gap: 11px; color: var(--secondary); font-size: 11px; line-height: 1.55; cursor: pointer; }
.form-consent input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--blue-light); }
.form-consent a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 2px; }
.turnstile-area { display: flex; width: 100%; min-width: 0; padding: 4px 0 2px; justify-content: center; }
.turnstile-widget { width: min(100%, 300px); min-height: 65px; overflow: hidden; }
.form-error { margin: 0; padding: 11px 13px; border-left: 3px solid var(--warn); background: rgba(240, 177, 92, .08); color: var(--text); font-size: 12px; line-height: 1.5; }
.form-error[hidden] { display: none; }
.form-actions { display: grid; gap: 9px; }
.form-actions .button { width: 100%; }
.form-actions .button:disabled { cursor: wait; opacity: .58; }
.form-status { margin: 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-success { display: none; min-height: 420px; padding: 42px; border: 1px solid var(--strong); border-radius: 6px; background: rgba(16, 23, 28, .72); }
.form-success.visible { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; }
.form-success h3 { margin: 0; font-family: var(--serif); font-size: 30px; }
.form-success p { color: var(--secondary); }

.legal-nav { display: flex; margin-left: auto; align-items: center; flex: 0 0 auto; gap: 16px; white-space: nowrap; }
.legal-page { min-height: calc(100vh - 212px); }
.legal-layout { max-width: 920px; padding-top: 96px; padding-bottom: 108px; }
.legal-title { padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.legal-title h1 { margin: 22px 0 0; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 64px); line-height: 1.05; }
.legal-title p { max-width: 740px; margin: 24px 0 0; color: var(--secondary); font-size: 17px; line-height: 1.7; }
.legal-title .legal-meta { margin-top: 0; color: var(--blue-light); font: 11px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.draft-badge { display: inline-flex; padding: 7px 10px; border: 1px solid rgba(240, 177, 92, .48); border-radius: 3px; color: var(--warn); font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.legal-block { padding: 46px 0; border-bottom: 1px solid var(--border); }
.legal-block h2 { margin: 0 0 20px; font-size: 24px; }
.legal-block h3 { margin: 28px 0 8px; font-size: 17px; }
.legal-block p { max-width: 76ch; margin: 14px 0 0; color: var(--secondary); line-height: 1.72; }
.legal-block a, .legal-list a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-address { margin-top: 18px; color: var(--secondary); font-style: normal; line-height: 1.72; }
.legal-fields { display: grid; margin: 0; }
.legal-fields div { display: grid; padding: 15px 0; grid-template-columns: 1fr 1fr; gap: 28px; border-top: 1px solid var(--border); }
.legal-fields dt { color: var(--secondary); }
.legal-fields dd { margin: 0; color: var(--text); }
.legal-list { display: grid; max-width: 78ch; margin: 0; padding-left: 20px; gap: 13px; color: var(--secondary); }
.legal-note { padding-left: 18px; border-left: 2px solid var(--blue-light); }
.legal-warning { display: grid; margin-top: 46px; padding: 23px 25px; grid-template-columns: .35fr 1fr; gap: 28px; border-left: 3px solid var(--warn); background: rgba(240, 177, 92, .07); }
.legal-warning strong { color: var(--warn); }
.legal-warning span { color: var(--secondary); }

.footer { background: transparent; }
.footer-inner { display: grid; min-height: 130px; align-items: center; grid-template-columns: .5fr 1fr .5fr; gap: 24px; border-top: 1px solid var(--border); }
.footer-brand { font-family: var(--serif); font-size: 19px; letter-spacing: .2em; }
.footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 24px; }
.footer a, .footer-cookie-button { color: var(--muted); font-size: 12px; }
.footer a:hover, .footer-cookie-button:hover { color: var(--text); }
.footer-cookie-button { margin: 0; padding: 0; border: 0; background: transparent; font-family: inherit; cursor: pointer; }
.to-top { justify-self: end; }

.cookie-dialog-open { overflow: hidden; }
.cookie-banner[hidden], .cookie-layer[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  width: min(calc(100% - 40px), 940px);
  margin-inline: auto;
  padding: 20px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  border: 1px solid var(--strong);
  border-radius: 6px;
  background: rgba(22, 31, 37, .98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .38);
}
.cookie-banner-copy strong { font-size: 14px; }
.cookie-banner-copy p { max-width: 72ch; margin: 7px 0 0; color: var(--secondary); font-size: 13px; line-height: 1.55; }
.cookie-links, .cookie-dialog-links { display: flex; margin-top: 10px; gap: 16px; }
.cookie-links a, .cookie-dialog-links a { color: var(--blue-light); font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions, .cookie-dialog-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.cookie-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--strong);
  border-radius: 4px;
  font: 700 11px var(--sans);
  cursor: pointer;
}
.cookie-button.secondary { background: var(--panel); color: var(--text); }
.cookie-button.primary { border-color: var(--blue); background: var(--blue); color: #091517; }
.cookie-button:hover { border-color: var(--blue-light); }
.cookie-layer { position: fixed; z-index: 100; inset: 0; display: grid; padding: 20px; place-items: center; }
.cookie-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(5, 10, 14, .78); cursor: default; }
.cookie-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - 40px);
  padding: 30px;
  overflow-y: auto;
  border: 1px solid var(--strong);
  border-radius: 6px;
  outline: 0;
  background: #162027;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5);
}
.cookie-dialog:focus-visible { box-shadow: 0 0 0 3px rgba(91, 226, 214, .22), 0 28px 80px rgba(0, 0, 0, .5); }
.cookie-dialog-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; padding: 0; border: 1px solid var(--border); border-radius: 4px; background: transparent; color: var(--secondary); font-size: 24px; line-height: 1; cursor: pointer; }
.cookie-dialog-close:hover { border-color: var(--blue-light); color: var(--text); }
.cookie-dialog header { padding-right: 46px; }
.cookie-dialog h2 { margin: 0; font-size: 28px; }
.cookie-dialog header p { max-width: 62ch; margin: 12px 0 0; color: var(--secondary); font-size: 14px; line-height: 1.6; }
.cookie-options { margin-top: 26px; border-top: 1px solid var(--border); }
.cookie-option { display: grid; min-height: 112px; padding: 19px 0; align-items: center; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; border-bottom: 1px solid var(--border); }
.cookie-option strong { font-size: 15px; }
.cookie-option p { max-width: 58ch; margin: 6px 0 0; color: var(--secondary); font-size: 12px; line-height: 1.55; }
.cookie-option.selectable { cursor: pointer; }
.cookie-option.unavailable { opacity: .58; }
.cookie-option input { width: 22px; height: 22px; margin: 0; accent-color: var(--blue-light); cursor: pointer; }
.cookie-status { color: var(--muted); font: 10px var(--mono); letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.cookie-status.active { color: var(--ok); }
.cookie-dialog-links { margin-top: 20px; }
.cookie-dialog-actions { margin-top: 24px; }

@media (max-width: 1050px) {
  .hero-grid { min-height: auto; padding: 72px 0 84px; grid-template-columns: 1fr; }
  .hero-copy, .snapshot { grid-column: 1; }
  .hero-copy { max-width: 720px; }
  .snapshot { margin-top: 28px; }
  .native-feature, .native-feature.reverse { grid-template-columns: 1fr; gap: 34px; }
  .native-copy { order: -1; max-width: 680px; }
  .native-feature.reverse .native-visual { order: 0; }
  .artboard-svg { max-height: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .shell, .hero-grid { width: min(calc(100% - 48px), 720px); }
  .header-inner { position: relative; }
  .menu-toggle { display: inline-flex; margin-left: auto; align-items: center; }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    margin: 0;
    padding: 18px 22px 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--strong);
    border-top: 0;
    background: rgba(16, 23, 28, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .nav a { display: block; padding: 9px 0; }
  .nav .cta-link { justify-content: center; padding-inline: 16px !important; }
  .locale { align-self: flex-start; }
  .overview-title { padding-top: 70px; }
  .native-feature, .native-feature.reverse { padding: 64px 0; }
  .video-section { padding: 72px 0 82px; }
  .cookie-banner { align-items: stretch; grid-template-columns: 1fr; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .cookie-button { flex: 1; }
}

@media (max-width: 560px) {
  .shell, .hero-grid { width: calc(100% - 36px); }
  .site-header, .header-inner { min-height: 68px; }
  .brand { font-size: 21px; }
  .brand em { display: none; }
  .legal-nav { gap: 8px; }
  .legal-nav .cta-link { min-height: 36px; padding-inline: 11px !important; }
  .legal-nav .locale button { min-height: 26px; padding-inline: 8px; }
  .hero-grid { padding: 54px 0 68px; }
  .hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .snapshot-top { align-items: flex-start; flex-direction: column; }
  .snap-row { min-height: 122px; padding: 19px 18px; }
  .snapshot-foot { padding-inline: 18px; }
  .overview-title { font-size: 36px; }
  .native-feature, .native-feature.reverse { gap: 28px; padding: 56px 0; }
  .native-copy h2, .section-head h2 { font-size: 32px; }
  .native-copy p, .section-head p:last-child { font-size: 16px; }
  .native-visual { overflow-x: auto; }
  .artboard-svg { width: auto; max-width: none; height: 270px; }
  .video-card { padding: 7px; }
  .video-card video { aspect-ratio: 4 / 3; }
  .contact { width: 100%; margin-top: 24px; padding: 60px 18px; border-right: 0; border-left: 0; border-radius: 0; }
  .contact-form { padding: 20px; grid-template-columns: 1fr; }
  .field.full, .form-consent.full, .turnstile-area.full, .form-error.full, .form-actions, .launch-note.full { grid-column: 1; }
  .footer-inner { display: flex; padding: 40px 0; align-items: flex-start; flex-direction: column; }
  .footer nav { flex-wrap: wrap; justify-content: flex-start; }
  .to-top { align-self: stretch; }
  .legal-layout { padding-top: 68px; padding-bottom: 78px; }
  .legal-title h1 { font-size: 40px; }
  .legal-fields div, .legal-warning { grid-template-columns: 1fr; gap: 8px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100% - 20px); padding: 16px; }
  .cookie-banner-actions, .cookie-dialog-actions { align-items: stretch; flex-direction: column; }
  .cookie-button { width: 100%; }
  .cookie-layer { padding: 10px; }
  .cookie-dialog { max-height: calc(100vh - 20px); padding: 24px 18px 18px; }
  .cookie-dialog h2 { font-size: 24px; }
  .cookie-dialog-close { top: 12px; right: 12px; }
  .cookie-option { min-height: 0; padding: 17px 0; grid-template-columns: 1fr; gap: 12px; }
  .cookie-option input { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .button:hover { transform: none; }
}
