@page { size: A4 landscape; margin: 0; }

* { box-sizing: border-box; }

:root {
  color-scheme: dark;
  --color-primary: #22d3ee;
  --color-text: #e5edf7;
  --color-text-secondary: #94a3b8;
  --color-background: #0b1422;
  --color-surface: #111827;
  --color-surface-light: #334155;
  --app-border-subtle: rgba(71, 85, 105, 0.92);
  --app-panel-bg: rgba(30, 41, 59, 0.72);
  --app-panel-muted-bg: rgba(2, 6, 23, 0.68);
  --app-panel-elevated-bg: rgba(15, 23, 42, 0.82);
  --app-panel-shadow: 0 14px 34px rgba(2, 6, 23, 0.32);
  --app-panel-elevated-shadow: 0 18px 40px rgba(2, 6, 23, 0.38);
  --app-panel-highlight: rgba(255, 255, 255, 0.05);
  scroll-behavior: smooth;
  scroll-padding-top: 66px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: "IBM Plex Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--app-border-subtle);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.9), rgba(11, 18, 32, 0.92));
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-brand-desktop { display: flex; align-items: center; gap: 8px; }
.nav-logo-icon { display: block; width: 34px; height: auto; }
.nav-brand-desktop > .nav-logo-icon { transform: translateY(-9px); }
.nav-wordmark-window { position: relative; display: block; width: 142px; height: 35px; overflow: hidden; }
.nav-wordmark-logo { position: absolute; top: -54px; left: 0; display: block; width: 142px; height: auto; }
.nav-logo-full { display: block; width: 102px; height: auto; }
.nav-brand-mobile { display: none; }
.footer-logo-full { display: block; width: 108px; height: auto; }

.site-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--app-border-subtle);
  border-radius: 12px;
  background: var(--app-panel-muted-bg);
  box-shadow: var(--app-panel-shadow), 0 1px 0 var(--app-panel-highlight) inset;
}

.site-menu a {
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.site-menu a:hover {
  background: color-mix(in srgb, var(--app-panel-muted-bg) 72%, var(--color-surface-light) 28%);
  color: var(--color-text);
}

.site-menu a.is-active {
  background: color-mix(in srgb, var(--color-primary) 12%, var(--color-surface) 88%);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-primary) 22%, transparent);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border: 1px solid var(--app-border-subtle);
  border-radius: 999px;
  background: var(--app-panel-muted-bg);
}

.lang-switch a {
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.16s ease, color 0.16s ease;
}

.lang-switch a:hover {
  background: rgba(51, 65, 85, 0.8);
  color: var(--color-text);
}

.lang-switch a.is-active {
  background: color-mix(in srgb, var(--color-primary) 14%, var(--color-surface) 86%);
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, var(--app-border-subtle) 70%);
  color: var(--color-primary);
  box-shadow: 0 1px 2px rgba(2, 6, 23, 0.28);
}

.lang-switch a.is-active:hover {
  background: color-mix(in srgb, var(--color-primary) 20%, var(--color-surface) 80%);
  color: var(--color-primary);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, var(--app-border-subtle) 70%);
  border-radius: 9px;
  padding: 9px 13px;
  background: color-mix(in srgb, var(--color-primary) 14%, var(--color-surface) 86%);
  color: var(--color-primary);
  box-shadow: 0 0 20px rgba(8, 145, 178, 0.11);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  transition: background 0.16s ease, transform 0.16s ease;
}

.nav-cta:hover,
.button:hover {
  background: color-mix(in srgb, var(--color-primary) 20%, var(--color-surface) 80%);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: var(--app-border-subtle);
  color: var(--color-text-secondary);
  background: var(--app-panel-muted-bg);
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--color-text);
  background: color-mix(in srgb, var(--app-panel-muted-bg) 84%, var(--color-surface-light) 16%);
}

.site-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 32px 16px 42px;
  background:
    radial-gradient(circle at 8% 6%, rgba(8, 145, 178, 0.12), transparent 24%),
    radial-gradient(circle at 92% 36%, rgba(16, 185, 129, 0.08), transparent 19%),
    linear-gradient(180deg, #06101e, #050b14 62%, #06111d);
}

