/* ===== Tokens ===== */
:root {
  --bg-0: #1a0f05;
  --bg-1: #24140a;
  --bg-2: #2e1a0d;
  --gold: #f2b84c;
  --gold-bright: #ffd166;
  --gold-deep: #b8801f;
  --cream: #f4ead9;
  --muted: #cbb89a;
  --line: rgba(242, 184, 76, 0.22);
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-display: 'Archivo Black', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(242,184,76,0.10), transparent 60%);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Nav ===== */
.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(26, 15, 5, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: var(--bg-2);
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  padding: 8px 4px;
  transition: color 0.15s ease;
}
.nav-link:hover { color: var(--gold-bright); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-solid {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #241205;
  box-shadow: 0 6px 24px rgba(242, 184, 76, 0.28);
}
.btn-solid:hover { box-shadow: 0 8px 28px rgba(242, 184, 76, 0.4); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--gold-bright);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(242,184,76,0.06); }

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ===== Hero ===== */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 24px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  color: var(--gold-bright);
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(242, 184, 76, 0.25);
}

.sub {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 18px;
}

.body-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
.body-copy strong { color: var(--gold-bright); font-weight: 700; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.ca-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  max-width: 100%;
}

.ca-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}

.ca-value {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}

.ca-copy {
  background: rgba(242,184,76,0.12);
  border: none;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.ca-copy:hover { background: rgba(242,184,76,0.22); }

.hero-art {
  margin-top: 56px;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-image { width: 100%; height: auto; }

/* ===== Sections ===== */
.section {
  padding: 72px 24px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.band {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 48px;
}

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

.feature {
  text-align: center;
  padding: 8px;
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.4rem;
  color: var(--gold-bright);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-bright);
  color: #241205;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 24px 60px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand { font-size: 1.05rem; }

.footer-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--gold-bright); }

.disclaimer {
  max-width: 560px;
  color: rgba(203, 184, 154, 0.55);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .grid-3, .steps { grid-template-columns: 1fr; }
  .nav-link { display: none; }
  .ca-value { max-width: 140px; }
}

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