:root {
  --ink: #121212;
  --muted: #686861;
  --paper: #f3f1eb;
  --paper-2: #ebe8df;
  --surface: #fbfaf6;
  --line: rgba(18, 18, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --orange: #ff6a00;
  --green: #87d300;
  --blue: #4ab8ff;
  --white: #ffffff;
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-sm: 0 10px 28px rgba(27, 24, 16, 0.08);
  --shadow-lg: 0 28px 70px rgba(27, 24, 16, 0.14);
  --max: 1240px;
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(255, 106, 0, 0.23); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: #fff;
  background: #111;
  border-radius: 10px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-tight { padding: 76px 0; }
.section-rule { border-top: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.orange { color: var(--orange); }
.eyebrow.green { color: #588f00; }
.eyebrow.blue { color: #087eb7; }
.display {
  margin: 0;
  max-width: 980px;
  font-size: clamp(50px, 7.5vw, 108px);
  line-height: .92;
  letter-spacing: -.072em;
  font-weight: 660;
}
.display-small {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 650;
}
.h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -.048em;
  font-weight: 650;
}
.h3 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 640;
}
.lede {
  margin: 24px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: -.018em;
}
.copy { color: var(--muted); max-width: 650px; }
.copy strong { color: var(--ink); }

.announcement {
  position: relative;
  z-index: 60;
  padding: 9px 20px;
  color: #fff;
  background: #111;
  text-align: center;
  font-size: 13px;
  letter-spacing: .01em;
}
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(243, 241, 235, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18,18,18,.08);
}
.nav-shell {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand img { width: 184px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.desktop-nav a { position: relative; padding: 8px 0; font-size: 14px; color: #32322f; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  padding: 0 20px 22px;
  border-top: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
.mobile-nav .button { margin-top: 16px; width: 100%; }

.button {
  appearance: none;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.button:active { transform: translateY(0); }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--line); }
.button.secondary:hover { border-color: var(--ink); box-shadow: none; }
.button.light { color: var(--ink); background: #fff; border-color: #fff; }
.button.ghost-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.42); }
.button.small { min-height: 40px; padding: 9px 15px; font-size: 13px; }
.button.full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; text-decoration: underline; text-underline-offset: 4px; }
.text-link::after { content: "↗"; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero { padding: 88px 0 32px; overflow: clip; }
.hero-top { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: end; gap: 52px; }
.hero-side { padding-bottom: 10px; }
.hero-side .lede { margin-top: 0; font-size: 19px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.hero-media {
  position: relative;
  margin-top: 58px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ded7ca;
  box-shadow: var(--shadow-lg);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  border-radius: inherit;
}
.hero-media img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.hero-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head .copy { margin: 0; max-width: 440px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-card-media { overflow: hidden; aspect-ratio: 4/3; background: #e9e5dc; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.product-card:hover .product-card-media img { transform: scale(1.025); }
.product-card-body { padding: 26px; }
.product-card-top { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.product-card h3 { margin: 0; font-size: 30px; letter-spacing: -.04em; line-height: 1; }
.product-type { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.accent-dot { width: 10px; height: 10px; margin-top: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,106,0,.12); }
.accent-dot.green { background: var(--green); box-shadow: 0 0 0 5px rgba(135,211,0,.13); }
.accent-dot.blue { background: var(--blue); box-shadow: 0 0 0 5px rgba(74,184,255,.13); }
.product-card .copy { margin: 20px 0 24px; min-height: 72px; font-size: 15px; }
.product-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.product-card-actions .text-link { font-size: 14px; }

.dark-section { color: #fff; background: #101010; }
.dark-section .copy, .dark-section .lede { color: #b8b8b3; }
.philosophy-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.philosophy-lines { margin-top: 34px; display: grid; gap: 0; border-top: 1px solid var(--line-light); }
.philosophy-line { padding: 20px 0; border-bottom: 1px solid var(--line-light); font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -.025em; }
.philosophy-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #222;
}
.philosophy-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-item { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-number { display: block; margin-bottom: 72px; color: var(--muted); font-size: 13px; }
.feature-item h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.025em; }
.feature-item p { margin: 0; color: var(--muted); font-size: 14px; }

.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.editorial-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ddd7cc;
}
.editorial-card.large { grid-column: span 7; }
.editorial-card.small { grid-column: span 5; }
.editorial-card img { width: 100%; height: 100%; object-fit: cover; }
.editorial-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 60px 28px 28px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.editorial-overlay h3 { margin: 0; font-size: 30px; letter-spacing: -.035em; }
.editorial-overlay p { margin: 8px 0 0; color: rgba(255,255,255,.78); max-width: 480px; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 20px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table thead th { background: #e8e5dc; font-size: 14px; }
.compare-table thead th:first-child { width: 26%; }
.compare-table tbody th { font-size: 14px; font-weight: 600; color: var(--muted); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }

.preorder-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111;
  border-radius: var(--radius-lg);
}
.preorder-band::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -140px;
  top: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.42), transparent 68%);
  pointer-events: none;
}
.preorder-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; padding: 70px; }
.preorder-band .copy { color: #bdbdb8; }
.preorder-steps { display: grid; gap: 0; border-top: 1px solid var(--line-light); }
.preorder-step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.preorder-step span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; font-size: 12px; }
.preorder-step h3 { margin: 0 0 4px; font-size: 17px; }
.preorder-step p { margin: 0; color: #aeadab; font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-weight: 620; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 24px; font-weight: 400; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: -2px 0 22px; max-width: 720px; color: var(--muted); }

.signup-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; padding: 54px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.inline-form { display: flex; gap: 10px; }
.inline-form input { min-width: 0; flex: 1; height: 52px; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); }
.inline-form input:focus { outline: 2px solid rgba(255,106,0,.35); outline-offset: 2px; border-color: var(--orange); }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 72px 0 34px; color: #fff; background: #101010; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 46px; }
.footer-brand img { width: 190px; filter: invert(1); }
.footer-brand p { max-width: 280px; color: #9d9d99; }
.footer-col h3 { margin: 0 0 16px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #888884; }
.footer-col a { display: block; width: max-content; margin: 10px 0; color: #d4d4d0; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line-light); color: #82827e; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 22px; }

.page-hero { padding: 92px 0 40px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; }
.page-hero .lede { margin-top: 20px; }
.page-image { overflow: hidden; border-radius: var(--radius-lg); background: #ded8cd; box-shadow: var(--shadow-lg); }
.page-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-hero { padding: 72px 0 34px; }
.product-hero-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: stretch; }
.product-hero-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 32px 12px 26px 0; }
.product-badge { width: max-content; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; }
.product-hero-copy .display-small { margin-top: 26px; }
.product-tagline { margin: 20px 0 0; max-width: 520px; color: var(--muted); font-size: 20px; }
.product-hero-media { overflow: hidden; border-radius: var(--radius-lg); background: #ddd7cd; }
.product-hero-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spec-card { min-height: 210px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.spec-card small { display: block; margin-bottom: 50px; color: var(--muted); }
.spec-card h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -.025em; }
.spec-card p { margin: 0; color: var(--muted); font-size: 14px; }
.product-gallery { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.product-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); background: #ddd7cd; }
.product-gallery figure:first-child { min-height: 620px; }
.product-gallery figure:last-child { min-height: 620px; }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.spec-list { border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: .4fr .6fr; gap: 30px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; }
.notice { padding: 15px 17px; border: 1px solid rgba(255,106,0,.32); border-radius: var(--radius-xs); background: rgba(255,106,0,.07); color: #6a3a14; font-size: 13px; }

.form-page { padding: 84px 0 110px; }
.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 650; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid rgba(255,106,0,.3); outline-offset: 2px; border-color: var(--orange); }
.checkbox { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 13px; }
.checkbox input { margin-top: 2px; }
.form-status { min-height: 22px; margin-top: 12px; color: var(--muted); font-size: 13px; }

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(8px);
}
.modal.is-open { display: flex; }
.modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 840px);
  overflow-y: auto;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
}
.modal-head { padding-right: 50px; margin-bottom: 24px; }
.modal-head h2 { margin: 0; font-size: 34px; letter-spacing: -.04em; }
.modal-head p { margin: 10px 0 0; color: var(--muted); }

.legal { padding: 84px 0 110px; }
.legal-wrap { max-width: 820px; }
.legal h1 { margin: 0 0 24px; font-size: clamp(44px, 6vw, 72px); letter-spacing: -.055em; line-height: 1; }
.legal h2 { margin: 44px 0 14px; font-size: 25px; letter-spacing: -.03em; }
.legal p, .legal li { color: var(--muted); }
.legal a { text-decoration: underline; }
.empty-state { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 90px 20px; }
.empty-state p { max-width: 600px; margin: 18px auto 0; color: var(--muted); }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-actions .button { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { display: block; }
  .hero-top, .page-hero-grid, .philosophy-grid, .faq-grid, .signup-panel, .form-layout { grid-template-columns: 1fr; }
  .hero-side { max-width: 690px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .product-card-media { aspect-ratio: auto; min-height: 390px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-card.large, .editorial-card.small { grid-column: span 12; min-height: 500px; }
  .preorder-inner { grid-template-columns: 1fr; padding: 56px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-media img { min-height: 0; aspect-ratio: 4/3; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery figure:first-child, .product-gallery figure:last-child { min-height: 520px; }
}

@media (max-width: 680px) {
  :root { --header-h: 66px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .section-tight { padding: 58px 0; }
  .brand img { width: 162px; }
  .announcement { padding-inline: 14px; font-size: 12px; }
  .hero { padding-top: 60px; }
  .hero-top { gap: 24px; }
  .display { font-size: clamp(48px, 15vw, 72px); }
  .display-small { font-size: clamp(42px, 13vw, 64px); }
  .hero-media { margin-top: 40px; border-radius: 22px; }
  .hero-media img { aspect-ratio: 5/4; object-position: center; }
  .hero-caption { left: 12px; bottom: 12px; }
  .section-head { display: block; }
  .section-head .copy { margin-top: 18px; }
  .product-card { display: block; }
  .product-card-media { min-height: 0; aspect-ratio: 4/3; }
  .product-card .copy { min-height: 0; }
  .philosophy-grid { gap: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { min-height: 220px; }
  .feature-number { margin-bottom: 46px; }
  .editorial-card.large, .editorial-card.small { min-height: 430px; }
  .preorder-inner { padding: 38px 24px; gap: 42px; }
  .signup-panel { padding: 32px 22px; gap: 28px; }
  .inline-form { display: grid; }
  .inline-form .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .footer-bottom-links { flex-wrap: wrap; }
  .page-hero { padding-top: 62px; }
  .product-hero { padding-top: 48px; }
  .product-hero-copy { padding-right: 0; }
  .spec-grid { grid-template-columns: 1fr; }
  .product-gallery figure:first-child, .product-gallery figure:last-child { min-height: 380px; }
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
  .form-page { padding-top: 58px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card { padding: 24px 18px; }
  .modal { padding: 12px; }
  .modal-dialog { padding: 28px 18px 20px; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
}


.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
