/* ============================================================
   Mainframe Licensing Experts — v2 "World-class firm"
   Editorial white theme · oversized light type · hairlines
   IBM Plex Sans + IBM Plex Serif accents · IBM-blue
   ============================================================ */

:root {
  --accent: #0F62FE;
  --accent-dark: #0043CE;
  --accent-soft: #EDF5FF;
  --ink: #0A0F1A;
  --ink-2: #424B5C;
  --ink-3: #79839B;
  --hairline: #E8EBF1;
  --bg: #FFFFFF;
  --bg-warm: #F8F9FB;
  --panel: #070B14;
  --panel-2: #0D1424;
  --good: #2FB344;
  --font-sans: "IBM Plex Sans", -apple-system, "Segoe UI", sans-serif;
  --font-serif: "IBM Plex Serif", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --speed: 1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

/* ---------- Editorial primitives ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.kicker .no { color: var(--accent); }
.serif-i { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.rule { border: 0; border-top: 1px solid var(--hairline); }

h1, h2 { font-weight: 300; letter-spacing: -0.035em; text-wrap: balance; }
h3 { font-weight: 500; letter-spacing: -0.02em; }

.display-2 {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.04;
}

/* line-mask reveal */
.lm { display: block; overflow: hidden; }
.lm > span {
  display: block;
  transform: translateY(110%);
  transition: transform calc(1.1s / var(--speed)) var(--ease);
  transition-delay: var(--ld, 0s);
}
.in .lm > span, .lm.in > span { transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity calc(0.9s / var(--speed)) var(--ease), transform calc(0.9s / var(--speed)) var(--ease);
  transition-delay: var(--rd, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s, transform 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(1.6) blur(20px);
  -webkit-backdrop-filter: saturate(1.6) blur(20px);
  border-bottom-color: var(--hairline);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(15,98,254,0.6) 50%, transparent 68%);
  animation: brandSweep calc(5s / var(--speed)) ease-in-out infinite;
}
@keyframes brandSweep { 0%, 62% { transform: translateX(-110%); } 100% { transform: translateX(110%); } }
.brand-mark svg { position: relative; z-index: 1; }
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
.brand-name small {
  display: block; font-family: var(--font-mono); font-weight: 400;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a:not(.cta) {
  text-decoration: none; color: var(--ink-2);
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  position: relative; transition: color 0.25s;
}
.nav-links a:not(.cta)::after {
  content: ""; position: absolute; left: 0; bottom: -7px;
  width: 100%; height: 1.5px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.cta):hover { color: var(--ink); }
.nav-links a:not(.cta):hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Buttons ---------- */
.cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 14.5px; font-weight: 600; letter-spacing: 0;
  padding: 16px 30px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: none;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, color 0.35s;
  will-change: transform;
}
.cta .label { position: relative; z-index: 2; }
.cta .arr { position: relative; z-index: 2; transition: transform 0.35s var(--ease); }
.cta:hover .arr { transform: translateX(4px); }
.cta-dark { background: var(--ink); color: #fff; }
.cta-dark::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  border-radius: inherit;
}
.cta-dark:hover::before { transform: translateY(0); }
.cta-dark:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(15,98,254,0.55); }
.cta-line {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.cta-line:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.cta-sm { padding: 12px 22px; font-size: 13.5px; }
.cta-light { background: #fff; color: var(--ink); }
.cta-light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 200px 0 0; }
.hero-kicker { margin-bottom: 34px; }
.hero h1 {
  font-size: clamp(52px, 7.2vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 18ch;
}
.hero h1 .serif-i { color: var(--accent); }
.hero-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px; margin-top: 56px; flex-wrap: wrap;
}
.hero-sub {
  font-size: 18.5px; line-height: 1.65; color: var(--ink-2);
  max-width: 460px; text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero entrance */
.h-stage { opacity: 0; transform: translateY(30px); animation: hRise calc(1.1s / var(--speed)) var(--ease) forwards; }
.h-stage.d1 { animation-delay: 0.1s; }
.h-stage.d2 { animation-delay: 0.25s; }
.h-stage.d3 { animation-delay: 0.45s; }
.h-stage.d4 { animation-delay: 0.6s; }
@keyframes hRise { to { opacity: 1; transform: translateY(0); } }

/* ---------- Cinematic console panel ---------- */
.console-wrap { position: relative; margin-top: 90px; }
.console {
  position: relative;
  background:
    radial-gradient(1100px 480px at 75% -20%, rgba(15,98,254,0.28), transparent 60%),
    radial-gradient(700px 400px at 12% 110%, rgba(15,98,254,0.12), transparent 60%),
    linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 80px 140px -60px rgba(7, 11, 20, 0.55);
  will-change: transform;
}
.console::after {
  /* fine scanline texture */
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.console canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.console-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 36px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.38); text-transform: uppercase;
  z-index: 5;
}
.console-top .live { display: inline-flex; align-items: center; gap: 9px; color: #5AE08A; }
.console-top .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #5AE08A;
  animation: pulseDot calc(1.8s / var(--speed)) ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(90,224,138,0.45); }
  55% { box-shadow: 0 0 0 8px rgba(90,224,138,0); }
}

