:root {
  --bg: #1a110c;
  --bg-2: #22150e;
  --gold: #e0b34a;
  --gold-2: #f3d27a;
  --teal: #d4a574;
  --teal-2: #c08a52;
  --text: #f6f0e6;
  --muted: #d2c2ae;
  --line: rgba(224, 179, 74, 0.28);
  --danger: #e0b34a;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
  --status: 48px;
  --header: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--teal);
  color: #2a1a10;
  border-radius: 8px;
  font-weight: 700;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--status);
  background: #140e0a;
  border-bottom: 1px solid var(--line);
}

.status-bar-inner {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-bar p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-2);
}

.status-short { display: none; }

.status-actions {
  display: flex;
  gap: 8px;
  flex: none;
}

.site-header {
  position: fixed;
  top: var(--status);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(26, 17, 12, 0.72), transparent);
}

.site-header.is-solid {
  background: rgba(26, 17, 12, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand-mark {
  width: 82px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(212, 165, 116, 0.38));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-kicker {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.nav {
  display: flex;
  gap: 28px;
  color: rgba(246, 240, 230, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover { color: var(--gold-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  font: 700 15px/1 var(--font);
  cursor: pointer;
  transition: 0.18s ease;
}

.btn-mini {
  min-height: 32px;
  padding: 0 14px;
  font-size: 12px;
}

.btn-teal {
  background: linear-gradient(180deg, #ead0b0, var(--teal-2));
  color: #2a1a10;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 28px rgba(212, 165, 116, 0.45);
}

.btn-teal:hover {
  filter: brightness(1.06);
  box-shadow: 0 0 36px rgba(212, 165, 116, 0.55);
}

.btn-ghost {
  background: rgba(26, 17, 12, 0.35);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  box-shadow: 0 0 0 1px var(--gold-2);
  color: var(--gold-2);
}

.btn-block { width: 100%; min-height: 52px; }
.btn[disabled] { opacity: 0.6; cursor: wait; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--status) + var(--header) + 24px) 0 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a110c url("/img/hero.jpg?v=60") center 42% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 17, 12, 0.28) 0%, rgba(26, 17, 12, 0.18) 28%, rgba(26, 17, 12, 0.55) 58%, #1a110c 100%),
    radial-gradient(ellipse at 50% 38%, rgba(212, 165, 116, 0.08), transparent 42%);
}

.hero-copy,
.hero .wrap { position: relative; z-index: 3; }

.hero-copy {
  text-align: center;
  padding-bottom: 12px;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  bottom: 4px;
  width: min(860px, 100%);
  transform: translateX(-50%);
  background: radial-gradient(ellipse 72% 78% at 50% 42%, rgba(26, 17, 12, 0.72) 0%, rgba(26, 17, 12, 0.34) 50%, transparent 76%);
  pointer-events: none;
  z-index: -1;
}

.hero-crest {
  width: 72px;
  height: auto;
  margin: 0 auto 10px;
  filter: drop-shadow(0 0 16px rgba(212, 165, 116, 0.45));
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
  max-width: 16ch;
  margin: 0 auto;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.72),
    0 0 18px rgba(26, 17, 12, 0.95),
    0 10px 32px rgba(26, 17, 12, 0.82);
}

h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
}

.lede {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 46ch;
}

.block-lede {
  margin: 0 0 28px;
  max-width: 68ch;
}

.hero-copy .lede {
  color: #f6f0e6;
  font-weight: 500;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.78),
    0 0 16px rgba(26, 17, 12, 0.96),
    0 8px 28px rgba(26, 17, 12, 0.88);
  max-width: 54ch;
}

.hero-overline {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.7),
    0 0 14px rgba(26, 17, 12, 0.9),
    0 6px 20px rgba(26, 17, 12, 0.75);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 18px;
}

.hero-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(26, 17, 12, 0.72);
  color: #f6f0e6;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(26, 17, 12, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.note {
  color: var(--muted);
  font-size: 13px;
}

.center { text-align: center; }

.center-note {
  margin: 22px auto 0;
  text-align: center;
  max-width: 52ch;
}

.section-intro {
  margin-bottom: 32px;
}

.section-intro .lede {
  margin-top: 14px;
}

section {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

section,
[id] {
  scroll-margin-top: calc(var(--status) + var(--header) + 12px);
}

.section-navy {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 165, 116, 0.06), transparent 46%),
    var(--bg-2);
}

.section-plain { background: var(--bg); }

.section-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 { max-width: 18em; }
.section-head p { margin: 0; color: var(--muted); max-width: 40ch; }

