:root {
  --ink: #151612;
  --ink-soft: #363832;
  --muted: #6c7068;
  --paper: #f4f5f1;
  --white: #ffffff;
  --line: #cfd2cb;
  --line-dark: #383a34;
  --orange: #ed6b2d;
  --orange-soft: #f4d6c5;
  --mist: #dce8e5;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -64px;
  z-index: 50;
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
}
.skip-link:focus { top: 18px; }

.site-header {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(26px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(244, 245, 241, .96);
  position: sticky;
  top: 0;
  z-index: 20;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
}
.wordmark img { width: 34px; height: 34px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a:hover { color: var(--orange); }
.site-nav .nav-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  background: var(--ink);
  color: var(--white);
}
.site-nav .nav-contact:hover { background: var(--orange); color: var(--ink); }
.site-nav .nav-contact:active { transform: translateY(1px); }
.menu-button { display: none; }

.hero {
  height: min(880px, calc(100svh - 116px));
  min-height: 670px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-grid {
  position: absolute;
  inset: 0 max(26px, calc((100vw - var(--max)) / 2));
  border-left: 1px solid rgba(255,255,255,.11);
  border-right: 1px solid rgba(255,255,255,.11);
  pointer-events: none;
}
.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.07);
}
.hero-grid::before { left: 33.333%; }
.hero-grid::after { right: 33.333%; }
.hero-word {
  position: absolute;
  right: -4%;
  top: -22%;
  color: rgba(255,255,255,.025);
  font-family: var(--display);
  font-size: 58rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-content {
  width: min(650px, calc(100% - 52px));
  position: absolute;
  left: max(26px, calc((100vw - var(--max)) / 2));
  top: 50%;
  z-index: 3;
  transform: translateY(-54%);
}
.hero-kicker,
.section-index {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-kicker { color: #c4c8bf; }
.hero-kicker span,
.section-index span { margin: 0 8px; color: var(--orange); }
.hero h1 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: 7.5rem;
  font-weight: 500;
  line-height: .82;
  letter-spacing: 0;
}
.hero-statement {
  max-width: 620px;
  margin: 32px 0 0;
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 1.08;
  text-wrap: balance;
}
.hero-body {
  max-width: 560px;
  margin: 24px 0 0;
  color: #bcc0b7;
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--orange); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--orange); color: var(--ink); }
.text-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.text-link-light { color: #d7dad3; }
.text-link:hover { color: var(--orange); }

.hero-product {
  position: absolute;
  right: max(7%, calc((100vw - var(--max)) / 2 + 36px));
  bottom: -80px;
  z-index: 2;
  width: 350px;
  height: 720px;
}
.hero-orbit {
  position: absolute;
  width: 570px;
  height: 570px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(237,107,45,.62);
  border-radius: 50%;
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero-orbit::before {
  inset: 70px;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-orbit::after {
  width: 12px;
  height: 12px;
  right: 51px;
  top: 104px;
  background: var(--orange);
}
.device {
  margin: 0;
  padding: 8px;
  border: 1px solid #343631;
  border-radius: 31px;
  background: #0d0e0c;
  box-shadow: 0 30px 70px rgba(21,22,18,.24);
}
.device img { width: 100%; border-radius: 23px; }
.device-hero {
  width: 310px;
  position: absolute;
  left: 20px;
  top: 48px;
  box-shadow: 0 42px 90px rgba(0,0,0,.5);
  animation: hero-device-in .7s cubic-bezier(.2,.7,.2,1) both;
}
.hero-figure-label {
  position: absolute;
  right: -25px;
  top: 310px;
  margin: 0;
  color: #d7dad3;
  font-size: 11px;
  font-weight: 600;
  transform: rotate(90deg);
  transform-origin: right center;
}
.hero-figure-label span { color: var(--orange); margin-right: 12px; }
.hero-status {
  position: absolute;
  left: max(26px, calc((100vw - var(--max)) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #a9ada4;
  font-size: 11px;
}
.hero-status span:last-child { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.24); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

@keyframes hero-device-in {
  from { opacity: 0; transform: translateY(28px) rotate(2deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.identity-strip {
  width: min(var(--max), calc(100% - 52px));
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.identity-strip div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.identity-strip div:first-child { padding-left: 0; }
.identity-strip div:last-child { border-right: 0; }
.identity-strip span { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.identity-strip strong { max-width: 220px; font-family: var(--display); font-size: 18px; font-weight: 500; }

.section { width: min(var(--max), calc(100% - 52px)); margin: 0 auto; }
.editorial-intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 58px;
  padding: 150px 0 180px;
  align-items: start;
}
.editorial-heading h2,
.operations-head h2,
.product-stage-head h2,
.model-statement h2,
.trust-head h2,
.company-title h2,
.contact-section h2,
.policy-hero h1,
.not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.editorial-copy { padding-top: 4px; }
.editorial-copy p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.product-stage {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  padding: 120px max(26px, calc((100vw - var(--max)) / 2)) 150px;
}
.product-stage::before {
  content: "";
  position: absolute;
  left: max(26px, calc((100vw - var(--max)) / 2));
  right: max(26px, calc((100vw - var(--max)) / 2));
  top: 0;
  border-top: 1px solid rgba(21,22,18,.28);
}
.product-stage-head {
  display: grid;
  grid-template-columns: 150px 1fr 280px;
  gap: 58px;
  align-items: end;
}
.section-index-light { color: #5f6863; }
.product-stage-head h2 { max-width: 700px; }
.product-stage-head > p:last-child { margin: 0; color: #5f6863; font-size: 14px; line-height: 1.65; }
.screen-sequence {
  max-width: 1050px;
  min-height: 740px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: end;
  margin: 100px auto 0;
}
.screen-step { margin: 0; }
.screen-step-one { transform: translateY(52px); }
.screen-step-two { transform: translateY(-28px); }
.screen-step-three { transform: translateY(28px); }
.screen-step .device { width: 100%; }
.screen-step figcaption {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 3px 12px;
  margin-top: 26px;
}
.screen-step figcaption span { grid-row: 1 / 3; color: #67716c; font-family: var(--display); font-size: 18px; }
.screen-step figcaption strong { font-size: 14px; }
.screen-step figcaption small { color: #5f6863; font-size: 12px; line-height: 1.5; }

.operations-section { padding: 150px 0 170px; }
.operations-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .56fr);
  gap: 100px;
  align-items: end;
  margin: 44px 0 90px 208px;
}
.operations-head p,
.trust-head p,
.company-title > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.operation-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.operation-list li {
  display: grid;
  grid-template-columns: 120px minmax(250px, .8fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: start;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}
.operation-number { color: var(--orange); font-family: var(--display); font-size: 20px; }
.operation-list h3 { margin: 0; font-family: var(--display); font-size: 27px; font-weight: 500; }
.operation-list p { max-width: 580px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.model-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 100px;
  padding: 130px max(26px, calc((100vw - var(--max)) / 2)) 150px;
  background: var(--orange);
}
.model-statement .section-index { color: rgba(21,22,18,.68); }
.model-statement h2 { margin-top: 44px; }
.model-details { margin: 0; border-top: 1px solid rgba(21,22,18,.72); }
.model-details div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 28px;
  padding: 25px 0 28px;
  border-bottom: 1px solid rgba(21,22,18,.28);
}
.model-details dt { font-size: 11px; font-weight: 700; text-transform: uppercase; }
.model-details dd { margin: 0; font-size: 14px; line-height: 1.7; }

.trust-section { padding: 150px 0 180px; }
.trust-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 100px;
  align-items: end;
  margin: 44px 0 95px 208px;
}
.trust-lines { border-top: 1px solid var(--ink); }
.trust-lines article {
  display: grid;
  grid-template-columns: 190px minmax(300px, 1fr) minmax(260px, .7fr);
  gap: 38px;
  padding: 32px 0 36px;
  border-bottom: 1px solid var(--line);
}
.trust-lines article > span { color: var(--orange); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.trust-lines h3 { max-width: 530px; margin: 0; font-family: var(--display); font-size: 26px; font-weight: 500; line-height: 1.2; }
.trust-lines p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.company-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  padding: 145px max(26px, calc((100vw - var(--max)) / 2)) 160px;
  background: var(--ink);
  color: var(--white);
}
.company-title h2 { margin-top: 50px; }
.company-title > p:last-child { max-width: 500px; margin-top: 26px; color: #b6bab1; }
.company-facts { margin: 0; border-top: 1px solid rgba(255,255,255,.48); }
.company-facts div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 19px 0 21px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.company-facts dt { color: #969b91; font-size: 11px; }
.company-facts dd { margin: 0; font-size: 14px; font-weight: 600; }
.company-facts a:hover { color: var(--orange); }
.policy-directory { margin-top: 68px; border-top: 1px solid rgba(255,255,255,.48); }
.policy-directory > p { margin: 0; padding: 18px 0; color: #969b91; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.policy-directory a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  font-family: var(--display);
  font-size: 22px;
  text-decoration: none;
  transition: color .2s ease, padding .2s ease;
}
.policy-directory a:hover { color: var(--orange); padding-left: 8px; }

.contact-section {
  width: min(var(--max), calc(100% - 52px));
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 58px;
  align-items: end;
  margin: 0 auto;
  padding: 140px 0 150px;
}
.contact-section h2 { max-width: 760px; font-size: 3.7rem; }

.site-footer {
  padding: 54px max(26px, calc((100vw - var(--max)) / 2)) 26px;
  border-top: 1px solid var(--line);
}
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-main p { margin: 0; color: var(--muted); font-family: var(--display); font-size: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; padding: 44px 0; }
.footer-links a { color: var(--ink-soft); font-size: 12px; font-weight: 600; }
.footer-links a:hover { color: var(--orange); }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

/* Policy and utility pages */
.policy-main {
  width: min(900px, calc(100% - 52px));
  margin: 0 auto;
  padding: 100px 0 140px;
}
.policy-hero { padding: 0 0 54px; border-bottom: 1px solid var(--ink); }
.policy-hero .eyebrow { margin: 0 0 24px; color: var(--orange); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.policy-hero h1 { font-size: 5rem; }
.policy-meta { margin: 22px 0 0; color: var(--muted); font-size: 12px; }
.policy-notice {
  margin: 42px 0 60px;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.policy-content h2 { margin: 52px 0 14px; font-family: var(--display); font-size: 30px; font-weight: 500; }
.policy-content h3 { margin: 30px 0 10px; font-size: 17px; }
.policy-content p,
.policy-content li { color: var(--ink-soft); font-size: 15px; line-height: 1.78; }
.policy-content ul { padding-left: 23px; }
.policy-content a { color: #b74a16; }

.not-found {
  width: min(var(--max), calc(100% - 52px));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-content: center;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}
.not-found .section-index { margin-bottom: 28px; color: var(--orange); }
.not-found h1 { font-size: 6rem; }
.not-found > p { max-width: 520px; margin: 26px auto 34px; color: var(--muted); font-size: 16px; line-height: 1.7; }

@media (max-width: 1100px) {
  .hero-content { width: 560px; }
  .hero h1 { font-size: 6.5rem; }
  .hero-statement { font-size: 2rem; }
  .hero-product { right: 4%; width: 300px; }
  .hero-orbit { width: 500px; height: 500px; }
  .device-hero { width: 270px; }
  .editorial-intro { grid-template-columns: 110px 1.1fr .9fr; gap: 40px; }
  .product-stage-head { grid-template-columns: 110px 1fr 230px; gap: 40px; }
  .operations-head,
  .trust-head { margin-left: 150px; }
  .operations-head { grid-template-columns: 1fr minmax(240px, .56fr); gap: 50px; }
  .trust-head { grid-template-columns: 1fr 280px; gap: 50px; }
  .screen-sequence { gap: 34px; }
  .company-section { gap: 70px; }
  .contact-section { grid-template-columns: 110px 1fr; gap: 40px; }
  .contact-section .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 980px) {
  :root { --header-height: 68px; }
  .site-header { padding: 0 22px; }
  .menu-button {
    display: block;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 12px 0 12px 18px;
    font-size: 13px;
    font-weight: 700;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-height);
    padding: 16px 22px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-contact { justify-content: center; margin-top: 14px; padding: 0 16px; border: 0; }
  .site-nav.policy-nav {
    display: flex;
    position: static;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background: transparent;
    border: 0;
  }
  .site-nav.policy-nav a { padding: 8px 0; border: 0; font-size: 12px; }

  .hero {
    height: calc(100svh - 104px);
    min-height: 720px;
    max-height: 790px;
  }
  .hero-grid { inset: 0 22px; }
  .hero-grid::before { left: 50%; }
  .hero-grid::after { display: none; }
  .hero-word { right: -44%; top: 2%; font-size: 36rem; }
  .hero-content {
    width: calc(100% - 44px);
    left: 22px;
    top: 64px;
    transform: none;
  }
  .hero h1 { margin-top: 18px; font-size: 4.7rem; }
  .hero-statement { max-width: 370px; margin-top: 24px; font-size: 1.85rem; }
  .hero-body { max-width: 330px; margin-top: 18px; font-size: 14px; line-height: 1.6; }
  .hero-actions { max-width: 220px; flex-direction: column; align-items: stretch; gap: 18px; margin-top: 24px; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-product { width: 150px; height: 330px; right: 10px; bottom: 18px; }
  .hero-orbit { width: 280px; height: 280px; top: 47%; }
  .hero-orbit::before { inset: 38px; }
  .hero-orbit::after { width: 8px; height: 8px; right: 24px; top: 54px; }
  .device-hero { width: 146px; left: 0; top: 14px; padding: 4px; border-radius: 18px; }
  .device-hero img { border-radius: 14px; }
  .hero-figure-label { display: none; }
  .hero-status { left: 22px; bottom: 24px; max-width: 175px; flex-wrap: wrap; gap: 8px; }
  .hero-status span:last-child { flex-basis: 100%; padding-left: 22px; border: 0; }

  .identity-strip { width: calc(100% - 44px); grid-template-columns: 1fr 1fr; padding: 15px 0; }
  .identity-strip div { min-height: 96px; padding: 18px 14px; border-bottom: 1px solid var(--line); }
  .identity-strip div:nth-child(2) { border-right: 0; }
  .identity-strip div:nth-child(3),
  .identity-strip div:nth-child(4) { border-bottom: 0; }
  .identity-strip div:nth-child(3) { padding-left: 0; }
  .identity-strip strong { font-size: 16px; }

  .section { width: calc(100% - 44px); }
  .editorial-intro { grid-template-columns: 1fr; gap: 30px; padding: 96px 0 110px; }
  .editorial-heading h2,
  .operations-head h2,
  .product-stage-head h2,
  .model-statement h2,
  .trust-head h2,
  .company-title h2,
  .contact-section h2 { font-size: 3rem; }
  .editorial-copy { max-width: 620px; }

  .product-stage { padding: 90px 22px 100px; }
  .product-stage::before { left: 22px; right: 22px; }
  .product-stage-head { grid-template-columns: 1fr; gap: 26px; }
  .product-stage-head > p:last-child { max-width: 440px; }
  .screen-sequence { min-height: 0; grid-template-columns: repeat(3, 230px); gap: 24px; justify-content: start; overflow-x: auto; margin-top: 64px; padding: 20px 22px 34px 0; scroll-snap-type: x mandatory; }
  .screen-step { transform: none; scroll-snap-align: start; }

  .operations-section,
  .trust-section { padding: 100px 0 115px; }
  .operations-head,
  .trust-head { grid-template-columns: 1fr; gap: 28px; margin: 36px 0 60px; }
  .operation-list li { grid-template-columns: 48px 1fr; gap: 12px 18px; padding: 28px 0 32px; }
  .operation-list p { grid-column: 2; }
  .model-section { grid-template-columns: 1fr; gap: 60px; padding: 92px 22px 105px; }
  .model-statement h2 { margin-top: 34px; }
  .model-details div { grid-template-columns: 130px 1fr; }

  .trust-lines article { grid-template-columns: 150px 1fr; gap: 16px 24px; }
  .trust-lines p { grid-column: 2; }
  .company-section { grid-template-columns: 1fr; gap: 70px; padding: 95px 22px 110px; }
  .company-title h2 { margin-top: 36px; }
  .contact-section { width: calc(100% - 44px); grid-template-columns: 1fr; gap: 28px; padding: 95px 0 105px; }
  .contact-section .button { grid-column: auto; justify-self: start; }

  .site-footer { padding: 46px 22px 24px; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-legal { align-items: flex-start; flex-direction: column; }

  .policy-main { width: calc(100% - 44px); padding: 70px 0 100px; }
  .policy-hero h1 { font-size: 3.8rem; }
}

@media (max-width: 480px) {
  .wordmark { font-size: 21px; }
  .hero { min-height: 740px; }
  .hero h1 { font-size: 4.35rem; }
  .hero-statement { max-width: 345px; font-size: 1.7rem; }
  .hero-body { max-width: 300px; }
  .hero-actions { max-width: 205px; }
  .hero-product { width: 134px; right: 4px; }
  .device-hero { width: 130px; }
  .hero-orbit { width: 250px; height: 250px; }
  .identity-strip strong { font-size: 15px; }
  .editorial-heading h2,
  .operations-head h2,
  .product-stage-head h2,
  .model-statement h2,
  .trust-head h2,
  .company-title h2,
  .contact-section h2 { font-size: 2.7rem; }
  .screen-sequence { grid-template-columns: repeat(3, 215px); }
  .operation-list h3 { font-size: 24px; }
  .model-details div,
  .company-facts div { grid-template-columns: 1fr; gap: 8px; }
  .trust-lines article { grid-template-columns: 1fr; gap: 12px; }
  .trust-lines p { grid-column: auto; }
  .trust-lines h3 { font-size: 24px; }
  .policy-directory a { font-size: 20px; }
  .policy-hero h1 { font-size: 3.2rem; }
  .not-found h1 { font-size: 4.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
