:root {
  --black: #090a0c;
  --black-2: #0e1013;
  --panel: #131519;
  --panel-2: #181a1f;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 255, 255, .17);
  --white: #f3f4f6;
  --muted: #a6a8ab;
  --muted-2: #777b82;
  --red: #ec1d24;
  --red-dark: #c23233;
  --gray: #58585b;
  --header-h: 84px;
  --max: 1220px;
  --ease: cubic-bezier(.2, .78, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-shell { position: relative; overflow: clip; }
.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}
.ambient-signal {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(236,29,36,.07);
  border-radius: 50%;
  opacity: .55;
  will-change: transform;
}
.ambient-signal::before,
.ambient-signal::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255,255,255,.035);
  border-radius: inherit;
}
.ambient-signal::after { inset: 27%; border-style: solid; border-color: rgba(236,29,36,.045); }
.ambient-signal-a { width: 720px; height: 720px; top: 8vh; right: -410px; animation: ambient-spin 44s linear infinite; }
.ambient-signal-b { width: 480px; height: 480px; bottom: 8vh; left: -310px; animation: ambient-spin-rev 36s linear infinite; }
@keyframes ambient-spin { to { transform: rotate(360deg); } }
@keyframes ambient-spin-rev { to { transform: rotate(-360deg); } }

.scroll-progress { position: fixed; z-index: 100; inset: 0 0 auto; height: 2px; background: rgba(255,255,255,.04); }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--red); box-shadow: 0 0 16px rgba(236,29,36,.65); }

.site-header {
  position: fixed;
  z-index: 90;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--max));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled { background: rgba(9,10,12,.78); border-color: var(--line); backdrop-filter: blur(18px); box-shadow: 0 14px 55px rgba(0,0,0,.3); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 34px; height: 34px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 14px; letter-spacing: .01em; }
