:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --fg-primary: #f0ece4;
  --fg-secondary: #a09b90;
  --fg-muted: #6b6760;
  --accent: #e8a838;
  --accent-dim: #c4892e;
  --accent-glow: rgba(232, 168, 56, 0.12);
  --green: #4ade80;
  --red: #f87171;
  --border: rgba(240, 236, 228, 0.08);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.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-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  background: var(--accent-glow);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

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

.hero .lede {
  font-size: 19px;
  color: var(--fg-secondary);
  max-width: 540px;
  line-height: 1.6;
}

/* STAT BAR */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}

.stat-item {
  background: var(--bg-secondary);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 4px;
}

.stat-number.loss { color: var(--red); }
.stat-number.gain { color: var(--green); }

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

/* PROBLEM */
.problem {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

.problem-label {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem p {
  color: var(--fg-secondary);
  font-size: 17px;
}

.call-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-event {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.call-event .time {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--fg-muted);
  min-width: 56px;
  font-weight: 500;
}

.call-event .event {
  font-size: 15px;
  flex: 1;
}

.call-event .status {
  font-family: var(--font-display);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.status.missed { background: rgba(248, 113, 113, 0.15); color: var(--red); }
.status.answered { background: rgba(74, 222, 128, 0.15); color: var(--green); }

/* FEATURES */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

.feature-card:hover {
  border-color: rgba(232, 168, 56, 0.25);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--fg-secondary);
  font-size: 15px;
  line-height: 1.55;
}

/* VERTICALS */
.verticals {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.vertical-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.vertical-card .industry {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 12px;
}

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.vertical-card p {
  color: var(--fg-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.vertical-card .metric {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-muted);
}

.vertical-card .metric strong {
  color: var(--green);
  font-weight: 600;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 24px;
}

.closing p {
  color: var(--fg-secondary);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  font-size: 14px;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

footer .brand {
  color: var(--accent);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .stat-bar { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 26px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 36px; }
  .feature-card { padding: 28px 20px; }
  .vertical-card { padding: 28px 24px; }
}