/* ──────────────────────────────────────────────────────────────
   Muninn — landing / public pages
   Theme: "mythic mode" — raven-black + wheat-gold + frost-teal
   Typography: Sora (body) · Space Mono (labels/stats) · Major Mono Display (logo)
   ────────────────────────────────────────────────────────────── */
:root {
  /* base (darker, warmer-neutral) */
  --bg: #0a0d13;
  --bg2: #121823;
  --bg3: #1a2230;
  --border: #2a3448;
  --border-warm: #3a2f1f;

  /* mythic primary + semantic colors */
  --gold: #d4a84a;       /* primary — wheat-gold / bronze */
  --gold-soft: #e8c67a;  /* hover / lighter */
  --gold-deep: #8f6f2a;  /* muted rule lines */
  --frost: #7fe5d6;      /* secondary — cold teal (kept subtle) */
  --sky: #3b8bff;        /* info blue (airspace, weather) */
  --warn: #f5a623;
  --danger: #e04f5f;

  /* text */
  --text: #e8ecf4;
  --text2: #8a98b5;

  /* backward-compat aliases — existing class rules reference --accent/--accent2 */
  --accent: var(--gold);
  --accent2: var(--sky);

  /* type */
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Sora', system-ui, sans-serif;
  --font-display: 'Major Mono Display', monospace;

  --radius: 6px;
  --max-w: 1120px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

/* ── Nav ── */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 1000;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.landing-nav.scrolled {
  background: rgba(10, 13, 19, .82);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .sigil {
  width: 22px; height: 22px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(212, 168, 74, .25));
}
.nav-center {
  display: flex;
  gap: 24px;
  margin-left: 40px;
}
.nav-center a {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
}
.nav-center a:hover { color: var(--text); }
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s, box-shadow .2s, background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: .95; }
.btn:active { transform: scale(.98); }
.btn--primary {
  background: var(--gold);
  color: #18130a;
  font-weight: 600;
  box-shadow: 0 0 0 0 rgba(212, 168, 74, 0);
}
.btn--primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 0 28px 0 rgba(212, 168, 74, .18);
}
.btn--ghost { background: transparent; color: var(--text2); border: 1px solid var(--border); }
.btn--ghost:hover { color: var(--text); border-color: var(--gold); }
.btn--lg { padding: 13px 30px; font-size: 15px; font-weight: 600; }
.btn--sm { padding: 6px 14px; font-size: 13px; }
.btn--full { width: 100%; }

/* ── Section Basics ── */
.section {
  padding: 80px 24px;
  position: relative;
}
.section--alt { background: var(--bg2); }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  color: var(--text2);
  font-size: 16px;
  max-width: 580px;
  line-height: 1.65;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Runic divider ── */
.runic-divider {
  max-width: 280px;
  margin: 0 auto;
  padding: 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.runic-divider::before,
.runic-divider::after {
  content: '';
  flex: 1 1 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-deep) 50%, transparent 100%);
}
.runic-divider .runes {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.5em;
  opacity: .8;
  /* slight glow */
  text-shadow: 0 0 8px rgba(212, 168, 74, .25);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ── Hero — split variant (copy left, live map right) ── */
.hero--split {
  text-align: left;
  padding: 96px 32px 80px;
  align-items: center;
}
.hero-split-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.hero-copy {
  max-width: 560px;
}
.hero--split .hero-eyebrow { margin-bottom: 24px; }
.hero--split .hero-title {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero--split .hero-subtitle {
  margin: 0 0 32px;
  max-width: 520px;
}
.hero--split .hero-ctas { justify-content: flex-start; }
.hero--split .hero-badge { margin-top: 22px; }

/* Live demo map frame — right column */
.hero-demo {
  position: relative;
  min-width: 0;
}
.hero-demo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 168, 74, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  isolation: isolate;
  background: #0a0d13;
}
.hero-demo-map {
  position: absolute;
  inset: 0;
  background: #0a0d13;
}
/* Soft vignette over the map so floating chips read clearly */
.hero-demo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 50%, rgba(10, 13, 19, 0.55) 100%),
    linear-gradient(180deg, transparent 60%, rgba(10, 13, 19, 0.65) 100%);
  pointer-events: none;
  z-index: 400;
}

/* Leaflet chrome cleanup inside the hero frame */
.hero-demo-map .leaflet-control-attribution {
  background: rgba(10, 13, 19, 0.6) !important;
  color: var(--text2) !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
  border-radius: 4px 0 0 0;
}
.hero-demo-map .leaflet-control-attribution a { color: var(--text2); }

