/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Figtree:wght@400;500;600&display=swap');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d1a;
  --bg-2: #13131f;
  --surface: #1a1a2e;
  --surface-2: #22223a;
  --text: #f5f5f7;
  --text-muted: #9898a8;
  --accent: #f97316;
  --accent-dim: rgba(249, 115, 22, 0.15);
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  max-width: 800px;
  margin-bottom: 32px;
}

.stat-number {
  color: var(--accent);
  font-family: 'Syne', sans-serif;
}

.stat-sub {
  font-size: 0.55em;
  color: var(--text-muted);
  display: block;
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-lede {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-visual {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}

/* ─── Phone Mock ─── */
.phone-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  width: 300px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(249,115,22,0.1);
}

.phone-screen {
  background: var(--bg-2);
  border-radius: 20px;
  padding: 16px;
  min-height: 260px;
}

.notif-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  margin-bottom: 16px;
}

.notif-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.notif-time {
  font-size: 11px;
  color: var(--text-muted);
}

.sms-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sms-auto {
  background: var(--surface-2);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.sms-reply {
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 12px 12px 4px 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  align-self: flex-end;
  max-width: 85%;
}

/* ─── Proof ─── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-item {
  text-align: center;
}

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

.proof-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Sections ─── */
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 700px;
}

/* ─── How it works ─── */
.how {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.step {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(249,115,22,0.4);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Outcomes ─── */
.outcomes {
  background: var(--surface);
  padding: 100px 24px;
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.outcomes-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 24px;
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.outcomes-card {
  display: flex;
  justify-content: center;
}

.pitch-card {
  background: var(--bg-2);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
}

.pitch-voice-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.pitch-text {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 20px;
}

.pitch-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Niches ─── */
.niches {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.niche-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-2px);
}

.niche-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.niche-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.niche-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Closing ─── */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 24px;
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.closing-number {
  text-align: right;
}

.close-stat {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.close-unit {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: right;
}

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  max-width: 560px;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

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

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 48px; }
  .phone-mock { width: 100%; max-width: 300px; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 32px; }
  .closing-number { text-align: left; }
  .close-unit { text-align: left; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .proof-stat { font-size: 36px; }
  .steps { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
}