:root {
  --bg: #0a0f0a;
  --surface: #111811;
  --green: #3a5c2a;
  --green-bright: #5a8c40;
  --red: #c0392b;
  --text: #e8e8e0;
  --muted: #b9b9ad;
  --nav-btn-h: 34px;
}

* {
  box-sizing: border-box;
}

/* Visually-hidden label class for screen-reader-only text. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Respect users who prefer reduced motion — kill all transitions/animations. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  line-height: 1.5;
  background-image: radial-gradient(circle at 20% 20%, rgba(90, 140, 64, 0.06), transparent 40%);
}

h1,
h2,
h3,
.logo,
.btn,
.eyebrow,
.code-name,
.badge,
.steps span {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.6rem 5vw;
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 140, 64, 0.2);
  overflow: visible;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

/* --- Hamburger button (desktop: hidden) --- */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(90, 140, 64, 0.35);
  border-radius: 4px;
  color: var(--muted);
  cursor: pointer;
  padding: 0 0.55rem;
  line-height: 0;
  transition: border-color 200ms ease, color 200ms ease;
}

.nav-hamburger:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.nav-hamburger svg {
  width: 20px;
  height: 20px;
}

/* --- Dropdown (desktop: hidden) --- */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 29;
  flex-direction: column;
  background: rgba(10, 15, 10, 0.98);
  border-bottom: 1px solid rgba(90, 140, 64, 0.35);
  backdrop-filter: blur(16px);
  padding: 0.25rem 5vw 0.5rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.nav-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(90, 140, 64, 0.12);
  color: var(--muted);
  font-size: 1rem;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  color: var(--green-bright);
}

.logo {
  font-size: 1.5rem;
  line-height: 0;
}

.logo-img {
  display: block;
  mix-blend-mode: lighten;
  filter: contrast(1.5);
}

.logo-img--h {
  height: 52px;
  width: auto;
}

.logo-img--s {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.92rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-bright);
}

/* Preview link — plain nav link styling, just a green colour so it's distinct
   from section anchors but doesn't compete visually with the red ENLIST. */
.nav-preview {
  color: var(--green-bright) !important;
}

/* Language switcher: small chip group of 4 codes (EN / DE / NL / FR). */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.6rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(90, 140, 64, 0.3);
}
.lang-switcher button {
  background: none;
  border: none;
  color: var(--muted);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}
.lang-switcher button:hover { color: var(--text); }
.lang-switcher button.active {
  color: var(--green-bright);
  background: rgba(90, 140, 64, 0.14);
}
.lang-switcher--mobile {
  display: flex;
  justify-content: center;
  margin: 0.4rem 0 0;
  padding: 0.6rem 0 0;
  border-left: none;
  border-top: 1px solid rgba(90, 140, 64, 0.3);
  gap: 0.6rem;
}
.nav-dropdown a.nav-preview { border-top: 1px solid rgba(90, 140, 64, 0.3); margin-top: 0.3rem; padding-top: 0.6rem; }

/* Shrink nav text further if it still doesn't fit comfortably. */
@media (max-width: 1100px) {
  .nav-links { gap: 0.85rem; font-size: 0.85rem; }
}

/* --- Always hide radio text label --- */
.audio-label-text { display: none; }

/* --- Nav action buttons: shared box model (compound selectors beat .audio-toggle / .btn base) --- */
.nav-actions .audio-toggle,
.nav-actions .nav-enlist {
  height: var(--nav-btn-h);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0 0.75rem;
  line-height: 1;
}

.nav-actions .audio-toggle svg {
  width: 15px;
  height: 15px;
}

.nav-actions .nav-enlist {
  font-size: 0.82rem;
  padding: 0 1rem;
}

/* --- Scroll offset for sticky nav --- */
section[id] {
  scroll-margin-top: 88px;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 4px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 1rem;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  filter: brightness(1.1);
}

.section {
  padding: 5rem 5vw;
}

.section-title h2,
.section-title h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 700px;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(rgba(10, 15, 10, 0.55) 0%, transparent 80%),
    radial-gradient(circle at 30% 30%, rgba(58, 92, 42, 0.15), transparent 50%);
}


.hero-inner {
  position: relative;
  max-width: 850px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  margin: 0.5rem 0;
}

.eyebrow {
  color: var(--green-bright);
  margin: 0;
  font-size: 1.2rem;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
}