.hero-demo-tip {
  background: rgba(18, 21, 29, 0.92) !important;
  color: var(--gold) !important;
  border: 1px solid var(--border-warm) !important;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Floating chips over the map */
.hero-demo-chip {
  position: absolute;
  z-index: 500;
  background: rgba(18, 21, 29, 0.86);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  pointer-events: none;
  animation: heroChipIn 0.7s var(--dur-mid, 0.25s) ease both;
}
.hero-demo-chip .chip-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 4px;
}
.hero-demo-chip .chip-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-demo-chip .chip-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text2);
}
.hero-demo-chip .chip-stats strong {
  color: var(--text);
  font-weight: 700;
  margin-right: 2px;
}
.hero-demo-chip--mission {
  left: 14px;
  bottom: 56px;
  max-width: 60%;
  animation-delay: 1.0s;
}
.hero-demo-chip--dock {
  right: 14px;
  top: 14px;
  width: 170px;
}
.hero-demo-chip--dock .chip-row {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.hero-demo-chip--dock .chip-row--split {
  grid-template-columns: 1fr 1fr;
}
.hero-demo-chip--dock .chip-pill {
  flex: 1;
  text-align: center;
  padding: 5px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text2);
}
.hero-demo-chip--dock .chip-pill--accent {
  background: rgba(212, 168, 74, 0.14);
  border-color: var(--gold);
  color: var(--gold);
}
.hero-demo-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  z-index: 500;
  text-align: center;
  font-size: 11px;
  color: var(--text2);
  line-height: 1.45;
  pointer-events: none;
}
.hero-demo-cap em { color: var(--gold); font-style: normal; font-weight: 600; }

@keyframes heroChipIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero--split .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero--split .hero-ctas { justify-content: center; }
  .hero-demo-frame { aspect-ratio: 16 / 10; max-width: 700px; margin: 0 auto; }
  .hero-demo-chip--mission { max-width: 50%; }
}
@media (max-width: 640px) {
  .hero--split { padding-top: 84px; padding-bottom: 48px; }
  .hero-demo-chip--dock { width: 140px; padding: 8px 10px; }
  .hero-demo-chip--mission { bottom: 48px; max-width: calc(100% - 28px); }
  .hero-demo-chip--mission .chip-stats { font-size: 10px; }
}
/* gold + frost aurora */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 420px at 50% 40%, rgba(212, 168, 74, .10) 0%, transparent 70%),
    radial-gradient(ellipse 500px 320px at 22% 65%, rgba(127, 229, 214, .05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 280px at 82% 60%, rgba(59, 139, 255, .05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -2;
}
/* topographic contour overlay (very subtle) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='640' height='640' viewBox='0 0 640 640'><g fill='none' stroke='%23d4a84a' stroke-width='0.7' opacity='0.12'><path d='M-50 300 Q 120 180 320 270 T 700 240'/><path d='M-50 360 Q 160 250 340 330 T 700 320'/><path d='M-50 420 Q 180 320 360 400 T 700 400'/><path d='M-50 480 Q 200 400 380 470 T 700 480'/><path d='M-50 540 Q 220 470 400 540 T 700 560'/><path d='M100 100 Q 260 60 400 140 T 680 120'/><path d='M80 150 Q 240 120 400 200 T 680 180'/></g></svg>");
  background-size: 640px 640px;
  background-position: center;
  pointer-events: none;
  opacity: .45;
  z-index: -1;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
/* star field — canvas positioned behind content */
.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
  margin-bottom: 22px;
  padding: 5px 12px;
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  background: rgba(212, 168, 74, .05);
}
.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.hero-title .highlight {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 168, 74, .25);
}
.hero-subtitle {
  color: var(--text2);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text2);
}
.hero-badge strong { color: var(--gold); font-weight: 600; }

/* ── Demo strip ── */
.demo-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(212, 168, 74, .04);
}
.demo-frame > video,
.demo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 35% 40%, rgba(212, 168, 74, .10), transparent 60%),
    radial-gradient(circle at 75% 65%, rgba(59, 139, 255, .08), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, .012) 18px 19px);
  color: var(--text2);
  text-align: center;
  padding: 32px;
}
.demo-placeholder .demo-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
}
.demo-placeholder .demo-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.demo-placeholder .demo-sub {
  font-size: 13px;
  max-width: 340px;
  line-height: 1.5;
}
.demo-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: .35;
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 168, 74, .10);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-icon--frost { background: rgba(127, 229, 214, .08); color: var(--frost); }
.feature-icon--sky { background: rgba(59, 139, 255, .08); color: var(--sky); }
.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}
.feature-card .coming-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warn);
  background: rgba(245, 166, 35, .08);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}
