:root {
  --blue-void: #040a14;
  --blue-deep: #080f1c;
  --blue-navy: #0c1830;
  --blue: #143560;
  --blue-mid: #1a4578;
  --blue-edge: #2a6bb5;
  --blue-bright: #5ba3e8;
  --white: #e8eef6;
  --white-pure: #f7f9fc;
  --gold: #f5d76e;
  --gold-deep: #b8860b;
  --gold-bright: #ffe9a0;
  --gold-edge: #d4a017;
  --ink: #040a14;
  --ink-soft: rgba(240, 244, 250, 0.96);
  --ink-muted: rgba(232, 238, 246, 0.78);
  --space: clamp(1rem, 0.85rem + 0.6vw, 1.5rem);
  --section-y: clamp(4.5rem, 3.5rem + 4vw, 7.5rem);
  --text-body: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lede: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem);
  --text-display: clamp(2.35rem, 1.2rem + 4.8vw, 4.25rem);
  --text-h2: clamp(1.75rem, 1.15rem + 2.4vw, 2.65rem);
  --panel: rgba(8, 15, 28, 0.82);
  --panel-border: rgba(245, 215, 110, 0.28);
  --panel-hover: rgba(12, 24, 48, 0.96);
  --rule: rgba(245, 215, 110, 0.18);
  --shadow: rgba(0, 0, 0, 0.65);
  --radius: 2px;
  --radius-sm: 1px;
  --max: 1140px;
  /* Display-capable system stack — no webfont LCP hit */
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Arial", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--white);
  background:
    radial-gradient(ellipse 70% 42% at 82% -10%, rgba(245, 215, 110, 0.1), transparent 55%),
    radial-gradient(ellipse 48% 34% at 2% 36%, rgba(26, 69, 120, 0.18), transparent 50%),
    linear-gradient(180deg, var(--blue-void) 0%, var(--blue-deep) 40%, var(--blue-navy) 100%);
  background-attachment: scroll;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  font-size: var(--text-body);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, p, li, a, span, figcaption, label {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  max-width: 100%;
}

@media (min-width: 861px) {
  body { background-attachment: fixed; }
}

a { color: var(--gold); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.skip-link:focus { left: 0; }

.bg-glow {
  position: fixed;
  inset: -20% 20% auto;
  height: 52vh;
  background: radial-gradient(ellipse, rgba(245, 215, 110, 0.11), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 215, 110, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 215, 110, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 8%, black 10%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.topbar, main, .footer { position: relative; z-index: 1; }

/* —— TOPBAR —— */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem var(--space);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
  min-width: 0;
}

.topbar .brand { flex: 0 1 auto; min-width: 0; max-width: calc(100% - 6.5rem); }
.topbar .nav { flex: 0 0 auto; margin-left: auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.brand:hover { color: var(--gold); }

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain; /* never crop letters inside zeus-mark.jpg */
  object-position: center;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold-edge);
  box-shadow:
    inset 0 0 0 1px var(--blue-void),
    0 0 0 3px rgba(8, 15, 28, 0.9),
    0 4px 14px var(--shadow);
  background: #ffffff; /* match mark canvas so contain doesn't letterbox oddly */
  padding: 2px;
  box-sizing: border-box;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.brand:hover .brand-mark {
  box-shadow:
    inset 0 0 0 1px var(--blue-void),
    0 0 0 3px rgba(8, 15, 28, 0.9),
    0 0 18px rgba(245, 215, 110, 0.35),
    0 6px 16px var(--shadow);
}

.brand-text {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
@media (max-width: 400px) {
  .brand-text { letter-spacing: 0.06em; font-size: 0.7rem; }
}
@media (max-width: 340px) {
  /* Prefer full letters over tracking; still never ellipsis */
  .brand-text { letter-spacing: 0.04em; font-size: 0.65rem; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Gold underline grow — Awwwards nav pattern */
.nav > a:not(.btn) {
  position: relative;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0;
  transition: color 0.2s var(--ease);
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}
.nav > a:not(.btn):hover,
.nav > a:not(.btn):focus-visible {
  color: var(--gold);
}
.nav > a:not(.btn):hover::after,
.nav > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

/* —— BUTTONS —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.78rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s,
    border-color 0.2s;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  max-width: 100%;
  box-sizing: border-box;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.btn-play {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 55%, var(--gold-edge) 100%);
  color: var(--ink);
  box-shadow: 0 3px 0 var(--gold-deep), 0 10px 24px var(--shadow);
  border-color: var(--gold-deep);
}
.btn-play:hover {
  box-shadow: 0 5px 0 var(--gold-deep), 0 16px 36px var(--shadow), 0 0 24px rgba(245, 215, 110, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(245, 215, 110, 0.42);
}
.btn-ghost:hover {
  background: rgba(245, 215, 110, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}

/* —— HERO —— */
.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3rem 3.5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) var(--space) var(--section-y);
  min-width: 0;
}
.hero-copy { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.62rem, 0.58rem + 0.2vw, 0.7rem);
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 1.35rem;
  line-height: 1.45;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-size: var(--text-display);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  color: var(--white-pure);
}

.gold { color: var(--gold); }

.lede {
  font-size: var(--text-lede);
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--rule);
  font-size: clamp(0.66rem, 0.62rem + 0.15vw, 0.72rem);
  color: var(--ink-muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-row li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(245, 215, 110, 0.55);
  flex-shrink: 0;
}

/* Bold Zeus mark frame */
.hero-art {
  display: flex;
  justify-content: center;
  padding: 1rem;
  max-width: 100%;
  min-width: 0;
}

.mascot-frame {
  margin: 0 auto;
  width: 100%;
  max-width: min(420px, 100%);
  padding: 0.85rem;
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, var(--blue-navy) 0%, var(--blue-deep) 48%, var(--blue-void) 100%);
  border: 2px solid var(--gold-edge);
  outline: 1px solid rgba(245, 215, 110, 0.22);
  box-shadow:
    0 0 0 8px rgba(4, 10, 20, 0.96),
    0 0 0 9px rgba(212, 160, 23, 0.4),
    0 32px 64px var(--shadow),
    0 0 48px rgba(245, 215, 110, 0.08);
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.mascot-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 8px rgba(4, 10, 20, 0.96),
    0 0 0 9px rgba(212, 160, 23, 0.55),
    0 40px 72px var(--shadow),
    0 0 56px rgba(245, 215, 110, 0.14);
}

.mascot-chrome {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245, 215, 110, 0.16) 0%, transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 36px,
      rgba(245, 215, 110, 0.03) 36px,
      rgba(245, 215, 110, 0.03) 37px
    );
  pointer-events: none;
  z-index: 0;
}

