:root {
  --paper: #ece9e0;
  --paper-bright: #f8f6ef;
  --paper-deep: #d9d6cc;
  --ink: #111310;
  --ink-soft: #1c1f1b;
  --panel: #242722;
  --muted: #686b63;
  --muted-dark: #a5a99f;
  --line: rgba(17, 19, 16, 0.2);
  --line-dark: rgba(248, 246, 239, 0.18);
  --acid: #caff24;
  --acid-dark: #9ac900;
  --silver: #bec1ba;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  background: var(--acid);
  font: 700 11px/1 var(--mono);
  text-transform: uppercase;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 clamp(22px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-bright) 92%, transparent);
  backdrop-filter: blur(20px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand-mark {
  width: 25px;
  height: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  transform: rotate(-4deg);
}

.brand-mark i {
  display: block;
  background: currentColor;
}

.brand-mark i:nth-child(2) {
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--acid);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
}

.site-header nav a,
.header-cta {
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 12px 0;
}

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

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-width: 170px;
  padding: 13px 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--ink);
  background: var(--acid);
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(480px, 43%) minmax(0, 57%);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-bright);
}

.hero-copy {
  min-height: 760px;
  padding: clamp(64px, 7vw, 118px) clamp(30px, 5vw, 82px) 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
}

.eyebrow,
.section-index,
.layout-kicker {
  margin-bottom: 0;
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  padding: 8px 10px;
  background: var(--ink);
  color: var(--paper-bright);
}

.hero h1 {
  max-width: 760px;
  margin: 45px 0 0;
  font: 830 clamp(66px, 6.4vw, 118px) / 0.86 var(--display);
  letter-spacing: -0.075em;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -0.02em;
  bottom: 0.08em;
  left: -0.02em;
  z-index: -1;
  height: 0.18em;
  background: var(--acid);
}

