/* ============================================================
   Argus Artificial Superintelligence — Light Theme
   For: argus-asi.systems landing page
   Aesthetic: Stripe / Anthropic / Vercel / Linear quality bar
   ============================================================ */

:root {
  --argus-paper:       #FFFFFF;
  --argus-paper-2:     #FAFAF8;
  --argus-paper-3:     #F2F2EE;
  --argus-ink:         #0A1428;
  --argus-ink-2:       #1A2540;
  --argus-ink-mute:    #5A627A;
  --argus-ink-faint:   #9CA3AF;
  --argus-line:        rgba(10, 20, 40, 0.08);
  --argus-line-strong: rgba(10, 20, 40, 0.16);
  --argus-cyan:        #0891B2;       /* desaturated for white bg */
  --argus-cyan-soft:   #67E8F9;
  --argus-cyan-glow:   rgba(34, 211, 238, 0.10);
  --argus-gold:        #B8860B;       /* deeper for white bg */
  --argus-gold-soft:   #D4AF37;

  --font-display: "Space Grotesk", "Inter", -apple-system, system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", "Menlo", monospace;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--argus-paper);
  color: var(--argus-ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body { font-size: 17px; line-height: 1.55; letter-spacing: -0.005em; }

a { color: var(--argus-ink); text-decoration: none; }
a:hover { color: var(--argus-cyan); }

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

.mono { font-family: var(--font-mono); letter-spacing: 0.01em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--argus-cyan);
}
.muted { color: var(--argus-ink-mute); }
.faint { color: var(--argus-ink-faint); }
.gold { color: var(--argus-gold); }
.cyan { color: var(--argus-cyan); }

/* ============================================================
   Top nav (sticky, glass-blur)
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--easing), background .25s var(--easing);
}

.nav.scrolled {
  border-bottom-color: var(--argus-line);
  background: rgba(255, 255, 255, 0.88);
}

.nav .brand {
  display: flex; align-items: center; gap: 10px;
}

.nav .brand img {
  width: 28px; height: 28px;
}

.nav .brand .word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--argus-ink);
}

.nav .links {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .nav .links { gap: 16px; }
  .nav .domain { display: none; }
}

.nav .links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--argus-ink-mute);
  letter-spacing: 0.005em;
  transition: color .2s var(--easing);
}
.nav .links a:hover { color: var(--argus-ink); }

.nav .domain {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--argus-ink-faint);
}

@media (max-width: 720px) {
  .nav { padding: 14px 22px; }
  .nav .links { gap: 16px; }
  .nav .domain { display: none; }
}

/* ============================================================
   Section primitives
   ============================================================ */

section {
  position: relative;
  padding: 120px 40px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.section-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--argus-ink);
  margin: 0 0 28px;
  max-width: 18ch;
}

.section-lead {
  font-size: 1.18rem;
  color: var(--argus-ink-mute);
  max-width: 56ch;
  margin: 0 0 48px;
  line-height: 1.55;
}

/* ============================================================
   1 · HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
  background: var(--argus-paper);
}

.hero-eye {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-art.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: 0.32;
  filter: grayscale(0.35);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero-eye { background-position: center; opacity: 0.22; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, var(--argus-cyan-glow), transparent 65%),
    radial-gradient(ellipse 30% 40% at 75% 50%, rgba(184, 134, 11, 0.06), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .eyebrow { display: block; margin-bottom: 28px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--argus-ink);
  margin: 0 0 8px;
}

.hero h1 .asi {
  display: block;
  color: var(--argus-cyan);
  font-weight: 500;
  font-size: 0.5em;
  letter-spacing: -0.005em;
  margin-top: 8px;
}

.hero .tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--argus-ink-mute);
  margin: 24px 0 36px;
  max-width: 22ch;
  line-height: 1.35;
}

.hero .meta-line {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--argus-ink-mute);
  margin-bottom: 32px;
}

.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  border: 1px solid var(--argus-line-strong);
  background: transparent;
  color: var(--argus-ink);
  cursor: pointer;
  transition: transform .2s var(--easing), background .2s var(--easing), border-color .2s var(--easing);
}

.btn .arrow { transition: transform .2s var(--easing); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--argus-ink);
  color: var(--argus-paper);
  border-color: var(--argus-ink);
}
.btn-primary:hover { background: var(--argus-ink-2); transform: translateY(-1px); }

.btn-ghost:hover { border-color: var(--argus-ink); }


/* ============================================================
   Mission strip
   ============================================================ */

.mission {
  text-align: center;
  padding: 100px 40px;
  background: var(--argus-paper-2);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/texture-geometry.png");
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.mission-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.mission-clusters {
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
  padding: 0 6%;
}
.mission-clusters span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--argus-cyan);
  opacity: 0.65;
  text-align: center;
}
@media (max-width: 720px) { .mission-clusters { display: none; } }

