/* ── Variables ────────────────────────────────── */
:root {
  --bg:           #090910;
  --surface:       #0E0E18;
  --surface-2:    #14141F;
  --amber:         #FF9A3C;
  --amber-dim:     rgba(255,154,60,0.12);
  --orange:        #FF6B35;
  --text:          #F0EDE8;
  --text-muted:    rgba(240,237,232,0.55);
  --border:        rgba(255,154,60,0.12);
  --green:         #4ADE80;

  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --radius:        10px;
  --radius-lg:     18px;
}

/* ── Reset & Base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--bg); }

/* ── Nav ─────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--amber);
  border-radius: 5px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
  letter-spacing: -0.2px;
}

.nav-cta:hover { opacity: 0.88; }

/* ── Hero ────────────────────────────────────── */
.hero {
  padding: 100px 48px 80px;
  overflow: hidden;
}

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

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-sequence {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.seq-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
}

.seq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.seq-arrow {
  width: 20px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
}

/* Widget */
.hero-widget {
  position: relative;
}

.widget-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,154,60,0.06);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.widget-dots {
  display: flex;
  gap: 6px;
}

.widget-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.widget-dots span:nth-child(1) { background: #FF5F57; }
.widget-dots span:nth-child(2) { background: #FFBD2E; }
.widget-dots span:nth-child(3) { background: #28CA41; }

.widget-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.widget-body {
  padding: 24px;
}

.icp-block {
  background: var(--amber-dim);
  border: 1px solid rgba(255,154,60,0.25);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}

.icp-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 8px;
}

.icp-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

.widget-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.seq-gen-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.email-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.email-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.step-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.ai-tag {
  font-size: 10px;
  background: var(--amber);
  color: var(--bg);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

.email-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 4px;
}

.email-card p:last-child { margin-bottom: 0; }
.email-card p:first-child { color: var(--text); font-weight: 500; }

/* ── Social Proof Stats ─────────────────────── */
.social-proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.proof-stat {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 160px;
}

.proof-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ── Features ────────────────────────────────── */
.features {
  padding: 100px 48px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
  color: var(--text);
}

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

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

.feature-card:hover {
  border-color: rgba(255,154,60,0.3);
}

.feature-card--offset {
  margin-top: 40px;
}

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

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Pricing Signal ──────────────────────────── */
.pricing-signal {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-tiers {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 28px;
}

.tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.tier--featured {
  border-color: var(--amber);
  background: var(--amber-dim);
  padding: 28px 36px;
}

.tier-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.tier-period {
  font-size: 16px;
  color: var(--text-muted);
}

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

/* ── Manifesto ───────────────────────────────── */
.manifesto {
  padding: 100px 48px 120px;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 28px;
}

.manifesto-text p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

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

/* ── Mobile Responsive ───────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .hero { padding: 60px 24px 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 42px; letter-spacing: -1px; }
  .hero-lede { font-size: 16px; }
  .social-proof { padding: 32px 24px; }
  .proof-inner { gap: 0; }
  .proof-item { padding: 20px 24px; }
  .proof-sep { height: 40px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--offset { margin-top: 0; }
  .pricing-signal { padding: 60px 24px; }
  .pricing-tiers { flex-wrap: wrap; gap: 12px; }
  .manifesto { padding: 60px 24px 80px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-sequence { flex-direction: column; align-items: flex-start; gap: 12px; }
  .seq-arrow { display: none; }
  .proof-stat { font-size: 28px; }
}