:root {
  --bg: #0c0c14;
  --surface: #141420;
  --surface-2: #1c1c2e;
  --fg: #f0ede6;
  --fg-muted: #8a8a9a;
  --accent: #d4a843;
  --accent-dim: rgba(212, 168, 67, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* SECTIONS */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(212, 168, 67, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212, 168, 67, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.metric-label { font-size: 0.72rem; color: var(--fg-muted); max-width: 120px; line-height: 1.4; }
.metric-divider { width: 1px; height: 48px; background: var(--border); }

/* NEWSLETTER MOCKUP */
.hero-visual { position: relative; }
.newsletter-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }
.mockup-title { font-size: 0.75rem; color: var(--fg-muted); flex: 1; font-family: monospace; }
.mockup-badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.mockup-body { padding: 24px; }
.mockup-meta { margin-bottom: 20px; }
.mockup-line {
  height: 10px;
  border-radius: 3px;
  background: var(--surface-2);
  margin-bottom: 8px;
}
.mockup-line.short { width: 40%; }
.mockup-line.medium { width: 65%; }
.mockup-line.long { width: 90%; }
.mockup-section { margin-bottom: 20px; }
.mockup-subhead {
  height: 14px;
  width: 55%;
  border-radius: 3px;
  background: var(--accent-dim);
  margin-bottom: 10px;
}
.mockup-agent-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-family: monospace;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.agent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 6px #28c840;
}
.mockup-footer {
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-footer span { font-size: 0.7rem; color: var(--fg-muted); }
.send-indicator { color: var(--accent) !important; font-weight: 500; }

.hero-status {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.status-row { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--fg-muted); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-active { background: #28c840; box-shadow: 0 0 6px #28c840; }
.status-pending { background: var(--accent); opacity: 0.6; }

/* HOW IT WORKS */
.how-it-works { padding: 120px 0; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fg);
}
.step-content p { font-size: 1rem; color: var(--fg-muted); max-width: 540px; line-height: 1.7; }

/* FEATURES */
.features { padding: 120px 0; background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface-2); }
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* OUTCOMES */
.outcomes { padding: 120px 0; }
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}
.outcomes-stats { display: flex; flex-direction: column; gap: 24px; }
.outcome-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-text { font-size: 0.8rem; color: var(--fg-muted); }

.outcomes-right { display: flex; flex-direction: column; gap: 24px; }
.outcome-block {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.outcome-block h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--fg-muted);
}
.outcome-block ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.outcome-block li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.outcome-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.4;
}
.outcome-block-accent { border-color: rgba(212, 168, 67, 0.3); background: var(--accent-dim); }
.outcome-block-accent h3 { color: var(--accent); }
.outcome-block-accent li::before { background: var(--accent); opacity: 1; }
.outcome-block-accent li { color: var(--fg); }

/* CLOSING */
.closing { padding: 120px 0; text-align: center; }
.closing-content { max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing p { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 16px; }
.closing-emphasis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--accent) !important;
}

/* FOOTER */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--fg); }
.footer-tagline { font-size: 0.75rem; color: var(--fg-muted); }
.footer-note { font-size: 0.75rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step-number { font-size: 2rem; }
  .nav-inner { padding: 16px 20px; }
  .section-inner { padding: 0 20px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-metrics { gap: 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .section-headline { font-size: 2rem; }
}