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

:root {
  --bg: #0D0D0D;
  --bg-2: #141414;
  --bg-3: #1A1A1A;
  --amber: #E8A838;
  --amber-dim: rgba(232, 168, 56, 0.15);
  --cream: #F5F0E8;
  --muted: #888070;
  --border: rgba(245, 240, 232, 0.08);
  --section-pad: clamp(60px, 8vw, 100px);
  --container: 1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

em { font-style: italic; color: var(--amber); }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  margin-bottom: 20px;
  color: var(--cream);
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 56px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--amber);
  color: #0D0D0D;
}
.btn-primary:hover {
  background: #f0b83a;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === HERO === */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,56,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.shape-1 { width: 600px; height: 600px; background: var(--amber); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: #8B5E1A; bottom: -100px; left: 10%; }
.shape-3 { width: 300px; height: 300px; background: #4A3510; top: 40%; left: 50%; }

.hero .container { position: relative; z-index: 1; }

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--muted); }
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  max-width: 800px;
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === HOW IT WORKS === */
.howitworks {
  padding: var(--section-pad) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.step-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
.step-card:hover { border-color: rgba(232, 168, 56, 0.3); }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.step-icon { margin-bottom: 20px; }

.step-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.step-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--amber-dim);
  color: var(--amber);
  letter-spacing: 0.04em;
}

/* === WHO IS FOR === */
.whoisfor {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.whoisfor-intro { margin-bottom: 48px; }

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.persona-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-2);
  transition: border-color 0.3s ease;
}
.persona-card:hover { border-color: rgba(232, 168, 56, 0.3); }

.persona-icon { margin-bottom: 20px; }

.persona-title {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.persona-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.persona-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.persona-bullets li {
  font-size: 0.85rem;
  color: var(--cream);
  padding-left: 18px;
  position: relative;
}
.persona-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* === WHY NOW === */
.whynow {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.whynow .section-headline, .whynow .section-label { color: var(--bg); }
.whynow .section-label { color: #9B7840; }

.whynow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whynow-body {
  font-size: 1rem;
  color: #4A4A3A;
  line-height: 1.75;
  margin-bottom: 40px;
}

.whynow-stats { display: flex; flex-direction: column; gap: 28px; }
.whynow-stat {}
.whynow-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1A1A1A;
  display: block;
  margin-bottom: 4px;
}
.whynow-stat p { font-size: 0.88rem; color: #6B6B5A; line-height: 1.5; }

.whynow-visual { display: flex; flex-direction: column; gap: 24px; }
.visual-card {
  padding: 24px 28px;
  background: #1A1A1A;
  border-radius: 6px;
  color: var(--cream);
}
.visual-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.visual-bar {
  height: 36px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.bar-red { background: rgba(220, 80, 80, 0.2); color: #E87070; justify-content: flex-start; width: 100%; }
.bar-gold { background: rgba(232, 168, 56, 0.2); color: var(--amber); justify-content: flex-start; width: 25%; min-width: 120px; }
.visual-meta { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.visual-cta {
  padding: 24px;
  background: #F0EBE0;
  border-radius: 6px;
  border-left: 3px solid #9B7840;
}
.visual-cta p { font-size: 0.88rem; color: #3A3A2A; line-height: 1.65; font-style: italic; }

/* === MANIFESTO === */
.manifesto {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}

.manifesto-inner { text-align: center; }
.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 40px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* === CLOSING === */
.closing {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  color: var(--cream);
}
.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
}
.closing-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 0.85rem; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .whynow-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stat-row { gap: 20px; }
  .hero-stat-divider { display: none; }
  .steps-grid, .persona-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .closing-actions { flex-direction: column; align-items: center; }
  .btn { justify-content: center; }
}