.mission .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Soft white halo behind the lede so the text always reads cleanly
   on top of the grey DFG without hiding the background entirely. */
.mission .container::before {
  content: "";
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(ellipse at center,
    rgba(250, 250, 248, 0.92) 0%,
    rgba(250, 250, 248, 0.78) 45%,
    rgba(250, 250, 248, 0) 80%);
  z-index: -1;
  pointer-events: none;
}

.mission .eyebrow { display: block; margin-bottom: 24px; }

.mission p.lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.4;
  color: var(--argus-ink);
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   What we do — three cards
   ============================================================ */

.dpp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 800px) { .dpp-grid { grid-template-columns: 1fr; } }

.dpp-card {
  border: 1px solid var(--argus-line);
  border-radius: 18px;
  padding: 32px 28px;
  background: var(--argus-paper);
  transition: border-color .25s var(--easing), transform .25s var(--easing);
}

.dpp-card:hover {
  border-color: var(--argus-cyan);
  transform: translateY(-3px);
}

.dpp-card .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--argus-cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.dpp-card .nm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--argus-ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.dpp-card .desc {
  font-size: 15px;
  color: var(--argus-ink-mute);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   Numbers band
   ============================================================ */

.numbers {
  background: var(--argus-paper);
  border-top: 1px solid var(--argus-line);
  border-bottom: 1px solid var(--argus-line);
  padding: 80px 40px;
}

.numbers-sub {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--argus-ink-mute);
  max-width: 56ch;
  margin: 0 0 12px;
  line-height: 1.45;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
  max-width: 1080px;
}

@media (max-width: 960px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 560px) { .numbers-grid { grid-template-columns: 1fr; gap: 20px; } }

.num-card {
  border-left: 2px solid var(--argus-cyan);
  padding: 4px 0 4px 22px;
}
.num-card .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--argus-gold);
  line-height: 1;
}
.num-card .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--argus-cyan);
  text-transform: uppercase;
  margin-top: 12px;
}
.num-card .sub {
  font-size: 14px;
  color: var(--argus-ink-mute);
  margin-top: 8px;
}

.numbers-foot {
  margin-top: 32px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--argus-ink-mute);
}

.numbers-headtohead {
  margin-top: 40px;
  border-left: 2px solid var(--argus-cyan);
  padding: 4px 0 4px 22px;
  max-width: 86ch;
}
.numbers-headtohead p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--argus-ink-2);
  font-style: italic;
  margin: 0;
}
.numbers-headtohead p strong {
  color: var(--argus-ink);
  font-weight: 600;
  font-style: normal;
}

/* ============================================================
   Manifesto
   ============================================================ */

.manifesto {
  background: var(--argus-paper);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.manifesto-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.manifesto .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.manifesto .eyebrow { display: block; margin-bottom: 28px; }

.manifesto h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--argus-ink);
  margin: 0 0 36px;
  max-width: 22ch;
}

.manifesto p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--argus-ink-2);
  margin: 0 0 22px;
}

.manifesto p strong {
  color: var(--argus-ink);
  font-weight: 600;
}

/* ============================================================
   Coverage marquee
   ============================================================ */

.coverage {
  background: var(--argus-paper);
  padding: 60px 0;
  border-top: 1px solid var(--argus-line);
  border-bottom: 1px solid var(--argus-line);
  overflow: hidden;
}

.cov-marquee {
  display: flex;
  gap: 56px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-weight: 400;
  color: var(--argus-ink-faint);
  letter-spacing: -0.005em;
  white-space: nowrap;
  animation: scroll-marquee 36s linear infinite;
}

.cov-marquee .dot { color: var(--argus-cyan); }
.cov-marquee .item:hover { color: var(--argus-ink); }

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Operating model line
   ============================================================ */

.opmodel {
  background: var(--argus-paper-2);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.opmodel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/texture-network.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}

.opmodel .container {
  z-index: 1;
  max-width: 820px;
}

.opmodel h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--argus-ink);
  margin: 0 0 16px;
}

.opmodel .sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--argus-cyan);
}

/* ============================================================
   Contact
   ============================================================ */

.contact {
  background: var(--argus-paper);
  padding: 120px 40px;
}

.contact .container {
  max-width: 760px;
  text-align: center;
}

.contact .eyebrow { display: block; margin-bottom: 22px; }

.contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--argus-ink);
  line-height: 1.05;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.contact .lead {
  font-size: 1.1rem;
  color: var(--argus-ink-mute);
  margin: 0 auto 36px;
  max-width: 50ch;
}

.contact .cta-mail {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 18px;
  padding: 16px 28px;
  border: 1px solid var(--argus-ink);
  border-radius: 999px;
  color: var(--argus-ink);
  letter-spacing: 0.04em;
  transition: background .2s var(--easing), color .2s var(--easing);
}
.contact .cta-mail:hover { background: var(--argus-ink); color: var(--argus-paper); }