.mascot-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 2;
  pointer-events: none;
  border-color: var(--gold);
  border-style: solid;
}
.mascot-corner-tl { top: 7px; left: 7px; border-width: 2px 0 0 2px; }
.mascot-corner-tr { top: 7px; right: 7px; border-width: 2px 2px 0 0; }
.mascot-corner-bl { bottom: 30px; left: 7px; border-width: 0 0 2px 2px; }
.mascot-corner-br { bottom: 30px; right: 7px; border-width: 0 2px 2px 0; }

.mascot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(245, 215, 110, 0.3);
  background: var(--blue-void);
}

.mascot-cap {
  position: relative;
  z-index: 1;
  margin: 0.75rem 0 0.15rem;
  text-align: center;
  font-size: clamp(0.55rem, 0.5rem + 0.2vw, 0.64rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.4;
  padding: 0 0.25rem;
  overflow-wrap: anywhere;
}

/* —— SECTION RHYTHM —— */
.kicker {
  display: block;
  font-size: clamp(0.62rem, 0.58rem + 0.15vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.capabilities, .product, .approach, .proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) var(--section-y);
  min-width: 0;
}

.section-head { margin-bottom: 2.5rem; }
.section-head.tight { margin-bottom: 1.5rem; }

.section-head h2,
.approach-label h2 {
  font-size: var(--text-h2);
  margin: 0;
  color: var(--white-pure);
  letter-spacing: -0.035em;
  font-weight: 900;
  line-height: 1.15;
  text-wrap: balance;
}

.section-sub {
  margin: 0.85rem 0 0;
  color: var(--ink-muted);
  font-size: var(--text-body);
  max-width: 36rem;
  line-height: 1.65;
}

.subhead {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  margin: 0;
  color: var(--white-pure);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Thin gold rule above numbered sections */
.capabilities::before,
.product::before,
.approach::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-edge), transparent 70%);
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  opacity: 0.55;
}

/* —— CAPABILITIES —— */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(245, 215, 110, 0.22);
  border: 1px solid rgba(245, 215, 110, 0.32);
}

.cap-card {
  background: var(--panel);
  padding: 1.85rem 1.6rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.cap-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.25s var(--ease);
}
.cap-card:hover {
  background: var(--panel-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow);
  z-index: 1;
}
.cap-card:hover::after { background: var(--gold); }

.cap-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.cap-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white-pure);
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.cap-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-body);
  line-height: 1.65;
}

/* —— PRODUCT —— */
.product-banner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem 3rem;
  padding: 0 0 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}

.product-intro h2 {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 2.85rem);
  margin: 0 0 0.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white-pure);
  line-height: 1.15;
}

