:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1E1E1E;
  --amber: #F5A623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --text: #E8E8E8;
  --text-muted: #888;
  --border: rgba(255,255,255,0.08);
  --font-mono: 'IBM Plex Mono', monospace;
  --font-sans: 'IBM Plex Sans', sans-serif;
}

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

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

/* ── HERO ── */
.hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(245,166,35,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* Live feed */
.feed-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feed-header {
  padding: 10px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.feed-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.feed-items { padding: 8px 0; }
.feed-item {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.feed-item:last-child { border-bottom: none; }
.feed-item.alert-new { background: rgba(245,166,35,0.05); }
.feed-item.alert-hire { background: rgba(245,166,35,0.03); }
.feed-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 52px;
}
.feed-text { color: var(--text); line-height: 1.4; }

/* ── WHAT IT DOES ── */
.what-it-does {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-bottom: 20px;
}
.what-it-does h2 {
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  max-width: 580px;
  line-height: 1.25;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  padding: 32px 32px 32px 0;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.step h3 {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHAT YOU GET ── */
.what-you-get {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.what-you-get .section-label { margin-bottom: 40px; }
.watch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}
.watch-card {
  background: var(--surface);
  padding: 28px 24px;
}
.watch-card .watch-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--amber);
  border-radius: 2px;
  margin-bottom: 16px;
  position: relative;
}
.watch-card .watch-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.8;
}
.watch-card h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.watch-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  text-align: center;
  background: var(--bg);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.closing-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--amber);
}
.footer-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 24px 0; border-bottom: 1px solid var(--border); }
  .watch-grid { grid-template-columns: 1fr 1fr; }
  .what-it-does, .what-you-get, .closing, footer { padding-left: 24px; padding-right: 24px; }
}