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

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #040d1a;
  --bg-2: #071426;
  --surface: #0b1e35;
  --surface-2: #102540;
  --border: #1a3a5c;
  --fg: #e0f0ff;
  --fg-muted: #6b9fc4;
  --accent: #00b4d8;
  --accent-dim: #0096b7;
  --accent-glow: rgba(0, 180, 216, 0.12);
  --tier-red: #ef4444;
  --tier-red-bg: rgba(239, 68, 68, 0.08);
  --tier-amber: #f59e0b;
  --tier-amber-bg: rgba(245, 158, 11, 0.08);
  --tier-gray: #94a3b8;
  --tier-gray-bg: rgba(148, 163, 184, 0.06);
  --white: #ffffff;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 48px 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text { }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-input-group {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin-bottom: 14px;
}
.hero-url-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.hero-url-input::placeholder { color: var(--fg-muted); }
.hero-url-input:focus { border-color: var(--accent); }
.hero-cta {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--accent-dim); }
.hero-note {
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-visual { }
.hero-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
}

/* ===== SHARED SECTION STYLES ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 56px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hiw-step {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}
.hiw-step:last-child { border-right: none; }
.hiw-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--surface-2);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--border);
}
.hiw-step-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
}
.hiw-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hiw-step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== TIER PREVIEW ===== */
.tier-preview {
  padding: 96px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.tp-inner { max-width: 1200px; margin: 0 auto; }
.tp-header { margin-bottom: 48px; }
.tp-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.tp-sub {
  font-size: 16px;
  color: var(--fg-muted);
}
.tp-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.tp-tier {
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid;
}
.tp-tier-1 { background: var(--tier-red-bg); border-color: rgba(239,68,68,0.25); }
.tp-tier-2 { background: var(--tier-amber-bg); border-color: rgba(245,158,11,0.25); }
.tp-tier-3 { background: var(--tier-gray-bg); border-color: rgba(148,163,184,0.2); }
.tp-tier-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tp-tier-1 .tp-tier-label { color: var(--tier-red); }
.tp-tier-2 .tp-tier-label { color: var(--tier-amber); }
.tp-tier-3 .tp-tier-label { color: var(--tier-gray); }
.tp-tier-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.tp-tier-count {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.tp-tier-urgency {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.tp-tier-1 .tp-tier-urgency { background: rgba(239,68,68,0.15); color: var(--tier-red); }
.tp-tier-2 .tp-tier-urgency { background: rgba(245,158,11,0.15); color: var(--tier-amber); }
.tp-tier-3 .tp-tier-urgency { background: rgba(148,163,184,0.1); color: var(--tier-gray); }
.tp-tier-examples { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tp-tier-examples li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.tp-tier-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.tp-tier-1 .tp-tier-examples li::before { background: var(--tier-red); }
.tp-tier-2 .tp-tier-examples li::before { background: var(--tier-amber); }
.tp-tier-3 .tp-tier-examples li::before { background: var(--tier-gray); }
.tp-tier-locked {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: 12px;
}
.tp-funnel-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-anchor-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.6;
}
.pricing-amount-block { }
.pricing-amount-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-amount-value {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-strike {
  font-size: 28px;
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 8px;
}
.pricing-tagline {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  margin: 0 auto 40px;
}
.pricing-cta-group { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pricing-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.pricing-cta:hover { background: var(--accent-dim); }
.pricing-no-sub {
  font-size: 13px;
  color: var(--fg-muted);
}
.pricing-includes {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.pi-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}
.pi-item-icon {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
.pi-item-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pi-item-body {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-batch {
  margin-top: 40px;
  font-size: 13px;
  color: var(--fg-muted);
}
.pricing-batch a { color: var(--accent); text-decoration: none; }

/* ===== CLOSING ===== */
.closing {
  padding: 96px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 3px;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { display: none; }
  .hero-input-group { flex-direction: column; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .hiw-step:last-child { border-bottom: none; }
  .tp-tiers { grid-template-columns: 1fr; }
  .pricing-includes { grid-template-columns: 1fr; }
  .how-it-works, .tier-preview, .pricing, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}