.feature-tier {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.feature-tier--free     { color: var(--frost); background: rgba(127, 229, 214, .10); }
.feature-tier--hobbyist { color: var(--gold);  background: rgba(212, 168, 74, .12); }
.feature-tier--pro      { color: var(--sky);   background: rgba(59, 139, 255, .12); }

/* ── Mission Types tabs ── */
.mission-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.mission-tab {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.mission-tab:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.mission-tab .m-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 74, .08);
  border-radius: 50%;
}
.mission-tab .m-icon svg { width: 28px; height: 28px; }
.mission-tab h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mission-tab p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* ── Capabilities deep-dive ── */
.caps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.caps-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.caps-visual {
  height: 140px;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caps-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.caps-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* Capabilities visual — terrain cross-section */
.caps-terrain-svg {
  width: 100%;
  height: 100%;
  padding: 12px;
}

/* Capabilities visual — airspace verdict pill stack */
.verdict-stack {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
  width: 100%;
}
.verdict {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.verdict::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
}
.verdict--fly { background: rgba(59, 139, 255, .12); color: #78b2ff; }
.verdict--fly::before { background: #78b2ff; }
.verdict--auth { background: rgba(245, 166, 35, .12); color: var(--warn); }
.verdict--auth::before { background: var(--warn); }
.verdict--nofly { background: rgba(224, 79, 95, .12); color: var(--danger); }
.verdict--nofly::before { background: var(--danger); }

/* Capabilities visual — GSD number */
.gsd-bignumber {
  font-family: var(--font-mono);
  text-align: center;
  color: var(--gold);
}
.gsd-bignumber .num {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.gsd-bignumber .unit {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text2);
  margin-top: 6px;
}
.gsd-bignumber .formula {
  font-size: 10px;
  color: var(--text2);
  margin-top: 8px;
  letter-spacing: 0.08em;
  opacity: .7;
}

/* ── Cloud Processing ── */
.cloud-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.cloud-text .section-title { margin-bottom: 20px; }
.cloud-lede {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cloud-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cloud-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cloud-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 168, 74, .14);
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cloud-step strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
}
.cloud-step p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
}
.cloud-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 80px;
}
.cloud-card-header {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cloud-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 16px;
}
.cloud-table th {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  text-align: left;
  padding: 8px 4px;
  border-bottom: 1px solid var(--border);
}
.cloud-table th:last-child { text-align: right; }
.cloud-table td {
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
}
.cloud-table td:last-child { text-align: right; }
.cloud-table tr:last-child td { border-bottom: none; }
.cloud-price {
  font-family: var(--font-mono);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.cloud-note {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(212, 168, 74, .06);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
  margin-bottom: 16px;
}
.cloud-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cloud-features li {
  font-size: 13px;
  color: var(--text2);
  padding-left: 20px;
  position: relative;
}
.cloud-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Supported Drones ── */
.drone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.drone-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  transition: border-color .2s, transform .15s;
}
.drone-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.drone-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 74, .1);
  padding: 3px 8px;
  border-radius: 10px;
}
.drone-tag--bridge {
  color: var(--frost);
  background: rgba(127, 229, 214, .08);
}
.drone-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  padding-right: 70px;
}
.drone-card p {
  font-size: 12px;
  color: var(--text2);
}
.drone-disclaimer {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}
.drone-disclaimer strong { color: var(--warn); }

/* Standalone /drones page table */
.drones-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg3);
}
.drones-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.drones-table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.drones-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
}
.drones-table tbody tr:last-child td { border-bottom: none; }
.drones-table tbody tr:hover { background: rgba(212, 168, 74, .03); }
.drones-table .drone-class-row td {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg2);
  padding: 10px 16px;
}
.drones-table .num { font-family: var(--font-mono); color: var(--text2); white-space: nowrap; }
.drones-table .cams { color: var(--text2); font-size: 12px; }

