:root {
  --bg: #0f0f0f;
  --bg-card: #1a1a1a;
  --fg: #faf8f5;
  --fg-muted: #b0aba3;
  --accent: #e07040;
  --accent-dim: rgba(224, 112, 64, 0.12);
  --border: rgba(250, 248, 245, 0.08);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Epilogue', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 80px 80px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(224, 112, 64, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(224, 112, 64, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0f0f0f 0%, #141210 100%);
  z-index: 0;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--fg);
}

.hero-sub {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 36px;
}

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

.tag {
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(224, 112, 64, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.phone-mockup {
  width: 280px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(224, 112, 64, 0.08);
}

.phone-screen {
  background: #0f0f0f;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.call-waves {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.call-waves span {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.call-waves span:nth-child(1) { height: 40%; animation-delay: 0s; }
.call-waves span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.call-waves span:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.call-waves span:nth-child(4) { height: 60%; animation-delay: 0.45s; }
.call-waves span:nth-child(5) { height: 30%; animation-delay: 0.6s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.caller-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.caller-detail {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.call-message {
  font-size: 0.85rem;
  color: var(--fg);
  padding: 10px 14px;
  background: rgba(224, 112, 64, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(224, 112, 64, 0.15);
}

.call-status {
  font-size: 0.7rem;
  color: var(--accent);
  text-align: center;
  margin-top: 4px;
}

/* STATS BAR */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 80px;
  gap: 0;
}

.stat {
  padding: 0 40px 0 0;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  margin-right: 40px;
}

/* SECTION SHARED */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-headline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

/* FEATURES */
.features {
  padding: 100px 80px;
  background: var(--bg);
}

.features .section-headline {
  margin-bottom: 60px;
  max-width: 600px;
}

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

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

.feature-card:hover {
  border-color: rgba(224, 112, 64, 0.25);
}

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

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.feature-detail {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* NICHES */
.niches {
  padding: 100px 80px;
  background: #0d0d0d;
  border-top: 1px solid var(--border);
}

.niches-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 48px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-bottom: 36px;
}

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

.niche-card:hover {
  border-color: rgba(224, 112, 64, 0.25);
}

.niche-icon {
  margin-bottom: 16px;
}

.niche-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.niche-card p {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.niche-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* PRICING */
.pricing {
  padding: 100px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.pricing .section-headline {
  margin-bottom: 48px;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(224, 112, 64, 0.25);
}

.pricing-card.featured {
  border-color: rgba(224, 112, 64, 0.4);
  background: rgba(224, 112, 64, 0.04);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

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

.plan-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.plan-cta {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
}

/* CLOSING */
.closing {
  padding: 120px 80px;
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.closing-content {
  max-width: 680px;
  text-align: left;
}

.closing h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.closing-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 48px 0;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.proof-stat {}

.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.closing-cta {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

/* FOOTER */
.site-footer {
  padding: 60px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.3);
}

/* MOBILE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    gap: 24px;
  }
  .stat-divider { display: none; }
  .features { padding: 80px 40px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .niches { padding: 80px 40px; }
  .niche-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing { padding: 80px 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 40px; }
  .closing-proof { grid-template-columns: 1fr; }
  .site-footer { padding: 60px 40px; }
}

@media (max-width: 640px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 2.8rem; }
}
