/* Self-hosted fonts (OFL) — replaces fonts.googleapis.com */
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/oswald-400.woff2') format('woff2'); }
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/oswald-600.woff2') format('woff2'); }
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/oswald-700.woff2') format('woff2'); }

:root {
  --bg:        #0d1209;
  --surface:   #141a10;
  --border:    #1e2a18;
  --text:      #e4e8dc;
  --dim:       #7d8f73;
  --green:     #7aaa60;
  --green-dk:  #4a7030;
  --amber:     #c89040;
  --amber-dk:  #8a6020;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Brand mark (replaces the site nav bar) ── */
.brand-mark {
  position: fixed; top: 1rem; left: 1rem; z-index: 50;
  font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim); text-decoration: none;
  padding: 0.7rem; margin: -0.7rem;
  display: inline-flex; align-items: center;
  transition: color 0.15s;
}
.brand-mark:hover { color: var(--green); }

/* ── Dot nav (replaces the site nav links) ── */
.dot-nav {
  position: fixed; top: 50%; right: 1.75rem; transform: translateY(-50%); z-index: 50;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.dot-nav button {
  width: 1.4rem; height: 1.4rem; padding: 0; border: none; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.dot-nav button span {
  display: block; width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--border); transition: background 0.25s, transform 0.25s;
}
.dot-nav button:hover span { background: var(--dim); }
.dot-nav button.is-active span { background: var(--green); transform: scale(1.6); }

@media (max-width: 720px) {
  .dot-nav { display: none; }
}

/* ── Slides ── */
.slide {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6rem 1.5rem;
  border-bottom: 1px solid var(--border);
  scroll-snap-align: start;
  overflow: hidden;
}

.slide-num {
  position: absolute; top: 2.5rem; left: 2.5rem;
  font-family: 'Oswald', sans-serif; font-size: clamp(3rem, 10vw, 7rem); font-weight: 700;
  color: var(--surface); line-height: 1; z-index: 0; user-select: none;
  will-change: transform;
}

.slide-inner { position: relative; z-index: 1; max-width: 680px; width: 100%; }

/* Section 1 — hero */
.slide-hero { background: radial-gradient(ellipse 70% 55% at 50% 35%, rgba(122, 170, 96, 0.14), transparent 70%); }
.slide-hero .slide-inner { text-align: center; }

.eyebrow { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--dim); margin-bottom: 1.1rem; }

.mantra { display: flex; flex-direction: column; gap: 0.1rem; }
.mantra .line {
  font-family: 'Oswald', Impact, sans-serif; font-size: clamp(2.6rem, 10vw, 5.5rem); font-weight: 700;
  line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; color: var(--green);
}
.mantra-sub { font-size: clamp(1rem, 2.6vw, 1.25rem); color: var(--dim); margin-top: 1.5rem; }

.scroll-cue { display: flex; justify-content: center; margin-top: 3.5rem; }
.scroll-cue span {
  display: block; width: 1px; height: 2.5rem; background: linear-gradient(var(--green-dk), transparent);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue { 0%, 100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(8px); } }

/* Statements & prose (sections 2, 4, 5) */
.statement {
  font-family: 'Oswald', sans-serif; font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 600;
  line-height: 1.2; color: var(--text); margin-bottom: 1.75rem; max-width: 15ch;
}
.slide#s4 .statement, .slide#s5 .statement { max-width: 18ch; }
.statement-lite { font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--amber) !important; font-size: 1.15em; }

.prose { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.75rem; }
.prose p { font-size: 1.02rem; color: var(--dim); line-height: 1.85; }
.prose p strong { color: var(--green); }

/* Section 3 — the model, three beats */
.slide-tall { min-height: auto; padding-top: 8rem; padding-bottom: 8rem; }
.beats { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.beat { border-left: 3px solid var(--green-dk); padding-left: 1.5rem; }
.beat-word {
  display: block; font-family: 'Oswald', sans-serif; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--green); margin-bottom: 0.5rem;
}
.beat p { font-size: 0.98rem; color: var(--dim); line-height: 1.75; max-width: 52ch; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; padding: 0.75rem 1.4rem; border-radius: 6px;
  transition: filter 0.15s, transform 0.1s, background 0.15s, border-color 0.15s;
  border: 1px solid transparent;
}
.btn:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green-dk); color: #eaf3e2; }
.btn-amber { background: var(--amber); color: #201607; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--green-dk); color: var(--green); }
.btn-small { padding: 0.7rem 1.1rem; font-size: 0.78rem; margin-top: 0.9rem; min-height: 2.75rem; }

/* ── Particulars (deliberately quiet, not a full slide) ── */
.particulars {
  padding: 5rem 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
  scroll-snap-align: start;
}
.particulars-inner { max-width: 640px; margin: 0 auto; }
.particulars .eyebrow { margin-bottom: 0.5rem; }
.particulars-lede { font-size: 0.95rem; color: var(--dim); margin-bottom: 2rem; }

.pilot-card {
  background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.4rem; margin-bottom: 2rem;
}
.pilot-date { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--amber); }
.pilot-place { font-size: 0.85rem; color: var(--dim); margin-top: 0.2rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; }
.faq-list summary {
  font-size: 0.88rem; font-weight: 600; color: var(--text); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 2.75rem; padding: 0.8rem 1.05rem;
}
.faq-list details[open] summary { padding-bottom: 0.4rem; }
.faq-list details p { padding: 0 1.05rem 0.85rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-family: 'Oswald', sans-serif; font-size: 1.05rem; color: var(--green-dk); flex-shrink: 0; }
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list summary:hover { color: var(--green); }
.faq-list p { font-size: 0.85rem; color: var(--dim); line-height: 1.6; margin-top: 0.6rem; }

.about-line { font-size: 0.85rem; color: var(--dim); line-height: 1.7; }
.about-line a { color: var(--green); }
.about-line strong { color: var(--text); }

/* ── Closing ── */
.closing {
  padding: 5rem 1.5rem 4rem; text-align: center;
}
.closing-line {
  font-family: 'Oswald', sans-serif; font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 600;
  color: var(--green); margin-bottom: 2rem;
}
.closing-meta { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; font-size: 0.78rem; margin-bottom: 1.25rem; }
.closing-meta a { color: var(--dim); text-decoration: none; }
.closing-meta a:hover { color: var(--green); }
.closing-meta span { color: var(--dim); opacity: 0.6; }
.closing-crisis { font-size: 0.75rem; color: var(--dim); opacity: 0.7; }
.closing-crisis a { color: var(--dim); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[style*="--i"] { transition-delay: calc(var(--i, 0) * 0.12s); }
.beats .beat.reveal { transition-delay: calc(var(--i, 0) * 0.1s); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  .reveal, .scroll-cue span { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .slide-num { transform: none !important; }
}

@media (max-width: 620px) {
  .slide { padding: 5rem 1.25rem; }
  .slide-num { top: 1.5rem; left: 1.25rem; }
  .brand-mark { top: 1.25rem; left: 1.25rem; }
  .beat { padding-left: 1.1rem; }
}
