/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0D0D0D;
  color: #F5F0E8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #FFB800; border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 1.5rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,184,0,0.1);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #F5F0E8;
}
.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 6rem;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255,184,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(255,184,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 860px; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: #F5F0E8;
  line-height: 1.05;
  margin-bottom: 1.8rem;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(245,240,232,0.65);
  max-width: 540px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,184,0,0.06);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 4px;
  display: inline-flex;
  padding: 1.25rem 2rem;
}
.stat { text-align: center; padding: 0 1.5rem; }
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #FFB800;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,184,0,0.25);
}

/* ===== PAIN ===== */
.pain { padding: 7rem 3rem; background: #111111; }
.pain-inner { max-width: 1100px; margin: 0 auto; }
.pain-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F5F0E8;
  margin-bottom: 4rem;
  max-width: 700px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.pain-card {
  background: rgba(255,184,0,0.04);
  border: 1px solid rgba(255,184,0,0.1);
  border-radius: 4px;
  padding: 2rem;
}
.pain-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #F5F0E8;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.pain-reason {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.5;
}
.pain-solution {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  border-left: 2px solid #FFB800;
  padding-left: 1.5rem;
  max-width: 560px;
}

/* ===== HOW ===== */
.how { padding: 7rem 3rem; background: #0D0D0D; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F5F0E8;
  margin-bottom: 4rem;
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 240px;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,184,0,0.1);
  border-radius: 4px;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,184,0,0.4), rgba(255,184,0,0.1));
  flex-shrink: 0;
  align-self: center;
  margin: 0 0.5rem;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: rgba(255,184,0,0.4);
  margin-bottom: 1rem;
  line-height: 1;
}
.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #F5F0E8;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing { padding: 7rem 3rem; background: #111111; }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-box {
  display: flex;
  align-items: center;
  background: rgba(255,184,0,0.05);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.pricing-left {
  flex: 1;
  padding: 3rem;
  background: rgba(255,184,0,0.08);
}
.pricing-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: #F5F0E8;
  line-height: 1;
  margin-bottom: 1rem;
}
.pricing-per {
  font-size: 1.5rem;
  color: rgba(245,240,232,0.5);
}
.pricing-desc {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
}
.pricing-divider {
  width: 1px;
  background: rgba(255,184,0,0.2);
  align-self: stretch;
}
.pricing-right { flex: 1.2; padding: 3rem; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.8);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.check { color: #FFB800; font-weight: bold; font-size: 1rem; }
.pricing-note {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.4);
  max-width: 600px;
}

/* ===== MANIFESTO ===== */
.manifesto { padding: 8rem 3rem; background: #0D0D0D; }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #F5F0E8;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.manifesto-body {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.manifesto-closing {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: rgba(245,240,232,0.8);
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid rgba(255,184,0,0.2);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer { padding: 4rem 3rem 3rem; border-top: 1px solid rgba(255,184,0,0.1); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: #F5F0E8;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-stats { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .pain, .how, .pricing, .manifesto { padding: 5rem 1.5rem; }
  .steps { flex-direction: column; }
  .step-connector { width: 40px; height: 1px; margin: 0.5rem 0; }
  .pricing-box { flex-direction: column; }
  .pricing-divider { width: 100%; height: 1px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .pricing-price { font-size: 3rem; }
}