:root {
  --bg-deep: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a25;
  --gold: #d4a853;
  --gold-light: #e8c87a;
  --gold-dim: #9a7a3a;
  --indigo: #4a3f8a;
  --indigo-light: #6b5eb8;
  --text-primary: #e8e4df;
  --text-secondary: #9a958e;
  --text-muted: #6b6660;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74, 63, 138, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

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

.hero-lede {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 100px 24px;
  position: relative;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  border-left: 2px solid var(--gold-dim);
  padding-left: 40px;
}

.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: normal;
}

.manifesto .attribution {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gold-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── Features ─── */
.features {
  padding: 80px 24px 100px;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 60px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.features-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Rhythm section ─── */
.rhythm {
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(74, 63, 138, 0.04) 50%, transparent 100%);
}

.rhythm-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.rhythm h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.rhythm-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.rhythm-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-dim);
  min-width: 48px;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ─── Closing ─── */
.closing {
  padding: 100px 24px 60px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1.3;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer .brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-dim);
}

/* ─── CTA Buttons ─── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--gold);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.2);
}

.cta-primary:active { transform: translateY(0); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text-primary);
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .manifesto-inner {
    padding-left: 24px;
  }

  .rhythm-step {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }

  .hero h1 { font-size: 2.2rem; }

  .feature-card { padding: 28px 24px; }

  .step-num { font-size: 1.6rem; min-width: 36px; }
}