:root {
  --bg: #080c14;
  --bg-card: #0e1520;
  --bg-card-alt: #121a27;
  --accent: #ff6122;
  --accent-dim: #c44d18;
  --text: #f0ebe3;
  --text-muted: #8a94a6;
  --text-dim: #545f73;
  --border: rgba(240, 235, 227, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.nav-tagline { font-size: 13px; color: var(--text-muted); }

/* HERO */
.hero {
  padding: 140px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.hero-overline { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 440px; line-height: 1.6; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-dim); margin-top: 2px; }

/* FEED CARD */
.hero-feed { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; padding: 0; }
.feed-label { padding: 14px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); background: var(--bg-card-alt); }
.feed-card { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.feed-card:last-of-type { border-bottom: none; }
.feed-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.feed-badge { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,97,34,0.15); color: var(--accent); padding: 2px 7px; border-radius: 4px; }
.feed-badge--granted { background: rgba(34,197,94,0.12); color: #22c55e; }
.feed-date { font-size: 11px; color: var(--text-dim); }
.feed-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.feed-meta { font-size: 12px; color: var(--text-muted); }
.feed-status { font-size: 11px; color: var(--accent); font-weight: 500; margin-top: 4px; }
.feed-status--granted { color: #22c55e; }
.feed-count { padding: 12px 20px; font-size: 12px; color: var(--text-dim); background: var(--bg-card-alt); text-align: center; border-top: 1px solid var(--border); }

/* SIGNALS */
.signals { padding: 80px 40px; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.signals-inner { max-width: 1200px; margin: 0 auto; }
.signals-header { margin-bottom: 56px; }
.signals-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); max-width: 600px; }
.signals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.signal-block { padding: 32px; border-right: 1px solid var(--border); }
.signal-block:last-child { border-right: none; }
.signal-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--accent); opacity: 0.4; margin-bottom: 16px; }
.signal-block h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.signal-block p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* SECTION HEADERS */
.section-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); margin-bottom: 16px; }
.section-headline em { font-style: italic; color: var(--accent); }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.6; margin-bottom: 56px; }

/* HOW IT WORKS */
.howitworks { padding: 80px 40px; }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.process-steps { display: flex; gap: 0; }
.process-step { flex: 1; display: flex; flex-direction: column; padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; position: relative; }
.process-num { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--accent); opacity: 0.5; margin-bottom: 16px; }
.process-content h4 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.process-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.process-arrow { display: none; }

/* NICHES */
.niches { padding: 80px 40px; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.niche-card { background: var(--bg-card); padding: 32px; }
.niche-icon { width: 40px; height: 40px; background: rgba(255,97,34,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 16px; }
.niche-card h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.niche-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* PRICING */
.pricing { padding: 80px 40px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pricing-headline { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px; }
.pricing-headline em { font-style: italic; color: var(--accent); }
.pricing-sub { font-size: 17px; color: var(--text-muted); max-width: 500px; margin: 0 auto 48px; }
.pricing-card { max-width: 440px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; text-align: left; }
.pricing-name { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.pricing-price { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--text); letter-spacing: -0.03em; }
.pricing-period { font-size: 20px; font-weight: 400; color: var(--text-muted); }
.pricing-note { font-size: 13px; color: var(--text-dim); margin-top: 6px; margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.pricing-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 32px; }
.pricing-features li { font-size: 14px; color: var(--text); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-sample { background: var(--bg-card-alt); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.sample-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.pricing-sample p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.sample-meta { font-size: 12px; color: var(--text-dim); margin-top: 8px; }

/* CLOSING */
.closing { padding: 80px 40px; background: var(--bg-card); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-stat-row { display: flex; align-items: center; gap: 48px; margin-bottom: 64px; }
.closing-stat { display: flex; flex-direction: column; }
.closing-value { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--accent); letter-spacing: -0.03em; }
.closing-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.closing-divider { width: 1px; height: 60px; background: var(--border); }
.closing-statement { border-top: 1px solid var(--border); padding-top: 48px; }
.closing-statement p { font-family: var(--font-display); font-size: clamp(32px, 5vw, 64px); font-weight: 300; font-style: italic; color: var(--text); letter-spacing: -0.02em; line-height: 1.1; }

/* FOOTER */
.footer { padding: 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
.footer-links { display: flex; gap: 24px; margin-bottom: 32px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* MOBILE */
@media (max-width: 900px) {
  .hero { padding: 120px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 24px; }
  .signals-grid { grid-template-columns: 1fr; }
  .signal-block { border-right: none; border-bottom: 1px solid var(--border); }
  .process-steps { flex-direction: column; gap: 16px; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .closing-stat-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .closing-divider { display: none; }
  .pricing-features { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .niches-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .hero-headline { font-size: 36px; }
  .pricing-price { font-size: 44px; }
  .closing-value { font-size: 40px; }
}