/* ============================================================
   SWAMP SHARK DRIVES — design system
   Dark industrial "extreme marine engineering" aesthetic
   ============================================================ */
:root {
  --bg: #0D0F11;
  --bg-2: #101214;
  --panel: #13161A;
  --panel-2: #171B20;
  --line: #1F242B;
  --line-strong: #2C333C;
  --text: #EDF1F4;
  --text-2: #9AA6B2;
  --text-3: #5F6B77;
  --accent: #FFB000;
  --accent-hi: #FFC947;
  --accent-dim: rgba(255, 176, 0, .13);
  --steel: #7FB3C8;
  --ok: #57C785;
  --radius: 14px;
  --font-display: "Inter", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --hazard: repeating-linear-gradient(-45deg, #2E3641 0 14px, #0D0F11 14px 28px);
  --shadow: 0 18px 50px rgba(0, 0, 0, .5);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #0B0E11; }

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: -.015em;
  font-weight: 700;
  overflow-wrap: break-word;
}
h1.display { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
h2.display { font-size: clamp(1.85rem, 3.8vw, 3rem); }
h3.display { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: .02em; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.kicker::before { content: ""; width: 34px; height: 3px; background: var(--hazard); }
.lead { color: var(--text-2); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 62ch; }
.muted { color: var(--text-3); }
.small { font-size: .85rem; }

/* ---------- layout ---------- */
.wrap { width: min(1200px, 92vw); margin: 0 auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section.tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 14, 17, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand-word {
  font-family: var(--font-mono); font-weight: 600; text-transform: uppercase;
  font-size: .95rem; letter-spacing: .1em; line-height: 1.1;
}
.brand-word span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.2rem); }
.nav-links a {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em; color: var(--text-2);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--accent); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; font-size: .84rem;
  padding: .95em 1.7em; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn-accent { background: #FFB000; color: #1A1000; }
.btn-accent:hover { background: #FFC947; }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hi); }
.btn-sm { padding: .7em 1.2em; font-size: .78rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s; }
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: rgba(11, 14, 17, .97); backdrop-filter: blur(14px);
    padding: 1.6rem 4vw 2rem; gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .3s;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  isolation: isolate; overflow: hidden;
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(11, 14, 17, .25) 45%, rgba(11, 14, 17, .45) 100%),
    linear-gradient(100deg, rgba(11, 14, 17, .72) 0%, rgba(11, 14, 17, .18) 60%);
}
.hero-inner { padding: 96px 0 clamp(4rem, 9vh, 7rem); }
.hero .kicker { margin-bottom: 1.4rem; }
.hero h1 { max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { margin: 1.6rem 0 2.4rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 3.2rem; display: flex; gap: clamp(1.4rem, 4vw, 3.4rem); flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 1.4rem;
}
.hero-meta b { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 600; color: var(--text); display: block; line-height: 1.1; }
.hero-meta span { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); }

/* ---------- proof marquee ---------- */
.marquee {
  border-block: 1px solid var(--line); background: var(--bg-2);
  overflow: hidden; padding: 1.05rem 0;
}
.marquee-track { display: flex; gap: 3.4rem; width: max-content; animation: scroll 34s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 3.4rem;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .16em;
  font-size: .8rem; color: var(--text-2); white-space: nowrap;
}
.marquee-item::after { content: "◆"; color: var(--accent); font-size: .6rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- feature cards ---------- */
.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--hazard); opacity: 0; transition: opacity .2s;
}
.card:hover::before { opacity: 1; }
.card .num {
  font-family: var(--font-mono); font-weight: 600; font-size: 2.2rem; line-height: 1;
  color: var(--accent); margin-bottom: .7rem; display: block;
}
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--text-2); font-size: .96rem; }
.card-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 1.1rem; }

/* ---------- split feature (image + copy) ---------- */
.split-img {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-img .tag {
  position: absolute; left: 14px; bottom: 14px; max-width: calc(100% - 28px);
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(11, 14, 17, .82); border: 1px solid var(--line-strong);
  padding: .45em .9em; border-radius: 6px; color: var(--accent);
}
.feature-list { display: grid; gap: 1.15rem; margin-top: 1.8rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-item .dot {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-dim); border: 1px solid rgba(255, 107, 44, .35);
  display: grid; place-items: center; color: var(--accent);
}
.feature-item b { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.feature-item p { color: var(--text-2); font-size: .95rem; }

/* ---------- section headers ---------- */
.sec-head { margin-bottom: clamp(2.2rem, 4vw, 3.6rem); max-width: 760px; }
.sec-head h2 { margin-top: 1rem; }
.sec-head .lead { margin-top: 1rem; }
.sec-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }

/* ---------- video cards ---------- */
.vid-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); cursor: pointer; background: #000;
  aspect-ratio: 16 / 10;
}
.vid-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s, opacity .3s; }
.vid-card:hover img { transform: scale(1.045); opacity: .75; }
.vid-card .play {
  position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(237, 241, 244, .92); display: grid; place-items: center; color: #0D0F11;
  transition: transform .2s;
}
.vid-card:hover .play { transform: scale(1.1); }
.vid-card video { width: 100%; height: 100%; object-fit: cover; }
.vid-card .vid-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 4.8rem .9rem 1.1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .88), transparent);
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vid-card .dur {
  position: absolute; top: 12px; right: 12px; font-size: .72rem; font-weight: 600;
  background: rgba(11, 14, 17, .85); border: 1px solid var(--line-strong);
  padding: .25em .6em; border-radius: 6px; letter-spacing: .08em;
}

