:root {
  --bg: #0b0d10;
  --surface: #141720;
  --surface2: #1c2029;
  --text: #f2ece1;
  --text-muted: #8a8a8a;
  --accent: #e8661a;
  --accent-dim: rgba(232, 102, 26, 0.12);
  --border: rgba(242, 236, 225, 0.08);
  --radius: 12px;
}

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

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

/* ─── HERO ─────────────────────────────────── */
.hero {
  padding: 80px 24px 64px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,102,26,0.2);
  border-radius: 8px;
  padding: 12px 16px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.4;
}

/* ─── PHONE FRAME ─────────────────────────── */
.phone-frame {
  background: #1a1c24;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 16px 24px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.phone-battery {
  width: 24px;
  height: 12px;
  border: 1px solid var(--text-muted);
  border-radius: 3px;
  position: relative;
}
.phone-battery::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 0 1px 1px 0;
}
.phone-body {
  background: #0f1117;
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 340px;
}
.chat-bubble {
  max-width: 85%;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-bubble.incoming {
  background: var(--surface2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.outgoing {
  background: var(--accent-dim);
  border: 1px solid rgba(232,102,26,0.2);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-time {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}
.ai-tag {
  color: var(--accent);
  font-weight: 600;
}

/* ─── PROOF STATS ─────────────────────────── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text);
  text-align: center;
}
.proof-stats {
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.proof-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.proof-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
}

/* ─── PROBLEM ─────────────────────────────── */
.problem { padding: 80px 24px; }
.problem-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.problem-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.2;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.problem-icon {
  font-size: 18px;
  color: #ff4444;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.6;
}
.problem-text { font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.problem-bottom {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
}

/* ─── SECTION LABEL ────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ─── KIT ──────────────────────────────────── */
.kit { padding: 80px 24px; background: var(--surface); border-top: 1px solid var(--border); }
.kit-inner { max-width: 1100px; margin: 0 auto; }
.kit-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kit-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.kit-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.kit-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.kit-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── SCRIPTS ──────────────────────────────── */
.scripts { padding: 80px 24px; }
.scripts-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.scripts-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.scripts-sub { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.scripts-right { display: flex; flex-direction: column; gap: 20px; }
.script-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.script-label {
  background: var(--surface2);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.script-content { padding: 16px; }
.script-content p { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-style: italic; }

/* ─── WORKFLOWS ────────────────────────────── */
.workflows { padding: 80px 24px; background: var(--surface); border-top: 1px solid var(--border); }
.workflows-inner { max-width: 1100px; margin: 0 auto; }
.workflows-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 48px;
}
.workflow-steps { display: flex; align-items: center; gap: 0; }
.workflow-step { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,102,26,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.workflow-step h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.workflow-step p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.workflow-arrow { flex-shrink: 0; padding: 0 16px; color: var(--text-muted); }

/* ─── CLOSING ──────────────────────────────── */
.closing {
  padding: 100px 24px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.closing-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── FOOTER ──────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.footer-note { font-size: 13px; color: var(--text-muted); }

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .proof-stats { flex-direction: column; gap: 32px; }
  .proof-divider { display: none; }
  .kit-grid { grid-template-columns: 1fr 1fr; }
  .scripts-inner { grid-template-columns: 1fr; }
  .workflow-steps { flex-direction: column; gap: 12px; }
  .workflow-arrow { transform: rotate(90deg); padding: 8px 0; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 20px 48px; }
  .problem-grid { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr; }
  .proof-stat { padding: 0; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}