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

:root {
  --bg: #0b0f1a;
  --bg-2: #10152a;
  --amber: #f0a020;
  --amber-dim: rgba(240, 160, 32, 0.15);
  --text: #f0ede6;
  --text-muted: #8a8a9a;
  --text-faint: #4a4a5a;
  --green: #34d399;
  --blue: #60a5fa;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240,160,32,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Agent Panel */
.hero-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 60px rgba(240,160,32,0.05);
}
.panel-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.feed { display: flex; flex-direction: column; gap: 14px; }
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feed-item--muted { opacity: 0.5; }
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.feed-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.feed-dot.amber { background: var(--amber); box-shadow: 0 0 6px rgba(240,160,32,0.5); }
.feed-dot.blue { background: var(--blue); box-shadow: 0 0 6px rgba(96,165,250,0.5); }
.feed-dot.muted { background: var(--text-faint); }
.feed-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SECTION SHARED ===== */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 60px;
}

/* ===== HOW ===== */
.how { padding: 100px 40px; background: var(--bg-2); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240,160,32,0.12);
  line-height: 1;
  padding-top: 4px;
}
.step-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.step-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 600px; }

/* ===== FEATURES ===== */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}
.feature-rule {
  width: 32px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.feature p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== FUNNEL ===== */
.funnel { padding: 100px 40px; background: var(--bg-2); }
.funnel-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.funnel-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.comparison { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.comp-row { display: grid; grid-template-columns: 1fr repeat(3, auto); gap: 0; align-items: end; margin-bottom: 16px; }
.comp-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 500; grid-column: 1; }
.comp-values { display: flex; flex-direction: column; align-items: flex-end; padding: 0 16px; }
.comp-values:first-of-type { grid-column: 2; }
.comp-stat { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--text); }
.comp-note { font-size: 0.68rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; white-space: nowrap; }
.comp-divider { text-align: center; color: var(--text-faint); font-size: 0.75rem; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 16px 0; }
.comp-row--agent .comp-label { color: var(--amber); }
.comp-row--agent .comp-stat { color: var(--amber); }

/* ===== PRICING ===== */
.pricing { padding: 100px 40px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-title { margin-bottom: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(240,160,32,0.08);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.card-tier {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1;
}
.card-period { font-size: 1rem; color: var(--text-muted); font-weight: 400; font-family: var(--font-body); }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.card-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* ===== CLOSING ===== */
.closing { padding: 120px 40px; background: var(--bg-2); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 36px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ===== FOOTER ===== */
.footer { padding: 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 8px; }
.footer-desc { font-size: 0.8rem; color: var(--text-faint); max-width: 320px; line-height: 1.5; }
.footer-meta { font-size: 0.78rem; color: var(--text-faint); display: flex; align-items: center; gap: 8px; }
.footer-sep { color: var(--text-faint); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { display: none; }
  .funnel-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-num { font-size: 2rem; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 60px; }
  .how, .features, .funnel, .pricing, .closing { padding: 60px 24px; }
  .nav-inner { padding: 14px 24px; }
  .footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .comp-row { grid-template-columns: 1fr; gap: 8px; }
}