/* ============================================================
   Subscription tier strip (between manifesto and contact)
   ============================================================ */

.tiers {
  background: var(--argus-paper);
  padding: 80px 40px;
  border-top: 1px solid var(--argus-line);
}

.tiers .container { max-width: 1080px; }
.tiers .eyebrow { display: block; margin-bottom: 22px; }

.tiers h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: var(--argus-ink);
  max-width: 22ch;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .tier-grid { grid-template-columns: 1fr; } }

.tier {
  border: 1px solid var(--argus-line);
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--argus-paper-2);
  transition: border-color .25s var(--easing), transform .25s var(--easing);
}
.tier:hover { border-color: var(--argus-cyan); transform: translateY(-2px); }

.tier .tier-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--argus-cyan);
  margin: 0 0 12px;
}
.tier .tier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--argus-ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.tier .tier-desc {
  font-size: 14.5px;
  color: var(--argus-ink-mute);
  line-height: 1.5;
  margin: 0 0 18px;
}

.tier .tier-spec {
  margin: 18px 0 0;
  padding: 14px 0 0;
  border-top: 1px dotted var(--argus-line-strong);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier .tier-spec > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: baseline;
}
.tier .tier-spec dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--argus-cyan);
  margin: 0;
}
.tier .tier-spec dd {
  margin: 0;
  font-size: 13px;
  color: var(--argus-ink-2);
  line-height: 1.4;
}

.tiers-foot {
  margin-top: 28px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--argus-ink-mute);
  max-width: 70ch;
}
.tiers-foot strong {
  color: var(--argus-ink);
  font-weight: 600;
  font-style: normal;
}

/* ============================================================
   Standards & Compliance strip
   ============================================================ */

.standards {
  background: var(--argus-paper-2);
  padding: 100px 40px;
  border-top: 1px solid var(--argus-line);
  border-bottom: 1px solid var(--argus-line);
}

.standards .container { max-width: 1180px; }
.standards .eyebrow { display: block; margin-bottom: 22px; }

.std-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 960px) { .std-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .std-grid { grid-template-columns: 1fr; } }

.std-lane {
  border-top: 2px solid var(--argus-cyan);
  padding-top: 18px;
}

.std-lane .std-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--argus-cyan);
  margin: 0 0 14px;
}

.std-lane .std-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.std-lane .std-list li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--argus-ink);
  line-height: 1.55;
  letter-spacing: -0.005em;
  padding: 4px 0;
  border-bottom: 1px dotted var(--argus-line);
}
.std-lane .std-list li:last-child { border-bottom: none; }

/* ============================================================
   The new adversary
   ============================================================ */

.adversary {
  background: var(--argus-paper-2);
  padding: 100px 40px;
  border-top: 1px solid var(--argus-line);
  border-bottom: 1px solid var(--argus-line);
  position: relative;
  overflow: hidden;
}

.adversary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/texture-network.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.adversary-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Wide elliptical mask so the entire two-hemisphere brain footprint
     (and its lens-displaced particles) stays visible, with a feathered
     fade so the cloud blends naturally into the section background. */
  -webkit-mask-image: radial-gradient(
    ellipse 55% 85% at 50% 55%,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0) 95%
  );
          mask-image: radial-gradient(
    ellipse 55% 85% at 50% 55%,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0) 95%
  );
  opacity: 0.95;
}

.adversary .container { z-index: 1; }
.adversary .eyebrow { display: block; margin-bottom: 22px; }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 800px) { .adv-grid { grid-template-columns: 1fr; } }

.adv-card {
  border: 1px solid var(--argus-line);
  border-radius: 18px;
  padding: 32px 28px;
  background: var(--argus-paper);
  transition: border-color .25s var(--easing), transform .25s var(--easing);
}
.adv-card:hover { border-color: var(--argus-cyan); transform: translateY(-3px); }

.adv-card .adv-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--argus-cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.adv-card .adv-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--argus-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.adv-card .adv-desc {
  font-size: 15px;
  color: var(--argus-ink-mute);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   Footer
   ============================================================ */

footer.foot {
  background: var(--argus-paper);
  border-top: 1px solid var(--argus-line);
  padding: 36px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--argus-ink-mute);
}

.foot-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-tagline {
  font-style: italic;
  color: var(--argus-ink-mute);
}

.foot-meta {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--argus-ink-faint);
}

/* ============================================================
   Reveal-on-scroll helpers
   ============================================================ */

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--easing), transform .9s var(--easing);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Per-word scroll-paced reveal (used by Mission lede). */
.reveal-words .word {
  display: inline-block;
  opacity: 0.08;
  transform: translateY(8px);
  will-change: opacity, transform;
}
.reveal-words .word.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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