@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap");

:root {
  --ink: #070806;
  --ink-soft: #0d0f0c;
  --panel: #121510;
  --panel-strong: #181c15;
  --line: #2a2e27;
  --line-bright: #4b5245;
  --paper: #f1f3ea;
  --muted: #b8bdb2;
  --dim: #6f756a;
  --lime: #c7ff16;
  --lime-deep: #7ea600;
  --danger: #ff654f;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --shell: min(1440px, calc(100vw - 48px));
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 100% 112px,
    var(--ink);
  color: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(199, 255, 22, 0.035) 50%, transparent calc(50% + 1px)),
    repeating-linear-gradient(115deg, transparent 0 220px, rgba(255, 255, 255, 0.018) 220px 221px);
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  font: 700 12px var(--mono);
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 6, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font: 900 25px/1 var(--display);
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__mark {
  width: 17px;
  height: 28px;
  background: var(--lime);
  clip-path: polygon(42% 0, 100% 0, 67% 42%, 100% 42%, 22% 100%, 38% 57%, 0 57%);
}

.brand > span:last-child {
  color: var(--paper);
}

.brand > span:last-child > span {
  color: var(--lime);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: 700 12px var(--mono);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--line-bright);
  background: var(--panel);
  color: var(--paper);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "↗";
  font-size: 14px;
}

.button:hover {
  border-color: var(--paper);
  transform: translate(-3px, -3px);
}

.button--lime {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 #3b4900;
}

.button--lime:hover {
  box-shadow: 9px 9px 0 #3b4900;
}

.button--quiet::after,
button.button--quiet::after {
  content: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
  font: 700 11px/1.2 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--lime);
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.display--xl {
  font-size: clamp(58px, 7vw, 104px);
}

.display--lg {
  font-size: clamp(50px, 6.6vw, 96px);
}

.display--md {
  font-size: clamp(42px, 5.4vw, 82px);
}

.lime {
  color: var(--lime);
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - var(--header-h)));
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  min-height: min(780px, calc(100svh - var(--header-h)));
  grid-template-columns: minmax(450px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 0 86px;
}

.hero__copy .eyebrow {
  margin-bottom: 30px;
}

.hero__copy .lede {
  max-width: 590px;
  margin: 30px 0 36px;
}

.product-shot {
  position: relative;
  margin: 0;
}

.product-shot::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 52%;
  height: 58%;
  z-index: -1;
  background: var(--lime);
}

.product-shot__frame {
  padding: 10px;
  border: 1px solid var(--line-bright);
  background: var(--panel);
  box-shadow: 18px 18px 0 #181d0f;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #343a30;
}

.product-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px 0;
  color: var(--muted);
  font: 700 10px/1.5 var(--mono);
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__art {
  position: relative;
  min-height: 650px;
  border-left: 1px solid var(--line);
  background: var(--lime);
  color: var(--ink);
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  isolation: isolate;
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, transparent 0 55px, rgba(7, 8, 6, 0.12) 55px 57px),
    repeating-linear-gradient(90deg, transparent 0 55px, rgba(7, 8, 6, 0.12) 55px 57px);
  transform: perspective(500px) rotateY(-9deg) scale(1.2);
}

