/* ============================================
   THE DROP - styles.css
   Dark, atmospheric, premium
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:       #0a0a0a;
  --black-mid:   #111111;
  --black-light: #1a1a1a;
  --forest:      #1a2e1a;
  --forest-mid:  #152614;
  --gold:        #c4a55a;
  --gold-dim:    #8b7340;
  --gold-pale:   #e8d49a;
  --text:        #e8e8e8;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --danger:      #8b2500;
  --danger-light:#c03300;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 165, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(196, 165, 90, 0.08);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 165, 90, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(196, 165, 90, 0.4);
  padding: 8px 20px;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: rgba(196, 165, 90, 0.1) !important;
  border-color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26, 46, 26, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(20, 30, 20, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, #050a05 0%, #0a1a0a 30%, #0d1a0d 60%, #050a05 100%);
}

/* CSS terrain silhouette */
.hero-terrain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background:
    /* far mountains */
    radial-gradient(ellipse at 15% 100%, #0a140a 0%, transparent 45%),
    radial-gradient(ellipse at 40% 100%, #0c160c 0%, transparent 40%),
    radial-gradient(ellipse at 65% 100%, #081008 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, #0a140a 0%, transparent 38%),
    /* ridge line */
    linear-gradient(to bottom, transparent 0%, rgba(8,14,8,0.9) 40%, #050a05 100%);
  clip-path: polygon(
    0% 100%,
    0% 55%,
    5% 45%,
    10% 52%,
    15% 38%,
    20% 48%,
    25% 30%,
    30% 43%,
    35% 22%,
    40% 38%,
    45% 18%,
    50% 35%,
    55% 15%,
    60% 30%,
    65% 12%,
    70% 28%,
    75% 20%,
    80% 35%,
    85% 18%,
    90% 40%,
    95% 28%,
    100% 45%,
    100% 100%
  );
}

/* Stars effect */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 8%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 5%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 18%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 22%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 6%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 12%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 35%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 28% 20%, rgba(255,255,255,0.6) 0%, transparent 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    transparent 30%,
    transparent 60%,
    rgba(10,10,10,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(5rem, 15vw, 11rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 80px rgba(196, 165, 90, 0.15);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-secondary {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 44px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- STATEMENT BAR ---- */
.statement-bar {
  background: var(--forest-mid);
  border-top: 1px solid rgba(196, 165, 90, 0.15);
  border-bottom: 1px solid rgba(196, 165, 90, 0.15);
  padding: 28px 0;
}

.statement-bar p {
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.danger-eyebrow {
  color: var(--danger-light);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- HOW IT WORKS ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr 120px;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(196, 165, 90, 0.15);
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* CSS Icon shapes */
.icon-shape {
  width: 80px;
  height: 80px;
  position: relative;
  flex-shrink: 0;
}

.icon-gear {
  background:
    radial-gradient(circle at center, transparent 28%, rgba(196,165,90,0.15) 28%, rgba(196,165,90,0.15) 42%, transparent 42%),
    radial-gradient(circle at center, rgba(196,165,90,0.08) 0%, rgba(196,165,90,0.08) 20%, transparent 20%);
  border-radius: 8px;
  border: 1px solid rgba(196, 165, 90, 0.12);
}

.icon-goggles {
  background: rgba(196, 165, 90, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(196, 165, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-goggles::after {
  content: '';
  width: 56px;
  height: 24px;
  border: 2px solid rgba(196, 165, 90, 0.4);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(196,165,90,0.15) 0%, rgba(196,165,90,0.15) 44%, rgba(10,10,10,0.4) 44%, rgba(10,10,10,0.4) 56%, rgba(196,165,90,0.15) 56%);
}

.icon-heli {
  background: rgba(196, 165, 90, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(196, 165, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-heli::after {
  content: '';
  width: 50px;
  height: 30px;
  background:
    /* body */
    radial-gradient(ellipse at 40% 60%, rgba(196,165,90,0.4) 0%, rgba(196,165,90,0.4) 35%, transparent 35%),
    /* rotor */
    linear-gradient(90deg, transparent 10%, rgba(196,165,90,0.3) 10%, rgba(196,165,90,0.3) 90%, transparent 90%) 0 4px / 100% 2px no-repeat;
}

.icon-compass {
  background: rgba(196, 165, 90, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-compass::after {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 90, 0.25);
  background:
    linear-gradient(135deg, rgba(196,165,90,0.5) 0%, rgba(196,165,90,0.5) 50%, transparent 50%),
    radial-gradient(circle at center, rgba(196,165,90,0.6) 0%, rgba(196,165,90,0.6) 8%, transparent 8%);
}

/* ---- BEACON SECTION ---- */
.beacon-section {
  position: relative;
  overflow: hidden;
}

.beacon-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(139, 37, 0, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--black) 0%, rgba(15, 5, 5, 1) 50%, var(--black) 100%);
}

.beacon-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.beacon-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.beacon-lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.beacon-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.beacon-rules {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.beacon-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.beacon-rule div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.beacon-rule strong {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.beacon-rule span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rule-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rule-indicator.intact {
  background: #3d8b40;
  box-shadow: 0 0 8px rgba(61, 139, 64, 0.5);
}

.rule-indicator.used {
  background: var(--danger);
  box-shadow: 0 0 8px rgba(139, 37, 0, 0.4);
}

/* Pelican case illustration */
.pelican-case {
  width: 280px;
  margin: 0 auto;
  border: 2px solid rgba(196, 165, 90, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #161616;
  box-shadow:
    0 0 60px rgba(139, 37, 0, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.pelican-lid {
  background: #1e1e1e;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
}

.pelican-latch {
  width: 28px;
  height: 10px;
  background: rgba(196, 165, 90, 0.4);
  border-radius: 3px;
}

.pelican-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.beacon-device {
  width: 140px;
  background: #252525;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.beacon-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 10px rgba(139, 37, 0, 0.8);
  animation: beaconPulse 3s ease-in-out infinite;
}

@keyframes beaconPulse {
  0%, 100% { opacity: 0.3; box-shadow: 0 0 4px rgba(139, 37, 0, 0.4); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(139, 37, 0, 0.8), 0 0 24px rgba(139, 37, 0, 0.3); }
}

.beacon-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.beacon-button {
  background: var(--danger);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 3px;
}

.tamper-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.tag-line {
  flex: 1;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.5;
}

/* ---- HALL OF FAME ---- */
.hof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.hof-card {
  background: var(--black-light);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s, transform 0.3s;
}

.hof-card:hover {
  border-color: rgba(196, 165, 90, 0.25);
  transform: translateY(-4px);
}

.hof-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hof-photo-bg {
  position: absolute;
  inset: 0;
}

.hof-photo-1 {
  background:
    radial-gradient(ellipse at 50% 100%, #0a1a0a 0%, #040c04 60%, #030803 100%),
    linear-gradient(to right, #1a2e1a, #0a1a0a);
  /* terrain silhouette */
  clip-path: none;
}

.hof-photo-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,46,26,0.9) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(26,46,26,0.6) 0%, transparent 50%);
}

.hof-photo-2 {
  background:
    radial-gradient(ellipse at 60% 100%, #0d1a2e 0%, #040d1a 60%, #020610 100%);
}

.hof-photo-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,40,0.9) 0%, transparent 60%);
}

.hof-photo-3 {
  background:
    radial-gradient(ellipse at 40% 100%, #1a1205 0%, #100c02 60%, #0a0800 100%);
}

.hof-photo-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,5,0.9) 0%, transparent 60%);
}

.hof-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  z-index: 2;
}

.tag-clean {
  background: rgba(61, 139, 64, 0.9);
  color: #fff;
}

.hof-info {
  padding: 20px;
}

.hof-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hof-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.hof-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hof-date {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.hof-coords {
  font-size: 0.75rem;
  font-family: 'Courier New', monospace;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hof-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.hof-kit {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.kit-label {
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.68rem;
  margin-right: 4px;
}

.hof-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.875rem;
  font-style: italic;
}

/* ---- TIERS ---- */
.tiers-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26,46,26,0.3) 0%, transparent 60%),
    var(--black);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.tier-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background 0.3s;
}

.tier-card:last-child {
  border-right: none;
}

.tier-card:hover {
  background: rgba(255,255,255,0.02);
}

.tier-featured {
  background: rgba(196, 165, 90, 0.04);
  border-color: rgba(196, 165, 90, 0.2) !important;
  border-right: 1px solid rgba(196, 165, 90, 0.2) !important;
}

.tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}

.tier-header {
  margin-bottom: 32px;
  padding-top: 16px;
}

.tier-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.tier-price {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.tier-terrain {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tier-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.tier-specs li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.tier-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gold-dim);
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- SIGNUP FORM ---- */
.form-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26,46,26,0.2) 0%, transparent 55%),
    var(--black-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.form-inner {
  max-width: 680px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 56px;
}

.form-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.drop-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
select,
textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(196, 165, 90, 0.5);
  background: rgba(196, 165, 90, 0.04);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: #1a1a1a;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 12px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.form-success {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  animation: fadeUp 0.5s ease;
}

.form-success.visible {
  display: block;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 700px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hof-card:last-child {
    display: none;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 2px;
  }

  .tier-card {
    border-right: none;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .tier-featured {
    border: 1px solid rgba(196, 165, 90, 0.2) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
    border-bottom: 1px solid rgba(196,165,90,0.12);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

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

  .nav-links a {
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .step-icon {
    display: none;
  }

  .beacon-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .beacon-visual {
    order: -1;
  }

  .hof-grid {
    grid-template-columns: 1fr;
  }

  .hof-card:last-child {
    display: block;
  }

  .hof-card:nth-child(2) {
    display: none;
  }

  .drop-form {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-secondary {
    display: none;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .tier-card {
    padding: 36px 24px;
  }

  .pelican-case {
    width: 240px;
  }
}