.hero-lede {
  max-width: 650px;
  margin: 36px 0 0;
  color: #353831;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.58;
  letter-spacing: -0.018em;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-width: 216px;
  padding: 16px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid currentColor;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.button-quiet {
  color: var(--ink);
}

.button-quiet:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.hero-facts {
  margin: 68px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 12px 0 0;
}

.hero-facts dt,
.hero-facts dd {
  font-family: var(--mono);
  text-transform: uppercase;
}

.hero-facts dt {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-facts dd {
  margin: 0;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  background: #dedbd3;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, rgba(17, 19, 16, 0.18));
}

.hero-visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.hero-visual figcaption span,
.family-card figcaption,
.connection-photo figcaption {
  padding: 9px 10px;
  border: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper-bright) 92%, transparent);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-visual figcaption b {
  max-width: 430px;
  color: var(--ink);
  font-size: clamp(34px, 3.3vw, 62px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-align: right;
}

.section {
  padding: clamp(100px, 10vw, 170px) clamp(22px, 6vw, 104px);
  border-bottom: 1px solid var(--ink);
}

.section-dark {
  padding: clamp(100px, 10vw, 170px) clamp(22px, 6vw, 104px);
  border-bottom: 1px solid #50544b;
  background: var(--ink);
  color: var(--paper-bright);
}

.section-intro,
.layout-heading {
  max-width: 1500px;
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.48fr 1.55fr 0.65fr;
  align-items: start;
  gap: clamp(32px, 5vw, 80px);
}

.section-intro h2,
.layout-heading h2,
.toggle-copy h2,
.connection-copy h2,
.desktop-copy h2,
.power-block h2,
.closing h2 {
  margin-bottom: 0;
  font: 820 clamp(52px, 5.8vw, 102px) / 0.9 var(--display);
  letter-spacing: -0.067em;
}

.section-intro > p:last-child,
.layout-heading > p,
.toggle-copy > p:not(.section-index),
.connection-copy > p:not(.section-index),
.desktop-copy > p:not(.section-index) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.principles {
  max-width: 1500px;
  margin: clamp(80px, 9vw, 135px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}

.principle {
  min-height: 360px;
  padding: clamp(28px, 3.5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
  background: var(--paper-bright);
}

.principle:last-child {
  border-right: 0;
}

.principle > span {
  color: var(--acid-dark);
  font: 700 10px/1 var(--mono);
}

.principle h3 {
  margin-bottom: 16px;
  font-size: clamp(32px, 2.8vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.principle p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.layout-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.55fr;
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
}

.layout-heading h2 {
  max-width: 1100px;
  margin-top: 34px;
}

.layout-heading > p {
  color: var(--muted-dark);
}

.layout-stage {
  max-width: 1500px;
  margin: clamp(68px, 8vw, 118px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(360px, 0.8fr);
  border: 1px solid #555a51;
  background: #171a16;
}

.layout-photo {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid #555a51;
  background: #242722;
}

.layout-photo img {
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.layout-photo img.is-changing {
  opacity: 0.2;
  transform: scale(1.012);
}

.layout-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(248, 246, 239, 0.62);
  background: rgba(17, 19, 16, 0.72);
  color: var(--paper-bright);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.layout-console {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.layout-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #555a51;
}

.layout-tabs button {
  min-width: 0;
  min-height: 76px;
  padding: 13px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-right: 1px solid #555a51;
  background: transparent;
  color: var(--muted-dark);
  cursor: pointer;
  font: 700 9px/1 var(--mono);
  text-transform: uppercase;
}

.layout-tabs button:last-child {
  border-right: 0;
}

.layout-tabs button span {
  font-size: 8px;
  opacity: 0.55;
}

.layout-tabs button:hover,
.layout-tabs button.is-active {
  background: var(--acid);
  color: var(--ink);
}

.layout-detail {
  min-height: 643px;
  padding: clamp(34px, 4vw, 62px);
  display: flex;
  flex-direction: column;
}

.layout-kicker {
  color: var(--acid);
}

.layout-detail h3 {
  margin: auto 0 24px;
  font-size: clamp(40px, 4vw, 70px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.layout-detail > p:not(.layout-kicker) {
  margin-bottom: 36px;
  color: var(--muted-dark);
  line-height: 1.62;
}

.layout-detail dl {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.layout-detail dl div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.layout-detail dt {
  margin-bottom: 8px;
  color: var(--muted-dark);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layout-detail dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.module-intro > p:last-child {
  max-width: 480px;
}

.family-grid {
  max-width: 1500px;
  margin: clamp(70px, 8vw, 120px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.family-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
}

.family-core {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.65fr);
}

.family-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #252724;
}

.family-core figure {
  min-height: 650px;
  border-right: 1px solid var(--ink);
}

.family-dense figure,
.family-pro figure {
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--ink);
}

.family-card figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.family-card:hover figure img {
  transform: scale(1.025);
}

.family-card figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.family-copy {
  min-height: 410px;
  padding: clamp(30px, 4vw, 62px);
  display: flex;
  flex-direction: column;
}

.family-core .family-copy {
  min-height: 650px;
}

.family-copy > span {
  color: var(--acid-dark);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-copy h3 {
  margin: auto 0 24px;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.family-copy p {
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.6;
}

.family-copy ul,
.output-tags {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.family-copy li,
.output-tags span {
  padding: 8px 9px;
  border: 1px solid var(--line);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.toggle-story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
  padding: 0;
}

.toggle-photo {
  min-height: 830px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid #555a51;
  background: #242622;
}

.toggle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 8%;
  transform: scale(1.22);
}

.toggle-copy {
  min-height: 830px;
  padding: clamp(70px, 8vw, 130px) clamp(35px, 5vw, 82px);
  display: flex;
  flex-direction: column;
}

.toggle-copy h2 {
  margin-top: auto;
  font-size: clamp(52px, 5vw, 88px);
}

.toggle-copy > p:not(.section-index) {
  margin-top: 34px;
  color: var(--muted-dark);
}

.toggle-copy dl {
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.toggle-copy dl div {
  padding: 17px 14px 0 0;
}

.toggle-copy dt {
  margin-bottom: 9px;
  color: var(--muted-dark);
  font: 700 8px/1 var(--mono);
  text-transform: uppercase;
}

.toggle-copy dd {
  margin: 0;
  font: 700 10px/1.4 var(--mono);
  text-transform: uppercase;
}

.connection {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 8vw, 135px);
  align-items: center;
}

.connection-copy h2 {
  margin-top: 36px;
  font-size: clamp(54px, 5vw, 88px);
}

.connection-copy > p:not(.section-index) {
  max-width: 650px;
  margin-top: 30px;
}

.contact-sequence {
  max-width: 430px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.contact-sequence span {
  min-width: 0;
  min-height: 62px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--paper-bright);
}

.contact-sequence span::before {
  content: "";
  width: 11px;
  height: 11px;
  margin: 3px auto 7px;
  border: 1px solid #735813;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff2a0, #d1a530 43%, #87600e 100%);
}

.contact-sequence .raised::before {
  box-shadow: 0 2px 0 #634b0f, 0 3px 4px rgba(17, 19, 16, 0.22);
  transform: translateY(-1px);
}

.contact-sequence .flat::before {
  box-shadow: inset 0 0 0 2px #e0b949;
}

.contact-sequence i,
.contact-sequence b {
  font: 700 7px/1 var(--mono);
  font-style: normal;
}

.contact-sequence b {
  color: var(--muted);
}

.connection-points {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.connection-points li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.connection-points span {
  font: 700 8px/1.6 var(--mono);
}

.connection-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.connection-photo {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
}

.connection-photo img {
  height: 100%;
  object-fit: cover;
}

.connection-photo figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
}

.desktop {
  display: grid;
  grid-template-columns: minmax(340px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(55px, 8vw, 135px);
}

.desktop-copy h2 {
  margin-top: 36px;
  font-size: clamp(52px, 5vw, 88px);
}

.desktop-copy > p:not(.section-index) {
  margin-top: 30px;
  color: var(--muted-dark);
}

.output-tags {
  margin-top: 36px;
}

.output-tags span {
  border-color: var(--line-dark);
  color: var(--paper-bright);
}

.software-frame {
  min-width: 0;
  border: 1px solid #5a5e55;
  background: #0d0f0c;
  box-shadow: 20px 20px 0 var(--acid);
}

.software-bar {
  min-height: 58px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #484c44;
}

.software-bar > div {
  display: flex;
  gap: 6px;
}

.software-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #676b62;
}

.software-bar b {
  font-size: 11px;
}

.software-bar span {
  justify-self: end;
  color: var(--acid);
  font: 700 8px/1 var(--mono);
}

.software-body {
  min-height: 575px;
  display: grid;
  grid-template-columns: 120px 1fr;
}

.software-body aside {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid #484c44;
}

.software-body aside span,
.software-body aside b {
  padding: 10px;
  font: 700 8px/1 var(--mono);
  text-transform: uppercase;
}

.software-body aside b {
  background: var(--acid);
  color: var(--ink);
}

.software-body aside span {
  color: var(--muted-dark);
}

.software-content {
  min-width: 0;
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 23px;
  background-image: radial-gradient(rgba(248, 246, 239, 0.11) 1px, transparent 1px);
  background-size: 18px 18px;
}

.software-summary {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 20px;
  border: 1px solid #484c44;
  background: #171a16;
}

.software-summary span,
.software-summary small {
  font: 700 8px/1.3 var(--mono);
  text-transform: uppercase;
}

.software-summary span {
  color: var(--acid);
}

.software-summary b {
  grid-row: 2;
  font-size: 13px;
}

.software-summary small {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--muted-dark);
}

.topology-table {
  align-self: stretch;
  border: 1px solid #484c44;
  background: #141713;
}

.topology-table > div {
  min-height: 58px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr 0.9fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #343831;
  font-size: 11px;
}

.topology-table > div:last-child {
  border-bottom: 0;
}

.topology-table .table-head {
  min-height: 36px;
  color: var(--muted-dark);
  font: 700 7px/1 var(--mono);
}

.topology-table b {
  color: var(--paper-bright);
}

.topology-table span {
  color: var(--muted-dark);
  font-family: var(--mono);
}

.software-selection {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 8px 22px;
  border: 1px solid #484c44;
  background: #171a16;
}

.software-selection span {
  grid-row: 1 / span 2;
  color: var(--acid);
  font: 700 8px/1.5 var(--mono);
}

.software-selection b {
  font-size: 13px;
}

.software-selection p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 10px;
  line-height: 1.55;
}

.power-specs {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 8vw, 135px);
  align-items: start;
}

.power-block h2 {
  margin-top: 36px;
  font-size: clamp(52px, 5vw, 88px);
}

.power-cards {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
}

.power-cards article {
  min-height: 340px;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  background: var(--paper-bright);
}

.power-cards article:last-child {
  border-right: 0;
  background: var(--acid);
}

.power-cards article > span {
  font: 700 9px/1 var(--mono);
}

.power-cards h3 {
  margin: auto 0 17px;
  font-size: clamp(27px, 2.2vw, 40px);
  letter-spacing: -0.05em;
}

.power-cards p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.power-cards article:last-child p {
  color: var(--ink);
}

.power-cards b {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font: 700 8px/1.3 var(--mono);
  text-transform: uppercase;
}

.spec-grid {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.spec-grid div {
  min-height: 128px;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.spec-grid div:nth-child(odd) {
  padding-right: 25px;
  border-right: 1px solid var(--line);
}

.spec-grid div:nth-child(even) {
  padding-left: 25px;
}

.spec-grid dt {
  color: var(--muted);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 20px 0 0;
  font-size: clamp(17px, 1.55vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.closing {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #4c5048;
  background: var(--ink);
  color: var(--paper-bright);
}

.closing > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(0.8);
  transform: scale(1.04);
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 19, 16, 0.95), rgba(17, 19, 16, 0.18));
}

.closing > div {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 44px));
  padding: clamp(70px, 9vw, 145px);
}

.closing h2 {
  max-width: 1050px;
  margin: 40px 0 45px;
  font-size: clamp(64px, 8vw, 142px);
}

.closing .button-primary:hover {
  border-color: var(--paper-bright);
}

footer {
  min-height: 150px;
  padding: 32px clamp(22px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  background: var(--ink);
  color: var(--paper-bright);
}

footer p {
  margin: 0;
  color: var(--muted-dark);
  font: 700 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

footer > a:last-child {
  justify-self: end;
  font: 700 9px/1 var(--mono);
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    height: calc(100vh - 76px);
    padding: 45px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--ink);
    background: var(--paper-bright);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .site-header nav a {
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: 700 9px/1 var(--mono);
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    width: 20px;
    height: 1px;
    display: block;
    background: var(--ink);
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle i::before { top: -5px; }
  .menu-toggle i::after { top: 5px; }

  .menu-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .hero-visual {
    min-height: 720px;
  }

  .section-intro {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .layout-stage {
    grid-template-columns: 1fr;
  }

  .layout-photo {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid #555a51;
  }

  .layout-detail {
    min-height: 500px;
  }

  .family-core {
    grid-template-columns: 1fr;
  }

  .family-core figure {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .family-core .family-copy {
    min-height: 460px;
  }

  .toggle-story,
  .connection,
  .desktop,
  .power-specs {
    grid-template-columns: 1fr;
  }

  .toggle-photo {
    min-height: 700px;
    border-right: 0;
    border-bottom: 1px solid #555a51;
  }

  .toggle-copy {
    min-height: 650px;
  }

  .connection-copy {
    max-width: 800px;
  }

  .connection-photo {
    min-height: 700px;
  }

  .desktop-copy {
    max-width: 800px;
  }

  .software-frame {
    width: min(960px, calc(100% - 20px));
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 0 17px;
  }

  .site-header nav {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .hero-copy {
    min-height: 690px;
    padding: 58px 20px 34px;
  }

  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 88px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-visual img {
    object-position: 70% center;
  }

  .hero-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-visual figcaption b {
    max-width: 250px;
    font-size: 30px;
  }

  .section,
  .section-dark {
    padding: 84px 20px;
  }

  .section-intro,
  .layout-heading {
    grid-template-columns: 1fr;
  }

  .section-intro > p:last-child {
    grid-column: auto;
  }

  .section-intro h2,
  .layout-heading h2,
  .toggle-copy h2,
  .connection-copy h2,
  .desktop-copy h2,
  .power-block h2 {
    font-size: clamp(47px, 14vw, 72px);
  }

  .section-intro h2,
  .layout-heading h2 {
    margin-top: 25px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .layout-heading {
    gap: 32px;
  }

  .layout-photo {
    min-height: 500px;
  }

  .layout-photo img {
    object-position: center;
  }

  .layout-stage {
    margin-top: 54px;
  }

  .layout-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .layout-tabs button:nth-child(2) {
    border-right: 0;
  }

  .layout-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid #555a51;
  }

  .layout-detail {
    min-height: 540px;
    padding: 30px 24px;
  }

  .family-grid {
    grid-template-columns: 1fr;
  }

  .family-core {
    grid-column: auto;
  }

  .family-core figure {
    min-height: 420px;
  }

  .family-dense figure,
  .family-pro figure {
    aspect-ratio: 1.2;
  }

  .family-card figure img {
    object-position: center;
  }

  .family-copy,
  .family-core .family-copy {
    min-height: 430px;
    padding: 30px 25px;
  }

  .family-copy h3 {
    font-size: 38px;
  }

  .toggle-story {
    padding: 0;
  }

  .toggle-photo {
    min-height: 520px;
  }

  .toggle-photo img {
    object-position: 80% 5%;
    transform: scale(1.36);
  }

  .toggle-copy {
    min-height: 590px;
    padding: 70px 20px;
  }

  .toggle-copy dl {
    grid-template-columns: 1fr;
  }

  .toggle-copy dl div {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .contact-sequence span {
    aspect-ratio: 0.58;
  }

  .contact-sequence span::before {
    width: 17px;
    height: 17px;
  }

  .contact-sequence i {
    display: none;
  }

  .connection-photo {
    min-height: 480px;
  }

  .software-frame {
    width: calc(100% - 10px);
    box-shadow: 10px 10px 0 var(--acid);
  }

  .software-bar {
    grid-template-columns: 1fr auto;
  }

  .software-bar b {
    display: none;
  }

  .software-body {
    min-height: 610px;
    grid-template-columns: 72px 1fr;
  }

  .software-body aside {
    padding: 14px 6px;
  }

  .software-body aside span,
  .software-body aside b {
    padding: 8px 5px;
    font-size: 6px;
  }

  .software-content {
    padding: 15px;
  }

  .software-summary {
    grid-template-columns: 1fr;
  }

  .software-summary small {
    grid-row: auto;
    grid-column: auto;
  }

  .topology-table > div {
    grid-template-columns: 1fr 0.8fr;
    gap: 8px;
  }

  .topology-table > div span:nth-child(n + 3),
  .topology-table > div b + span + span,
  .topology-table > div b + span + span + span {
    display: none;
  }

  .software-selection {
    grid-template-columns: 1fr;
  }

  .software-selection span {
    grid-row: auto;
  }

  .power-cards,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .power-cards article {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .power-cards article:last-child {
    border-bottom: 0;
  }

  .spec-grid div:nth-child(odd),
  .spec-grid div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .closing {
    min-height: 700px;
  }

  .closing > div {
    width: 100%;
    padding: 80px 20px;
  }

  .closing h2 {
    font-size: clamp(58px, 18vw, 92px);
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer p {
    order: 3;
  }

  footer > a,
  footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .menu-toggle span {
    display: none;
  }

  .hero-copy {
    min-height: 720px;
  }

  .hero-visual figcaption b {
    display: none;
  }

  .family-core figure {
    min-height: 350px;
  }

  .family-dense figure,
  .family-pro figure {
    aspect-ratio: 1;
  }

  .contact-sequence {
    gap: 0;
  }

  .contact-sequence span {
    border-right: 1px solid var(--ink);
  }

  .contact-sequence span:last-child {
    border-right: 0;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
