:root {
  --bg: #0d0d0d;
  --fg: #f5f0e8;
  --accent: #f5a623;
  --accent-soft: #f5a62322;
  --card-bg: #1a1a1a;
  --muted: #8a8578;
  --border: #2a2a2a;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* SITE NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-nav-brand { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--accent); }
.site-nav-links { display: flex; align-items: center; gap: 12px; }
.nav-cta-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s;
}
.nav-cta-ghost:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #0d0d0d;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* HERO CTA BUTTONS */
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-cta-primary {
  background: var(--accent);
  color: #0d0d0d;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: opacity 0.2s;
}
.hero-cta-primary:hover { opacity: 0.9; }
.hero-cta-secondary {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.hero-cta-secondary:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 8% 80px;
  position: relative;
}

.hero-inner {
  max-width: 600px;
}

.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
}

.highlight {
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}

.ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.ring-2 { width: 160px; height: 160px; animation-delay: 0.5s; }
.ring-3 { width: 220px; height: 220px; animation-delay: 1s; }

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.3); }
}

.phone-icon {
  font-size: 3rem;
  color: var(--accent);
  z-index: 2;
}

/* PROBLEM */
.problem {
  padding: 100px 8%;
  background: linear-gradient(180deg, var(--bg) 0%, #111 100%);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--fg);
}

.problem p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
}

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

.stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* FEATURES */
.features {
  padding: 100px 8%;
}

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

.features h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 48px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.2s;
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* HOW IT WORKS */
.how {
  padding: 100px 8%;
  background: #111;
}

.how-inner {
  max-width: 700px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 48px;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

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

/* CLOSING */
.closing {
  padding: 120px 8%;
  text-align: center;
}

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

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

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

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

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

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    min-height: auto;
  }

  .hero-inner {
    max-width: 100%;
  }

  .lede {
    margin: 0 auto;
  }

  .hero-visual {
    margin-top: 48px;
    width: 200px;
    height: 200px;
  }

  .ring-1 { width: 70px; height: 70px; }
  .ring-2 { width: 120px; height: 120px; }
  .ring-3 { width: 170px; height: 170px; }

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

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

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}