/* ── Pricing ── */
.pricing-hero {
  padding: 120px 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 500px 300px at 50% 30%, rgba(212, 168, 74, .08) 0%, transparent 70%);
}
.pricing-hero-title {
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.pricing-hero-subtitle {
  font-size: 16px;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
.pricing-hero-subtitle strong { color: var(--gold); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg3);
}
.plan-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.plan-compare thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  padding: 18px 16px;
  border-bottom: 2px solid var(--border);
  background: var(--bg2);
}
.plan-compare thead th:first-child {
  text-align: left;
  color: var(--text2);
}
.plan-compare .th-price {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 400;
  color: var(--text2);
  text-transform: none;
  letter-spacing: 0;
}
.plan-compare .th-featured {
  color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 168, 74, .12) 0%, var(--bg2) 100%);
}
.plan-compare tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  font-size: 13px;
}
.plan-compare tbody td:not(:first-child) { text-align: center; }
.plan-compare tbody td:first-child { color: var(--text); }
.plan-compare tbody tr:last-child td { border-bottom: none; }
.plan-compare .group-row td {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg2);
  padding: 12px 16px;
  text-align: left !important;
  border-bottom: 1px solid var(--border);
}
.plan-compare .check {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}
.plan-compare .cross {
  color: var(--text2);
  opacity: .5;
  font-size: 14px;
}
.plan-compare .muted { color: var(--text2); opacity: .6; }
.plan-compare strong { color: var(--text); }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--gold);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  margin: 0;
}
.faq-item p strong { color: var(--text); }

/* ── Pricing Strip (landing teaser) ── */
.pricing-strip-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.price-tile {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s, transform .15s;
}
.price-tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.price-tile--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 168, 74, .1) 0%, var(--bg3) 50%);
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  border-top: 2px dashed var(--border);
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.step p {
  font-size: 13px;
  color: var(--text2);
  max-width: 240px;
  margin: 0 auto;
}

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.price-card:hover { border-color: var(--gold); }
.price-card--featured {
  border-color: var(--gold);
  position: relative;
}
.price-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #18130a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-amount .currency { font-size: 20px; color: var(--text2); }
.price-period { font-size: 13px; color: var(--text2); margin-bottom: 20px; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.price-features li {
  font-size: 13px;
  color: var(--text2);
  padding-left: 20px;
  position: relative;
}
.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Trust Row ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
}
.trust-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.trust-card p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.55;
}

/* ── Founder Note ── */
.founder-note {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.founder-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
}
.founder-quote p + p { margin-top: 14px; }
.founder-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.founder-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 168, 74, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold);
}
.founder-name { font-size: 14px; font-weight: 600; color: var(--text); }
.founder-role { font-size: 12px; color: var(--text2); }

/* ── Safety Banner ── */
.safety-banner {
  background: linear-gradient(180deg, rgba(212, 168, 74, .06), transparent);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 22px 28px;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
}
.safety-banner .s-icon { flex-shrink: 0; color: var(--gold); }
.safety-banner h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.safety-banner p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
}
.safety-banner p strong { color: var(--text); }

/* ── Contact page ── */
.contact-page {
  padding: 120px 24px 80px;
}
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.contact-card .contact-email {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--gold);
  padding: 12px 18px;
  background: rgba(212, 168, 74, .08);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin: 18px 0;
}

/* ── Reveal-on-scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Footer ── */
.landing-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { font-size: 18px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text2);
  margin-top: 10px;
  max-width: 280px;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 13px;
  color: var(--text2);
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclaimer {
  font-size: 11px;
  opacity: .7;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}
.footer-muninn-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: .8;
}