.brand-copy small { margin-top: 5px; font: 650 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; color: #858990; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav a { padding: 12px 13px; border-radius: 12px; color: #c9cbd0; font-size: 12px; font-weight: 650; transition: color .2s ease, background .2s ease; }
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.site-nav .nav-cta { margin-left: 5px; background: #fff; color: #111; }
.site-nav .nav-cta:hover { background: var(--red); color: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 12px; background: transparent; color: #fff; position: relative; }
.menu-toggle span:not(.sr-only) { position: absolute; left: 11px; right: 11px; height: 1px; background: currentColor; transition: transform .25s ease, top .25s ease; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

main, .site-footer { position: relative; z-index: 1; }
.hero {
  min-height: 100svh;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .88fr);
  align-items: center;
  gap: 36px;
  position: relative;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; z-index: -2; width: 760px; height: 760px; right: -230px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(236,29,36,.14), rgba(236,29,36,.025) 42%, transparent 68%); filter: blur(8px); }
.hero::after { content: ""; position: absolute; z-index: -2; left: -30vw; bottom: -320px; width: 70vw; height: 480px; transform: rotate(-8deg); background: linear-gradient(90deg, transparent, rgba(88,88,91,.12), transparent); filter: blur(36px); }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 9px; color: #a8abb1; font: 720 11px/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(236,29,36,.09), 0 0 18px rgba(236,29,36,.7); animation: status-pulse 2.4s ease-in-out infinite; }
@keyframes status-pulse { 50% { box-shadow: 0 0 0 10px rgba(236,29,36,0), 0 0 24px rgba(236,29,36,.85); } }
.hero h1 { max-width: 760px; margin: 24px 0 26px; font-size: clamp(56px, 7vw, 104px); line-height: .91; letter-spacing: -.065em; font-weight: 760; }
.hero h1 span { display: block; color: #7d8087; }
.hero-lede { max-width: 700px; margin: 0; color: #b1b4ba; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.64; letter-spacing: -.012em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; cursor: pointer; font-size: 13px; font-weight: 700; transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 12px 34px rgba(236,29,36,.14); }
.button-primary:hover { background: #ff3138; }
.button-ghost { border-color: var(--line-strong); color: #d5d7da; background: rgba(255,255,255,.02); }
.button-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 48px; color: #858990; font: 680 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .095em; }
.hero-meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta span::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--red-dark); }

.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; overflow: visible; }
.visual-scan { position: absolute; inset: 8% 5%; z-index: 0; border-radius: 50%; overflow: hidden; pointer-events: none; opacity: .45; mask-image: radial-gradient(circle, #000 20%, transparent 70%); }
.visual-scan::before { content: ""; position: absolute; left: -10%; right: -10%; height: 1px; top: -4%; background: linear-gradient(90deg, transparent, rgba(236,29,36,.9), transparent); box-shadow: 0 0 28px rgba(236,29,36,.55); animation: visual-scan 6.8s ease-in-out infinite; }
@keyframes visual-scan { 0%, 8% { transform: translateY(0); opacity: 0; } 18% { opacity: 1; } 82% { opacity: .7; } 100% { transform: translateY(520px); opacity: 0; } }
.orbit-stage { width: min(560px, 42vw); aspect-ratio: 1; position: relative; display: grid; place-items: center; will-change: transform; }
.orbit-glow { position: absolute; inset: 18%; border-radius: 50%; background: radial-gradient(circle, rgba(236,29,36,.10), rgba(236,29,36,.018) 52%, transparent 70%); filter: blur(2px); animation: glow-breathe 5s ease-in-out infinite; }
@keyframes glow-breathe { 50% { transform: scale(1.12); opacity: .68; } }
.orbit-stage svg { width: 100%; height: 100%; overflow: visible; }
.orbit { fill: none; stroke: rgba(255,255,255,.09); stroke-width: 1; transform-origin: 50% 50%; }
.orbit-1 { stroke-dasharray: 4 12; animation: orbit-spin 24s linear infinite; }
.orbit-2 { stroke-dasharray: 1 8; animation: orbit-spin-rev 18s linear infinite; }
.orbit-3 { stroke: rgba(236,29,36,.22); stroke-dasharray: 3 10; animation: orbit-spin 14s linear infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-rev { to { transform: rotate(-360deg); } }
.route-path { fill: none; stroke: rgba(255,255,255,.035); stroke-width: 1; }
.route-line { fill: none; stroke: url(#routeGradient); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 15 50 90 25; animation: route-flow 9s linear infinite; filter: drop-shadow(0 0 5px rgba(236,29,36,.25)); }
@keyframes route-flow { to { stroke-dashoffset: -360; } }
.node { fill: var(--black); stroke: var(--red); stroke-width: 3; filter: drop-shadow(0 0 7px rgba(236,29,36,.55)); animation: node-pulse 2.8s ease-in-out infinite; }
.node-b, .node-d { animation-delay: .8s; }
.node-c { animation-delay: 1.6s; }
@keyframes node-pulse { 50% { stroke-width: 7; opacity: .68; } }
.orbit-core { position: absolute; width: 154px; height: 154px; border-radius: 32px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 80px rgba(0,0,0,.45), inset 0 0 0 1px rgba(0,0,0,.35); backdrop-filter: blur(12px); animation: core-float 5.5s ease-in-out infinite; }
@keyframes core-float { 50% { transform: translateY(-8px); } }
.orbit-core::after { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(255,255,255,.08); border-radius: 24px; }
.orbit-logo { width: 56px; height: 56px; object-fit: contain; transform: translateY(-12px); }
.core-copy { position: absolute; bottom: 26px; text-align: center; display: flex; flex-direction: column; }
.core-copy span { font: 800 14px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .15em; }
.core-copy small { margin-top: 6px; color: #747880; font: 650 7px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .16em; }
.visual-chip { position: absolute; z-index: 3; min-width: 116px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(14,16,19,.72); backdrop-filter: blur(14px); color: #c9cbd0; font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; box-shadow: 0 16px 38px rgba(0,0,0,.28); will-change: transform; }
.visual-chip span { color: var(--red); margin-right: 8px; }
.visual-chip-a { top: 19%; left: 2%; }
.visual-chip-b { top: 12%; right: 5%; }
.visual-chip-c { bottom: 18%; right: -2%; }
.system-console { position: absolute; z-index: 4; left: 2%; bottom: 10%; width: 246px; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,9,11,.80); backdrop-filter: blur(14px); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.38); will-change: transform; }
.console-head { height: 33px; display: flex; align-items: center; gap: 5px; padding: 0 10px; border-bottom: 1px solid var(--line); color: #6f737a; }
.console-head span { width: 6px; height: 6px; border-radius: 50%; background: #3c3f45; }
.console-head span:first-child { background: var(--red-dark); }
.console-head b { margin-left: auto; font: 600 7px/1 ui-monospace, monospace; letter-spacing: .1em; }
.system-console code { display: block; padding: 7px 12px; color: #858990; font: 600 9px/1.25 ui-monospace, SFMono-Regular, Menlo, monospace; }
.system-console code:first-of-type { padding-top: 12px; }
.system-console i { color: var(--red); font-style: normal; margin-right: 7px; }
.system-console em { color: #ddd; font-style: normal; }
.console-cursor { width: 7px; height: 10px; margin: 1px 0 12px 20px; background: var(--red); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.scroll-cue { position: absolute; bottom: 24px; left: max(24px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; gap: 9px; color: #5d6066; font: 700 8px/1 ui-monospace, monospace; letter-spacing: .16em; }
.scroll-cue span { display: block; width: 28px; height: 1px; background: #4b4e54; position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--red); transform: translateX(-100%); animation: scroll-cue 2.4s ease-in-out infinite; }
@keyframes scroll-cue { 60%, 100% { transform: translateX(100%); } }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 128px 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section h2 { margin: 18px 0 0; font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.05em; }
.section h2 span { color: #6f737a; }
.section-company { padding-top: 150px; }
.company-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: start; margin-top: 42px; }
.company-statement h2 { margin: 0; }
.company-copy { max-width: 600px; padding-top: 3px; }
.company-copy p { margin: 0 0 20px; color: #b6bac1; font-size: 18px; line-height: 1.68; }
.company-copy p:last-child { color: #b6bac1; }

.domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 78px; }
.domain-card { min-height: 224px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.028), rgba(255,255,255,.008)); position: relative; overflow: hidden; }
.domain-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -68px; top: -68px; border-radius: 50%; border: 1px solid rgba(236,29,36,.14); box-shadow: 0 0 0 22px rgba(236,29,36,.025), 0 0 0 44px rgba(236,29,36,.012); }
.domain-index { color: var(--red); font: 740 10px/1 ui-monospace, monospace; letter-spacing: .1em; }
.domain-card strong { display: block; margin-top: 34px; font-size: 18px; letter-spacing: -.015em; }
.domain-card p { max-width: 300px; margin: 14px 0 0; color: #92969d; font-size: 14px; line-height: 1.58; }
.domain-wave { position: absolute; right: 22px; bottom: 20px; width: 78px; height: 34px; display: flex; align-items: end; gap: 4px; opacity: .6; }
.domain-wave i { width: 2px; height: 18%; background: var(--red); animation: wave-bar 1.8s ease-in-out infinite; }
.domain-wave i:nth-child(2) { animation-delay: .18s; }
.domain-wave i:nth-child(3) { animation-delay: .36s; }
.domain-wave i:nth-child(4) { animation-delay: .54s; }
.domain-wave i:nth-child(5) { animation-delay: .72s; }
@keyframes wave-bar { 50% { height: 100%; opacity: .25; } }
.domain-orbit { position: absolute; right: 24px; bottom: 20px; width: 48px; height: 48px; border: 1px dashed #4d5056; border-radius: 50%; animation: orbit-spin 8s linear infinite; opacity: .8; }
.domain-orbit span { position: absolute; width: 7px; height: 7px; background: var(--red); border-radius: 50%; left: 50%; top: -4px; box-shadow: 0 0 12px rgba(236,29,36,.65); }
.domain-grid-mark { position: absolute; right: 23px; bottom: 21px; width: 55px; height: 55px; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 11px 11px; mask-image: linear-gradient(135deg, #000, transparent); animation: grid-shift 5s linear infinite; }
@keyframes grid-shift { to { background-position: 11px 11px; } }

.section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; }
.section-heading p { margin: 0 0 2px; max-width: 540px; color: #adb1b8; font-size: 17px; line-height: 1.68; }
.system-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 62px; }
.system-card { min-height: 380px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s ease, background .35s ease; }
.system-card:hover { transform: translateY(-6px); border-color: rgba(236,29,36,.32); background: #15171b; }
.system-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(236,29,36,.08), transparent 34%); opacity: 0; transition: opacity .35s ease; }
.system-card:hover::before { opacity: 1; }
.system-card-top { display: flex; align-items: center; justify-content: space-between; min-height: 68px; color: #6c7077; font: 700 9px/1 ui-monospace, monospace; }
.system-card h3 { margin: auto 0 14px; font-size: 28px; letter-spacing: -.035em; }
.system-card p { margin: 0; min-height: 72px; color: #9a9ea5; line-height: 1.65; font-size: 15px; }
.code-line { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); color: #5e6269; font: 650 9px/1.45 ui-monospace, monospace; letter-spacing: .03em; }
.mini-pulse { width: 14px; height: 14px; border: 2px solid var(--red); border-radius: 50%; box-shadow: 0 0 0 9px rgba(236,29,36,.07); animation: mini-pulse 2s ease-in-out infinite; }
@keyframes mini-pulse { 50% { box-shadow: 0 0 0 18px rgba(236,29,36,0); } }
.mini-orbit { width: 34px; height: 34px; border: 1px dashed #5a5d63; border-radius: 50%; position: relative; animation: orbit-spin 7s linear infinite; }
.mini-orbit::after { content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--red); top: 1px; left: 50%; }
.mini-grid { width: 36px; height: 36px; background-image: linear-gradient(var(--line-strong) 1px, transparent 1px), linear-gradient(90deg, var(--line-strong) 1px, transparent 1px); background-size: 9px 9px; mask-image: linear-gradient(135deg, #000, transparent); }

.section-approach { min-height: 760px; display: grid; grid-template-columns: .88fr 1.12fr; gap: 84px; align-items: center; }
.approach-copy p { max-width: 560px; margin: 26px 0 0; color: #b0b3b9; font-size: 18px; line-height: 1.65; }
.capability-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 34px; }
.capability-tags span { min-height: 46px; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line-strong); color: #c5c8cd; background: rgba(255,255,255,.025); display: flex; align-items: center; font: 720 12px/1.25 ui-monospace, monospace; letter-spacing: .015em; }
.stack-map { --scroll-shift: 0; height: 570px; position: relative; transform: translate3d(0, calc(var(--scroll-shift) * 1px), 0); transition: transform .08s linear; }
.stack-ring { position: absolute; left: 50%; top: 25%; border-radius: 50%; transform: translate(-50%, -50%); border: 1px dashed rgba(255,255,255,.055); pointer-events: none; }
.stack-ring-a { width: 265px; height: 265px; animation: orbit-spin 32s linear infinite; }
.stack-ring-b { width: 360px; height: 360px; border-style: solid; border-color: rgba(236,29,36,.055); animation: orbit-spin-rev 42s linear infinite; }
.stack-core { position: absolute; z-index: 4; left: 50%; top: 25%; width: 154px; height: 154px; transform: translate(-50%, -50%); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #101216; border: 1px solid rgba(236,29,36,.34); box-shadow: 0 0 0 24px rgba(236,29,36,.024), 0 0 0 48px rgba(255,255,255,.014), 0 28px 80px rgba(0,0,0,.42); }
.stack-logo { width: 40px; height: 40px; object-fit: contain; margin-bottom: 8px; }
.stack-core strong { font-size: 13px; letter-spacing: .14em; }
.stack-core small { margin-top: 6px; color: #a7abb2; font: 720 10px/1 ui-monospace, monospace; letter-spacing: .12em; }
.stack-trunk, .stack-bus, .stack-drop { position: absolute; z-index: 1; background: linear-gradient(180deg, rgba(236,29,36,.68), rgba(255,255,255,.12)); }
.stack-trunk { left: 50%; top: calc(25% + 76px); width: 1px; height: 106px; }
.stack-bus { left: 16%; right: 16%; top: 43.6%; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(236,29,36,.62), rgba(255,255,255,.08)); }
.stack-drop { top: 43.6%; width: 1px; height: 94px; }
.stack-drop-a { left: 16%; }
.stack-drop-b { left: 50%; }
.stack-drop-c { left: 84%; }
.stack-trunk i, .stack-drop i { position: absolute; width: 7px; height: 7px; left: -3px; top: 0; border-radius: 50%; background: var(--red); box-shadow: 0 0 14px rgba(236,29,36,.85); animation: architecture-packet 3.8s var(--ease) infinite; }
.stack-drop-a i { animation-delay: .2s; }
.stack-drop-b i { animation-delay: 1.25s; }
.stack-drop-c i { animation-delay: 2.3s; }
@keyframes architecture-packet { 0% { top: 0; opacity: 0; } 14% { opacity: 1; } 88% { opacity: 1; } 100% { top: calc(100% - 7px); opacity: 0; } }
.stack-node { position: absolute; z-index: 3; top: 60%; width: 31%; min-height: 132px; padding: 22px 20px; border-radius: 18px; border: 1px solid var(--line-strong); background: rgba(19,21,25,.97); display: grid; grid-template-columns: 34px 1fr; align-content: center; box-shadow: 0 20px 55px rgba(0,0,0,.26); animation: node-float 6s ease-in-out infinite; }
.node-travel { left: 0; animation-delay: 0s; }
.node-member { left: 50%; transform: translateX(-50%); animation-delay: -2s; }
.node-business { right: 0; animation-delay: -4s; }
@keyframes node-float { 50% { margin-top: -6px; } }
.stack-node span { grid-row: 1 / span 2; color: var(--red); font: 780 11px/1 ui-monospace, monospace; padding-top: 4px; }
.stack-node strong { font-size: 19px; letter-spacing: -.02em; }
.stack-node small { margin-top: 8px; color: #a5a9b0; font: 680 10px/1.35 ui-monospace, monospace; letter-spacing: .045em; text-transform: uppercase; }

.section-pipeline { padding-top: 118px; padding-bottom: 128px; }
.pipeline-shell { --scroll-shift: 0; margin-top: 62px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(160deg, #111318, #0c0e11 70%); overflow: hidden; box-shadow: 0 28px 80px rgba(0,0,0,.28); transform: translate3d(calc(var(--scroll-shift) * .35px), 0, 0); transition: transform .08s linear; }
.pipeline-head { min-height: 50px; padding: 0 18px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #858991; font: 680 10px/1 ui-monospace, monospace; letter-spacing: .09em; }
.live-indicator { display: inline-flex; align-items: center; gap: 7px; }
.live-indicator i { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(236,29,36,.08); animation: status-pulse 2.4s ease-in-out infinite; }
.pipeline { min-height: 310px; padding: 74px 30px 48px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; position: relative; }
.pipeline-line { position: absolute; left: 9%; right: 9%; top: 107px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(236,29,36,.42), rgba(255,255,255,.08)); }
.pipeline-line::before { content: ""; position: absolute; inset: -4px 0; background: radial-gradient(ellipse at center, rgba(236,29,36,.08), transparent 70%); }
.pipeline-line span { position: absolute; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 14px rgba(236,29,36,.8); animation: pipeline-packet 7s var(--ease) infinite; }
@keyframes pipeline-packet { 0% { left: 0; opacity: 0; } 7% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 7px); opacity: 0; } }
.pipeline-node { min-width: 0; padding: 0 10px; position: relative; z-index: 2; text-align: center; }
.pipeline-node::before { content: ""; display: block; width: 14px; height: 14px; margin: 25px auto 32px; border-radius: 50%; background: #101216; border: 2px solid #6b6f76; box-shadow: 0 0 0 7px #0d0f12; transition: border-color .3s ease, box-shadow .3s ease; animation: pipeline-node 5s ease-in-out infinite; }
.pipeline-node:nth-of-type(3)::before { animation-delay: .65s; }
.pipeline-node:nth-of-type(4)::before { animation-delay: 1.3s; }
.pipeline-node:nth-of-type(5)::before { animation-delay: 1.95s; }
.pipeline-node:nth-of-type(6)::before { animation-delay: 2.6s; }
@keyframes pipeline-node { 14%, 24% { border-color: var(--red); box-shadow: 0 0 0 7px #0d0f12, 0 0 18px rgba(236,29,36,.55); } }
.pipeline-node i { display: block; color: #4f535a; font: 700 8px/1 ui-monospace, monospace; font-style: normal; }
.pipeline-node strong { display: block; margin-top: 9px; color: #c6c9cf; font-size: 12px; letter-spacing: .055em; }
.pipeline-node small { display: block; margin-top: 8px; color: #5f636a; font: 600 8px/1.35 ui-monospace, monospace; }
.pipeline-secondary { min-height: 54px; border-top: 1px solid var(--line); padding: 0 22px; display: flex; align-items: center; justify-content: center; gap: 14px; color: #555960; font: 600 8px/1 ui-monospace, monospace; letter-spacing: .06em; }
.pipeline-secondary b { width: 38px; height: 1px; position: relative; overflow: hidden; background: rgba(255,255,255,.08); }
.pipeline-secondary b::after { content: ""; position: absolute; inset: 0; background: var(--red); transform: translateX(-100%); animation: tiny-route 3.2s ease-in-out infinite; }
.pipeline-secondary b:nth-of-type(2)::after { animation-delay: 1.1s; }
@keyframes tiny-route { 60%, 100% { transform: translateX(100%); } }

.section-philosophy { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.terminal-panel { min-height: 380px; border: 1px solid var(--line); border-radius: 22px; background: #0c0e11; box-shadow: 0 28px 80px rgba(0,0,0,.32); overflow: hidden; position: relative; }
.terminal-panel::after { content: ""; position: absolute; left: 0; right: 0; top: -30%; height: 20%; background: linear-gradient(180deg, transparent, rgba(236,29,36,.035), transparent); animation: terminal-scan 7s linear infinite; pointer-events: none; }
@keyframes terminal-scan { to { top: 110%; } }
.terminal-bar { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.terminal-bar span { width: 8px; height: 8px; border-radius: 50%; background: #34373c; }
.terminal-bar span:first-child { background: var(--red-dark); }
.terminal-bar b { margin-left: auto; color: #565a61; font: 650 8px/1 ui-monospace, monospace; letter-spacing: .1em; }
.terminal-panel pre { margin: 0; padding: 46px; overflow: auto; }
.terminal-panel code { color: #c7cad0; font: 650 clamp(12px, 1.5vw, 18px)/1.85 ui-monospace, SFMono-Regular, Menlo, monospace; }
.terminal-muted { color: #50545b; }
.terminal-red { color: var(--red); }
.philosophy-copy p { margin: 28px 0 0; max-width: 540px; color: #969aa1; font-size: 16px; line-height: 1.72; }

.section-leadership { padding-top: 130px; padding-bottom: 132px; }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 62px; }
.leader-card { min-height: 390px; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #15171b, #101216 72%); position: relative; overflow: hidden; display: grid; grid-template-columns: 128px 1fr; grid-template-rows: 1fr auto; gap: 26px 30px; transition: border-color .35s ease, transform .35s var(--ease); }
.leader-card:hover { transform: translateY(-5px); border-color: rgba(236,29,36,.28); }
.leader-card::after { content: ""; position: absolute; width: 290px; height: 290px; right: -185px; top: -175px; border-radius: 50%; border: 1px solid rgba(236,29,36,.10); box-shadow: 0 0 0 40px rgba(236,29,36,.018), 0 0 0 80px rgba(255,255,255,.008); }
.leader-monogram { width: 118px; height: 118px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; position: relative; align-self: start; background: rgba(255,255,255,.015); }
.leader-monogram::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(255,255,255,.08); border-radius: 50%; animation: orbit-spin 16s linear infinite; }
.leader-monogram span { font: 760 30px/1 ui-monospace, monospace; letter-spacing: -.04em; }
.leader-monogram i { position: absolute; width: 8px; height: 8px; border-radius: 50%; top: 11px; left: 50%; background: var(--red); box-shadow: 0 0 14px rgba(236,29,36,.75); animation: monogram-pulse 2.8s ease-in-out infinite; }
@keyframes monogram-pulse { 50% { transform: scale(1.6); opacity: .55; } }
.leader-label { color: #d4d6da; font: 780 13px/1.4 ui-monospace, monospace; letter-spacing: .07em; }
.leader-copy h3 { margin: 16px 0 14px; font-size: 38px; letter-spacing: -.045em; }
.leader-copy p { margin: 0; color: #b7bac0; font-size: 17px; line-height: 1.62; }
.leader-status { grid-column: 1 / -1; display: flex; align-items: center; gap: 9px; padding-top: 22px; border-top: 1px solid var(--line); color: #a4a8af; font: 720 11px/1.45 ui-monospace, monospace; letter-spacing: .065em; }
.leader-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--red-dark); box-shadow: 0 0 10px rgba(236,29,36,.45); }

.section-office { padding-bottom: 150px; }
.office-card { border: 1px solid var(--line); border-radius: 26px; padding: 54px; background: linear-gradient(120deg, #15171b, #101215 70%); display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; position: relative; overflow: hidden; }
.office-card::after { content: "AMG"; position: absolute; right: -18px; bottom: -82px; color: rgba(255,255,255,.018); font-size: 240px; font-weight: 900; letter-spacing: -.08em; pointer-events: none; }
.office-radar { position: absolute; width: 320px; height: 320px; right: -130px; top: -140px; border-radius: 50%; border: 1px solid rgba(236,29,36,.08); pointer-events: none; }
.office-radar span { position: absolute; inset: 18%; border-radius: 50%; border: 1px dashed rgba(255,255,255,.045); animation: orbit-spin 24s linear infinite; }
.office-radar span:nth-child(2) { inset: 35%; border-style: solid; animation-direction: reverse; animation-duration: 16s; }
.office-radar span:nth-child(3) { inset: 48%; background: rgba(236,29,36,.04); border: 0; animation: radar-pulse 4s ease-in-out infinite; }
@keyframes radar-pulse { 50% { transform: scale(1.5); opacity: .2; } }
.office-copy { position: relative; z-index: 2; }
.office-copy p { max-width: 650px; margin: 28px 0 0; color: #8f939a; font-size: 15px; line-height: 1.72; }
.office-details { position: relative; z-index: 2; display: grid; gap: 20px; align-content: center; }
.office-details div { padding-bottom: 18px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 30px; }
.office-details div:last-child { border-bottom: 0; padding-bottom: 0; }
.office-details small { color: #8d9198; font: 720 10px/1.35 ui-monospace, monospace; letter-spacing: .09em; }
.office-details strong, .office-details a { text-align: right; color: #c7c9ce; font-size: 14px; line-height: 1.5; font-weight: 660; }
.office-details a:hover { color: var(--red); }

.section-contact { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.contact-intro { position: sticky; top: 122px; }
.contact-intro p { margin: 26px 0 0; max-width: 460px; color: #8f939a; line-height: 1.7; }
.contact-form-wrap { max-width: 680px; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 9px; }
.contact-form label > span { color: #7b7f86; font: 650 9px/1.2 ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }
.contact-form label em { color: #51555c; font-style: normal; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: #101216; color: #e7e8ea; outline: none; padding: 15px 16px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #484c53; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(236,29,36,.58); background: #121418; box-shadow: 0 0 0 4px rgba(236,29,36,.06); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 4px; }
.form-footer small { max-width: 360px; color: #5d6168; line-height: 1.5; }
.form-footer .button { border: 0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.flash { margin-bottom: 20px; padding: 13px 14px; border-radius: 11px; font-size: 13px; border: 1px solid var(--line); }
.flash-success { background: rgba(255,255,255,.035); color: #d5d7da; }
.flash-error { background: rgba(236,29,36,.08); border-color: rgba(236,29,36,.28); color: #f0b7b9; }

.site-footer { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; min-height: 150px; padding: 38px 0 46px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; color: #5f636a; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-mark { width: 28px; height: 28px; object-fit: contain; filter: grayscale(.3); opacity: .75; }
.footer-brand div { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: #8a8e95; font-size: 12px; }
.footer-brand span, .footer-note, .footer-copy { font-size: 12px; line-height: 1.55; }
.footer-note { max-width: 390px; text-align: right; }
.footer-copy { font: 600 9px/1 ui-monospace, monospace; letter-spacing: .06em; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-ready .reveal[data-reveal-direction="left"] { transform: translate3d(-30px, 18px, 0); }
.js-ready .reveal[data-reveal-direction="right"] { transform: translate3d(30px, 18px, 0); }
.js-ready .reveal.is-visible,
.js-ready .reveal.is-visible[data-reveal-direction="left"],
.js-ready .reveal.is-visible[data-reveal-direction="right"] { opacity: 1; transform: translate3d(0,0,0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 860px; }
  .hero-visual { min-height: 545px; margin-top: 8px; }
  .orbit-stage { width: min(550px, 74vw); }
  .visual-chip-a { left: 12%; }
  .visual-chip-c { right: 9%; }
  .system-console { left: 12%; }
  .company-grid, .section-heading, .section-approach, .section-philosophy, .office-card, .section-contact { gap: 52px; }
  .domain-grid { grid-template-columns: 1fr; }
  .domain-card { min-height: 180px; }
  .system-cards { grid-template-columns: 1fr; }
  .system-card { min-height: 280px; }
  .system-card p { min-height: 0; }
  .section-approach { grid-template-columns: 1fr; }
  .stack-map { max-width: 720px; width: 100%; margin: 0 auto; }
  .section-philosophy { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { min-height: 330px; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .ambient-grid { background-size: 36px 36px; opacity: .18; }
  .ambient-signal-a { width: 430px; height: 430px; right: -300px; top: 20vh; }
  .ambient-signal-b { width: 300px; height: 300px; left: -220px; bottom: 10vh; }
  .site-header { top: 8px; width: calc(100% - 16px); min-height: 60px; padding: 8px 9px 8px 12px; background: rgba(9,10,12,.72); border-color: var(--line); backdrop-filter: blur(16px); }
  .brand-mark { width: 30px; height: 30px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 6.5px; max-width: 180px; letter-spacing: .11em; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 76px; left: 8px; right: 8px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(10,11,13,.96); backdrop-filter: blur(18px); flex-direction: column; align-items: stretch; opacity: 0; transform: translateY(-12px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 14px; font-size: 13px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }

  .hero { min-height: auto; padding: 124px 22px 72px; gap: 0; }
  .eyebrow { font-size: 8px; letter-spacing: .11em; line-height: 1.55; }
  .hero h1 { margin-top: 20px; font-size: clamp(51px, 15.7vw, 74px); line-height: .92; }
  .hero-lede { font-size: 15.5px; line-height: 1.67; }
  .hero-actions { align-items: stretch; margin-top: 28px; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-meta { margin-top: 32px; display: grid; gap: 11px; }
  .hero-visual { min-height: 500px; margin: 18px -22px 0; overflow: hidden; }
  .visual-scan { inset: 3% -12%; opacity: .58; }
  .visual-scan::before { animation-duration: 5.2s; }
  .orbit-stage { width: min(440px, 116vw); }
  .orbit-core { width: 126px; height: 126px; border-radius: 28px; animation-duration: 4.2s; }
  .orbit-logo { width: 46px; height: 46px; }
  .core-copy { bottom: 20px; }
  .visual-chip { min-width: 100px; padding: 10px 11px; font-size: 7px; backdrop-filter: blur(10px); }
  .visual-chip-a { top: 16%; left: 2%; }
  .visual-chip-b { top: 10%; right: 1%; }
  .visual-chip-c { bottom: 15%; right: 1%; }
  .system-console { left: 2%; bottom: 5%; width: 214px; }
  .system-console code { font-size: 8px; }
  .scroll-cue { display: none; }

  .section { width: calc(100% - 40px); padding: 88px 0; }
  .section-company { padding-top: 98px; }
  .company-grid, .section-heading, .section-philosophy, .office-card, .section-contact { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { align-items: start; }
  .section h2 { font-size: clamp(40px, 12vw, 56px); }
  .company-copy p { font-size: 17px; line-height: 1.65; }
  .domain-grid { margin-top: 50px; }
  .domain-card { min-height: 195px; padding: 22px; }
  .domain-card strong { max-width: 260px; margin-top: 30px; font-size: 16px; }
  .domain-card p { padding-right: 48px; }
  .system-cards { margin-top: 44px; }
  .system-card { min-height: 300px; padding: 24px; }
  .system-card h3 { font-size: 26px; }
  .section-approach { min-height: auto; padding-top: 92px; padding-bottom: 96px; }
  .approach-copy p { font-size: 17px; }
  .capability-tags { grid-template-columns: 1fr; gap: 8px; margin-top: 28px; }
  .capability-tags span { min-height: 44px; font-size: 12px; }
  .stack-map { height: 660px; transform: translate3d(0, calc(var(--scroll-shift) * .35px), 0); margin: 22px 0 0; width: 100%; }
  .stack-ring { top: 13%; }
  .stack-ring-a { width: 190px; height: 190px; }
  .stack-ring-b { width: 250px; height: 250px; }
  .stack-core { top: 13%; width: 126px; height: 126px; }
  .stack-core strong { font-size: 12px; }
  .stack-core small { font-size: 9px; }
  .stack-trunk { left: 50%; top: calc(13% + 63px); height: 470px; }
  .stack-bus { display: none; }
  .stack-drop { top: auto; left: 50%; width: 1px; height: 1px; background: transparent; }
  .stack-drop i { display: none; }
  .stack-node { left: 50%; right: auto; width: min(100%, 330px); min-height: 118px; padding: 20px; grid-template-columns: 34px 1fr; transform: translateX(-50%); animation: none; }
  .stack-node span { font-size: 11px; }
  .stack-node strong { font-size: 19px; }
  .stack-node small { font-size: 10px; line-height: 1.4; }
  .node-travel { top: 33%; }
  .node-member { top: 55%; }
  .node-business { top: 77%; }

  .section-pipeline { padding-top: 90px; padding-bottom: 96px; }
  .pipeline-shell { margin-top: 42px; transform: translate3d(calc(var(--scroll-shift) * .18px), 0, 0); }
  .pipeline { min-height: 590px; padding: 38px 22px 38px 58px; grid-template-columns: 1fr; gap: 0; }
  .pipeline-line { left: 28px; right: auto; top: 55px; bottom: 55px; width: 1px; height: auto; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(236,29,36,.42), rgba(255,255,255,.08)); }
  .pipeline-line span { left: -3px; top: 0; animation: pipeline-packet-mobile 7s var(--ease) infinite; }
  @keyframes pipeline-packet-mobile { 0% { top: 0; opacity: 0; } 7% { opacity: 1; } 90% { opacity: 1; } 100% { top: calc(100% - 7px); opacity: 0; } }
  .pipeline-node { min-height: 100px; padding: 15px 0 15px 18px; text-align: left; display: grid; grid-template-columns: 1fr; align-content: center; }
  .pipeline-node::before { position: absolute; left: -38px; top: 50%; margin: -7px 0 0; box-shadow: 0 0 0 7px #0d0f12; }
  .pipeline-node i { margin: 0; }
  .pipeline-node strong { margin-top: 7px; font-size: 12px; }
  .pipeline-node small { margin-top: 5px; }
  .pipeline-secondary { min-height: 80px; padding: 16px; flex-wrap: wrap; gap: 10px; justify-content: flex-start; line-height: 1.4; }
  .pipeline-secondary b { width: 22px; }

  .terminal-panel { min-height: 390px; }
  .terminal-panel pre { padding: 36px 24px; }
  .terminal-panel code { font-size: 12px; line-height: 1.82; }
  .section-leadership { padding-top: 94px; padding-bottom: 98px; }
  .leadership-grid { margin-top: 42px; }
  .leader-card { min-height: 0; padding: 24px; grid-template-columns: 82px 1fr; grid-template-rows: auto auto auto auto; grid-template-areas: "mono label" "mono name" "bio bio" "status status"; gap: 10px 18px; }
  .leader-monogram { grid-area: mono; width: 80px; height: 80px; }
  .leader-monogram span { font-size: 22px; }
  .leader-monogram i { top: 6px; width: 7px; height: 7px; }
  .leader-copy { display: contents; }
  .leader-label { grid-area: label; align-self: end; font-size: 11px; line-height: 1.4; letter-spacing: .055em; }
  .leader-copy h3 { grid-area: name; align-self: start; margin: 3px 0 0; font-size: 31px; }
  .leader-copy p { grid-area: bio; margin-top: 14px; font-size: 16px; line-height: 1.6; }
  .leader-status { grid-area: status; margin-top: 10px; font-size: 10px; }

  .section-office { padding-bottom: 110px; }
  .office-card { padding: 30px 24px; }
  .office-card::after { font-size: 150px; bottom: -50px; }
  .office-radar { width: 220px; height: 220px; right: -105px; top: -105px; }
  .office-details div { flex-direction: column; gap: 9px; }
  .office-details strong, .office-details a { text-align: left; }
  .contact-intro { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer .button { width: 100%; }
  .site-footer { width: calc(100% - 40px); grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .footer-note { text-align: left; }
}

@media (max-width: 430px) {
  .brand-copy small { max-width: 150px; }
  .hero h1 { font-size: clamp(48px, 15.2vw, 66px); }
  .hero-visual { min-height: 470px; }
  .visual-chip-a { left: -3px; }
  .visual-chip-b { right: -5px; }
  .visual-chip-c { right: -4px; }
  .system-console { left: 0; width: 204px; }
  .stack-map { transform: translate3d(0, calc(var(--scroll-shift) * .25px), 0); }
  .leader-card { grid-template-columns: 70px 1fr; padding: 21px; }
  .leader-monogram { width: 70px; height: 70px; }
  .leader-copy h3 { font-size: 26px; }
}

@media (hover: none) {
  .system-card:hover, .leader-card:hover, .button:hover { transform: none; }
  .system-card:active, .leader-card:active { border-color: rgba(236,29,36,.26); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js-ready .reveal,
  .js-ready .reveal[data-reveal-direction="left"],
  .js-ready .reveal[data-reveal-direction="right"] { opacity: 1; transform: none; }
  [data-scroll-reactive] { transform: none !important; }
}

.site-nav a.is-active { color: #fff; background: rgba(255,255,255,.045); }
.site-nav a.is-active::after { content: ""; display: block; width: 14px; height: 1px; margin: 5px auto -6px; background: var(--red); box-shadow: 0 0 8px rgba(236,29,36,.45); }
@media (max-width: 760px) {
  .site-nav a.is-active::after { width: 18px; margin: 5px 0 -6px 14px; }
}
/* --------------------------------------------------------------------------
   V6 — clearer type, lighter language, and travel-first motion
   -------------------------------------------------------------------------- */

/* Make the page scannable without relying on tiny utility text. */
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #eef0f3;
  font: 800 14px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.section-kicker span {
  min-width: 38px;
  min-height: 30px;
  padding: 0 8px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(236,29,36,.42);
  border-radius: 9px;
  background: rgba(236,29,36,.10);
  color: #ff444a;
  font-size: 13px;
  letter-spacing: .04em;
  box-shadow: inset 0 0 18px rgba(236,29,36,.035), 0 0 18px rgba(236,29,36,.035);
}
.section-kicker b { font: inherit; }
.brand-copy small { font-size: 10px; color: #a2a6ad; letter-spacing: .09em; }
.site-nav a { font-size: 13px; }
.hero-meta { color: #a3a7ae; font-size: 12px; letter-spacing: .07em; }
.scroll-cue { font-size: 10px; color: #777b82; }

/* Hero travel layer. */
.visual-chip {
  min-width: 126px;
  min-height: 46px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9dbe0;
  font-size: 10px;
  letter-spacing: .085em;
}
.visual-chip svg { width: 19px; height: 19px; fill: var(--red); flex: 0 0 auto; }
.visual-chip span { color: inherit; margin: 0; }
.core-copy small { color: #a1a5ac; font-size: 9px; letter-spacing: .11em; }
.console-head b { color: #8d9198; font-size: 9px; letter-spacing: .07em; }
.system-console code { color: #a9adb4; font-size: 10.5px; line-height: 1.35; }
.sea-route {
  fill: none;
  stroke: url(#seaGradient);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 5 11;
  animation: sea-route-flow 9s linear infinite;
}
@keyframes sea-route-flow { to { stroke-dashoffset: -96; } }
.hero-route-vehicle { transform-box: fill-box; transform-origin: center; filter: drop-shadow(0 0 9px rgba(236,29,36,.34)); }
.hero-route-plane { fill: #f3f4f6; stroke: rgba(236,29,36,.7); stroke-width: .7; }
.hero-route-ship { fill: none; stroke: #d8dade; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-route-ship .ship-hull { fill: rgba(236,29,36,.82); stroke: rgba(255,255,255,.72); }
.hero-route-ship .ship-wave { stroke: rgba(166,168,171,.72); animation: ship-wave-pulse 1.9s ease-in-out infinite; }
@keyframes ship-wave-pulse { 50% { opacity: .3; transform: translateY(2px); } }
.hero-luggage {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 52px;
  right: 14%;
  bottom: 9%;
  color: rgba(255,255,255,.48);
  will-change: transform;
  animation: luggage-float 4.6s ease-in-out infinite;
}
.hero-luggage svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes luggage-float { 50% { transform: translateY(-9px) rotate(2deg); color: rgba(236,29,36,.72); } }

/* Company cards now use recognizable travel and software illustrations. */
.domain-card { min-height: 252px; padding: 27px; }
.domain-index { font-size: 12px; color: #ff3f46; }
.domain-card strong { margin-top: 30px; font-size: 19px; }
.domain-card p { max-width: 270px; color: #afb3ba; font-size: 15px; line-height: 1.62; }
.domain-art {
  position: absolute;
  right: 11px;
  bottom: 7px;
  width: 170px;
  height: 94px;
  opacity: .74;
  pointer-events: none;
}
.domain-art svg { width: 100%; height: 100%; overflow: visible; fill: none; stroke: rgba(255,255,255,.40); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.domain-art-travel .domain-route { stroke: rgba(236,29,36,.45); stroke-dasharray: 4 7; animation: travel-card-route 5s linear infinite; }
@keyframes travel-card-route { to { stroke-dashoffset: -44; } }
.domain-plane { fill: #f3f4f6; stroke: rgba(236,29,36,.85); animation: domain-plane-flight 7.2s var(--ease) infinite; }
@keyframes domain-plane-flight {
  0% { transform: translate(9px,62px) rotate(-20deg); opacity: 0; }
  12% { opacity: 1; }
  54% { transform: translate(82px,12px) rotate(-2deg); opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translate(158px,38px) rotate(16deg); opacity: 0; }
}
.domain-ship { animation: domain-ship-bob 3.2s ease-in-out infinite; }
.domain-ship path:first-child { fill: rgba(236,29,36,.32); stroke: rgba(236,29,36,.85); }
@keyframes domain-ship-bob { 50% { transform: translateY(-4px) rotate(-1deg); } }
.domain-art-member rect, .domain-art-member circle { stroke: rgba(255,255,255,.46); }
.domain-art-member .member-pass { fill: rgba(236,29,36,.08); stroke: rgba(236,29,36,.55); animation: member-pass-float 4s ease-in-out infinite; transform-origin: center; }
.domain-art-member .member-route { stroke: rgba(236,29,36,.65); stroke-dasharray: 4 5; animation: travel-card-route 4s linear infinite; }
@keyframes member-pass-float { 50% { transform: translateY(-5px) rotate(-1.5deg); } }
.domain-art-systems .systems-link { stroke: rgba(255,255,255,.28); }
.domain-art-systems circle { fill: #101216; stroke: rgba(255,255,255,.34); }
.domain-art-systems .systems-packet { fill: var(--red); stroke: none; filter: drop-shadow(0 0 6px rgba(236,29,36,.7)); }
.systems-packet-a { animation: packet-horizontal 2.8s ease-in-out infinite; }
.systems-packet-b { animation: packet-vertical 2.8s 1.2s ease-in-out infinite; }
@keyframes packet-horizontal { 0%, 100% { transform: translateX(-20px); opacity: 0; } 18%, 82% { opacity: 1; } 50% { transform: translateX(30px); } }
@keyframes packet-vertical { 0%, 100% { transform: translateY(-10px); opacity: 0; } 18%, 82% { opacity: 1; } 50% { transform: translateY(24px); } }

/* Plain-language system cards. */
.section-heading p { color: #bbc0c7; font-size: 18px; line-height: 1.7; }
.system-card { min-height: 350px; padding: 28px; }
.system-card-top { min-height: 74px; color: #9da1a8; font-size: 12px; letter-spacing: .08em; }
.system-card h3 { font-size: 31px; }
.system-card p { min-height: 0; color: #b3b7be; font-size: 16px; line-height: 1.65; }
.code-line { color: #9ca0a7; font-size: 11px; letter-spacing: .06em; }
.system-travel-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 19px;
  background: rgba(255,255,255,.025);
  color: #aeb2b9;
  overflow: hidden;
  position: relative;
}
.system-travel-icon::after { content: ""; position: absolute; inset: -40%; border-radius: 50%; border: 1px dashed rgba(236,29,36,.20); animation: orbit-spin 13s linear infinite; }
.system-travel-icon svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.system-travel-icon .icon-plane { fill: rgba(236,29,36,.8); stroke: rgba(236,29,36,.95); animation: system-plane-drift 4.8s ease-in-out infinite; }
.system-travel-icon .icon-ship { fill: rgba(236,29,36,.42); stroke: rgba(236,29,36,.95); animation: domain-ship-bob 2.8s ease-in-out infinite; }
@keyframes system-plane-drift { 50% { transform: translate(3px,-3px) rotate(4deg); } }

/* Replace jargon-heavy capability tags with four readable travel steps. */
.approach-copy p { color: #b9bdc4; font-size: 18px; }
.journey-steps { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 34px; }
.journey-step {
  min-height: 74px;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.journey-step svg { width: 28px; height: 28px; flex: 0 0 auto; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.journey-step span { display: flex; flex-direction: column; gap: 4px; }
.journey-step strong { font-size: 16px; letter-spacing: -.01em; }
.journey-step small { color: #a3a7ae; font-size: 12px; line-height: 1.25; }
.stack-core small { font-size: 11px; color: #b6bac1; }
.stack-node { grid-template-columns: 28px 48px 1fr; align-items: center; column-gap: 10px; }
.stack-node > span { grid-row: auto; padding: 0; font-size: 12px; }
.stack-node-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.025); }
.stack-node-icon svg { width: 27px; height: 27px; fill: none; stroke: #d6d8dc; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.stack-node > div:last-child { min-width: 0; }
.stack-node strong { font-size: 19px; }
.stack-node small { display: block; margin-top: 6px; color: #b1b5bc; font-size: 11px; line-height: 1.35; letter-spacing: .035em; }

/* The reservation chain: simple words, visibly complex handoffs. */
.pipeline-shell { overflow: visible; }
.pipeline-head { min-height: 54px; padding: 0 20px; color: #a9adb4; font-size: 12px; letter-spacing: .07em; border-radius: 24px 24px 0 0; background: #111318; }
.pipeline {
  min-height: 330px;
  padding: 72px 24px 50px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,.009), transparent);
}
.pipeline-line { left: 7.4%; right: 7.4%; top: 106px; }
.pipeline-flight {
  top: -13px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: pipeline-flight 8.4s var(--ease) infinite !important;
}
.pipeline-flight svg { width: 100%; height: 100%; fill: var(--red); filter: drop-shadow(0 0 9px rgba(236,29,36,.72)); }
@keyframes pipeline-flight { 0% { left: 0; opacity: 0; transform: rotate(4deg) scale(.82); } 7% { opacity: 1; } 50% { transform: rotate(0deg) scale(1); } 91% { opacity: 1; } 100% { left: calc(100% - 28px); opacity: 0; transform: rotate(-4deg) scale(.82); } }
.pipeline-node { padding: 0 7px; }
.pipeline-node::before { width: 16px; height: 16px; margin: 25px auto 30px; }
.pipeline-node i { color: #8e9299; font-size: 11px; letter-spacing: .07em; }
.pipeline-node strong { margin-top: 10px; color: #e1e3e6; font-size: 13px; letter-spacing: .035em; }
.pipeline-node small { margin-top: 8px; color: #9da1a8; font-size: 10.5px; line-height: 1.4; }
.pipeline-events {
  min-height: 68px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 24px 24px;
  background: #0c0e11;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}
.pipeline-events span {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #aeb2b9;
  background: rgba(255,255,255,.02);
  font: 650 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .035em;
}
.pipeline-events i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px rgba(236,29,36,.7); animation: event-pulse 2.4s ease-in-out infinite; }
.pipeline-events span:nth-child(2) i { animation-delay: .55s; }
.pipeline-events span:nth-child(3) i { animation-delay: 1.1s; }
.pipeline-events span:nth-child(4) i { animation-delay: 1.65s; }
@keyframes event-pulse { 50% { opacity: .35; transform: scale(1.7); } }

/* Keep the terminal fun, but make every required line readable. */
.terminal-bar b { color: #8f939a; font-size: 10px; }
.terminal-panel code { color: #d2d4d8; }
.terminal-muted { color: #7e8289; }
.philosophy-copy p { color: #b1b5bc; font-size: 17px; }

/* Leadership is deliberately light. */
.leader-label { color: #f0f1f3; font-size: 15px; letter-spacing: .055em; }
.leader-copy p { color: #c0c3c9; font-size: 18px; }
.leader-status { color: #c3c6cc; font-size: 12px; letter-spacing: .08em; }

/* Office travel route and readable facts. */
.office-copy p { color: #b5b9c0; font-size: 16px; }
.office-details small { color: #a7abb2; font-size: 11px; }
.office-details strong, .office-details a { color: #d2d4d8; font-size: 15px; }
.office-route { position: absolute; right: 40px; top: 18px; width: 210px; height: 90px; opacity: .42; pointer-events: none; }
.office-route svg { width: 100%; height: 100%; overflow: visible; }
.office-route path { fill: none; stroke: rgba(255,255,255,.19); stroke-width: 1.2; stroke-dasharray: 4 7; }
.office-route g path { fill: var(--red); stroke: rgba(255,255,255,.65); stroke-width: .65; filter: drop-shadow(0 0 7px rgba(236,29,36,.6)); }

.footer-copy { font-size: 10px; }

@media (max-width: 1050px) {
  .domain-art { width: 190px; opacity: .62; }
  .system-card { min-height: 290px; }
  .pipeline { padding-left: 18px; padding-right: 18px; }
  .pipeline-node strong { font-size: 12px; }
}

@media (max-width: 900px) {
  .pipeline-shell { overflow: hidden; }
  .pipeline { min-height: 740px; padding: 42px 28px 42px 72px; grid-template-columns: 1fr; gap: 0; }
  .pipeline-line { left: 36px; right: auto; top: 58px; bottom: 58px; width: 1px; height: auto; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(236,29,36,.45), rgba(255,255,255,.08)); }
  .pipeline-flight { left: -14px !important; top: 0 !important; animation: pipeline-flight-mobile 9s var(--ease) infinite !important; }
  .pipeline-flight svg { transform: rotate(90deg); }
  @keyframes pipeline-flight-mobile { 0% { top: 0; opacity: 0; transform: scale(.82); } 7% { opacity: 1; } 91% { opacity: 1; } 100% { top: calc(100% - 28px); opacity: 0; transform: scale(.82); } }
  .pipeline-node { min-height: 94px; padding: 13px 0 13px 24px; text-align: left; display: grid; align-content: center; }
  .pipeline-node::before { position: absolute; left: -44px; top: 50%; width: 16px; height: 16px; margin: -8px 0 0; }
  .pipeline-node i { margin: 0; }
  .pipeline-node strong { margin-top: 6px; font-size: 14px; }
  .pipeline-node small { margin-top: 4px; font-size: 11px; }
  .pipeline-events { justify-content: flex-start; padding: 16px; }
}

@media (max-width: 760px) {
  .brand-copy small { font-size: 8.5px; max-width: none; }
  .site-nav a { font-size: 14px; }
  .section-kicker { gap: 9px; font-size: 13px; letter-spacing: .055em; }
  .section-kicker span { min-width: 36px; min-height: 29px; font-size: 12px; }
  .hero-meta { font-size: 11px; }
  .visual-chip { min-width: 112px; min-height: 42px; padding: 9px 10px; gap: 8px; font-size: 9px; }
  .visual-chip svg { width: 17px; height: 17px; }
  .hero-luggage { right: 10%; bottom: 8%; width: 34px; height: 43px; }
  .system-console code { font-size: 9.5px; }

  .domain-card { min-height: 224px; padding: 23px; }
  .domain-card strong { font-size: 17px; }
  .domain-card p { max-width: 72%; padding-right: 0; font-size: 15px; }
  .domain-art { width: 145px; right: 0; bottom: 4px; opacity: .48; }

  .section-heading p { font-size: 17px; }
  .system-card { min-height: 288px; padding: 24px; }
  .system-card-top { min-height: 66px; }
  .system-travel-icon { width: 60px; height: 60px; }
  .system-travel-icon svg { width: 44px; height: 44px; }
  .system-card h3 { font-size: 28px; }
  .system-card p { font-size: 16px; }
  .code-line { font-size: 10px; }

  .journey-steps { grid-template-columns: 1fr 1fr; gap: 8px; }
  .journey-step { min-height: 70px; padding: 12px; gap: 10px; }
  .journey-step svg { width: 24px; height: 24px; }
  .journey-step strong { font-size: 15px; }
  .journey-step small { font-size: 11px; }

  .stack-node { grid-template-columns: 27px 42px 1fr; min-height: 116px; padding: 18px; }
  .stack-node-icon { width: 40px; height: 40px; }
  .stack-node-icon svg { width: 24px; height: 24px; }
  .stack-node strong { font-size: 19px; }
  .stack-node small { font-size: 11px; }

  .pipeline { min-height: 720px; padding: 38px 20px 38px 64px; }
  .pipeline-line { left: 31px; }
  .pipeline-node { min-height: 91px; padding-left: 20px; }
  .pipeline-node::before { left: -40px; }
  .pipeline-head { font-size: 11px; }
  .pipeline-events span { font-size: 9.5px; }

  .terminal-panel code { font-size: 12px; }
  .leader-label { font-size: 13px; }
  .leader-copy p { font-size: 17px; }
  .leader-status { font-size: 11px; }
  .office-route { right: -30px; top: 8px; opacity: .28; }
}

@media (max-width: 430px) {
  .section-kicker { font-size: 12px; }
  .section-kicker span { min-width: 34px; min-height: 28px; }
  .visual-chip { min-width: 104px; font-size: 8.5px; }
  .hero-luggage { display: none; }
  .domain-card p { max-width: 78%; }
  .domain-art { width: 125px; opacity: .42; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step { min-height: 66px; }
  .pipeline-events { gap: 7px; }
  .pipeline-events span { width: 100%; justify-content: flex-start; }
}

/* Final alignment and anchor behavior. */
.section, .hero { scroll-margin-top: 96px; }
.stack-node > div:last-child { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.stack-node-icon { grid-row: auto; }
.domain-card p { position: relative; z-index: 2; }
.domain-art { z-index: 1; }

@media (max-width: 760px) {
  .domain-art { width: 112px; right: -3px; bottom: 7px; opacity: .34; }
  .domain-card p { max-width: 78%; }
  .stack-node > span { grid-column: 1; }
  .stack-node-icon { grid-column: 2; }
  .stack-node > div:last-child { grid-column: 3; align-items: flex-start; text-align: left; }
}

@media (max-width: 430px) {
  .domain-art { width: 102px; opacity: .30; }
}

/* Keep the architecture labels aligned as plain-language reading, not console chrome. */
.stack-node > div:last-child { align-items: flex-start; text-align: left; }
.stack-node > div:last-child strong,
.stack-node > div:last-child small { align-self: stretch; text-align: left; }

/* Do not shrink information-bearing section labels on small screens. */
@media (max-width: 760px) {
  .section-kicker { font-size: 13px; letter-spacing: .045em; }
  .section-kicker span { font-size: 13px; }
}

@media (max-width: 430px) {
  .section-kicker { font-size: 13px; }
}

/* V7 refinement: cleaner architecture, clearer aircraft, and compact leadership. */
.section-kicker {
  gap: 10px;
  color: #c4c7cc;
  font-size: 14px;
  letter-spacing: .055em;
}
.section-kicker span {
  min-width: 38px;
  min-height: 31px;
  font-size: 13px;
}

/* A recognizable top-view aircraft silhouette across every animated route. */
.hero-route-plane {
  fill: #f5f6f7;
  stroke: var(--red);
  stroke-width: .85;
  stroke-linejoin: round;
}
.hero-route-plane .plane-detail {
  fill: none;
  stroke: #4d5056;
  stroke-width: .75;
  stroke-linecap: round;
}
.domain-plane {
  fill: #f5f6f7;
  stroke: var(--red);
  stroke-width: .8;
  stroke-linejoin: round;
}
.pipeline-flight {
  top: -17px !important;
  width: 34px !important;
  height: 34px !important;
}
.pipeline-flight svg {
  fill: #f5f6f7;
  stroke: var(--red);
  stroke-width: .8;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(236,29,36,.72));
}
.office-route g path {
  fill: #f5f6f7;
  stroke: var(--red);
  stroke-width: .7;
  stroke-linejoin: round;
}

/* Shared systems: three concise, evenly aligned destinations. */
.stack-map {
  height: 520px;
}
.stack-ring,
.stack-core {
  top: 25%;
}
.stack-ring-a { width: 248px; height: 248px; }
.stack-ring-b { width: 338px; height: 338px; }
.stack-core {
  width: 146px;
  height: 146px;
}
.stack-trunk {
  top: calc(25% + 72px);
  height: 38px;
}
.stack-bus {
  left: 16%;
  right: 16%;
  top: 46%;
}
.stack-drop {
  top: 46%;
  height: 76px;
}
.stack-node {
  top: 61%;
  width: 29%;
  min-height: 112px;
  padding: 18px 16px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-content: center;
  align-items: center;
}
.node-travel { left: 1.5%; }
.node-member { left: 50%; }
.node-business { right: 1.5%; }
.stack-node > .stack-node-index {
  position: absolute;
  top: 12px;
  left: 14px;
  grid-row: auto;
  padding: 0;
  color: var(--red);
  font-size: 10px;
  letter-spacing: .04em;
}
.stack-node-icon {
  grid-column: 1;
  width: 48px;
  height: 48px;
  border-radius: 13px;
}
.stack-node-icon svg {
  width: 29px;
  height: 29px;
}
.stack-node-copy,
.stack-node > .stack-node-copy {
  grid-column: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.stack-node-copy strong {
  width: 100%;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.08;
  white-space: nowrap;
}
.stack-node-copy small {
  width: 100%;
  margin-top: 7px;
  color: #aeb2b9;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .12em;
}

/* Leadership: same voice as the navigation and no unnecessary vertical space. */
.section-leadership {
  padding-top: 108px;
  padding-bottom: 110px;
}
.leadership-grid {
  margin-top: 44px;
}
.leader-card {
  min-height: 248px;
  padding: 28px;
  grid-template-columns: 98px minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: center;
  gap: 24px;
}
.leader-card::after {
  width: 235px;
  height: 235px;
  right: -150px;
  top: -145px;
}
.leader-monogram {
  width: 92px;
  height: 92px;
  align-self: center;
}
.leader-monogram span { font-size: 27px; }
.leader-copy { min-width: 0; }
.leader-label {
  font-size: 13px;
  letter-spacing: .07em;
}
.leader-copy h3 {
  margin: 10px 0 10px;
  font-size: 34px;
}
.leader-copy p {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.55;
}
.leader-status {
  grid-column: auto;
  width: max-content;
  margin-top: 17px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-size: 10px;
  letter-spacing: .08em;
}

@media (max-width: 1050px) {
  .stack-map { max-width: 700px; }
  .leader-card { min-height: 230px; }
}

@media (max-width: 760px) {
  .section-kicker {
    font-size: 13px;
    letter-spacing: .045em;
  }
  .section-kicker span {
    min-width: 36px;
    min-height: 30px;
    font-size: 13px;
  }

  .stack-map {
    height: 600px;
    margin-top: 14px;
  }
  .stack-ring,
  .stack-core { top: 12%; }
  .stack-ring-a { width: 180px; height: 180px; }
  .stack-ring-b { width: 234px; height: 234px; }
  .stack-core { width: 118px; height: 118px; }
  .stack-logo { width: 34px; height: 34px; margin-bottom: 6px; }
  .stack-core strong { font-size: 12px; }
  .stack-core small { margin-top: 5px; font-size: 9px; }
  .stack-trunk {
    left: 50%;
    top: calc(12% + 58px);
    height: 430px;
  }
  .stack-node {
    left: 50%;
    right: auto;
    width: min(100%, 310px);
    min-height: 92px;
    padding: 15px 17px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    transform: translateX(-50%);
    animation: none;
  }
  .node-travel { top: 31%; }
  .node-member { top: 52%; }
  .node-business { top: 73%; }
  .stack-node > .stack-node-index {
    top: 10px;
    left: 12px;
    font-size: 9px;
  }
  .stack-node-icon { width: 44px; height: 44px; }
  .stack-node-icon svg { width: 27px; height: 27px; }
  .stack-node-copy strong { font-size: 18px; }
  .stack-node-copy small { font-size: 10px; }

  .pipeline-flight {
    left: -17px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .section-leadership {
    padding-top: 88px;
    padding-bottom: 92px;
  }
  .leadership-grid { margin-top: 34px; }
  .leader-card {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-rows: auto;
    grid-template-areas: none;
    align-items: center;
    gap: 18px;
  }
  .leader-monogram {
    grid-area: auto;
    width: 70px;
    height: 70px;
  }
  .leader-monogram span { font-size: 22px; }
  .leader-copy { display: block; }
  .leader-label {
    grid-area: auto;
    font-size: 12px;
  }
  .leader-copy h3 {
    grid-area: auto;
    margin: 6px 0 8px;
    font-size: 28px;
  }
  .leader-copy p {
    grid-area: auto;
    margin: 0;
    font-size: 15px;
    line-height: 1.52;
  }
  .leader-status {
    grid-area: auto;
    margin-top: 13px;
    font-size: 9.5px;
  }
}

@media (max-width: 430px) {
  .stack-node { width: min(100%, 292px); }
  .leader-card {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 19px;
    gap: 15px;
  }
  .leader-monogram { width: 62px; height: 62px; }
  .leader-monogram span { font-size: 20px; }
  .leader-copy h3 { font-size: 25px; }
  .leader-copy p { font-size: 14.5px; }
}

/* Override the earlier three-column mobile rule so the compact cards remain two columns. */
.stack-node > div.stack-node-copy { grid-column: 2; }

/* Keep the animated reservation aircraft unmistakable at a glance. */
.pipeline-flight {
  top: -22px !important;
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(236,29,36,.68) !important;
  border-radius: 50% !important;
  background: #0c0e11 !important;
  box-shadow: 0 0 0 5px rgba(236,29,36,.07), 0 0 22px rgba(236,29,36,.25) !important;
}
.pipeline-flight svg {
  width: 29px !important;
  height: 29px !important;
  filter: none !important;
}
@keyframes pipeline-flight {
  0% { left: 0; opacity: 0; transform: rotate(4deg) scale(.86); }
  7% { opacity: 1; }
  50% { transform: rotate(0deg) scale(1); }
  91% { opacity: 1; }
  100% { left: calc(100% - 44px); opacity: 0; transform: rotate(-4deg) scale(.86); }
}

@media (max-width: 760px) {
  .pipeline-flight {
    left: -22px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .pipeline-flight svg { transform: rotate(90deg); }
  @keyframes pipeline-flight-mobile {
    0% { top: 0; opacity: 0; transform: scale(.86); }
    7% { opacity: 1; }
    91% { opacity: 1; }
    100% { top: calc(100% - 44px); opacity: 0; transform: scale(.86); }
  }
}
.pipeline-flight { animation-delay: -3.1s !important; }
@media (max-width: 760px) { .pipeline-flight { animation-delay: -3.1s !important; } }
