:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ece4;
  --fg-muted: #8a8580;
  --accent: #c9a84c;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --accent-bright: #e0c06a;
  --border: #2a2725;
  --radius: 12px;
  --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);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 8% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 800px;
  margin-bottom: 32px;
}

.hero h1 .accent {
  color: var(--accent);
  display: inline-block;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  transition: all 0.3s ease;
}

.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Services ── */
.services {
  padding: 120px 8%;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.services-header h2,
.tiers-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 64px;
}

.services-header h2 em,
.tiers-header h2 em {
  font-style: normal;
  color: var(--accent);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Tiers ── */
.tiers {
  padding: 120px 8%;
  background: var(--bg-elevated);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  position: relative;
}

.tier-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px var(--accent-glow);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 32px;
  line-height: 1;
}

.tier-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.tier-card ul {
  list-style: none;
  padding: 0;
}

.tier-card li {
  font-size: 15px;
  color: var(--fg-muted);
  padding: 10px 0;
  border-top: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}

.tier-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.tier-card.featured li {
  color: var(--fg);
}

/* ── Closing ── */
.closing {
  padding: 160px 8%;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Footer ── */
.site-footer {
  padding: 64px 8%;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 400px;
}

.footer-contact {
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid,
  .tiers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero {
    min-height: auto;
    padding: 80px 6% 60px;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }

  .services,
  .tiers {
    padding: 80px 6%;
  }

  .closing {
    padding: 100px 6%;
  }

  .tier-card.featured {
    order: -1;
  }
}

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

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

  .lede {
    font-size: 1.05rem;
  }

  .services-header h2,
  .tiers-header h2,
  .closing h2 {
    font-size: 1.8rem;
  }

  .tier-price {
    font-size: 2.4rem;
  }

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

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