:root {
  --ink: #11110f;
  --ink-2: #1b1b18;
  --paper: #f4efe5;
  --paper-2: #fffaf0;
  --white: #ffffff;
  --coral: #ff5a36;
  --coral-dark: #d73a1c;
  --acid: #d7ff43;
  --blue: #165dff;
  --muted: #6c695f;
  --line: rgba(17, 17, 15, .17);
  --line-dark: rgba(255, 255, 255, .15);
  --display: "Segoe UI Variable Display", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --body: Inter, "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --max: 1540px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  width: min(100%, var(--max));
  min-height: 86px;
  margin: 0 auto;
  padding: 15px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-symbol {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--paper-2);
  background: var(--ink);
  overflow: hidden;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 60px;
  right: -2px;
  top: -5px;
  background: var(--coral);
  transform: rotate(18deg);
}

.brand-symbol i {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.brand-symbol b { display: none; }
.brand-name { display: grid; gap: 5px; }
.brand-name strong { font-family: var(--display); font-size: 18px; font-weight: 900; line-height: 1.08; letter-spacing: -.035em; }
.brand-name small { font-family: var(--mono); font-size: 11px; line-height: 1.2; letter-spacing: .14em; }

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

.site-header nav a {
  position: relative;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--coral);
  transition: right .25s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { right: 0; }

.header-action {
  justify-self: end;
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--paper-2);
  background: var(--ink);
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-action span { color: var(--acid); font-size: 18px; }
.header-action:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--coral); }

.hero {
  width: min(100%, var(--max));
  min-height: 740px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 40px clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, .92fr);
  align-items: center;
  gap: clamp(38px, 6vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  animation: hero-rise .8s cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 28px;
  height: 1px;
  background: var(--ink);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 6.8vw, 110px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.hero h1::after {
  content: "";
  display: block;
  width: 37%;
  height: clamp(8px, 1vw, 15px);
  margin-top: 24px;
  background: var(--coral);
}

.hero-intro {
  max-width: 740px;
  margin: 34px 0 0;
  color: #3c3a34;
  font-size: clamp(19px, 1.35vw, 22px);
  line-height: 1.62;
  letter-spacing: -.02em;
}

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

.button {
  min-height: 60px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 2px solid var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-dark { color: var(--paper-2); background: var(--ink); }
.button-dark span { color: var(--acid); }
.button-line { background: transparent; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--coral); }
.button:focus-visible, button:focus-visible, select:focus-visible, a:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.hero-note {
  max-width: 650px;
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.hero-note b { color: var(--ink); }

.hero-price {
  position: relative;
  min-width: 0;
  min-height: 560px;
  isolation: isolate;
  display: grid;
  align-content: center;
  animation: hero-in .95s .08s cubic-bezier(.2,.8,.2,1) both;
}

.hardware-stage {
  position: relative;
  min-height: 360px;
  isolation: isolate;
  overflow: visible;
}

.hardware-stage::before {
  content: "";
  position: absolute;
  inset: 8% 0 2%;
  z-index: -2;
  background: radial-gradient(ellipse at 52% 55%, rgba(22, 93, 255, .15), rgba(255, 90, 54, .07) 38%, transparent 70%);
}

.hardware-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6%;
  right: -2%;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17,17,15,.2) 18%, rgba(17,17,15,.2) 82%, transparent);
}

.hero-index {
  position: absolute;
  z-index: -1;
  top: -74px;
  right: -8px;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(190px, 15vw, 270px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.11em;
  -webkit-text-stroke: 1px rgba(17, 17, 15, .1);
}

.hero-slash {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: 13%;
  width: 66px;
  height: 300px;
  background: linear-gradient(180deg, var(--coral), #ff7658);
  transform: skew(-11deg) rotate(4deg);
  opacity: .94;
}

.hero-machine {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: -7%;
  width: 114%;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 25px 20px rgba(17, 17, 15, .2));
  pointer-events: none;
}

.price-ribbon {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 18px;
  width: min(230px, calc(100% - 48px));
  min-width: 0;
  height: 38px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  background: rgba(244, 239, 229, .78);
  border: 0;
  border-left: 3px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.price-ribbon i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  border: 1px solid var(--ink);
  box-shadow: 0 0 0 4px rgba(215, 255, 67, .28);
  animation: pulse 2s ease-in-out infinite;
}

.price-card {
  position: relative;
  z-index: 3;
  width: min(455px, calc(100% - 34px));
  margin: -34px 0 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(135px, .72fr) minmax(190px, 1fr);
  column-gap: 20px;
  color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--coral);
}

