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

:root {
  --gold:        #d4af37;
  --gold-light:  #f0d060;
  --gold-dark:   #a8860f;
  --bg:          #080808;
  --bg-2:        #0f0f0f;
  --bg-3:        #141414;
  --bg-card:     #111111;
  --border:      rgba(212, 175, 55, 0.18);
  --text:        #e8e8e8;
  --text-muted:  #888;
  --font-head:   'Bebas Neue', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      6px;
  --max-w:       1100px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: #000;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.btn--disabled {
  background: #222;
  color: #555;
  cursor: not-allowed;
  border: 1.5px solid #333;
}

.btn--lg  { padding: 14px 36px; font-size: 0.9rem; }
.btn--xl  { padding: 18px 52px; font-size: 1rem; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.hero__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero__sub strong { color: var(--text); }

.hero__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.4;
}

/* ===== SECTIONS (shared) ===== */
.section {
  padding: 100px 0;
}

.section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 28px;
}

/* ===== DIFFERENCE ===== */
.difference {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.difference__body {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.quote {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 40px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  border-radius: var(--radius);
  text-align: left;
}

.quote__mark {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.quote p {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.6;
}

.quote strong { color: var(--gold); }

/* ===== PILLARS ===== */
.pillars {
  background: var(--bg);
  text-align: center;
}

.pillars__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  padding: 48px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
  transition: border-color 0.2s;
}

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

.pillar--mid {
  border-top: 2px solid var(--gold);
}

.pillar__num {
  display: block;
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.pillar__title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 16px;
}

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

/* ===== STATS ===== */
.stats {
  background: var(--gold);
  padding: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 1px solid rgba(0,0,0,0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  gap: 8px;
}

.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: #000;
  line-height: 1;
}

.stat__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
}

/* ===== RANK ===== */
.rank {
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rank__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 48px;
}

.rank__reveal-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 64px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  background: var(--bg-card);
  border-radius: var(--radius);
}

.rank__prize {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.03em;
  color: #fff;
}

.rank__fine-print {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== PARTNERS ===== */
.partners {
  background: var(--bg);
  text-align: center;
}

.partners__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
  text-align: center;
}

.partner-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.partner-card--soon {
  opacity: 0.55;
}

.partner-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 20px;
}

.partner-card__name {
  font-family: var(--font-head);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: #fff;
}

.partner-card__offer {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.partner-card__btn {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  padding: 11px 16px;
}

/* ===== FINAL CTA ===== */
.cta-final {
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner { position: relative; z-index: 1; }

.cta-final__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

.cta-final__perks {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ===== JOIN FORM ===== */
.join-form {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.join-form::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.join-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.join-form__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.join-form__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.join-form__perks li {
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.join-form__perks li::first-letter { color: var(--gold); }

/* Form elements */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form__input:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
}

.form__input::placeholder { color: #444; }

.form__select {
  appearance: none;
  -webkit-appearance: none;
  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' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form__select option { background: #111; color: var(--text); }

.form__submit { width: 100%; text-align: center; margin-top: 4px; }

.form__msg {
  font-size: 0.85rem;
  text-align: center;
  min-height: 20px;
  transition: color 0.2s;
}

.form__msg--success { color: #4caf50; }
.form__msg--error   { color: #f44336; }
.form__msg--loading { color: var(--gold); }

@media (max-width: 800px) {
  .join-form__inner { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 28px 20px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

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

.footer__social {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.footer__disclaimer {
  font-size: 0.78rem;
  color: #444;
  line-height: 1.75;
}

.footer__copy {
  margin-top: 12px;
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.12); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .partners__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: center; }
  .rank__reveal-box { padding: 32px 24px; }
  .section { padding: 72px 0; }
}