/* ── Responsive ── */
@media (max-width: 1180px) {
  .mission-tabs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-center { display: none; }
  .cloud-split { grid-template-columns: 1fr; gap: 32px; }
  .cloud-card { position: static; }
  .pricing-strip-big { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .mission-tabs { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .drone-grid { grid-template-columns: repeat(2, 1fr); }
  .caps-row { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 16px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .safety-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-strip-big { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .drone-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mission-tabs { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .starfield { display: none; }
}

/* ── Auth Pages (login / register) ─────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 50% 15%, rgba(212, 168, 74, 0.09), transparent 60%),
    radial-gradient(500px 320px at 30% 95%, rgba(127, 229, 214, 0.05), transparent 60%);
  pointer-events: none;
}
.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.auth-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s, transform .1s;
}
.auth-logo:hover { color: var(--gold-soft); }
.auth-logo:active { transform: scale(.98); }
.auth-logo .sigil { width: 22px; height: 22px; color: var(--gold); }
.auth-card .input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.auth-card .input::placeholder { color: var(--text2); opacity: .65; }
.auth-card .input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 74, 0.18);
}
.auth-card form { display: flex; flex-direction: column; gap: 10px; }
.auth-switch {
  font-size: 13px;
  color: var(--text2);
  text-align: center;
  margin-top: 4px;
}
.auth-switch a { color: var(--gold); font-weight: 500; }
.auth-switch a:hover { color: var(--gold-soft); text-decoration: underline; }

.pw-strength { margin-top: 2px; }
.pw-strength-track {
  width: 100%;
  height: 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.pw-strength-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width .3s, background .3s;
}
.pw-strength-label {
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.auth-card .flash {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left-width: 3px;
  line-height: 1.4;
}
.auth-card .flash--error   { color: var(--danger); border-left-color: var(--danger); background: rgba(224, 79, 95, 0.06); }
.auth-card .flash--success { color: var(--gold);   border-left-color: var(--gold);   background: rgba(212, 168, 74, 0.07); }
.auth-card .flash--warn    { color: var(--warn);   border-left-color: var(--warn);   background: rgba(245, 166, 35, 0.07); }
.auth-card .flash--info    { color: var(--frost);  border-left-color: var(--frost);  background: rgba(127, 229, 214, 0.05); }

/* ──────────────────────────────────────────────────────────────
   Nav — Solutions dropdown
   ────────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-trigger:hover { color: var(--text); }
.nav-dropdown-trigger svg { transition: transform .2s; }
.nav-dropdown-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(680px, 92vw);
  background: rgba(10, 13, 19, .96);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .8);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .15s, transform .15s, visibility 0s .15s;
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .15s, transform .15s;
}
.nav-dropdown-all {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.nav-dropdown-grid a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
  transition: background .15s;
}
.nav-dropdown-grid a:hover { background: rgba(212, 168, 74, .08); }
.nav-dropdown-grid .dd-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.nav-dropdown-grid .dd-blurb {
  display: block;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .nav-dropdown-menu { width: 92vw; padding: 14px; }
  .nav-dropdown-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   Use-case pages
   ────────────────────────────────────────────────────────────── */
.uc-hero {
  padding: 140px 24px 60px;
  background:
    radial-gradient(ellipse at top, rgba(212, 168, 74, .08), transparent 60%),
    var(--bg);
  position: relative;
}
.uc-hero .section-inner { max-width: 880px; }

.uc-breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.uc-breadcrumb a { color: var(--text2); }
.uc-breadcrumb a:hover { color: var(--gold); }
.uc-breadcrumb span { color: var(--border); margin: 0 8px; }
.uc-breadcrumb [aria-current="page"] { color: var(--gold); margin: 0; }

.uc-h1 {
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 10px 0 20px;
}
.uc-lede {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 680px;
}

.uc-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.uc-benefit {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.uc-benefit h3 {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: -0.005em;
}
.uc-benefit p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

.uc-cheatsheet {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.uc-cs-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 14px 22px;
  border-top: 1px solid var(--border);
}
.uc-cs-row:first-child { border-top: none; }
.uc-cs-key {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: center;
}
.uc-cs-val {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .uc-cs-row { grid-template-columns: 1fr; gap: 4px; }
}

.uc-workflow {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uc-workflow li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
}
.uc-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #18130a;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.uc-step-body {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
}

.uc-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.uc-related-card {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.uc-related-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(212, 168, 74, .15);
  color: var(--text);
}
.uc-related-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 168, 74, .1);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.uc-related-icon svg { width: 20px; height: 20px; }
.uc-related-card h3 {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.uc-related-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* ──────────────────────────────────────────────────────────────
   Solutions hub grid
   ────────────────────────────────────────────────────────────── */
.uc-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.uc-hub-card {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.uc-hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(212, 168, 74, .18);
  color: var(--text);
}
.uc-hub-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 168, 74, .1);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.uc-hub-icon svg { width: 24px; height: 24px; }
.uc-hub-mission {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--frost);
  margin-bottom: 8px;
}
.uc-hub-card h3 {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.uc-hub-blurb {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: 18px;
}
.uc-hub-arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ── Pricing: bundle advantage callout ── */
.bundle-callout {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  background: linear-gradient(135deg, rgba(212, 168, 74, .06), rgba(127, 229, 214, .04));
  border: 1px solid rgba(212, 168, 74, .25);
  border-radius: 12px;
  padding: 24px 28px;
}
.bundle-callout-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 168, 74, .12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bundle-callout-icon svg { width: 26px; height: 26px; }
.bundle-callout h3 {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.bundle-callout p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .bundle-callout { grid-template-columns: 1fr; }
}