/* rack silhouette inside console */
.rackline {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 22px; align-items: flex-end;
  z-index: 2;
}
.cab {
  width: 150px;
  background: linear-gradient(180deg, #161F33 0%, #0C1322 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 18px 16px 0;
  display: grid; gap: 9px;
  align-content: start;
}
.cab.h1 { height: 320px; }
.cab.h2 { height: 390px; }
.cab.h3 { height: 280px; }
.slot {
  height: 30px; border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px;
  position: relative; overflow: hidden;
}
.slot::before {
  content: "";
  flex: 1; height: 12px; margin-right: 10px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.09) 0 2px, transparent 2px 7px);
  border-radius: 2px;
}
.slot::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 46px;
  background: linear-gradient(90deg, transparent, rgba(15,98,254,0.3), transparent);
  animation: slotSweep calc(6s / var(--speed)) linear infinite;
  animation-delay: var(--d, 0s);
}
@keyframes slotSweep { 0% { left: -60px; } 60% { left: 120%; } 100% { left: 120%; } }
.dot { width: 5.5px; height: 5.5px; border-radius: 50%; background: #28344E; flex-shrink: 0; }
.dot.b { background: var(--accent); animation: dotBlink calc(2.4s / var(--speed)) ease-in-out infinite; animation-delay: var(--d, 0s); }
.dot.g { background: var(--good); animation: dotBlink calc(3.2s / var(--speed)) ease-in-out infinite; animation-delay: var(--d, 0s); }
.dot.a { background: #F1C21B; animation: dotBlink calc(1.5s / var(--speed)) ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* terminal readout */
.readout {
  position: absolute; left: 36px; bottom: 34px; z-index: 6;
  font-family: var(--font-mono); font-size: 12.5px; line-height: 2.05;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
}
.readout .ln { display: flex; gap: 12px; white-space: nowrap; }
.readout .ok { color: #5AE08A; }
.readout .hl { color: #78A9FF; }
.readout .caret {
  display: inline-block; width: 8px; height: 15px;
  background: #78A9FF; vertical-align: -2px;
  animation: caretBlink calc(1.1s / var(--speed)) steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* glass stat chips on console */
.gchip {
  position: absolute; z-index: 7;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 18px 24px;
  color: #fff;
  animation: gFloat calc(7s / var(--speed)) ease-in-out infinite;
}
.gchip .v { font-size: 30px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.gchip .v em { font-style: normal; color: #78A9FF; }
.gchip .k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.gchip-1 { top: 88px; right: 56px; animation-delay: 0.6s; }
.gchip-2 { top: 230px; right: 150px; }
@keyframes gFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

/* ---------- Vendor marquee ---------- */
.marquee-band { padding: 64px 0 72px; }
.marquee-band .mlabel {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-3);
  text-align: center; margin-bottom: 38px;
}
.marquee {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track {
  display: flex; align-items: baseline; gap: 96px;
  padding-right: 96px; flex-shrink: 0;
  animation: marquee calc(34s / var(--speed)) linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.wm {
  font-size: 30px; font-weight: 300; letter-spacing: -0.02em;
  color: #C3CAD7; white-space: nowrap; cursor: default;
  transition: color 0.35s;
}
.wm:hover { color: var(--ink); }
.wm.serifed { font-family: var(--font-serif); font-style: italic; }
.wm.monoed { font-family: var(--font-mono); font-size: 26px; letter-spacing: 0.02em; }

/* ---------- Manifesto / positioning ---------- */
.manifesto { padding: 150px 0; }
.manifesto-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 64px;
  align-items: start;
}
.manifesto .statement {
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 300; line-height: 1.22; letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 21ch;
}
.manifesto .statement .dim { color: #B9C0CF; transition: color 0.6s var(--ease); }
.manifesto .statement .serif-i { color: var(--accent); }

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  margin-top: 110px;
}
.stat {
  padding: 44px 36px 8px;
  border-left: 1px solid var(--hairline);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat .v {
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 275; letter-spacing: -0.045em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .v sup { font-size: 0.45em; font-weight: 400; color: var(--accent); }
.stat .k { font-size: 14.5px; color: var(--ink-3); margin-top: 14px; line-height: 1.5; }

/* ---------- Section scaffolding ---------- */
.section { padding: 130px 0; }
.section-bar {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 28px; border-bottom: 1px solid var(--hairline);
  margin-bottom: 0;
}
.section-bar .kicker { color: var(--ink); }
.section-bar .hint { font-size: 13.5px; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------- Vendor index rows ---------- */
.vrow {
  display: grid;
  grid-template-columns: 64px 300px 1fr 40px;
  gap: 36px; align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none; color: inherit;
  position: relative;
  transition: padding 0.45s var(--ease);
  cursor: default;
}
.vrow::before {
  content: ""; position: absolute; inset: 0 -28px;
  background: var(--bg-warm);
  border-radius: 18px;
  opacity: 0; transform: scaleY(0.85);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: -1;
}
.vrow:hover::before { opacity: 1; transform: scaleY(1); }
.vrow:hover { padding-left: 16px; }
.vrow .idx { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.vrow .name { font-size: clamp(24px, 2.4vw, 34px); font-weight: 400; letter-spacing: -0.025em; }
.vrow .meta { font-size: 15px; line-height: 1.6; color: var(--ink-2); text-wrap: pretty; max-width: 560px; }
.vrow .meta strong { display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.vrow .go {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.45s var(--ease);
}
.vrow:hover .go { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(-45deg); }

/* ---------- Services editorial ---------- */
.services { background: var(--bg-warm); }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--hairline); }
.svc {
  padding: 56px 48px 56px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.svc:nth-child(odd) { border-right: 1px solid var(--hairline); }
.svc:nth-child(even) { padding-left: 48px; padding-right: 0; }
.svc .no {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  display: block; margin-bottom: 30px;
}
.svc h3 { font-size: 26px; margin-bottom: 16px; font-weight: 500; }
.svc p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); text-wrap: pretty; max-width: 46ch; }
.svc .tagline {
  margin-top: 24px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: var(--ink-3);
}

/* ---------- Process (dark) ---------- */
.process { background: var(--panel); color: #fff; border-radius: 36px; margin: 0 24px; }
.process .wrap { padding-top: 130px; padding-bottom: 130px; }
.process .kicker { color: rgba(255,255,255,0.45); }
.process .kicker .no { color: #78A9FF; }
.process .display-2 { max-width: 16ch; }
.process .display-2 .serif-i { color: #78A9FF; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 90px; border-top: 1px solid rgba(255,255,255,0.12); }
.step { padding: 48px 40px 0 0; position: relative; }
.step + .step { padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.12); }
.step .ph {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: #78A9FF; text-transform: uppercase;
  display: block; margin-bottom: 26px;
}
.step h3 { font-size: 24px; font-weight: 400; margin-bottom: 14px; }
.step p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55); text-wrap: pretty; }
.step .big {
  position: absolute; top: 34px; right: 12px;
  font-size: 88px; font-weight: 200; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none;
}

/* ---------- Contact ---------- */
.contact { padding: 150px 0 130px; }
.contact-grid { display: grid; grid-template-columns: 1fr 520px; gap: 100px; align-items: start; }
.contact .display-2 { margin: 26px 0 22px; }
.contact .lead { font-size: 17.5px; line-height: 1.7; color: var(--ink-2); max-width: 44ch; text-wrap: pretty; }
.assure { margin-top: 48px; display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.assure-item {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--hairline);
}
.assure-item strong { font-size: 15px; font-weight: 500; }
.assure-item span { font-size: 13.5px; color: var(--ink-3); text-align: right; }

.form-card { padding-top: 8px; }
.form-card form { display: grid; gap: 0; }
.field { position: relative; border-bottom: 1px solid var(--hairline); padding: 22px 0 16px; }
.field label {
  display: block;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.field:focus-within label { color: var(--accent); }
.field input, .field textarea {
  width: 100%; border: none; outline: none; background: transparent;
  font-family: var(--font-sans); font-size: 18px; font-weight: 400;
  color: var(--ink);
  padding: 2px 0 6px;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #C2C9D6; }
.field .fline {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.field:focus-within .fline { transform: scaleX(1); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--ink-3); max-width: 220px; line-height: 1.5; }
.form-status { display: none; margin-top: 22px; padding: 15px 18px; border-radius: 12px; font-size: 14.5px; }
.form-status.ok { display: block; background: #E6F7EA; color: #156332; }
.form-status.err { display: block; background: #FDF0F0; color: #A2191F; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); padding: 56px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer .fine { font-size: 13px; color: var(--ink-3); max-width: 520px; line-height: 1.6; }
.footer .domain { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-2); letter-spacing: 0.04em; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .h-stage { opacity: 1; transform: none; animation: none; }
  .lm > span { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .wrap { padding: 0 28px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .vrow { grid-template-columns: 40px 1fr 40px; }
  .vrow .meta { grid-column: 2; }
  .vrow .go { grid-row: 1; grid-column: 3; }
  .svc-list { grid-template-columns: 1fr; }
  .svc:nth-child(odd) { border-right: none; }
  .svc:nth-child(even) { padding-left: 0; }
  .svc { padding-right: 0; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 44px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; padding-top: 30px; border-top: 1px solid var(--hairline); }
  .stat:first-child { border-top: none; }
  .nav-links a:not(.cta) { display: none; }
  .gchip-2 { display: none; }
  .readout { display: none; }
  .console { min-height: 420px; }
  .cab.h2 { height: 300px; } .cab.h1 { height: 250px; } .cab.h3 { height: 210px; }
}
