:root {
  --bg: #0b0d10;
  --bg-card: #13161b;
  --bg-card-hover: #1a1f26;
  --fg: #f0ece4;
  --fg-muted: #8a8d94;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --teal: #3d9e8a;
  --teal-dim: rgba(61, 158, 138, 0.15);
  --border: rgba(240, 236, 228, 0.08);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

/* HERO */
.hero {
  position: relative;
  padding: 100px 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--accent); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  max-width: 540px;
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--bg-card);
}

.metric {
  padding: 20px 32px;
}

.metric-value {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-glow {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* WHAT IT DOES */
.what-it-does {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.wip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.wip-item {
  background: var(--bg-card);
  padding: 40px 36px;
}

.wip-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.wip-item h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 12px;
}

.wip-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* NEVER MISSES */
.never-misses {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.nm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nm-text h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.nm-text p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.nm-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.nm-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.nm-card-1::before { background: var(--accent); }
.nm-card-2::before { background: var(--teal); }
.nm-card-3::before { background: var(--accent); opacity: 0.5; }

.nm-card-2 { background: rgba(61, 158, 138, 0.05); }

.nm-time {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nm-event {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
}

.nm-status {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* BRIEFING */
.briefing {
  padding: 100px 40px;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  text-align: center;
}

.briefing-email {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  margin-top: 48px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.briefing-header {
  background: rgba(245, 166, 35, 0.08);
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.briefing-from {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

.briefing-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.briefing-time {
  font-size: 12px;
  color: var(--fg-muted);
}

.briefing-subject {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  padding: 28px 28px 0;
  letter-spacing: -0.01em;
}

.briefing-body {
  padding: 24px 28px 32px;
}

.briefing-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.briefing-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.briefing-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
  padding-top: 2px;
  letter-spacing: 0.05em;
}

.briefing-item strong {
  color: var(--fg);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.briefing-item div {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
}

.briefing-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.briefing-caption {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 120px 40px 160px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-inner p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nm-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wip-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    flex-direction: column;
    width: 100%;
  }

  .metric-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero,
  .what-it-does,
  .never-misses,
  .briefing,
  .closing {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-headline {
    font-size: 44px;
  }

  .hero-sub {
    font-size: 16px;
  }
}