:root {
  --bg: #0a0a0c;
  --bg-surface: #111116;
  --bg-card: #16161d;
  --fg: #e8e8ec;
  --fg-muted: #8a8a9a;
  --fg-dim: #5a5a6a;
  --accent: #4f7df9;
  --accent-glow: rgba(79, 125, 249, 0.15);
  --accent-2: #f97f4f;
  --green: #34d399;
  --red: #f87171;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- LANDING NAV ---- */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.landing-nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  /* Gradient matches hero heading (.gradient-text): coral-to-blue via --accent-2 → --accent */
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted) !important;
  text-decoration: none !important;
  transition: color 0.15s;
}

.landing-nav-link:hover {
  color: var(--fg) !important;
}

.landing-nav-cta {
  display: inline-block;
  padding: 7px 18px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none !important;
  transition: opacity 0.15s;
}

.landing-nav-cta:hover {
  opacity: 0.88;
  text-decoration: none !important;
}

/* ---- HERO ---- */
.hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 48px;
  position: relative;
  overflow: hidden;
}

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

.hero-inner {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(79, 125, 249, 0.25);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 32px;
}

.hero-cta {
  margin-bottom: 48px;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 99px;
  text-decoration: none !important;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 0 24px rgba(79, 125, 249, 0.35);
}

.btn-hero-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 32px rgba(79, 125, 249, 0.5);
}

.hero-cta-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 14px;
  background: rgba(52,211,153,0.06);
  border: 1px solid rgba(52,211,153,0.15);
  border-radius: 99px;
  display: inline-flex;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.hero-social-proof strong { color: var(--fg); }

.hsp-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.hsp-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid var(--bg);
  margin-left: -4px;
}

.hsp-avatars .hsp-avatar:first-child {
  margin-left: 0;
}

/* ---- SAMPLES SECTION ---- */
.samples {
  padding: 0 24px 80px;
  background: var(--bg);
}

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

.samples-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.samples h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 48px;
  color: var(--fg);
}

/* ---- SEE IT IN ACTION ---- */
.see-action {
  padding: 0 24px 80px;
  background: var(--bg);
}

.see-action-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.see-action-header {
  text-align: center;
  margin-bottom: 48px;
}

.see-action-eyebrow {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(79, 125, 249, 0.08);
  border: 1px solid rgba(79, 125, 249, 0.2);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.see-action-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  color: var(--fg);
}

.see-action-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Preview cards layout */
.see-action-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.preview-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-surface);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(52,211,153,0.5);
  flex-shrink: 0;
}

.preview-badge-live {
  margin-left: auto;
  padding: 2px 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--green);
  font-size: 0.65rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Research card specifics */
.preview-prospect-meta {
  padding: 20px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.preview-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.preview-role {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.preview-tabs {
  display: flex;
  gap: 0;
  padding: 12px 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.preview-tab {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px 6px 0 0;
  cursor: default;
}

.preview-tab.active {
  color: var(--accent);
  background: var(--accent-glow);
  border-bottom: 2px solid var(--accent);
  margin-bottom: -1px;
}

.preview-findings {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-finding {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--fg-muted);
}

.finding-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 1px;
}

.finding-text {
  flex: 1;
}

/* Email card specifics */
.preview-email-header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-email-field {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.preview-email-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--fg-dim);
  flex-shrink: 0;
  width: 40px;
}

.preview-email-val {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-family: 'Courier New', monospace;
}

.preview-email-subject {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fg);
}

.preview-email-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

.preview-email-body p {
  margin: 0;
}

.preview-email-body p:last-child {
  color: var(--fg);
}

.preview-email-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(52, 211, 153, 0.04);
  border-top: 1px solid rgba(52, 211, 153, 0.1);
}

.email-stat {
  font-size: 0.72rem;
  color: var(--fg-dim);
  font-weight: 500;
}

.email-stat-num {
  color: var(--fg-muted);
  font-weight: 700;
}

.email-stat--green {
  color: var(--green);
  margin-left: auto;
}