/* ---------- gallery ---------- */
.masonry { columns: 3; column-gap: 1rem; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.masonry-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); cursor: zoom-in; position: relative; background: var(--panel);
}
.masonry-item img { width: 100%; transition: transform .3s; }
.masonry-item:hover img { transform: scale(1.03); }
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(5, 7, 9, .94);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; border: 1px solid var(--line-strong); }
.lightbox button {
  position: absolute; background: none; border: 0; color: var(--text); cursor: pointer;
  font-size: 2.2rem; line-height: 1; padding: 1rem; opacity: .8;
}
.lightbox button:hover { opacity: 1; color: var(--accent); }
.lb-close { top: 10px; right: 16px; }
.lb-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 8px; top: 50%; transform: translateY(-50%); }

/* ---------- quote / partners ---------- */
.quote-band { background: var(--bg-2); border-block: 1px solid var(--line); }
blockquote.pull {
  font-family: var(--font-display); font-weight: 500; text-transform: none;
  font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.35; max-width: 30ch;
}
blockquote.pull em { color: var(--accent); font-style: normal; }
.quote-attr { margin-top: 1.4rem; color: var(--text-2); font-size: .95rem; }
.quote-attr b { color: var(--text); display: block; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.chip {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--line-strong); border-radius: 100px; padding: .5em 1.1em; color: var(--text-2);
}
.partner-logo-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  padding: 2rem; display: flex; flex-direction: column; gap: .8rem;
}

/* ---------- contact ---------- */
.contact-band {
  background:
    radial-gradient(1000px 400px at 85% 0%, rgba(255, 107, 44, .1), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.contact-card {
  display: flex; gap: 1.4rem; align-items: center;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1.6rem; background: var(--panel); flex-wrap: wrap; justify-content: space-between;
}
form.inquiry { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-2);
}
.field input, .field select, .field textarea {
  background: var(--panel-2); border: 1px solid var(--line-strong); border-radius: 9px;
  color: var(--text); padding: .85em 1em; font: inherit; outline: none; width: 100%;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3.4rem 0 2.4rem; background: #090C0F; }
.foot-grid { display: flex; justify-content: space-between; gap: 2.4rem; flex-wrap: wrap; }
.foot-tag { color: var(--text-3); font-size: .9rem; max-width: 34ch; margin-top: 1rem; }
.foot-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.foot-links nav { display: grid; gap: .55rem; }
.foot-links a { color: var(--text-2); font-size: .92rem; }
.foot-links a:hover { color: var(--accent-hi); }
.foot-links h4 {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: .4rem;
}
.foot-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--text-3); font-size: .8rem; letter-spacing: .06em;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; padding: calc(72px + clamp(3.5rem, 8vw, 6.5rem)) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.page-hero-img {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(11, 14, 17, .5), var(--bg));
}

/* ============================================================
   MISSION CONTROL LAYER — tactical console treatment
   ============================================================ */
.console-bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 6;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: .8rem clamp(1rem, 4vw, 2.5rem);
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-2);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(rgba(13, 15, 17, .6), rgba(13, 15, 17, 0));
}
.console-item { display: inline-flex; align-items: center; gap: .55em; }
.console-item .led, .hero-meta b::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 8px var(--ok);
  animation: ledPulse 2.4s ease-in-out infinite;
}
@keyframes ledPulse { 50% { opacity: .4; } }