.product-tag {
  margin: 0 0 1.25rem;
  font-size: clamp(0.68rem, 0.64rem + 0.2vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.45;
}

.product-intro > p:not(.product-tag) {
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
  font-size: var(--text-lede);
  max-width: 36rem;
  line-height: 1.7;
}

.product-intro .cta-row { margin-bottom: 0; }

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245, 215, 110, 0.22);
  border: 1px solid rgba(245, 215, 110, 0.32);
  align-self: start;
}

.ops-stat {
  background: var(--panel);
  padding: 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s var(--ease);
}
.ops-stat:hover { background: var(--panel-hover); }

.ops-num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.ops-label {
  font-size: clamp(0.78rem, 0.72rem + 0.25vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white-pure);
  text-transform: uppercase;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border-left: 3px solid var(--gold-edge);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 215, 110, 0.55);
  background: var(--panel-hover);
  box-shadow: 0 16px 40px var(--shadow);
}

.card-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--white-pure);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-body);
  line-height: 1.65;
}

/* —— APPROACH —— */
.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem 4rem;
  padding: 0.5rem 0 0.5rem;
}

.approach-body p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: var(--text-lede);
  line-height: 1.7;
}
.approach-body p:last-of-type { margin-bottom: 1.5rem; }

.approach-body a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 215, 110, 0.35);
  transition: border-color 0.2s, color 0.2s;
}
.approach-body a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold-bright);
}

.approach-list {
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.75rem;
}
.approach-list li {
  font-size: clamp(0.66rem, 0.62rem + 0.15vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.35;
}
.approach-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

/* —— CTA STRIP —— */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 1.5rem + 1.5vw, 2.75rem) clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(245, 215, 110, 0.1) 0%, rgba(8, 15, 28, 0.92) 45%, rgba(12, 24, 48, 0.95) 100%);
  border: 1px solid var(--panel-border);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 20px 48px var(--shadow);
  position: relative;
  overflow: visible;
}
.proof-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-edge), var(--gold), transparent);
  opacity: 0.85;
}

.proof-head {
  margin: 0.4rem 0 0.65rem;
  font-size: clamp(1.35rem, 1rem + 1.5vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white-pure);
  line-height: 1.15;
  text-wrap: balance;
}

.proof-strip p {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: var(--text-body);
  line-height: 1.65;
}
.proof-strip > div { min-width: 0; flex: 1 1 16rem; position: relative; z-index: 1; }

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* —— FOOTER —— */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem var(--space) calc(3rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--rule);
  min-width: 0;
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
}

.footer-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  max-width: 30rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  position: relative;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 0.2rem;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.footer-links a:hover::after { transform: scaleX(1); }

/* —— RESPONSIVE —— */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1.5rem;
  }
  .hero-copy { order: 1; }
  .hero-art { order: 0; }
  .mascot-frame { max-width: min(300px, 86vw); padding: 0.55rem; }
  .product-banner { grid-template-columns: 1fr; gap: 1.75rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav > a:not(.btn) { display: none; }
  .proof-strip { flex-direction: column; align-items: stretch; }
  .proof-actions { width: 100%; }
}

@media (max-width: 700px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .topbar { padding: 0.85rem 0.9rem; gap: 0.65rem; }
  .hero, .capabilities, .product, .approach, .proof, .footer {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .product-specs { grid-template-columns: 1fr 1fr; }
  .proof-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .proof-actions .btn { width: 100%; }
  .btn-lg { padding: 0.9rem 1.1rem; }
  .mascot-corner-bl, .mascot-corner-br { bottom: 32px; }
  .cap-card { padding: 1.5rem 1.25rem; }
}

@media (min-width: 1280px) {
  :root { --max: 1200px; }
  .hero { gap: 3.5rem 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .cap-card, .mascot-frame, .brand-mark,
  .nav > a:not(.btn), .nav > a:not(.btn)::after,
  .footer-links a::after, .ops-stat {
    transition: none !important;
  }
  .btn:hover, .card:hover, .cap-card:hover, .mascot-frame:hover {
    transform: none !important;
  }
}


/* ANTI-CUTOFF HARDENING — never clip readable copy */
img[alt] { object-fit: contain; }
.brand-mark, .mascot, .footer .brand-mark {
  object-fit: contain !important;
  object-position: center !important;
}
.btn, .brand-text, .eyebrow, .kicker, .mascot-cap, .product-tag, .ops-label, .card-tag, .cap-num {
  text-overflow: clip !important;
  overflow: visible !important;
}
.btn { overflow: visible !important; }

/* Display type: room for ascenders/descenders */
h1, h2, h3 {
  overflow: visible;
  padding-block: 0.06em;
  box-decoration-break: clone;
}
.hero h1, .hero-copy h1 {
  line-height: 1.15 !important;
}