/* CTA wrap */
.see-action-cta-wrap {
  text-align: center;
}

.see-action-cta {
  font-size: 1.05rem;
  padding: 16px 36px;
  margin-bottom: 12px;
}

.see-action-cta-note {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

/* ---- MICRO-COMMITMENT ---- */
.micro-commitment {
  padding: 48px 24px 64px;
  text-align: center;
  background: var(--bg);
}

.micro-commitment-text {
  font-size: 1rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.micro-commitment-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

/* ---- HERO DEMO WIDGET ---- */
.hero-demo {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.demo-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-field-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}

.demo-field-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
}

.demo-arrow {
  color: var(--fg-dim);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 14px;
}

.demo-output {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.demo-output-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.demo-output-badge {
  display: inline-block;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- BEFORE/AFTER EMAIL COMPARISON ---- */
.email-comparison {
  margin-top: 56px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.email-col {
  flex: 1;
  min-width: 0;
}

.email-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 0 4px;
}

.email-label-bad { color: var(--red); }
.email-label-good { color: var(--green); }

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red { background: var(--red); box-shadow: 0 0 8px rgba(248,113,113,0.5); }
.dot-green { background: var(--green); box-shadow: 0 0 8px rgba(52,211,153,0.5); }

.email-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.email-bad .email-card {
  border-color: rgba(248,113,113,0.2);
  background: rgba(248,113,113,0.04);
}

.email-good .email-card {
  border-color: rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.04);
}

.email-to {
  font-size: 0.75rem;
  color: var(--fg-dim);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 8px;
  margin-bottom: 6px;
}

.email-to-val {
  color: var(--fg-muted);
}

.email-subject {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.email-body {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.merge-tag {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  background: rgba(248,113,113,0.15);
  border: 1px solid rgba(248,113,113,0.25);
  color: var(--red);
  padding: 1px 5px;
  border-radius: 4px;
}

.email-fate {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.email-bad .email-fate { color: var(--red); opacity: 0.8; }
.email-good .email-fate { color: var(--green); }

.fate-icon { font-size: 1rem; }

.email-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 0;
  flex-shrink: 0;
}

.vs-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
  padding: 6px 12px;
}

/* ---- PROOF SECTION REWRITE ---- */
.proof-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.proof-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 48px;
  margin-top: 16px;
}

.cost-table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.cost-table thead tr {
  background: var(--bg-surface);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cost-table th {
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  white-space: nowrap;
}

.cost-table td {
  padding: 16px 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cost-row-bad { background: rgba(248,113,113,0.03); }
.cost-row-mid { background: rgba(255,255,255,0.02); }
.cost-row-good { background: rgba(52,211,153,0.04); }

.cost-option-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
}

.cost-pinpitch {
  color: var(--green) !important;
}

.cost-price {
  font-family: var(--font-display);
  font-weight: 700;
  display: block;
}

.cost-high { color: var(--red); }
.cost-low { color: var(--green); font-size: 1.05rem; }

.cost-note {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-top: 2px;
}

.cost-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.cost-tag-red {
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.2);
  color: var(--red);
}

.cost-tag-green {
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.2);
  color: var(--green);
}

.cost-muted { color: var(--fg-muted); }
.cost-green-bold { color: var(--green); font-weight: 600; }

/* Mobile cost cards — hidden on desktop, shown below 768px */
.cost-cards-wrap {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

.cost-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px;
}

.cost-card--good {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(160deg, #0f1a15 0%, #101a18 100%);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.15), 0 8px 32px rgba(52, 211, 153, 0.06);
}

.cost-card-tool {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cost-card--good .cost-card-tool {
  color: var(--green);
}

.cost-card-star {
  font-size: 0.9rem;
  opacity: 0.7;
}

.cost-card-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cost-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cost-card-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-weight: 500;
  flex-shrink: 0;
}

.cost-card-row .cost-price,
.cost-card-row .cost-tag,
.cost-card-row .cost-muted,
.cost-card-row .cost-green-bold {
  font-size: 0.82rem;
  text-align: right;
}

/* Callout stats row */
.proof-callouts {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.callout {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.callout-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}

.callout-text {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.5;
}

.callout-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  align-self: stretch;
}

/* Transparency block */
.proof-transparency {
  border-left: 2px solid var(--accent);
  padding: 16px 24px;
  background: rgba(79,125,249,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
}

.proof-transparency p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
}

/* ---- MOBILE STICKY CTA ---- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 12px;
  text-decoration: none !important;
  text-align: center;
  box-shadow: 0 0 20px rgba(79, 125, 249, 0.4);
  transition: opacity 0.15s;
}

.mobile-sticky-btn:hover {
  opacity: 0.9;
  text-decoration: none !important;
}

/* ---- CLOSING CTA ---- */
.closing-cta-btn {
  display: inline-block;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  max-width: 140px;
  display: block;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
}

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

.problem-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- HOW ---- */
.how {
  padding: 100px 24px;
  background: var(--bg-surface);
}

.how-inner {
  max-width: 720px;
  margin: 0 auto;
}

.how-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.how h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 56px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(79, 125, 249, 0.3);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- PROOF ---- */
.proof {
  padding: 100px 24px;
}

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

.proof h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 48px;
}

.comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 32px;
}

