:root {
  --bg: #080a0c;
  --surface: #111318;
  --surface2: #181b21;
  --fg: #f0ede8;
  --fg-muted: #8a8797;
  --accent: #39ff7a;
  --accent-dim: #1a7a3c;
  --red-flag: #ff4f4f;
  --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(57,255,122,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(57,255,122,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-copy h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-meta span:first-child {
  color: var(--accent);
  font-weight: 600;
}
.hero-meta .sep { opacity: 0.4; }

/* Report mockup */
.hero-report { display: flex; justify-content: center; }
.report-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(57,255,122,0.08);
}
.report-topbar {
  background: var(--surface2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.report-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.report-dot.red { background: #ff5f57; }
.report-dot.yellow { background: #febc2e; }
.report-dot.green { background: #28c840; }
.report-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-left: 8px;
  font-weight: 500;
}
.report-body { padding: 24px; }
.report-section { margin-bottom: 20px; }
.r-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}
.r-line {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 6px;
  width: 100%;
}
.r-line.short { width: 60%; }
.r-line.medium { width: 75%; }
.r-line.red { background: rgba(255,79,79,0.25); }
.broker-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}
.broker-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.8;
}
.broker-count {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
}
.report-classified {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
  text-align: center;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── HOW IT WORKS ── */
.hiw { padding: 100px 48px; background: var(--surface); }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 64px;
  color: var(--fg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { position: relative; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ── REPORT PREVIEW ── */
.preview { padding: 100px 48px; }
.preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.preview-copy h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}
.preview-copy p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.preview-categories { display: flex; flex-direction: column; gap: 2px; }
.cat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.cat-item:hover { border-color: rgba(57,255,122,0.2); }
.cat-icon {
  font-size: 14px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2);
  border-radius: 8px;
  flex-shrink: 0;
  font-weight: 600;
}
.cat-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--fg); }
.cat-text span { font-size: 12px; color: var(--fg-muted); }

/* ── AUDIENCE ── */
.audience { padding: 100px 48px; background: var(--surface); }
.audience-inner { max-width: 1200px; margin: 0 auto; }
.audience h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 64px;
  color: var(--fg);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}
.audience-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.audience-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }

/* ── PHILOSOPHY ── */
.philosophy { padding: 120px 48px; }
.philosophy-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.philosophy-quote {
  margin-bottom: 48px;
}
.philosophy-quote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--fg);
}
.philosophy-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.philosophy-body p:last-child { margin-bottom: 0; }

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--surface);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-cta p {
  font-size: 15px;
  color: var(--fg-muted);
}
.closing-cta p strong { color: var(--accent); }

/* ── FOOTER ── */
.site-footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
}
.footer-tagline { font-size: 12px; color: var(--fg-muted); }
.footer-legal {
  font-size: 11px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-report { order: -1; }
  .report-frame { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .audience-grid { grid-template-columns: 1fr; }
  .hiw, .preview, .audience, .philosophy, .closing { padding: 80px 24px; }
  .site-footer { padding: 40px 24px; }
}