.price-card-top {
  grid-column: 1 / -1;
  padding-bottom: 11px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.price-amount {
  height: 112px;
  display: flex;
  align-items: flex-start;
  font-family: var(--display);
  line-height: 1;
}

.price-amount small { margin-top: 22px; font-size: 23px; font-weight: 900; }
.price-amount strong { font-size: 99px; font-weight: 950; letter-spacing: -.1em; }
.price-amount sup { margin: 18px 0 0 8px; font-size: 27px; font-weight: 900; }

.price-card > p {
  margin: 0;
  padding: 18px 0 0;
  color: #4b4942;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
}

.price-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.price-grid span {
  min-height: 58px;
  padding: 8px 10px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-grid small { font-family: var(--mono); font-size: 12px; line-height: 1.25; letter-spacing: .05em; }
.price-grid b { margin-top: 2px; font-size: 15px; }

.price-card > a {
  grid-column: 1 / -1;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-2);
  background: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.price-card > a span { color: var(--acid); }

.proof-bar {
  width: min(calc(100% - 80px), calc(var(--max) - 80px));
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--paper-2);
  background: var(--ink);
}

.proof-bar p {
  min-height: 96px;
  margin: 0;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line-dark);
  font-size: 14px;
  font-weight: 750;
}

.proof-bar p:last-child { border-right: 0; }
.proof-bar span { color: var(--coral); font-family: var(--mono); font-size: 11px; }

.plans-section,
.faq-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(100px, 10vw, 160px) 40px;
}

.section-intro {
  max-width: 960px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 18px 60px;
  align-items: end;
}

.section-intro .kicker { grid-column: 1 / -1; }
.section-intro h2 { grid-column: 1; }
.section-intro > p:last-child { grid-column: 2; margin: 0; color: var(--muted); font-size: 17px; }

.kicker {
  margin: 0 0 20px;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h3 { font-family: var(--display); }

.plan-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  position: relative;
  min-width: 0;
  min-height: 445px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: transparent;
}

.plan-card:hover { transform: translateY(-7px); box-shadow: 9px 10px 0 var(--ink); }
.plan-card.selected { color: var(--paper-2); background: var(--ink); box-shadow: 9px 10px 0 var(--coral); }
.plan-card.selected::before { background: var(--acid); }