.page {
  width: min(297mm, calc(100vw - 32px));
  min-height: 210mm;
  position: relative;
  overflow: hidden;
  padding: 13mm 15mm 12mm;
  page-break-after: always;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 201, 238, 0.14), transparent 31%),
    radial-gradient(circle at 3% 96%, rgba(35, 210, 155, 0.1), transparent 24%),
    linear-gradient(145deg, #0b1627, #08111f 62%, #07101d);
  border: 1px solid rgba(58, 103, 130, 0.55);
  border-radius: 4mm;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page.is-focused {
  border-color: rgba(73, 180, 209, 0.82);
  transform: translateY(-2px);
}

.page:last-child { page-break-after: auto; }

.page::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2.2mm;
  background: linear-gradient(90deg, #00c8ee, #24d39e, #ffbf3f);
}

.eyebrow { color: #56d9f4; font-size: 8pt; letter-spacing: 2.4px; text-transform: uppercase; font-weight: 700; }
h1 { font-size: 34pt; line-height: 1.03; margin: 4mm 0 3mm; letter-spacing: -1.4px; }
h2 { font-size: 24pt; line-height: 1.05; margin: 2mm 0 3mm; letter-spacing: -0.8px; }
h3 { font-size: 13pt; margin: 0 0 2mm; color: #f5f9ff; }
p { color: #b6c7da; font-size: 10.5pt; line-height: 1.38; margin: 0 0 3mm; }
strong { color: #f4fbff; }
.lead { max-width: 172mm; color: #d4e3f1; font-size: 14pt; line-height: 1.4; }
.muted { color: #8fa5ba; }
.accent { color: #53dbf6; }
.green { color: #48e0af; }
.gold { color: #ffc84f; }
.topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4mm; }
.brand { display: flex; align-items: center; gap: 3mm; font-weight: 700; font-size: 12pt; letter-spacing: 0.4px; }
.brand-mark { width: 11mm; height: 7mm; display: block; background: url("sondastream-logo-icon.png") center / contain no-repeat; }
.brand-mark::after { content: none; }
.tag { border: 1px solid #27506b; border-radius: 99px; padding: 1.4mm 3mm; color: #9cc7d7; font-size: 8pt; letter-spacing: 1px; text-transform: uppercase; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 7mm; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4mm; }
.split-wide { display: grid; grid-template-columns: 102mm 1fr; gap: 8mm; }
.screen { width: 100%; display: block; border-radius: 4mm; border: 1px solid #375168; box-shadow: 0 4mm 12mm rgba(0, 0, 0, 0.28); }
.screen-frame { border-radius: 5mm; padding: 2mm; background: linear-gradient(135deg, rgba(67, 219, 246, 0.28), rgba(30, 51, 75, 0.25)); border: 1px solid #2f5871; }
.screen.cover { width: 219mm; position: absolute; right: -16mm; bottom: -5mm; transform: rotate(-1.2deg); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3mm; margin-top: 4mm; }
.card { padding: 4mm; border: 1px solid #29455e; border-radius: 3mm; background: rgba(17, 32, 53, 0.78); }
.card p { font-size: 8.8pt; margin: 0; }
.card .metric { color: #f3f8ff; font-size: 21pt; font-weight: 700; letter-spacing: -1px; margin-bottom: 1mm; }
.pill { display: inline-block; margin: 0 1mm 1.5mm 0; padding: 1.2mm 2.2mm; border-radius: 99px; border: 1px solid #24607b; color: #9fe3f1; font-size: 8pt; }
.pill.green { border-color: #277558; color: #75e8bf; }
.pill.gold { border-color: #7b5d20; color: #ffd36a; }
.bullets { margin: 2mm 0 0; padding-left: 4mm; color: #c1d1df; font-size: 9.4pt; line-height: 1.38; }
.bullets li { margin: 0 0 1.7mm; padding-left: 1mm; }
.note { padding: 4mm; border-left: 1.3mm solid #22d3ee; background: rgba(16, 45, 66, 0.64); border-radius: 0 3mm 3mm 0; }
.note p { margin: 0; font-size: 10pt; }
.footer { position: absolute; bottom: 6mm; left: 15mm; right: 15mm; display: flex; justify-content: space-between; color: #7890a7; font-size: 7.5pt; letter-spacing: 0.5px; }
.mini-title { color: #57daf5; font-size: 9pt; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2mm; }
.feature-block { border-top: 1px solid #26445e; padding-top: 3mm; }
.feature-block p { font-size: 9pt; }
.inventory { columns: 3; column-gap: 6mm; margin-top: 2mm; }
.inventory-group { break-inside: avoid; margin-bottom: 3mm; }
.inventory h3 { color: #5de0f5; font-size: 9pt; margin-bottom: 1.2mm; text-transform: uppercase; letter-spacing: 1px; }
.inventory ul { margin: 0; padding-left: 3.5mm; color: #c3d3df; font-size: 7.4pt; line-height: 1.24; }
.inventory li { margin-bottom: 0.7mm; }
.access {
  border: 1px solid rgba(79, 189, 217, 0.82);
  border-radius: 5mm;
  padding: 6mm 7mm;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 200, 238, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(7, 48, 68, 0.96), rgba(10, 29, 48, 0.9));
  box-shadow: 0 6mm 16mm rgba(0, 0, 0, 0.22);
}
.access > .grid2 { align-items: start; gap: 6mm; }
.access h3 { font-size: 24pt; line-height: 1.04; margin-bottom: 3mm; }
.access p { font-size: 11.5pt; line-height: 1.4; margin-bottom: 2.2mm; }
.demo-url {
  display: inline-flex;
  align-items: center;
  gap: 1.5mm;
  margin-top: 1mm;
  padding: 2.8mm 4mm;
  border-radius: 99px;
  border: 1px solid #4fc0db;
  background: rgba(8, 32, 48, 0.96);
  color: #e8fbff;
  font-size: 12pt;
  font-weight: 700;
}
.demo-url:hover { background: rgba(11, 45, 67, 0.98); }
code { color: #e8fbff; background: #071421; border: 1px solid #28506b; padding: 0.5mm 1.2mm; border-radius: 1mm; font-size: 9pt; }
.cover-copy { position: relative; z-index: 2; width: 174mm; }
.cover .lead { width: 146mm; }
.cover-stats { display: flex; gap: 3mm; margin-top: 7mm; }
.cover-stat { min-width: 35mm; padding: 3mm; border: 1px solid #28536c; background: rgba(8, 25, 42, 0.85); border-radius: 3mm; }
.cover-stat b { display: block; color: #f7fbff; font-size: 17pt; }
.cover-stat span { color: #a5bfd0; font-size: 7.8pt; text-transform: uppercase; letter-spacing: 0.9px; }
.quote { font-size: 17pt; line-height: 1.3; color: #e6f7ff; max-width: 190mm; font-weight: 700; letter-spacing: -0.3px; }
.hero-actions { display: flex; gap: 2.5mm; margin-top: 5mm; }
.hero-actions .button { padding: 2.6mm 3.6mm; border-radius: 2.4mm; font-size: 7.5pt; }

.signal-map {
  display: grid;
  grid-template-columns: 57mm 16mm 1fr 16mm 57mm;
  align-items: center;
  min-height: 108mm;
  margin-top: 4mm;
  padding: 5mm 6mm;
  border: 1px solid rgba(46, 105, 134, 0.82);
  border-radius: 5mm;
  background:
    linear-gradient(rgba(47, 92, 118, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 92, 118, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(8, 145, 178, 0.17), transparent 39%),
    rgba(4, 14, 26, 0.82);
  background-size: 8mm 8mm, 8mm 8mm, auto, auto;
  box-shadow: inset 0 0 18mm rgba(1, 8, 17, 0.55);
}

.map-column { display: flex; flex-direction: column; gap: 2.4mm; }
.map-kicker { color: #77dced; font-size: 7pt; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.map-node { position: relative; padding: 2.6mm 3mm; border: 1px solid #2d5770; border-radius: 2.4mm; background: linear-gradient(135deg, rgba(16, 43, 65, 0.94), rgba(9, 25, 42, 0.88)); }
.map-node::before { content: ""; position: absolute; top: 50%; width: 2mm; height: 2mm; border-radius: 50%; background: #42d7ef; box-shadow: 0 0 3mm rgba(66, 215, 239, 0.72); transform: translateY(-50%); }
.map-input .map-node::before { right: -1.1mm; }
.map-output .map-node::before { left: -1.1mm; background: #47dfad; box-shadow: 0 0 3mm rgba(71, 223, 173, 0.7); }
.map-node b { display: block; color: #eefaff; font-size: 9pt; }
.map-node span { display: block; margin-top: 0.8mm; color: #8eabc0; font-size: 7.2pt; line-height: 1.28; }
.map-arrow { position: relative; height: 1px; background: linear-gradient(90deg, #237e9b, #5be1f3); box-shadow: 0 0 3mm rgba(34, 211, 238, 0.45); }
.map-arrow::after { content: ""; position: absolute; right: -0.5mm; top: 50%; width: 2.3mm; height: 2.3mm; border-top: 1px solid #78eafb; border-right: 1px solid #78eafb; transform: translateY(-50%) rotate(45deg); }
.map-arrow.output { background: linear-gradient(90deg, #53d9ed, #2eb98d); }
.map-arrow.output::after { border-color: #64e6bb; }
.map-core-wrap { position: relative; min-height: 92mm; display: grid; place-items: center; }
.map-orbit { position: absolute; border: 1px solid rgba(52, 183, 211, 0.22); border-radius: 50%; }
.map-orbit.one { width: 75mm; height: 75mm; }
.map-orbit.two { width: 91mm; height: 91mm; border-color: rgba(52, 183, 211, 0.14); }
.map-orbit::before,
.map-orbit::after { content: ""; position: absolute; width: 2.5mm; height: 2.5mm; border-radius: 50%; background: #50dbef; box-shadow: 0 0 4mm rgba(80, 219, 239, 0.7); }
.map-orbit.one::before { left: 7mm; top: 12mm; }
.map-orbit.one::after { right: 4mm; bottom: 17mm; background: #4de0ae; box-shadow: 0 0 4mm rgba(77, 224, 174, 0.66); }
.map-orbit.two::before { right: 15mm; top: 2mm; background: #ffc84f; box-shadow: 0 0 4mm rgba(255, 200, 79, 0.55); }
.map-orbit.two::after { left: 10mm; bottom: 8mm; background: #a78bfa; box-shadow: 0 0 4mm rgba(167, 139, 250, 0.54); }
.map-core { position: relative; z-index: 2; width: 53mm; height: 53mm; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(76, 219, 242, 0.72); border-radius: 50%; text-align: center; background: radial-gradient(circle at 38% 32%, rgba(14, 116, 144, 0.62), rgba(4, 19, 33, 0.97) 67%); box-shadow: 0 0 14mm rgba(8, 145, 178, 0.27), inset 0 0 8mm rgba(34, 211, 238, 0.14); }
.map-core .brand-mark { width: 16mm; height: 10mm; margin-bottom: 2mm; }
.map-core strong { display: block; font-size: 13pt; letter-spacing: 0.3px; }
.map-core span { display: block; margin-top: 1mm; color: #9cd8e2; font-size: 7pt; letter-spacing: 1px; text-transform: uppercase; }
.core-caption { position: absolute; bottom: 0; display: flex; gap: 1.2mm; }
.core-caption i { padding: 1mm 1.6mm; border: 1px solid rgba(46, 102, 132, 0.78); border-radius: 99px; color: #9fc5d4; background: rgba(4, 18, 31, 0.82); font-size: 6.6pt; font-style: normal; }
.summary-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5mm; margin-top: 3mm; }
.summary-item { display: flex; align-items: center; gap: 2.2mm; padding: 2.5mm 3mm; border-top: 1px solid rgba(61, 122, 151, 0.58); background: linear-gradient(180deg, rgba(15, 38, 59, 0.58), rgba(8, 23, 39, 0.22)); }
.summary-icon { width: 7mm; height: 7mm; display: grid; place-items: center; border: 1px solid rgba(60, 196, 218, 0.6); border-radius: 2mm; color: #67e8f9; background: rgba(8, 90, 112, 0.23); font-size: 10pt; }
.summary-item b { display: block; color: #edfaff; font-size: 8pt; }
.summary-item span { display: block; margin-top: 0.6mm; color: #8ba5b8; font-size: 6.9pt; line-height: 1.25; }

.site-contact {
  width: min(1122px, calc(100% - 32px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(47, 108, 138, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 22%, rgba(8, 145, 178, 0.16), transparent 33%),
    linear-gradient(135deg, rgba(10, 31, 51, 0.96), rgba(6, 17, 30, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.site-contact h2 { margin: 7px 0 10px; font-size: 30px; }
.site-contact p { max-width: 670px; margin: 0; color: #a9bfce; font-size: 14px; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.site-footer { border-top: 1px solid rgba(56, 100, 126, 0.42); background: #040a12; }
.site-footer-inner { width: min(1180px, calc(100% - 32px)); min-height: 94px; margin: 0 auto; display: flex; align-items: center; gap: 18px; color: #7890a4; font-size: 12px; }
.site-footer .nav-brand { color: #cfe4ee; }
.footer-links { display: flex; gap: 18px; margin-left: auto; }
.footer-links a:hover { color: #bfefff; }

@media (max-width: 900px) {
  .nav-inner { flex-wrap: wrap; row-gap: 10px; padding: 10px 0; }
  .site-menu {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .site-menu::-webkit-scrollbar { display: none; }
  .site-menu a {
    padding: 8px 4px;
    font-size: 9px;
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-cta { display: none; }
  .lang-switch {
    margin-left: auto;
  }
  .nav-brand-desktop { display: none; }
  .nav-brand-mobile { display: block; }
  .nav-brand-mobile { width: 48px; height: auto; }

  .site-main { align-items: center; overflow-x: hidden; }
  .page {
    width: calc(100vw - 20px);
    min-height: auto;
    padding: 12mm 7mm 10mm;
    overflow: visible;
  }

  .topline {
    flex-wrap: wrap;
    gap: 3mm;
    align-items: flex-start;
  }

  .tag {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    letter-spacing: -0.6px;
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.45rem, 6.2vw, 2rem);
    letter-spacing: -0.4px;
  }

  p,
  .lead {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .cover-copy,
  .cover .lead,
  .lead { width: auto; max-width: none; }

  .screen.cover {
    position: static;
    width: 100%;
    margin-top: 5mm;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .cover-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5mm;
  }

  .cover-stat { min-width: 0; }

  .hero-actions {
    flex-wrap: wrap;
    gap: 2mm;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .grid2,
  .grid3,
  .split-wide,
  .summary-strip,
  .signal-map,
  .site-contact,
  .site-footer-inner {
    grid-template-columns: 1fr !important;
  }

  .signal-map { gap: 4mm; }
  .map-arrow { display: none; }

  .footer {
    position: static;
    margin-top: 5mm;
    left: auto;
    right: auto;
    display: block;
  }

  .inventory { columns: 1; }
  .site-contact { padding: 22px; }
  .contact-actions { justify-content: flex-start; }

  .site-footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 12px;
    min-height: auto;
    text-align: center;
  }

  .site-footer .nav-brand {
    display: none;
  }

  .site-footer-inner > span {
    display: block;
    width: 100%;
    font-size: 11px;
    line-height: 1.5;
  }

  .footer-links {
    margin-left: 0;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .cover-stats { grid-template-columns: 1fr; }
}

@media (min-width: 901px) {
  html {
    scroll-snap-type: y proximity;
    scrollbar-gutter: stable both-edges;
  }

  .page {
    scroll-snap-align: center;
  }

  .site-contact {
    scroll-snap-align: start;
    scroll-margin-top: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  html { scroll-snap-type: none !important; }
  .page,
  .nav-cta,
  .button,
  .site-menu a {
    transition: none !important;
  }
}

@media print {
  html,
  body { background: #08111f; }

  .site-header,
  .site-contact,
  .site-footer { display: none !important; }

  .site-main {
    display: block;
    padding: 0;
    background: none;
  }

  .page {
    width: 297mm;
    min-height: 210mm;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }
}