/* corner brackets — targeting reticle */
.hud-corners {
  --hud-c: var(--accent);
  --hud-inset: 0px;
  --hud-arm: 18px;
  background-image:
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c));
  background-repeat: no-repeat;
  background-size: var(--hud-arm) 1.5px, 1.5px var(--hud-arm), var(--hud-arm) 1.5px, 1.5px var(--hud-arm), var(--hud-arm) 1.5px, 1.5px var(--hud-arm), var(--hud-arm) 1.5px, 1.5px var(--hud-arm);
  background-position: left var(--hud-inset) top var(--hud-inset), left var(--hud-inset) top var(--hud-inset), right var(--hud-inset) top var(--hud-inset), right var(--hud-inset) top var(--hud-inset), left var(--hud-inset) bottom var(--hud-inset), left var(--hud-inset) bottom var(--hud-inset), right var(--hud-inset) bottom var(--hud-inset), right var(--hud-inset) bottom var(--hud-inset);
}

/* faint tactical grid overlay */
.grid-layer {
  background-image:
    linear-gradient(rgba(237, 241, 244, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 241, 244, .045) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero::before {
  content: ""; position: absolute; inset: 14px; z-index: 5; pointer-events: none;
  --hud-c: rgba(255, 176, 0, .65); --hud-arm: 26px;
  background-image:
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c));
  background-repeat: no-repeat;
  background-size: var(--hud-arm) 2px, 2px var(--hud-arm), var(--hud-arm) 2px, 2px var(--hud-arm), var(--hud-arm) 2px, 2px var(--hud-arm), var(--hud-arm) 2px, 2px var(--hud-arm);
  background-position: left top, left top, right top, right top, left bottom, left bottom, right bottom, right bottom;
}
.hero::after {
  background:
    linear-gradient(rgba(237, 241, 244, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 241, 244, .05) 1px, transparent 1px),
    linear-gradient(to top, var(--bg) 0%, rgba(13, 15, 17, .25) 45%, rgba(13, 15, 17, .45) 100%),
    linear-gradient(100deg, rgba(13, 15, 17, .72) 0%, rgba(13, 15, 17, .18) 60%);
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 3px);
}
.hero .console-bar { top: auto; bottom: 14px; left: 14px; right: 14px; border-bottom: 0; border-top: 1px solid rgba(255, 176, 0, .28); background: linear-gradient(rgba(13, 15, 17, 0), rgba(13, 15, 17, .65)); }
.hero-meta .tel { display: block; }
.hero-meta b { white-space: nowrap; }

.card, .contact-card, .partner-logo-card {
  --hud-c: var(--line-strong);
  --hud-arm: 14px;
  background-image:
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  background-repeat: no-repeat;
  background-size: var(--hud-arm) 1.5px, 1.5px var(--hud-arm), var(--hud-arm) 1.5px, 1.5px var(--hud-arm), var(--hud-arm) 1.5px, 1.5px var(--hud-arm), var(--hud-arm) 1.5px, 1.5px var(--hud-arm), auto;
  background-position: left top, left top, right top, right top, left bottom, left bottom, right bottom, right bottom, center;
}
.card:hover { --hud-c: var(--accent); }
.split-img::after {
  content: ""; position: absolute; inset: 10px; pointer-events: none; z-index: 2;
  --hud-c: rgba(237, 241, 244, .75); --hud-arm: 20px;
  background-image:
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c)),
    linear-gradient(var(--hud-c), var(--hud-c)), linear-gradient(var(--hud-c), var(--hud-c));
  background-repeat: no-repeat;
  background-size: var(--hud-arm) 2px, 2px var(--hud-arm), var(--hud-arm) 2px, 2px var(--hud-arm), var(--hud-arm) 2px, 2px var(--hud-arm), var(--hud-arm) 2px, 2px var(--hud-arm);
  background-position: left top, left top, right top, right top, left bottom, left bottom, right bottom, right bottom;
}

.quote-band, .contact-band {
  background-image:
    linear-gradient(rgba(237, 241, 244, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 241, 244, .035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page-hero::after {
  background:
    linear-gradient(rgba(237, 241, 244, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 241, 244, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13, 15, 17, .5), var(--bg));
  background-size: 44px 44px, 44px 44px, auto;
}
.foot-bottom { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; }

@media (max-width: 720px) {
  .hero::before { inset: 10px; --hud-arm: 16px; }
  .console-bar { font-size: .62rem; letter-spacing: .12em; }
}

/* ============================================================
   END MISSION CONTROL LAYER
   ============================================================ */

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .console-item .led, .hero-meta b::before { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- misc ---------- */
.contact-card b, .partner-logo-card b { font-family: var(--font-mono); }
.hazard-rule { height: 4px; background: var(--hazard); border: 0; border-radius: 2px; width: 90px; }
.center { text-align: center; }
.center .kicker::before { display: none; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.note {
  border-left: 3px solid var(--accent); background: var(--accent-dim);
  padding: 1rem 1.3rem; border-radius: 0 10px 10px 0; color: var(--text-2); font-size: .95rem;
}