.glass {
  background: rgba(32, 22, 14, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px 16px 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.glass p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.icon {
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

.icon img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(224, 179, 74, 0.4), 0 10px 22px rgba(0, 0, 0, 0.4);
}

.status-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.status-board span,
.rules-grid span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.status-board strong,
.rules-grid strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.chance-grid,
.fork-grid,
.paths-grid,
.season-grid,
.test-grid,
.how-grid,
.camp-grid,
.faq-grid,
.apply-grid {
  display: grid;
  gap: 16px;
}

.chance-grid,
.fork-grid,
.season-grid,
.test-grid,
.how-grid,
.camp-grid,
.faq-grid,
.apply-grid,
.paths-grid {
  grid-template-columns: 1fr 1fr;
}

.chance-grid h3,
.fork-card h3,
.path-col h2 {
  margin-bottom: 10px;
}

.chance-grid p { margin-top: 8px; }

.manifest {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.manifest .glass,
.fork-card,
.benefits-center {
  text-align: center;
}

.manifest h3 { font-size: 16px; margin-bottom: 8px; }

.fork-card {
  padding: 28px 22px 24px;
  display: grid;
  align-content: start;
}

.fork-card .icon img {
  width: 96px;
  height: 96px;
  border-radius: 18px;
}

.fork-card h3 { font-size: 22px; }
.fork-card .btn { margin-top: 18px; width: 100%; }

.path-col {
  padding-right: 8px;
}

.path-col p {
  color: var(--muted);
  margin: 0 0 14px;
}

.path-col .btn { margin-top: 8px; }

.chip-list,
.check-list,
.roadmap ul,
.apply-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.chip-list {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
}

.chip-list li,
.perk-grid span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(26, 17, 12, 0.45);
  font-size: 13px;
  font-weight: 600;
}

.step-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.step-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.step-list img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(224, 179, 74, 0.4);
}

.step-list strong { display: block; margin-bottom: 2px; }
.step-list span { color: var(--muted); font-size: 14px; }

.check-list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.check-list.is-muted li::before { background: var(--gold); }
.season-grid h3 { margin-bottom: 8px; }
.season-grid .note { margin-top: 16px; }

.perk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-panel {
  padding: 28px 24px;
}

.cta-panel h3 { margin-bottom: 10px; }
.cta-panel p { margin-bottom: 18px; }
.cta-panel .btn + .btn { margin-top: 10px; }

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stage {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.roadmap li {
  color: var(--muted);
  font-size: 14px;
  padding-left: 14px;
  position: relative;
}

.roadmap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.how-grid { margin-top: 8px; }
.how-grid h3 { margin-bottom: 12px; font-size: 22px; }
.how-grid p { margin: 0 0 12px; }

.camp-grid { align-items: center; }
.camp-actions { justify-content: flex-start; margin-top: 0; }

.faq { padding: 72px 0; }
.faq-grid { align-items: start; gap: 32px; }
.objections { display: grid; gap: 12px; }

.qa {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(32, 22, 14, 0.7);
  border-radius: 14px;
  overflow: hidden;
}

.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  font-weight: 700;
  position: relative;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 16px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 500;
}
.qa[open] summary::after { content: "–"; }
.qa p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

.apply-grid {
  gap: 28px;
  align-items: start;
}

.apply-copy .lede {
  margin-left: 0;
  margin-right: 0;
  max-width: 42ch;
}

.apply-points { color: var(--muted); }

.apply-points li {
  padding-left: 22px;
  position: relative;
}

.apply-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.form-panel { padding: 26px 24px; }

.intent-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.intent-toggle label {
  margin: 0;
  cursor: pointer;
}

.intent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.intent-toggle span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(26, 17, 12, 0.55);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.intent-toggle input:checked + span {
  color: #2a1a10;
  background: linear-gradient(180deg, #ead0b0, var(--teal-2));
  border-color: transparent;
}

.field { display: grid; gap: 8px; margin-bottom: 14px; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(26, 17, 12, 0.85);
  color: var(--text);
  border-radius: 12px;
  padding: 13px 14px;
  font: 500 15px/1.4 var(--font);
  outline: none;
}

textarea { min-height: 96px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.16);
}

.form-error {
  color: #f0c9c9;
  background: rgba(139, 58, 58, 0.18);
  border: 1px solid rgba(139, 58, 58, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.form-micro {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.success { padding: 26px 24px; }
.success h3 { font-size: 28px; margin: 12px 0 10px; }
.success a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: #1a110c url("/img/footer-bg.jpg?v=60") center 55% / cover no-repeat;
}

.footer-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(26, 17, 12, 0.18);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 28px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(246, 240, 230, 0.78);
}

.footer-nav a:hover { color: var(--gold-2); }

.mobile-cta { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { animation: none; transition: none; }
}

@media (max-width: 1100px) {
  .manifest { grid-template-columns: repeat(3, 1fr); }
  .roadmap { grid-template-columns: 1fr 1fr; }
  .status-board { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .manifest,
  .status-board,
  .chance-grid,
  .fork-grid,
  .paths-grid,
  .season-grid,
  .test-grid,
  .how-grid,
  .camp-grid,
  .faq-grid,
  .apply-grid,
  .roadmap,
  .rules-grid,
  .chip-list {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .section-head p { max-width: none; }
  h1 { max-width: none; }
  .hero { padding-top: calc(var(--status) + var(--header) + 12px); min-height: 0; }
}

@media (max-width: 720px) {
  :root { --header: 68px; --status: 40px; }
  .status-full { display: none; }
  .status-short { display: inline; }
  .status-actions { display: none; }
  .status-bar-inner { justify-content: center; }
  .brand-mark { width: 64px; height: 48px; }
  .brand-name { font-size: 18px; }
  section { padding: 56px 0; }
  .site-footer {
    padding-bottom: calc(12px + 64px + env(safe-area-inset-bottom));
  }
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(26, 17, 12, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
  .mobile-cta.is-hidden { display: none; }
  .mobile-cta .btn { width: 100%; padding: 0 12px; }
}