.comparison-col {
  flex: 1;
  padding: 32px 28px;
  border-radius: var(--radius);
  text-align: left;
}

.comparison-col.old {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

.comparison-col.new {
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.col-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.old .col-header { color: var(--red); }
.new .col-header { color: var(--green); }

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-col li {
  color: var(--fg-muted);
  font-size: 0.92rem;
  padding-left: 16px;
  position: relative;
}

.old li::before { content: '\2013'; position: absolute; left: 0; color: var(--red); opacity: 0.5; }
.new li::before { content: '+'; position: absolute; left: 0; color: var(--green); opacity: 0.7; }

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-note {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.proof-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

.proof-cta {
  font-size: 1.05rem;
  padding: 14px 36px;
}

/* ---- PARTNERSHIP ---- */
.partnership {
  padding: 100px 24px;
  background: var(--bg);
}

.partnership-inner {
  max-width: 900px;
  margin: 0 auto;
}

.partnership-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-align: center;
}

.partnership h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  text-align: center;
}

.partnership-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
  text-align: center;
}

.partnership-workflow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.workflow-step {
  flex: 0 1 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  max-width: 180px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workflow-step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.workflow-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.workflow-step p {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.partnership-callout {
  background: rgba(79,125,249,0.04);
  border-left: 2px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
}

.partnership-callout p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.partnership-callout strong {
  color: var(--fg);
  font-weight: 600;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: var(--bg-surface);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent);
}

.closing-blockquote {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(52, 211, 153, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.65;
  text-align: left;
}

/* ---- FOOTER ---- */
.footer {
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg-muted);
}

.footer-sep { opacity: 0.3; }

.footer-note a { color: var(--fg-dim); }
.footer-note a:hover { color: var(--accent); }

/* ---- WAITLIST MODAL ---- */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 16px;
}

.wl-modal--open {
  opacity: 1;
  pointer-events: all;
}

.wl-modal-inner {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 32px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.wl-modal--open .wl-modal-inner {
  transform: translateY(0);
}

.wl-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}

.wl-modal-close:hover { color: var(--fg); border-color: rgba(255,255,255,0.2); }

.wl-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(79,125,249,0.1);
  border: 1px solid rgba(79,125,249,0.25);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.wl-modal-header { margin-bottom: 28px; }

.wl-social-proof {
  display: inline-block;
  font-size: 13px;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 5px 12px;
  margin-bottom: 14px;
}

.wl-social-proof strong { color: var(--fg); }

.wl-modal-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.wl-modal-sub { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.6; }

