/* ═══════════════════════════════════════════════════════════════════════════
   Maxim Aegis — Satellite pages chrome (prepare, privacy, terms, a11y, 404)
   Matches flagship index: navy #003060 + gold #c09030, dark-first + light twin
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --surface-950: #050a12;
  --surface-900: #0a1524;
  --surface-800: #0f1f33;
  --navy: #003060;
  --navy-mid: #0a3d6e;
  --gold: #c09030;
  --gold-soft: #d4b76a;
  --gold-deep: #9a7326;
  --text: #eef2f7;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  /* Content links — match index text-aegis-300 / hover:text-white */
  --link: #3d7ab0;
  --link-hover: #ffffff;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-sans: Inter, system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", Inter, system-ui, sans-serif;
  --container: min(1200px, calc(100% - 2rem));
  --nav-h: 4.5rem;
}

@media (min-width: 768px) {
  :root { --container: min(1200px, calc(100% - 3rem)); }
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface-950);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
::selection { background: rgba(192,144,48,.4); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--gold); color: #0a1524; font-weight: 600;
  padding: .75rem 1rem; border-radius: .75rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container-x {
  width: var(--container);
  margin-inline: auto;
}

/* Materials */
.glass {
  background: rgba(10, 21, 36, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}
.clay {
  background: linear-gradient(145deg, rgba(15,31,51,.96), rgba(10,21,36,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 8px 8px 20px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
  border-radius: 1.25rem;
}

/* Buttons — same as flagship */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: .925rem;
  background: linear-gradient(135deg, #d4b76a, #c09030 45%, #9a7326);
  color: #0a1524; border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 28px rgba(192,144,48,.32);
  min-height: 48px; cursor: pointer; transition: transform .25s var(--ease-spring), box-shadow .25s, filter .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(192,144,48,.45);
  filter: brightness(1.05);
}
.btn-primary:focus-visible { outline: 2px solid #d4b76a; outline-offset: 3px; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: .925rem;
  background: rgba(255,255,255,.06); color: #e8eef7;
  border: 1px solid rgba(255,255,255,.14); min-height: 48px; cursor: pointer;
  transition: background .2s, transform .25s var(--ease-spring);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-secondary:focus-visible { outline: 2px solid #d4b76a; outline-offset: 3px; }

/* ── Streamlined satellite nav (identical on every satellite page) ── */
.sat-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: .75rem 0;
  background: rgba(5,10,18,.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sat-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: .7rem 1rem;
}
.sat-nav .logo-img {
  height: 2rem;
  width: auto;
  max-height: 2rem;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 768px) {
  .sat-nav { padding: .7rem 1.2rem; }
  .sat-nav .logo-img { height: 2.15rem; max-height: 2.15rem; }
}
/* Footer logo — never stretch (was missing width:auto) */
.sat-footer-brand {
  display: block;
  margin-bottom: 1rem;
  line-height: 0;
}
.sat-footer-brand .logo-img {
  display: block;
  height: 2rem;
  width: auto !important;
  max-width: 140px;
  max-height: 2rem;
  object-fit: contain;
  object-position: left center;
  opacity: 0.9;
}
.sat-nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 721px) {
  .sat-nav-links { display: flex; }
}
.sat-nav-link {
  color: rgba(232,238,247,.82);
  font-weight: 500;
  font-size: .9rem;
  transition: color .2s;
}
.sat-nav-link:hover,
.sat-nav-link[aria-current="page"] {
  color: #fff;
}
.sat-nav-link[aria-current="page"] {
  color: var(--gold-soft);
}
.sat-nav-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}
.sat-nav-actions .btn-primary { padding: .55rem 1rem; min-height: 42px; font-size: .85rem; }
.sat-nav-actions .btn-secondary { padding: .45rem .75rem; min-height: 40px; font-size: .75rem; }
.sat-nav-phone {
  display: none;
  align-items: center;
  gap: .5rem;
  color: rgba(232,238,247,.82);
  font-weight: 500;
  font-size: .875rem;
  text-decoration: none;
}
.sat-nav-phone svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
@media (min-width: 900px) {
  .sat-nav-phone { display: inline-flex; }
  .sat-nav-phone:hover { color: #fff; }
}

/* Page shell */
.sat-main {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.sat-prose {
  max-width: 42rem;
  margin-inline: auto;
}

/* Legal / content card */
.sat-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.sat-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f1f5f9;
  margin: 0 0 .65rem;
}
.sat-card h1::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-top: .85rem;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), transparent);
  border-radius: 999px;
}
.sat-meta {
  margin: 0 0 1.75rem;
  font-size: .875rem;
  color: var(--text-subtle);
}
.sat-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 1.75rem 0 .65rem;
  letter-spacing: -0.015em;
}
.sat-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: .975rem;
  line-height: 1.7;
}
.sat-card ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: .975rem;
  line-height: 1.65;
}
.sat-card li { margin-bottom: .4rem; }
.sat-card a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sat-card a:hover { color: var(--link-hover); }
.sat-card strong { color: #e2e8f0; font-weight: 600; }
.sat-back {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sat-back a {
  color: var(--link);
  font-weight: 500;
  font-size: .9rem;
  text-decoration: none;
}
.sat-back a:hover { color: var(--link-hover); }

/* 404 */
.sat-404 {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
  /* keep sat-card horizontal padding; only tune vertical rhythm */
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.sat-404 .code {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .75rem;
}
.sat-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}
.sat-404 h1::after { margin-inline: auto; }
.sat-404 p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}
.sat-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* Prepare-specific (guide) */
.guide-hero {
  position: relative;
  padding: 0 0 2.5rem;
  overflow: hidden;
  background: #0a1524; /* fallback under photo */
}
.guide-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a1524;
}
.guide-hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.guide-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}
.guide-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5,10,18,.88) 0%, rgba(5,10,18,.62) 42%, rgba(5,10,18,.35) 70%, rgba(5,10,18,.5) 100%),
    linear-gradient(180deg, rgba(5,10,18,.35) 0%, rgba(5,10,18,.55) 55%, var(--surface-950) 100%);
  pointer-events: none;
}
.guide-hero-inner {
  position: relative;
  z-index: 1;
  /* Full container width (same left edge as nav / sections below) */
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}
/* Single left-aligned stack — measure limited here, not by centering the container */
.guide-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 40rem;
  text-align: left;
}
.guide-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(10, 21, 36, 0.72);
  border: 1px solid rgba(212,183,106,.55);
  color: #f5ecd0;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.guide-rule {
  width: 3rem;
  height: 2px;
  margin: 1.1rem 0 1.15rem;
  flex-shrink: 0;
  background: linear-gradient(90deg, #d4b76a, #c09030, transparent);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(212,183,106,.4);
  opacity: 1;
}
.guide-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 1rem;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #e8eef5 40%, #d4b76a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.guide-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(238, 242, 247, 0.92);
  margin: 0 0 .75rem;
  width: 100%;
  max-width: 36rem;
}
.guide-reassure {
  font-size: .875rem;
  color: rgba(226, 232, 240, 0.88);
  margin: 0;
  width: 100%;
}
.guide-hero .back-link {
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
  margin: 0 0 1.25rem; /* top spacing from guide-hero-inner padding */
  align-self: flex-start;
}
.guide-hero .back-link:hover {
  color: #f5ecd0;
}
.section-pad { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f1f5f9;
  text-align: center;
  margin: 0 0 .75rem;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.section-sub--wide {
  max-width: none;
  width: 100%;
}
.section-surface { background: var(--surface-950); }
.section-surface-alt {
  background: var(--surface-900);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #dbe7f5;
}
.guide-callout {
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: rgba(0,48,96,.28);
  border: 1px solid rgba(192,144,48,.18);
  color: #cbd5e1;
  font-size: .95rem;
  line-height: 1.6;
}
.guide-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-card--featured,
  .guide-card--wide { grid-column: 1 / -1; }
}
.guide-card {
  padding: 1.35rem 1.4rem;
  transition: transform .3s var(--ease-out), border-color .25s, box-shadow .3s;
}
.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(192,144,48,.35);
  box-shadow: 0 16px 36px rgba(0,0,0,.3), 0 0 0 1px rgba(192,144,48,.2);
}
.guide-card--featured {
  background: linear-gradient(145deg, rgba(0,48,96,.4), rgba(10,21,36,.98));
  border-color: rgba(192,144,48,.22);
}
.guide-card-head {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1rem;
}
.guide-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(192,144,48,.25);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.guide-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.guide-card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.guide-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
}
.guide-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.guide-checklist li {
  position: relative;
  padding-left: 1.45rem;
  font-size: .925rem;
  line-height: 1.5;
  color: #cbd5e1;
}
.guide-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: rgba(192,144,48,.25);
  border: 1.5px solid var(--gold);
}
@media (min-width: 768px) {
  .guide-checklist--columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem 1.5rem;
  }
}
.guide-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .guide-steps { grid-template-columns: repeat(3, 1fr); }
}
.guide-step { padding: 1.35rem 1.4rem; }
.guide-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(135deg, #003060, #0a3d6e);
  color: #d4b76a;
  margin-bottom: 1rem;
  border: 1px solid rgba(192,144,48,.35);
  box-shadow: 0 6px 16px rgba(0,48,96,.45);
}
.guide-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 .5rem;
}
.guide-step p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.guide-cta-panel {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, rgba(0,48,96,.4), rgba(10,21,36,.95));
  border: 1px solid rgba(192,144,48,.22);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.guide-cta-eyebrow {
  margin: 0 0 .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.guide-cta-copy {
  margin: 0 auto 1.35rem;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #cbd5e1;
}
.guide-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.guide-cta-disclaimer {
  margin: 0 0 .5rem;
  font-size: .8rem;
  color: var(--text-subtle);
}
.guide-cta-contact {
  margin: 0;
  font-size: .875rem;
  color: var(--text-muted);
}
/* Match index footer / body links (aegis-300 → white) */
.guide-cta-contact a {
  color: var(--link);
  font-weight: 600;
  text-decoration: none;
}
.guide-cta-contact a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.back-link {
  display: inline-flex;
  margin: 1rem 0 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.back-link:hover { color: var(--gold-soft); }

/* Footer — flagship parity */
.sat-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 3rem 0 calc(5.5rem + env(safe-area-inset-bottom));
}
@media (min-width: 721px) {
  .sat-footer { padding-bottom: 3rem; }
}
.sat-footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .sat-footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Link color matches index footer: text-aegis-300 (#3d7ab0) · hover white */
.sat-footer address {
  font-style: normal;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.sat-footer address p { margin: 0 0 .35rem; }
.sat-footer address .name { color: #e2e8f0; font-weight: 500; }
.sat-footer address .license { color: rgba(192, 144, 48, 0.9); } /* text-aegis-gold/90 parity */
.sat-footer address a {
  color: var(--link); /* aegis-300 — same as index footer phone/email */
  text-decoration: none;
}
.sat-footer address a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.sat-footer-legal {
  font-size: .875rem;
  color: var(--text-subtle);
  line-height: 1.6;
}
.sat-footer-legal p { margin: 0 0 .65rem; }
.sat-footer-legal a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sat-footer-legal a:hover { color: var(--link-hover); }
.sat-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
  color: var(--text-subtle);
}
.sat-footer-bottom a {
  color: var(--text-subtle); /* matches index slate-500 bar */
  margin-left: .75rem;
  text-decoration: none;
}
.sat-footer-bottom a:first-child { margin-left: 0; }
.sat-footer-bottom a:hover { color: #fff; }
.sat-footer-bottom a[aria-current="page"] { color: var(--link); }

/* Mobile action bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: none;
  gap: .75rem;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(10,18,32,.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}
/* 720px: mobile bar only; desktop nav links from 721px (no dual chrome) */
.mobile-bar .btn-primary,
.mobile-bar .btn-secondary {
  flex: 1;
  min-height: 48px;
  padding: .75rem 1rem;
}
.mobile-bar .btn-primary { flex: 1.4; }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .btn-primary:hover, .btn-secondary:hover, .guide-card:hover { transform: none; }
}

/* ── Light mode twin ── */
html.light {
  color-scheme: light;
  --surface-950: #f0f4f9;
  --surface-900: #e6edf5;
  --text: #0a1f38;
  --text-muted: #475569;
  --text-subtle: #5a6d85;
  --navy-ink: #0a1f38;
  /* Match index light: navy links, deeper navy hover */
  --link: #003060;
  --link-hover: #0a3d6e;
}
html.light body { background: var(--surface-950); color: var(--text); }
html.light .sat-header {
  background: rgba(240,244,249,.9);
  border-bottom-color: rgba(0,48,96,.1);
}
html.light .sat-nav.glass {
  background: rgba(255,255,255,.92);
  border-color: rgba(0,48,96,.1);
  box-shadow: 0 8px 24px rgba(0,48,96,.06);
}
html.light .sat-nav-link { color: #2c4060; }
html.light .sat-nav-link:hover,
html.light .sat-nav-link[aria-current="page"] { color: var(--navy-ink); }
html.light .sat-nav-link[aria-current="page"] { color: #6b5010; }
html.light .sat-nav-phone { color: #2c4060; }
html.light .btn-primary { color: var(--navy-ink); }
html.light .btn-secondary {
  background: #fff;
  color: var(--navy-ink);
  border-color: rgba(0,48,96,.14);
}
html.light .clay {
  background: linear-gradient(145deg, #fff, #eef3f8);
  border-color: rgba(0,48,96,.1);
  box-shadow: 0 12px 32px rgba(0,48,96,.08);
}
html.light .sat-card h1,
html.light .sat-card h2,
html.light .section-title,
html.light .guide-card-title,
html.light .guide-step h3,
html.light .sat-404 h1 { color: var(--navy-ink); }
html.light .sat-card h1::after {
  background: linear-gradient(90deg, #c09030, #9a7326, transparent);
}
html.light .sat-card p,
html.light .sat-card ul,
html.light .section-sub,
html.light .guide-step p,
html.light .guide-checklist li,
html.light .sat-404 p { color: var(--text-muted); }
html.light .sat-card a,
html.light .guide-cta-contact a,
html.light .sat-back a { color: var(--link); }
html.light .sat-card a:hover,
html.light .guide-cta-contact a:hover,
html.light .sat-back a:hover { color: var(--link-hover); }
html.light .sat-card strong { color: var(--navy-ink); }
html.light .sat-meta,
html.light .back-link { color: var(--text-subtle); }
html.light .sat-back { border-top-color: rgba(0,48,96,.1); }
html.light .back-link:hover { color: var(--link); }
html.light .section-surface { background: var(--surface-950); }
html.light .section-surface-alt {
  background: var(--surface-900);
  border-color: rgba(0,48,96,.08);
}
html.light .trust-pill {
  background: #fff;
  color: #2c4060;
  border-color: rgba(0,48,96,.12);
}
html.light .guide-callout {
  background: #e8eef5;
  border-color: rgba(0,48,96,.12);
  color: var(--text-muted);
}
html.light .guide-cta-panel {
  background: linear-gradient(160deg, #fff, #eef3f8);
  border-color: rgba(192,144,48,.22);
}
html.light .guide-cta-copy { color: var(--text-muted); }
html.light .guide-cta-disclaimer { color: var(--text-subtle); }
html.light .sat-footer {
  border-top-color: rgba(0,48,96,.1);
}
html.light .sat-footer address .name { color: var(--navy-ink); }
html.light .sat-footer address,
html.light .sat-footer-legal { color: var(--text-muted); }
html.light .sat-footer address .license { color: #6b5010; }
/* Light mode: index remaps aegis-300 footer links to navy link */
/* Footer content links inherit --link / --link-hover from base rules */
html.light .sat-footer-bottom {
  border-top-color: rgba(0,48,96,.08);
  color: var(--text-subtle);
}
html.light .sat-footer-bottom a { color: var(--text-muted); }
html.light .sat-footer-bottom a:hover,
html.light .sat-footer-bottom a[aria-current="page"] {
  color: var(--link);
}
html.light .mobile-bar {
  background: rgba(255,255,255,.96);
  border-color: rgba(0,48,96,.1);
}
/* Prepare hero: stay cinematic island in light (do not invert type to navy) */
html.light .guide-hero {
  background: #0a1524;
}
html.light .guide-hero-bg {
  background: #0a1524;
}
html.light .guide-hero-bg img {
  opacity: .48;
}
html.light .guide-hero-bg::after {
  background:
    linear-gradient(105deg, rgba(5,10,18,.9) 0%, rgba(5,10,18,.68) 40%, rgba(5,10,18,.4) 68%, rgba(5,10,18,.55) 100%),
    linear-gradient(180deg, rgba(5,10,18,.4) 0%, rgba(5,10,18,.62) 50%, var(--surface-950) 100%);
}
html.light .guide-h1 {
  background: linear-gradient(135deg, #ffffff 0%, #e8eef5 40%, #d4b76a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
html.light .guide-lead {
  color: rgba(248, 250, 252, 0.95) !important;
}
html.light .guide-reassure {
  color: rgba(226, 232, 240, 0.9) !important;
}
html.light .guide-badge {
  background: rgba(10, 21, 36, 0.78) !important;
  border-color: rgba(212, 183, 106, 0.6) !important;
  color: #f5ecd0 !important;
}
html.light .guide-hero .back-link {
  color: rgba(248, 250, 252, 0.92) !important;
}
html.light .guide-hero .back-link:hover {
  color: #f5ecd0 !important;
}
/* Trust pills under hero sit on page surface — keep light readable pills */
html.light .logo-for-dark { display: none !important; }
html.light .logo-for-light { display: block !important; }
html.light .sat-nav .logo-for-dark { display: none !important; }
html.light .sat-nav .logo-for-light { display: block !important; }

.hidden { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.shrink-0 { flex-shrink: 0; }
.relative { position: relative; }
.z-10 { z-index: 10; }
