:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --border: #2a2a2a;
  --fg: #f0ede8;
  --fg-muted: #888;
  --accent: #F5A623;
  --accent-dim: rgba(245,166,35,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', 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);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO — new layout */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.urgency-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline-accent {
  color: var(--accent);
}
.hero-subhead {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.pain-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.pain-list li em {
  font-style: normal;
  color: var(--fg);
  font-weight: 500;
}
.pain-icon { flex-shrink: 0; margin-top: 2px; }
.social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: -6px;
}
.proof-avatar:first-child { margin-left: 0; }
.hero-cta { display: flex; flex-direction: column; gap: 0.75rem; }
.trust-signals {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* PAY BUTTON */
.pay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.pay-btn:hover {
  background: #ffb84d;
  transform: translateY(-1px);
}
.pay-btn:active { transform: translateY(0); }
.pay-btn-large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}
.pay-btn-strip {
  margin-top: 1.25rem;
}

/* PRICING STRIP */
.pricing-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  background: var(--surface);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.price-callout { margin-bottom: 1.5rem; }
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-period { font-size: 1.5rem; font-weight: 500; color: var(--fg-muted); }
.price-tagline { font-size: 0.875rem; color: var(--fg-muted); }
.anchoring-label, .what-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.875rem;
}
.anchoring-items { display: flex; flex-direction: column; gap: 0.625rem; }
.anchoring-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.anchoring-x { color: #ef4444; font-weight: 700; flex-shrink: 0; }
.what-items { display: flex; flex-direction: column; gap: 0.75rem; }
.what-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
}
.pricing-what {}

/* FOMO */
.fomo-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.fomo-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2.5rem;
  text-align: center;
}
.fomo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.fomo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.fomo-icon { flex-shrink: 0; }
.fomo-cta { text-align: center; }

/* CLOSING — updated */
.closing {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.closing-trust {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* SUBSCRIBED BANNER (builder page) */
.subscribed-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 680px;
  margin: 100px auto 0;
  padding: 1rem 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 500;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--surface);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* HOW / STEPS */
.how {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 3.5rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  background: var(--surface);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features .section-title { margin-bottom: 3rem; }
.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature-block {
  padding: 2rem 2.25rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.65rem;
}
.feature-block p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FLOW / COMPARISON */
.flow {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.flow .section-title { margin-bottom: 3rem; }
.comparison {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}
.comp-side {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.comp-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.comp-old .comp-label { color: var(--fg-muted); }
.comp-new .comp-label { color: var(--accent); background: var(--accent-dim); }
.comp-items { padding: 0.5rem 0; }
.comp-item {
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.comp-new .comp-item { color: var(--fg); }
.comp-sep {
  height: 1px;
  background: var(--border);
  margin: 0 1.5rem;
}
.comp-arrow {
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 100px 1.5rem 60px; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .comparison { flex-direction: column; }
  .comp-arrow { transform: rotate(90deg); padding: 0; justify-content: center; }
  .how, .features, .flow, .closing, .fomo-section, .pricing-strip { padding: 4rem 1.5rem; }
  .pricing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fomo-list { grid-template-columns: 1fr; }
}