.wl-form { display: flex; flex-direction: column; gap: 16px; }
.wl-field { display: flex; flex-direction: column; gap: 6px; }
.wl-label { font-size: 0.82rem; font-weight: 600; color: var(--fg-muted); }
.wl-label-opt { font-weight: 400; color: var(--fg-dim); }

.wl-input {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
}
.wl-input::placeholder { color: var(--fg-dim); }
.wl-input:focus { border-color: var(--accent); }

.wl-submit-btn {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.15s;
  margin-top: 4px;
  box-shadow: 0 0 20px rgba(79,125,249,0.35);
}
.wl-submit-btn:hover:not(:disabled) { opacity: 0.9; }
.wl-submit-btn:disabled { cursor: not-allowed; }

.wl-submit-loading { display: none; }
.wl-submit-btn--loading .wl-submit-text { display: none; }
.wl-submit-btn--loading .wl-submit-loading { display: flex; align-items: center; gap: 8px; }

@keyframes wl-spin { to { transform: rotate(360deg); } }
.wl-spinner { animation: wl-spin 0.8s linear infinite; }

.wl-privacy { font-size: 0.78rem; color: var(--fg-dim); text-align: center; }

.wl-error {
  font-size: 0.85rem;
  color: var(--red);
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 8px;
  padding: 10px 14px;
}

.wl-local-note {
  font-size: 0.78rem;
  color: var(--fg-dim);
  text-align: center;
  margin-top: 8px;
}

.wl-success { text-align: center; padding: 8px 0; }
.wl-success-icon { margin-bottom: 16px; }
.wl-success-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.wl-success-text { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  /* Hero — tighter for mobile viewport */
  .hero { padding: 96px 20px 36px; min-height: auto; }
  .hero-badge { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: 18px; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 24px; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider { display: none; }

  .comparison {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-vs {
    padding: 8px 0;
  }

  .step { flex-direction: column; gap: 12px; }

  .partnership-workflow {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-step {
    max-width: 100%;
    min-height: auto;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    font-size: 1rem;
  }

  /* Mobile sticky CTA — show only on mobile */
  .mobile-sticky-cta { display: block; }

  /* Hide nav CTA on mobile — sticky CTA handles it */
  .landing-nav-cta { display: none; }
  .landing-nav-links { gap: 16px; }

  .demo-input-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .demo-arrow { display: none; }

  .hero-demo {
    padding: 16px;
    margin-top: 32px;
  }

  /* Email comparison — stack on mobile */
  .email-comparison {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .email-divider {
    padding: 0;
    align-items: center;
    justify-content: flex-start;
  }

  /* Cost table — hide desktop table on mobile, show cards */
  .cost-table-desktop { display: none; }
  .cost-cards-wrap { display: flex; }

  /* Callouts — stack on mobile */
  .proof-callouts {
    flex-direction: column;
  }

  .callout-divider {
    width: auto;
    height: 1px;
    align-self: auto;
  }

  .callout-stat { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding: 80px 16px 24px; }
  .hero-badge { margin-bottom: 14px; padding: 4px 12px; font-size: 11px; }
  .hero h1 { font-size: clamp(1.85rem, 6vw, 2.8rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.92rem; margin: 0 auto 20px; max-width: 340px; line-height: 1.55; }
  .btn-hero-primary {
    font-size: 0.95rem;
    padding: 14px 24px;
    display: block;
    text-align: center;
    width: 100%;
  }
  .hero-cta-note { margin-top: 10px; font-size: 0.78rem; }
  .problem, .how, .proof { padding: 60px 16px; }
  .closing { padding: 80px 16px; }
  .problem-card { padding: 24px 20px; }

  /* Extra breathing room above mobile sticky CTA */
  body { padding-bottom: 80px; }

  /* See It In Action — stack on mobile */
  .see-action-preview {
    grid-template-columns: 1fr;
  }

  .see-action-cta {
    display: block;
    text-align: center;
    font-size: 0.95rem;
    padding: 15px 24px;
    width: 100%;
  }

  .preview-email-stats {
    flex-wrap: wrap;
    gap: 10px;
  }
}