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

:root {
  --bg: #0D0D0D;
  --surface: #161616;
  --border: #252525;
  --text: #EDEDED;
  --muted: #666;
  --accent: #B8FF00;
  --accent-dim: rgba(184, 255, 0, 0.1);
  --green: #00D26A;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.tagline {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 24px;
}
h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  gap: 40px;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Activity Feed */
.hero-visual { display: flex; justify-content: flex-end; }
.activity-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
}
.feed-header {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text);
}
.feed-item:last-child { border-bottom: none; }
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.feed-dot.green { background: var(--green); box-shadow: 0 0 8px rgba(0, 210, 106, 0.4); }
.feed-dot.dim { background: var(--muted); }

/* ── WHAT IT DOES ── */
.what-it-does {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.what-it-does h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.job-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.job-card {
  background: var(--bg);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}
.job-card:last-child { border-right: none; }
.job-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(184, 255, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.job-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.job-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.how-it-works h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.step-body h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── DAILY REPORT ── */
.daily-report {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.report-preview { max-width: 680px; }
.report-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 24px;
}
.report-email {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.report-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.report-from {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}
.report-date { font-size: 0.8rem; color: var(--muted); }
.report-subject {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.report-section { margin-bottom: 24px; }
.report-section:last-child { margin-bottom: 0; }
.report-section-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}
.report-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.report-metric {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  min-width: 40px;
}
.report-metric.highlight { color: var(--accent); }
.report-desc { font-size: 0.875rem; color: var(--muted); }

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 680px; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing p { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }

/* ── FOOTER ── */
footer { padding: 28px 48px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .hero { padding: 56px 24px 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: flex-start; }
  .activity-feed { max-width: 100%; }
  .hero-meta { gap: 24px; }
  .stat-num { font-size: 2rem; }
  .what-it-does { padding: 60px 24px; }
  .job-cards { grid-template-columns: 1fr; }
  .job-card { border-right: none; border-bottom: 1px solid var(--border); }
  .job-card:last-child { border-bottom: none; }
  .how-it-works { padding: 60px 24px; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .daily-report { padding: 60px 24px; }
  .closing { padding: 72px 24px; }
  footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}