.plan-index {
  margin-bottom: 38px;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.plan-card.selected .plan-index { color: var(--acid); }

.plan-title { margin-bottom: 28px; display: grid; gap: 4px; }
.plan-title small { color: var(--muted); font-size: 13px; font-weight: 750; line-height: 1.35; text-transform: uppercase; letter-spacing: .07em; }
.plan-card.selected .plan-title small { color: #b8b6ac; }
.plan-title strong { font-family: var(--display); font-size: 32px; line-height: 1.12; letter-spacing: -.03em; }

.plan-spec,
.plan-network {
  min-height: 50px;
  padding: 11px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  border-color: var(--line);
}

.plan-card.selected .plan-spec,
.plan-card.selected .plan-network { border-color: var(--line-dark); }
.plan-spec b, .plan-network b { font-size: 18px; }
.plan-spec small, .plan-network small { color: var(--muted); font-size: 13px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.plan-card.selected .plan-spec small, .plan-card.selected .plan-network small { color: #aaa89f; }

.plan-price {
  margin-top: auto;
  padding-top: 25px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 8px;
}

.plan-price small:first-child { grid-column: 1 / -1; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.plan-price strong { font-family: var(--display); font-size: 39px; line-height: 1; letter-spacing: -.06em; }
.plan-price small:last-child { color: var(--muted); font-size: 13px; }
.plan-card.selected .plan-price small { color: #aaa89f; }

.configure-section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) max(40px, calc((100vw - var(--max)) / 2 + 40px));
  color: var(--paper-2);
  background:
    radial-gradient(circle at 93% 7%, rgba(22, 93, 255, .15), transparent 23%),
    var(--ink);
  overflow: hidden;
}

.configure-section::before {
  content: "BUILD";
  position: absolute;
  top: 10px;
  right: -25px;
  color: rgba(255,255,255,.025);
  font-family: var(--display);
  font-size: clamp(140px, 19vw, 330px);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.1em;
  pointer-events: none;
}

.configure-head {
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 70px;
  align-items: end;
}

.configure-head > p {
  margin: 0 0 7px;
  color: #bbb8ae;
  font-size: 18px;
  line-height: 1.65;
}

.configurator-step,
.config-layout {
  position: relative;
  z-index: 1;
  scroll-margin-top: 30px;
}

.configurator-step {
  margin-top: 24px;
  padding: 30px;
  background: #181816;
  border: 1px solid var(--line-dark);
}

.step-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.step-heading > span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--coral);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.step-heading > div:not(.region-filters) { display: grid; gap: 2px; }
.step-heading strong { font-size: 19px; }
.step-heading small { color: #aaa89f; font-size: 14px; }
.step-heading small b { color: var(--paper-2); }

.region-filters {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.region-filters button {
  min-height: 38px;
  padding: 0 13px;
  color: #bbb8ae;
  background: transparent;
  border: 1px solid var(--line-dark);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.region-filters button.active { color: var(--ink); background: var(--acid); border-color: var(--acid); }

.location-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.location-card {
  min-width: 0;
  padding: 0;
  background: #20201e;
  border: 1px solid var(--line-dark);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.location-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.36); }
.location-card.selected { color: var(--ink); background: var(--paper-2); border-color: var(--paper-2); }

.location-card > button {
  width: 100%;
  min-height: 82px;
  padding: 14px;
  display: grid;
  grid-template-columns: 40px 1fr auto 24px;
  align-items: center;
  gap: 10px;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.location-code {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  color: var(--coral);
}

.location-card.selected .location-code { color: var(--coral-dark); }
.location-copy { min-width: 0; display: grid; line-height: 1.3; }
.location-copy strong { overflow: hidden; text-overflow: ellipsis; font-size: 16px; }
.location-copy small { color: #9d9a92; font-size: 14px; }
.location-card.selected .location-copy small { color: var(--muted); }
.location-region { color: #9d9a92; font-size: 12px; font-weight: 750; text-transform: uppercase; }
.location-card.selected .location-region { color: var(--muted); }
.location-check { color: var(--acid); font-size: 17px; }
.location-card.selected .location-check { color: var(--coral-dark); }

.location-card > p,
.location-card > footer { display: none; }

.config-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 440px);
  gap: 24px;
  align-items: start;
}

.options-panel {
  padding: 30px;
  background: #181816;
  border: 1px solid var(--line-dark);
}

.config-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.config-field:last-child:nth-child(odd) { grid-column: 1 / -1; }

.config-field {
  min-width: 0;
  min-height: 126px;
  padding: 17px;
  display: grid;
  gap: 13px;
  background: #20201e;
  border: 1px solid var(--line-dark);
}

.config-field-heading { min-width: 0; display: grid; gap: 2px; }
.config-field-heading strong { font-size: 18px; line-height: 1.25; }
.config-field-heading small { color: #aaa89f; font-size: 15px; line-height: 1.45; }

.config-select-wrap {
  position: relative;
  min-width: 0;
  height: 48px;
}

.config-select-wrap select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 13px;
  color: var(--paper-2);
  background: #121210;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  font-size: 16px;
  appearance: none;
  text-overflow: ellipsis;
}

.config-select-wrap > span {
  position: absolute;
  right: 15px;
  top: 50%;
  color: var(--acid);
  transform: translateY(-50%);
  pointer-events: none;
}

.config-message {
  min-height: 290px;
  padding: 40px;
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: #20201e;
  border: 1px solid var(--line-dark);
}

.config-message i {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--acid);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.config-message strong { font-size: 20px; }
.config-message span { color: #aaa89f; font-size: 14px; }
.config-message button { margin-top: 18px; padding: 10px 16px; color: var(--ink); background: var(--acid); border: 0; font-weight: 800; cursor: pointer; }

.order-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper-2);
  border-top: 9px solid var(--coral);
  box-shadow: 13px 14px 0 var(--coral);
}

.summary-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
}

.summary-top i { flex: 1; height: 1px; background: var(--line); }
.summary-top b { color: var(--coral-dark); font-size: 12px; }

.summary-plan {
  margin: 25px 0;
  padding-bottom: 22px;
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
}

.summary-plan span { font-family: var(--display); font-size: 36px; font-weight: 900; line-height: 1.12; letter-spacing: -.03em; }
.summary-plan small { color: var(--muted); font-size: 14px; }

.summary-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.summary-specs span {
  min-height: 71px;
  padding: 12px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-specs small { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.summary-specs b { margin-top: 2px; overflow: hidden; text-overflow: ellipsis; font-size: 14px; line-height: 1.35; white-space: nowrap; }

.quantity-row {
  min-height: 62px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.quantity-row > div { display: flex; align-items: center; border: 1px solid var(--line); }
.quantity-row button, .quantity-row output { width: 38px; height: 36px; display: grid; place-items: center; color: var(--ink); background: transparent; border: 0; }
.quantity-row button { cursor: pointer; font-size: 18px; }
.quantity-row button:hover { background: var(--acid); }
.quantity-row output { border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-weight: 850; }

.price-lines { margin: 18px 0 0; }
.price-lines > div { min-height: 34px; display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
.price-lines dd { margin: 0; color: var(--ink); font-weight: 750; }

.price-total {
  margin-top: 16px;
  padding: 18px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
}

.price-total span { font-size: 12px; font-weight: 750; text-transform: uppercase; }
.price-total strong { font-family: var(--display); font-size: 42px; line-height: 1; letter-spacing: -.035em; }

.order-button {
  width: 100%;
  color: var(--ink);
  background: var(--acid);
  border-color: var(--ink);
}

.order-button:hover { box-shadow: 7px 7px 0 var(--ink); }
.order-button.disabled { opacity: .45; cursor: wait; pointer-events: none; }
.summary-note { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.articles-section {
  padding: clamp(100px, 10vw, 150px) max(40px, calc((100vw - var(--max)) / 2 + 40px));
  color: var(--paper-2);
  background:
    radial-gradient(circle at 92% 2%, rgba(255, 90, 54, .14), transparent 28%),
    var(--ink);
}

.articles-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 70px;
  align-items: end;
}

.articles-intro {
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}

.articles-intro p {
  margin: 0 0 14px;
  color: #aaa89f;
  font-size: 17px;
}

.articles-intro a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--acid);
  font-size: 14px;
  font-weight: 850;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.article-card {
  min-width: 0;
  color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--paper-2);
  transition: transform .22s ease, box-shadow .22s ease;
}

.article-card:hover {
  transform: translateY(-7px);
  box-shadow: 10px 11px 0 var(--coral);
}

.article-media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  background: #171715;
  overflow: hidden;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.article-card:hover .article-media img { transform: scale(1.035); }

.article-media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-body {
  min-height: 315px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.article-body time {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-body h3 {
  margin: 28px 0 13px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.article-link {
  width: max-content;
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  border-bottom: 2px solid var(--coral);
  font-size: 15px;
  font-weight: 850;
}

.faq-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 9vw, 150px);
}

.faq-heading { position: sticky; top: 115px; align-self: start; }
.faq-heading > p:last-child { color: var(--muted); font-size: 16px; }

.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-width: 0;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ""; }
.faq-list summary span { color: var(--coral-dark); font-family: var(--body); font-size: 27px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -5px 0 30px; color: #4a4841; font-size: 17px; line-height: 1.72; }

.looking-glass-section {
  padding: clamp(72px, 7vw, 105px) max(40px, calc((100vw - var(--max)) / 2 + 40px));
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  color: var(--paper-2);
  background: #171715;
  border-top: 1px solid var(--line-dark);
}

.looking-glass-copy h2 {
  font-size: clamp(42px, 4.4vw, 68px);
}

.looking-glass-copy > p:last-child {
  max-width: 560px;
  margin: 24px 0 0;
  color: #aaa89f;
  font-size: 16px;
  line-height: 1.65;
}

.looking-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.looking-glass-grid a {
  min-width: 0;
  min-height: 91px;
  padding: 15px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  column-gap: 10px;
  color: var(--paper-2);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color .18s ease, background .18s ease;
}

.looking-glass-grid a:hover,
.looking-glass-grid a:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.looking-glass-grid span {
  grid-row: span 2;
  align-self: center;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
}

.looking-glass-grid a:hover span,
.looking-glass-grid a:focus-visible span { color: var(--coral-dark); }
.looking-glass-grid strong { overflow: hidden; text-overflow: ellipsis; font-size: 16px; }
.looking-glass-grid small { color: #8f8d85; font-size: 13px; }
.looking-glass-grid a:hover small,
.looking-glass-grid a:focus-visible small { color: #4a4841; }

.final-cta {
  padding: clamp(90px, 10vw, 145px) max(40px, calc((100vw - var(--max)) / 2 + 40px));
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px 80px;
  align-items: end;
  color: var(--ink);
  background: var(--acid);
}

.final-cta .kicker { grid-column: 1 / -1; color: var(--ink); }
.final-cta h2 { max-width: 920px; }
.final-cta > p:not(.kicker) { margin: 0; font-size: 18px; }
.final-cta .button { width: max-content; color: var(--paper-2); background: var(--ink); }
.final-cta .button:hover { box-shadow: 7px 7px 0 var(--coral); }

.site-footer {
  padding: 75px max(40px, calc((100vw - var(--max)) / 2 + 40px)) 30px;
  display: grid;
  grid-template-columns: 1fr 1fr .8fr;
  gap: 70px;
  color: var(--paper-2);
  background: #090909;
}

.brand-footer .brand-symbol { color: var(--ink); background: var(--paper-2); }
.footer-brand > p { max-width: 330px; color: #aaa89f; font-size: 15px; }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 10px; color: var(--acid); font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { width: max-content; color: #aaa89f; font-size: 15px; }
.footer-links a:hover { color: var(--paper-2); }

.powered {
  align-self: start;
  justify-self: end;
  display: grid;
}

.powered a { width: 210px; padding: 18px 20px; background: #151513; border: 1px solid var(--line-dark); }
.powered img { width: 100%; height: 38px; object-fit: contain; }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #aaa89f;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  line-height: 1.5;
}

.reveal-section {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}

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

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1400px) {
  .location-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1260px) {
  .site-header nav { gap: 18px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(440px, .8fr); gap: 30px; }
  .hero h1 { font-size: clamp(62px, 7.7vw, 95px); }
  .location-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-price { width: min(100%, 720px); min-height: 0; justify-self: end; }
  .hero-machine { top: -14px; left: 2%; width: 98%; }
  .price-card { margin-top: -70px; }
  .plan-directory { grid-template-columns: 1fr 1fr; }
  .plan-card { min-height: 390px; }
  .location-directory { grid-template-columns: 1fr 1fr; }
  .config-layout { grid-template-columns: 1fr; }
  .order-summary { position: relative; top: auto; width: min(100%, 560px); justify-self: end; }
  .articles-heading { grid-template-columns: 1fr; gap: 30px; }
  .articles-intro { padding-left: 0; border-left: 0; }
  .faq-heading { position: relative; top: auto; }
  .faq-section { grid-template-columns: 1fr; }
  .looking-glass-section { grid-template-columns: 1fr; gap: 38px; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta .kicker { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .powered { justify-self: start; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-header { min-height: 76px; padding: 12px 20px; }
  .brand-symbol { width: 44px; height: 44px; }
  .brand-name strong { font-size: 16px; }
  .header-action { min-height: 44px; padding: 0 14px; gap: 12px; font-size: 14px; }
  .hero { padding: 58px 20px 76px; }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); line-height: 1.06; letter-spacing: -.04em; }
  .hero-intro { font-size: 18px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-price { width: 100%; min-height: 0; margin-right: 0; }
  .hardware-stage { min-height: 350px; }
  .hero-index { top: -28px; right: 0; font-size: clamp(150px, 45vw, 210px); }
  .hero-slash { top: 24px; right: 14%; width: 46px; height: 230px; }
  .hero-machine { top: -8px; left: 0; width: 100%; }
  .price-card { width: calc(100% - 24px); margin-top: -12px; }
  .price-ribbon { left: 0; top: 10px; }
  .proof-bar { width: 100%; grid-template-columns: 1fr 1fr; }
  .proof-bar p { min-height: 78px; padding: 0 18px; border-bottom: 1px solid var(--line-dark); font-size: 14px; }
  .plans-section, .faq-section { padding: 90px 20px; }
  .section-intro { grid-template-columns: 1fr; }
  .section-intro h2, .section-intro > p:last-child, .section-intro .kicker { grid-column: 1; }
  h2 { font-size: clamp(40px, 11.5vw, 58px); line-height: 1.08; letter-spacing: -.035em; }
  .plan-directory { grid-template-columns: 1fr; }
  .plan-card { min-height: 390px; }
  .configure-section { padding: 90px 20px; }
  .configure-head { grid-template-columns: 1fr; gap: 28px; }
  .configurator-step, .options-panel { padding: 18px; }
  .step-heading { align-items: flex-start; }
  .location-step .step-heading { flex-wrap: wrap; }
  .options-panel .step-heading { flex-wrap: nowrap; }
  .region-filters { width: 100%; margin-left: 0; justify-content: flex-start; }
  .location-directory { grid-template-columns: 1fr; }
  .config-options { grid-template-columns: 1fr; }
  .order-summary { padding: 22px; box-shadow: 8px 9px 0 var(--coral); }
  .articles-section { padding: 90px 20px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-body { min-height: 290px; }
  .looking-glass-section { padding: 72px 20px; }
  .looking-glass-grid { grid-template-columns: 1fr 1fr; }
  .final-cta { padding: 90px 20px; }
  .final-cta .button { width: 100%; }
  .site-footer { padding: 70px 20px 25px; grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; }
}

@media (max-width: 480px) {
  .price-card { grid-template-columns: 1fr; }
  .price-card > p { padding: 0 0 16px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .brand-name small { letter-spacing: .11em; }
  .header-action span { display: none; }
  .hardware-stage { min-height: 270px; }
  .hero-index { top: -10px; font-size: 150px; }
  .hero-slash { top: 27px; right: 13%; width: 38px; height: 195px; }
  .hero-machine { top: 20px; left: -5%; width: 110%; }
  .price-card { width: calc(100% - 12px); grid-template-columns: 1fr; margin-top: 0; }
  .price-card > p { padding: 0 0 16px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-amount { height: 106px; }
  .price-amount strong { font-size: 94px; }
  .summary-specs { grid-template-columns: 1fr; }
  .summary-specs b { white-space: normal; overflow-wrap: anywhere; }
  .looking-glass-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .hardware-stage { min-height: 250px; }
  .hero-machine { top: 32px; left: -7%; width: 114%; }
}

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