.hero__art-word {
  position: absolute;
  top: 50%;
  left: 47%;
  width: max-content;
  font: italic 900 clamp(100px, 15vw, 250px)/0.72 var(--display);
  letter-spacing: -0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hero__art-index {
  position: absolute;
  top: 26px;
  right: 30px;
  font: 700 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__art-notes {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 24%;
  display: grid;
  gap: 8px;
  font: 700 11px/1.35 var(--mono);
  text-transform: uppercase;
}

.hero__art-notes span {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
  padding-top: 8px;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  width: var(--shell);
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 20px;
  font: 900 18px/1 var(--display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ticker__item::after {
  content: "///";
  color: var(--lime-deep);
}

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 56px;
  margin-bottom: clamp(58px, 8vw, 112px);
}

.section__head .eyebrow {
  margin-bottom: 30px;
}

.section__head .lede {
  margin: 0;
}

.chapter {
  position: absolute;
  top: 36px;
  right: 2vw;
  color: #272b25;
  font: 900 clamp(54px, 7vw, 104px)/1 var(--display);
  letter-spacing: -0.06em;
  pointer-events: none;
}

.story-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.story {
  display: grid;
  min-height: 360px;
  grid-template-columns: 0.72fr 1fr;
  border-bottom: 1px solid var(--line);
}

.story:nth-child(even) {
  grid-template-columns: 1fr 0.72fr;
}

.story:nth-child(even) .story__visual {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.story__visual {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-right: 1px solid var(--line);
  background: var(--panel);
}

.story__visual::before,
.story__visual::after {
  content: "";
  position: absolute;
  background: var(--lime);
}

.story__visual::before {
  width: 52%;
  height: 42%;
  top: 24%;
  left: 8%;
  clip-path: polygon(14% 0, 100% 0, 78% 100%, 0 100%);
}

.story__visual::after {
  width: 48%;
  height: 2px;
  right: 8%;
  bottom: 17%;
  box-shadow: 0 -28px 0 var(--line-bright), 0 -56px 0 var(--line-bright);
}

.story__code {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  max-width: 65%;
  color: var(--paper);
  font: 700 11px/1.65 var(--mono);
  text-align: right;
  text-transform: uppercase;
}

.story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}

.story__number {
  color: var(--lime);
  font: 700 11px var(--mono);
}

.story h3 {
  max-width: 800px;
  margin: 18px 0 24px;
  font: 900 clamp(36px, 4.2vw, 62px)/0.95 var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.story p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability {
  position: relative;
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  transition: color 180ms ease, background 180ms ease;
}

.capability:hover {
  background: var(--lime);
  color: var(--ink);
}

.capability__id {
  font: 700 10px var(--mono);
}

.capability h3 {
  margin: 46px 0 10px;
  font: 900 28px/0.98 var(--display);
  text-transform: uppercase;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.capability:hover p {
  color: #303525;
}

.proof {
  background: var(--panel);
}

.proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(36px, 7vw, 110px);
}

.proof .eyebrow {
  margin-bottom: 24px;
}

.proof__geometry {
  position: relative;
  min-height: clamp(150px, 16vw, 220px);
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.proof__geometry span {
  position: absolute;
  display: block;
}

.proof__geometry span:first-child {
  inset: 18% 11% 18% 22%;
  background: var(--lime);
  clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
}

.proof__geometry span:nth-child(2) {
  inset: 0 28% 0 7%;
  border: 1px solid var(--paper);
  opacity: 0.42;
  clip-path: polygon(31% 0, 100% 0, 69% 100%, 0 100%);
}

.proof__geometry span:last-child {
  right: 4%;
  bottom: 18%;
  width: clamp(20px, 2.8vw, 38px);
  aspect-ratio: 1;
  border: 2px solid var(--lime);
  transform: rotate(45deg);
}

.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 180px);
}

.cta::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 47%;
  height: 150%;
  z-index: -1;
  background: var(--lime);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.cta .display {
  max-width: 900px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  color: var(--muted);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  font: 700 11px var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--lime);
}

.site-footer small {
  display: block;
  max-width: 620px;
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}

/* Utility pages */
.page-hero {
  padding: clamp(76px, 10vw, 140px) 0 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
  margin-bottom: 26px;
}

.page-hero .lede {
  margin: 30px 0 0;
}

.utility-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 46px;
  padding-block: 70px 120px;
}

.utility-aside {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.utility-aside__index {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.utility-aside__index a,
.utility-aside__index span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 700 11px var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

.utility-aside__index a:hover {
  color: var(--lime);
}

.utility-main {
  min-width: 0;
}

.tool-panel,
.legal-section,
.device-card {
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.tool-panel {
  margin-bottom: 18px;
}

.tool-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.tool-panel__head h2 {
  margin: 0;
  font: 900 24px var(--display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

summary.tool-panel__head {
  cursor: pointer;
  list-style: none;
}

summary.tool-panel__head::-webkit-details-marker {
  display: none;
}

summary.tool-panel__head::after {
  content: "+";
  color: var(--lime);
  font: 700 18px var(--mono);
}

details[open] > summary.tool-panel__head::after {
  content: "−";
}

.tool-panel__id {
  color: var(--lime);
  font: 700 10px var(--mono);
}

.tool-panel__body {
  padding: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--muted);
  font: 700 10px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.search-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--panel);
  color: var(--paper);
}

.field input:focus,
.field select:focus,
.search-input:focus {
  border-color: var(--lime);
  outline: 0;
  box-shadow: 0 0 0 1px var(--lime);
}

.field input::placeholder,
.search-input::placeholder {
  color: var(--dim);
}

.field-help {
  color: var(--dim);
  font-size: 11px;
  line-height: 1.5;
}

.toggle-row {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.toggle {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 24px;
}

.toggle input {
  position: absolute;
  opacity: 0;
}

.toggle span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-bright);
  background: var(--panel);
}

.toggle span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  background: var(--muted);
  transition: transform 160ms ease, background 160ms ease;
}

.toggle input:checked + span {
  border-color: var(--lime);
}

.toggle input:checked + span::after {
  background: var(--lime);
  transform: translateX(22px);
}

.toggle input:focus-visible + span {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tool-actions button {
  cursor: pointer;
}

.output {
  padding: 18px;
  border: 1px solid var(--lime);
  background: #030403;
  color: var(--lime);
  font: 500 12px/1.6 var(--mono);
  overflow-wrap: anywhere;
}

.qr-output {
  display: grid;
  place-items: center;
  margin-top: 18px;
}

.qr-output svg {
  width: min(280px, 100%);
  height: auto;
  padding: 14px;
  background: white;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  padding: 13px 18px;
  background: var(--lime);
  color: var(--ink);
  font: 700 11px var(--mono);
  transform: translateY(30px);
  opacity: 0;
  transition: 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font: 700 10px var(--mono);
  cursor: pointer;
  text-transform: uppercase;
}

.filter-chip:hover,
.filter-chip[aria-pressed="true"] {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.device-list {
  display: grid;
  gap: 12px;
}

.device-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: 30px;
  padding: 24px;
}

.device-card h2 {
  margin: 0 0 10px;
  font: 900 30px/0.95 var(--display);
  text-transform: uppercase;
}

.device-models {
  color: var(--lime);
  font: 500 10px/1.6 var(--mono);
  overflow-wrap: anywhere;
}

.device-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--muted);
  font: 700 10px var(--mono);
  text-transform: uppercase;
}

.status-line span {
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.empty-state {
  padding: 50px 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.legal-section {
  margin-bottom: 14px;
  padding: clamp(25px, 4vw, 48px);
}

.legal-section h2 {
  margin: 0 0 22px;
  font: 900 clamp(30px, 4vw, 48px)/1 var(--display);
  text-transform: uppercase;
}

.legal-section h3 {
  margin: 30px 0 12px;
  font-size: 15px;
}

.legal-section p,
.legal-section li,
.legal-section td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section a {
  color: var(--lime);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--paper);
  font: 700 10px var(--mono);
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero__art-word[data-parallax] {
  transform: translate(-50%, calc(-50% + var(--parallax-y, 0px))) rotate(-90deg);
}

@media (max-width: 1040px) {
  :root { --shell: min(100% - 32px, 1440px); }
  .hero__grid { grid-template-columns: minmax(360px, 0.86fr) minmax(430px, 1.14fr); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .section__head { grid-template-columns: 1fr; }
  .story,
  .story:nth-child(even) { grid-template-columns: 0.72fr 1fr; }
  .story:nth-child(even) .story__visual {
    order: initial;
    border-right: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    display: block;
  }
  .hero__copy {
    min-height: auto;
    padding: 72px 0 54px;
  }
  .product-shot {
    margin-bottom: 70px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --header-h: 66px;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: var(--ink);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px 0; }
  .site-nav .button { padding: 0 16px; }
  .nav-toggle { display: inline-flex; }
  .hero__copy {
    padding: 72px 0 54px;
  }
  .product-shot {
    margin-bottom: 70px;
  }
  .product-shot figcaption {
    display: grid;
    gap: 4px;
  }
  .display--xl { font-size: clamp(58px, 16vw, 82px); }
  .display--lg { font-size: clamp(48px, 14vw, 76px); }
  .section { padding-block: 90px; }
  .section__head { gap: 30px; }
  .story,
  .story:nth-child(even) { display: block; min-height: 0; }
  .story__visual,
  .story:nth-child(even) .story__visual {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .story__content { padding: 42px 22px 56px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { min-height: 210px; }
  .cta::after { display: none; }
  .cta__inner,
  .site-footer__grid,
  .proof__grid { grid-template-columns: 1fr; align-items: start; }
  .site-footer__links { justify-content: flex-start; }
  .utility-layout { display: block; padding-top: 38px; }
  .utility-aside { position: static; margin-bottom: 30px; }
  .field-grid,
  .field-grid--3 { grid-template-columns: 1fr; }
  .device-card { grid-template-columns: 1fr; gap: 18px; }
  .search-bar { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  [data-parallax] {
    transform: none;
    will-change: auto;
  }
  .hero__art-word[data-parallax] {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}
