:root {
  --paper: #ded7c9;
  --paper-light: #eee9df;
  --ink: #181914;
  --muted: #66645d;
  --acid: #d8ff3e;
  --rust: #ba4d2c;
  --line: rgba(24, 25, 20, .22);
  --dark: #20221d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: .08em; font-size: 13px; }
.brand-mark { width: 31px; height: 31px; display: grid; place-items: center; background: var(--ink); color: var(--paper); font-size: 10px; letter-spacing: .04em; }
.nav { display: flex; gap: 34px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .25s ease; }
.nav a:hover::after { right: 0; }
.header-cta { justify-self: end; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.section-pad { padding-left: 34px; padding-right: 34px; }
.hero { min-height: calc(100vh - 76px); display: grid; grid-template-columns: 42% 58%; padding-top: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.hero-copy { display: flex; flex-direction: column; padding-right: 42px; }
.eyebrow, .section-kicker { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; gap: 9px; align-items: center; margin: 3px 0 8vh; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 0 rgba(216,255,62,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(216,255,62,0); } 100% { box-shadow: 0 0 0 0 rgba(216,255,62,0); } }
.hero h1 { margin: 0; font-size: clamp(58px, 7vw, 116px); line-height: .82; letter-spacing: -.075em; font-weight: 800; }
.hero h1 em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.055em; }
.hero-lede { width: min(520px, 92%); margin: 46px 0 28px; color: #414139; font-size: clamp(16px, 1.25vw, 20px); }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.button { min-height: 48px; padding: 0 18px; border: 1px solid var(--ink); background: transparent; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: var(--paper); }
.button.primary:hover { background: var(--acid); color: var(--ink); }
.button.ghost:hover { background: rgba(255,255,255,.25); }
.availability { margin-top: auto; display: grid; grid-template-columns: auto auto 1fr; align-items: end; gap: 11px 16px; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.availability strong { font-size: 16px; letter-spacing: -.02em; }
.availability-line { height: 1px; background: rgba(0,0,0,.15); position: relative; margin-bottom: 6px; }
.availability-line i { position: absolute; inset: 0 32% 0 0; background: var(--ink); }
.availability small { grid-column: 1 / -1; color: var(--muted); font-size: 9px; }

.hero-media { position: relative; display: grid; grid-template-columns: 1fr 29%; grid-template-rows: 62% 38%; gap: 10px; min-height: 640px; }
.hero-image { margin: 0; position: relative; overflow: hidden; background: #aaa; }
.hero-image img { height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); transition: transform .7s ease; }
.hero-image:hover img { transform: scale(1.025); }
.hero-image-main { grid-row: 1 / -1; }
.hero-image-small { grid-column: 2; grid-row: 2; }
.hero-image figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; gap: 16px; padding: 10px 12px; background: rgba(24,25,20,.9); color: #e7e2d8; font: 9px/1.2 monospace; letter-spacing: .08em; }
.hero-image figcaption span { color: var(--acid); }
.coord-card { grid-column: 2; grid-row: 1; background: var(--rust); color: #f3e9df; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; font-family: monospace; font-size: 12px; }
.coord-card b { margin-top: auto; font: 800 32px/1 Arial, sans-serif; letter-spacing: -.06em; }

.statement { min-height: 310px; display: grid; grid-template-columns: 18% 1fr; padding: 64px 34px; border-bottom: 1px solid var(--line); align-items: start; }
.statement-index { font: 11px monospace; color: var(--muted); }
.statement p { margin: 0; max-width: 1120px; font-size: clamp(32px, 4.6vw, 72px); line-height: 1.04; letter-spacing: -.045em; }
.statement p strong { font-family: Georgia, serif; font-weight: 400; font-style: italic; }

.section-label { padding: 17px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; font: 10px monospace; letter-spacing: .08em; }
.network { padding-top: 34px; padding-bottom: 90px; }
.network-grid { display: grid; grid-template-columns: 42% 58%; padding-top: 48px; }
.network-copy { padding-right: 12%; }
.network h2, .platform h2, .operator-copy h2, .status h2, .contact h2 { margin: 0; font-size: clamp(44px, 5.1vw, 78px); line-height: .94; letter-spacing: -.055em; }
.network-copy > p { max-width: 480px; color: var(--muted); margin: 30px 0 42px; }
.spec-list { margin: 0; border-top: 1px solid var(--line); }
.spec-list div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: 12px; }
.spec-list dd { margin: 0; font: 700 12px monospace; }
.route-board { min-height: 510px; background: #2c2f29; color: #eee; position: relative; overflow: hidden; }
.route-grid { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.25) 1px,transparent 1px); background-size: 38px 38px; }
.node { position: absolute; z-index: 3; font: 10px monospace; letter-spacing: .05em; display: flex; align-items: center; gap: 8px; }
.node i { width: 11px; height: 11px; display: block; background: var(--acid); border: 3px solid #2c2f29; outline: 1px solid var(--acid); }
.node-a { left: 12%; top: 22%; }.node-b { right: 12%; top: 19%; }.node-c { left: 45%; top: 50%; }.node-d { right: 18%; bottom: 14%; }
.route { position: absolute; height: 1px; background: var(--acid); transform-origin: left center; opacity: .75; }
.route-1 { left: 14%; top: 24%; width: 48%; transform: rotate(27deg); }.route-2 { left: 49%; top: 51%; width: 40%; transform: rotate(-47deg); }.route-3 { left: 50%; top: 53%; width: 34%; transform: rotate(35deg); }
.route::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--acid); position: absolute; top: -2px; animation: packet 3s linear infinite; }
.route-2::after { animation-delay: .8s; }.route-3::after { animation-delay: 1.5s; }
@keyframes packet { from { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } to { left: calc(100% - 5px); opacity: 0; } }
.route-stat { position: absolute; left: 18px; bottom: 16px; z-index: 4; }
.route-stat b { display: block; font-size: 38px; letter-spacing: -.055em; }.route-stat span { font: 9px monospace; color: #aaa; text-transform: uppercase; }

.platform { background: var(--dark); color: #e6e1d8; padding-top: 0; padding-bottom: 78px; }
.dark-label { border-color: rgba(255,255,255,.18); }
.platform-title { display: grid; grid-template-columns: 1fr 34%; gap: 50px; padding: 66px 0 56px; align-items: end; }
.platform-title p { margin: 0; color: #aaa99f; max-width: 420px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.18); }
.service-card { min-height: 390px; padding: 22px; border-right: 1px solid rgba(255,255,255,.18); position: relative; display: flex; flex-direction: column; }
.service-card:last-child { border-right: 0; }
.service-card.featured { background: var(--acid); color: var(--ink); }
.service-no { font: 10px monospace; opacity: .7; }
.service-card h3 { font-size: 30px; letter-spacing: -.045em; margin: auto 0 13px; }
.service-card p { color: inherit; opacity: .68; max-width: 400px; }
.service-card ul { list-style: none; padding: 18px 0 0; margin: 10px 0 0; border-top: 1px solid currentColor; }
.service-card li { padding: 5px 0; font: 10px monospace; text-transform: uppercase; }
.service-card li::before { content: "+ "; }
.stamp { position: absolute; top: 18px; right: 18px; border: 1px solid currentColor; border-radius: 50%; width: 74px; height: 74px; display: grid; place-items: center; text-align: center; font: 800 9px/1.15 Arial,sans-serif; transform: rotate(8deg); }

.operator-section { display: grid; grid-template-columns: 52% 48%; padding-top: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--line); }
.operator-photo { margin: 0; height: 580px; position: relative; background: #777; overflow: hidden; }
.operator-photo img { height: 100%; object-fit: cover; filter: grayscale(1) sepia(.12) contrast(1.05); }
.operator-photo figcaption { position: absolute; bottom: 0; left: 0; background: var(--acid); padding: 10px 13px; font: 9px monospace; color: var(--ink); }
.operator-copy { padding: 34px 0 0 9%; display: flex; flex-direction: column; }
.operator-copy .section-kicker { margin-bottom: 28px; }
.operator-copy > p { max-width: 540px; margin: 36px 0; color: var(--muted); font-size: 17px; }
.quote { margin-top: auto; max-width: 600px; padding-top: 18px; border-top: 1px solid var(--line); font: italic 23px/1.3 Georgia,serif; }

.status { padding-top: 76px; padding-bottom: 82px; }
.status-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; }
.status-heading .section-kicker { display: block; margin-bottom: 20px; }
.status-all { display: flex; align-items: center; gap: 10px; font: 10px monospace; padding-bottom: 8px; }
.status-table { border-top: 1px solid var(--ink); }
.status-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); font: 12px monospace; }
.status-row.head { font-size: 9px; color: var(--muted); letter-spacing: .08em; }
.ok::before { content: "● "; color: #4d7427; }

.contact { min-height: 560px; background: var(--rust); color: #f2eae0; padding: 70px 34px 26px; display: flex; flex-direction: column; }
.contact .section-kicker { display: block; margin-bottom: 24px; }
.contact h2 { font-size: clamp(50px, 7.7vw, 118px); max-width: 1150px; }
.contact-link { margin-top: auto; font-size: clamp(24px, 3.1vw, 52px); letter-spacing: -.035em; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.5); display: flex; justify-content: space-between; }
.contact-meta { padding-top: 20px; display: flex; justify-content: space-between; font: 9px monospace; letter-spacing: .08em; }

.console-modal { position: fixed; inset: 0; z-index: 100; background: rgba(18,19,15,.76); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .25s ease; backdrop-filter: blur(5px); }
.console-modal.open { opacity: 1; visibility: visible; }
.console-window { width: min(720px, 100%); background: #171915; color: #d6ddc5; box-shadow: 0 30px 80px rgba(0,0,0,.35); transform: translateY(14px); transition: transform .25s ease; }
.console-modal.open .console-window { transform: none; }
.console-bar, .console-footer { min-height: 42px; padding: 0 14px; border-bottom: 1px solid #353a31; display: flex; align-items: center; justify-content: space-between; font: 10px monospace; text-transform: uppercase; }
.console-bar button { border: 0; background: none; color: #cbd1bd; font-size: 24px; cursor: pointer; }
.console-body { min-height: 330px; padding: 20px; font: 12px/1.75 monospace; white-space: pre-wrap; }
.console-body .green { color: var(--acid); }.console-body .dim { color: #747a6d; }
.console-footer { border-top: 1px solid #353a31; border-bottom: 0; color: #737a6a; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }.nav { display: none; }.section-pad { padding-left: 20px; padding-right: 20px; }
  .hero { grid-template-columns: 1fr; gap: 48px; }.hero-copy { padding-right: 0; min-height: 600px; }.eyebrow { margin-bottom: 80px; }.hero-media { min-height: 570px; }
  .statement { grid-template-columns: 1fr; gap: 50px; padding-left: 20px; padding-right: 20px; }
  .network-grid { grid-template-columns: 1fr; gap: 60px; }.network-copy { padding-right: 0; }.route-board { min-height: 430px; }
  .platform-title { grid-template-columns: 1fr; }.cards { grid-template-columns: 1fr; }.service-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); min-height: 330px; }.service-card:last-child { border-bottom: 0; }
  .operator-section { grid-template-columns: 1fr; gap: 48px; }.operator-copy { padding-left: 0; }.operator-photo { height: 480px; }
}

@media (max-width: 640px) {
  .site-header { height: 64px; }.brand { font-size: 11px; }.header-cta { font-size: 10px; }
  .hero { min-height: auto; padding-top: 30px; }.hero-copy { min-height: 570px; }.hero h1 { font-size: clamp(54px, 18vw, 82px); }.hero-lede { margin-top: 34px; }
  .hero-actions { display: grid; }.button { width: 100%; }.availability { margin-top: 60px; }
  .hero-media { min-height: 480px; grid-template-columns: 1fr 35%; }.coord-card b { font-size: 23px; }.hero-image figcaption { font-size: 7px; }
  .statement { min-height: auto; padding-top: 48px; padding-bottom: 48px; }.statement p { font-size: 36px; }
  .network { padding-bottom: 60px; }.section-label { gap: 15px; }.network h2, .platform h2, .operator-copy h2, .status h2 { font-size: 45px; }
  .route-board { min-height: 350px; }.route-stat b { font-size: 30px; }
  .platform-title { padding-top: 48px; }.operator-section { padding-top: 56px; padding-bottom: 56px; }.operator-photo { height: 360px; }
  .status-heading { display: block; }.status-all { margin-top: 24px; }.status-row { grid-template-columns: 1.5fr 1fr 1fr; gap: 8px; }.status-row span:last-child { display: none; }
  .contact { min-height: 470px; padding-left: 20px; padding-right: 20px; }.contact h2 { font-size: 53px; }.contact-link { font-size: 20px; }.contact-meta span:nth-child(2) { display: none; }
}

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