:root {
  --bg: #0c0a09;
  --bg-warm: #141210;
  --bg-card: #1c1917;
  --fg: #fafaf9;
  --fg-muted: #a8a29e;
  --fg-dim: #78716c;
  --ember: #d97706;
  --ember-glow: #f59e0b;
  --ember-deep: #92400e;
  --iron: #44403c;
  --iron-light: #57534e;
  --accent-gradient: linear-gradient(135deg, #d97706, #f59e0b);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(217, 119, 6, 0.08), transparent),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.04), transparent),
    radial-gradient(circle at 80% 20%, rgba(146, 64, 14, 0.06), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ember);
  border: 1px solid var(--ember-deep);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
  background: rgba(217, 119, 6, 0.06);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero h1 .accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 2.5rem;
}

.btn-enter {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--accent-gradient);
  padding: 0.875rem 2.5rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-enter:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
}

.hero-divider svg {
  width: 100%;
  height: 100%;
}

/* ===== VERSE ===== */
.verse-section {
  padding: 5rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid rgba(217, 119, 6, 0.1);
  border-bottom: 1px solid rgba(217, 119, 6, 0.1);
}

.verse-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.verse {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  border: none;
  padding: 0;
  position: relative;
}

.verse-mark {
  color: var(--ember);
  font-size: 1.5em;
}

.verse-ref {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ember);
  font-style: normal;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.features-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--iron);
  padding: 2.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: var(--ember-deep);
  transform: translateY(-2px);
}

.feature-icon {
  color: var(--ember);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

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

/* ===== BRAND SECTION ===== */
.brand-section {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid rgba(68, 64, 60, 0.5);
  border-bottom: 1px solid rgba(68, 64, 60, 0.5);
}

.brand-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.brand-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.brand-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.brand-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--ember);
  background: rgba(217, 119, 6, 0.04);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ember-glow);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ===== CLOSING ===== */
.closing {
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.closing-content {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--iron);
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.footer-divider {
  color: var(--iron-light);
}

.footer-tagline {
  color: var(--fg-dim);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 4rem 1.5rem 3rem;
  }

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

  .brand-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brand-stats {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
  }

  .stat {
    min-width: 140px;
    flex-shrink: 0;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .verse-section {
    padding: 3.5rem 1.5rem;
  }

  .features,
  .brand-section,
  .closing {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .brand-stats {
    flex-direction: column;
  }

  .stat {
    min-width: unset;
  }
}