.waitlist-form {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  min-width: 280px;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(90, 140, 64, 0.45);
  background: rgba(17, 24, 17, 0.95);
  color: var(--text);
}

.form-message {
  margin-top: 0.8rem;
  min-height: 1.4rem;
  color: var(--green-bright);
}

.stats,
.cards,
.steps {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Tablet portrait: 3-card grids fall back to 2 columns and orphan the third.
   Force 2 columns explicitly and span the third card across both. */
@media (max-width: 900px) and (min-width: 600px) {
  .intensity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .intensity-grid > .diff-card:nth-child(3) {
    grid-column: 1 / -1;
  }
  #characters .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-card,
.feature-card,
.character-card,
.mission-card,
.steps article,
.cta,
.table-wrap {
  background: var(--surface);
  border: 2px solid rgba(90, 140, 64, 0.45);
  border-radius: 8px;
}

.stat-card,
.feature-card,
.character-card,
.steps article,
.faq-item,
.about-box {
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.stat-card:hover,
.feature-card:hover,
.character-card:hover,
.steps article:hover,
.faq-item:hover,
.about-box:hover {
  border-color: rgba(90, 140, 64, 0.65);
  box-shadow: 0 0 18px rgba(90, 140, 64, 0.22), 0 0 40px rgba(90, 140, 64, 0.08);
}

.stat-card,
.feature-card,
.character-card,
.mission-card,
.steps article {
  padding: 1.2rem;
}

/* Character cards: lay out as a column so the HEAR VOICE button
   can pin itself to the bottom regardless of role/quote length. */
.character-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
.character-card h3 {
  /* Reserve space for 2 lines so quotes start at the same Y across all cards,
     regardless of role-title length in the chosen language. */
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}
.character-card .character-quote {
  margin-bottom: 1.4rem;
}
.character-card .hear-voice-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* HEAR VOICE play icon */
.hear-voice-btn .hv-play {
  width: 11px;
  height: 11px;
  vertical-align: middle;
  margin-right: 2px;
}

/* HEAR VOICE button on character cards */
.hear-voice-btn {
  margin-top: 0.8rem;
  background: transparent;
  border: 1px solid var(--green-bright);
  color: var(--green-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 150ms ease, box-shadow 150ms ease;
}
.hear-voice-btn:hover {
  background: rgba(90, 140, 64, 0.18);
  box-shadow: 0 0 12px rgba(90, 140, 64, 0.4);
}
.hear-voice-btn.playing {
  background: rgba(90, 140, 64, 0.28);
  animation: hear-voice-pulse 1s ease-in-out infinite;
}
@keyframes hear-voice-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(90, 140, 64, 0.4); }
  50%      { box-shadow: 0 0 18px rgba(90, 140, 64, 0.7); }
}

.stat-card,
.feature-card,
.mission-card,
.character-card,
.steps article {
  border-left: 4px solid var(--green-bright);
}

/* --- Color-coded mission card borders (matching difficulty palette) --- */
.mission-card:has(.badge--stealth) { border-left-color: #c0392b; }
.mission-card:has(.badge--hike)    { border-left-color: var(--green-bright); }
.mission-card:has(.badge--jog)     { border-left-color: #e67e22; }
.mission-card:has(.badge--walk)    { border-left-color: #5ba3d9; }

.grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

#features .cards {
  grid-template-columns: repeat(3, 1fr);
}

#features .feature-card {
  text-align: left;
}

.code-name,
.badge {
  color: var(--green-bright);
  margin: 0;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.steps span {
  display: block;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}

.note {
  margin-top: 1.2rem;
  color: var(--muted);
}

.cta {
  text-align: center;
  background: linear-gradient(180deg, #162514, #111811);
}

.cta h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
}

footer {
  border-top: 1px solid rgba(90, 140, 64, 0.25);
  text-align: center;
  color: var(--muted);
  padding: 1.5rem 1rem 2rem;
  background: var(--bg);
}

.admin-body {
  min-height: 100vh;
}

.admin-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.table-wrap {
  margin-top: 1.5rem;
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(90, 140, 64, 0.22);
  text-align: left;
}

th {
  color: var(--green-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

main,
footer {
  position: relative;
  z-index: 2;
}

.enlist-count {
  margin: 0.5rem 0 0;
  color: var(--green-bright);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  min-height: 1.2rem;
}

.scarcity {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.cta .scarcity {
  margin-bottom: 1.2rem;
}

.share-btn {
  background: none;
  border: 1px solid var(--green-bright);
  color: var(--green-bright);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-left: 0.4rem;
  font-family: inherit;
}

.share-btn:hover {
  background: rgba(90, 140, 64, 0.12);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(10, 15, 10, 0.96);
  border-top: 1px solid rgba(90, 140, 64, 0.35);
  border-left: 3px solid var(--green-bright);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 280ms ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* --- Launch badge --- */
.launch-badge {
  display: inline-block;
  border: 1px solid rgba(90, 140, 64, 0.45);
  border-radius: 20px;
  padding: 0.25rem 0.85rem;
  font-size: 0.78rem;
  color: var(--green-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

/* --- Mode icons on concept cards --- */
.mode-icon {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Feature card with icon --- */
#features .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  padding: 1.4rem 1.2rem;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  color: var(--green-bright);
  flex-shrink: 0;
}

/* --- How It Works: steps with arrows --- */
#how-it-works .steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  grid-template-columns: none;
}

#how-it-works .steps article {
  flex: 1;
}

#how-it-works .steps article h3 {
  margin: 0.3rem 0 0.5rem;
  font-size: 1.1rem;
}

#how-it-works .steps article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  color: var(--green-bright);
  opacity: 0.5;
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* --- Mission grid: 4 → 2 → 1 columns, never 3 --- */
#missions .cards {
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 960px) {
  #missions .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 540px) {
  #missions .cards {
    grid-template-columns: 1fr;
  }
}

/* --- Mission card expand + glow --- */
.mission-card {
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.mission-card:hover {
  border-color: rgba(90, 140, 64, 0.65);
  box-shadow: 0 0 18px rgba(90, 140, 64, 0.22), 0 0 40px rgba(90, 140, 64, 0.08);
}

.mission-details {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(90, 140, 64, 0.2);
}

.mission-brief {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 0.8rem;
}

.mission-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.mission-stats li {
  font-size: 0.82rem;
  color: var(--muted);
}

.mission-stats li span {
  display: block;
  color: var(--green-bright);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

/* --- Mission card toggle --- */
.mission-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  background: none;
  border: 1px solid rgba(90, 140, 64, 0.35);
  border-radius: 4px;
  padding: 0.3rem 0.7rem;
  color: var(--green-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease;
}

.mission-toggle:hover {
  border-color: var(--green-bright);
}

.mission-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.mission-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mission-clone {
  position: fixed;
  z-index: 201;
  background: var(--surface);
  border: 2px solid rgba(90, 140, 64, 0.45);
  border-radius: 8px;
  padding: 1.2rem;
  overflow-y: auto;
  transition: top 350ms ease, left 350ms ease, width 350ms ease, height 350ms ease;
  box-shadow: 0 0 40px rgba(90, 140, 64, 0.3), 0 0 80px rgba(0, 0, 0, 0.5);
}

.mission-toggle[aria-expanded="true"] .toggle-chevron {
  transform: rotate(180deg);
}

.toggle-chevron {
  font-size: 0.6rem;
  transition: transform 200ms ease;
}

/* --- Intensity section mode icons --- */
.diff-card .mode-icon {
  margin-bottom: 0.5rem;
}

.diff--recon .mode-icon    { color: var(--green-bright); }
.diff--extraction .mode-icon { color: #e67e22; }
.diff--combat .mode-icon   { color: #c0392b; }

/* --- Difficulty cards --- */
.diff-card {
  border-left-width: 4px;
  border-left-style: solid;
}

.diff--recon    { border-left-color: var(--green-bright); }
.diff--extraction { border-left-color: #e67e22; }
.diff--combat   { border-left-color: #c0392b; }

.diff-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.diff-pace {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.diff--recon    .diff-pace { color: var(--green-bright); }
.diff--extraction .diff-pace { color: #e67e22; }
.diff--combat   .diff-pace { color: #c0392b; }

.diff-bars {
  display: flex;
  gap: 4px;
}

.diff-bar {
  width: 22px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.diff--recon    .diff-bar.active { background: var(--green-bright); }
.diff--extraction .diff-bar.active { background: #e67e22; }
.diff--combat   .diff-bar.active { background: #c0392b; }

.diff-card h3 {
  margin: 0 0 0.5rem;
}

.diff-tags {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.diff-tags li {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
}

/* --- About box --- */
.about-box {
  background: var(--surface);
  border: 2px solid rgba(90, 140, 64, 0.45);
  border-left: 4px solid var(--green-bright);
  border-radius: 8px;
  padding: 2rem 2.4rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Mission badge colors --- */
.badge--hike    { color: var(--green-bright); }
.badge--walk    { color: #5ba3d9; }
.badge--jog     { color: #e67e22; }
.badge--stealth { color: #c0392b; }

/* --- About section --- */
.about-inner {
  max-width: 680px;
}

.about-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0.8rem 0 0;
}

/* --- FAQ --- */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--surface);
  border: 2px solid rgba(90, 140, 64, 0.45);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--green-bright);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding: 0 1.2rem 1rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* --- Footer --- */
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--green-bright);
}

footer p {
  margin: 0;
  font-size: 0.8rem;
}


/* --- Responsive --- */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-center    { display: none; }
  .nav-hamburger {
    display: flex;
    height: var(--nav-btn-h);
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 0.55rem;
    line-height: 1;
    box-sizing: border-box;
  }
  .nav-dropdown  { display: flex; }

  .nav-actions .audio-toggle {
    padding: 0 0.6rem;
  }
}

@media (max-width: 700px) {
  #how-it-works .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0.3rem 0;
  }

  .sticky-cta span {
    display: none;
  }
}

/* --- Feature card description --- */
.feature-desc {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  #features .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  #features .cards {
    grid-template-columns: 1fr;
  }
  /* Phone nav: compact everything so logo + audio + ENLIST + hamburger all fit */
  .logo-img--h {
    height: 40px;
  }
  .nav-actions {
    gap: 0.4rem;
  }
  .nav-actions .audio-toggle,
  .nav-actions .nav-enlist {
    padding: 0 0.6rem;
    font-size: 0.78rem;
  }
  .nav-hamburger {
    padding: 0 0.4rem;
  }
  .nav-hamburger svg {
    width: 18px;
    height: 18px;
  }
}

/* --- Audio toggle button --- */
.audio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  background: rgba(17, 24, 17, 0.9);
  border: 1px solid rgba(90, 140, 64, 0.45);
  border-radius: 4px;
  padding: 0.65rem 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.audio-toggle:hover { color: var(--green-bright); border-color: var(--green-bright); }
.audio-toggle.active { color: var(--green-bright); border-color: var(--green-bright); }

.audio-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.audio-toggle:hover {
  border-color: #e67e22;
  color: #e67e22;
}

.audio-toggle.active {
  border-color: #e67e22;
  color: #e67e22;
  box-shadow: 0 0 14px rgba(230, 126, 34, 0.35);
}

/* --- Field Characters: transmission label --- */
.transmission-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--green-bright);
  font-family: "Bebas Neue", sans-serif;
  margin: 0 0 0.6rem;
}

@keyframes tx-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.tx-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: tx-pulse 1.4s ease infinite;
  flex-shrink: 0;
}

/* --- Field Characters: quote border --- */
.character-quote {
  border-left: 3px solid var(--green-bright);
  padding-left: 0.8rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Section spacing tightening --- */
#missions { padding-bottom: 2.5rem; }
#about    { padding-top: 2.5rem; padding-bottom: 2.5rem; }
#faq      { padding-top: 2.5rem; }

/* --- Marquee label + strip --- */
.marquee-label {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  margin: 1.2rem 0 0.5rem;
  position: relative;
  z-index: 2;
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(90, 140, 64, 0.2);
  border-bottom: 1px solid rgba(90, 140, 64, 0.2);
  padding: 0.6rem 0;
  background: rgba(17, 24, 17, 0.85);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  color: var(--green-bright);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

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

/* --- Follow the Mission section --- */
.social-cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 2px solid rgba(90, 140, 64, 0.45);
  border-radius: 8px;
  padding: 1.8rem 2.5rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 250ms ease, box-shadow 250ms ease;
  min-width: 180px;
}

.social-card:hover {
  border-color: rgba(90, 140, 64, 0.65);
  box-shadow: 0 0 18px rgba(90, 140, 64, 0.22), 0 0 40px rgba(90, 140, 64, 0.08);
}

.social-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--green-bright);
}

.social-handle {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.social-sub {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

#follow .section-title p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Sticky bar improvements --- */
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(192, 57, 43, 0); }
}

.sticky-cta .btn-red {
  animation: pulse-btn 2s ease infinite;
  font-size: 1.05rem;
  padding: 0.8rem 1.4rem;
}
