:root {
  --bg: #0b0b14;
  --surface: #13131f;
  --surface-2: #1c1c2e;
  --border: #26263a;
  --accent: #ff5e2b;
  --accent-dim: #ff5e2b22;
  --blue: #5b8fff;
  --green: #34d399;
  --orange: #ff9f43;
  --text: #e8e8f0;
  --text-2: #9898b0;
  --text-3: #5a5a72;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Navbar */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.logo-accent {
  color: var(--accent);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-3);
  border-left: 1px solid var(--border);
  padding-left: 12px;
  margin-left: 4px;
}

/* Hero */
.hero {
  padding: 80px 48px 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
}

/* Feed Card */
.hero-feed {
  position: relative;
}
.feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border) inset;
}
.feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
}
.feed-dot.live {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,211,153,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0.05); }
}
.feed-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.feed-items { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.feed-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--surface-2);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.feed-signal { flex-shrink: 0; }
.signal-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent);
}
.signal-badge.deal {
  background: rgba(91,143,255,0.15);
  color: var(--blue);
}
.feed-content { display: flex; flex-direction: column; gap: 3px; }
.feed-brand { font-size: 13px; font-weight: 600; color: var(--text); }
.feed-meta { font-size: 11px; color: var(--text-3); }
.feed-status { font-size: 11px; font-weight: 500; }
.just-resumed { color: var(--green); }
.new-brand { color: var(--orange); }

/* Radar Section */
.radar {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.radar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.radar-left { padding-top: 8px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}
.radar-right { display: flex; flex-direction: column; gap: 16px; }
.radar-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.radar-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.r1 { background: rgba(255,94,43,0.15); color: var(--accent); }
.r2 { background: rgba(91,143,255,0.15); color: var(--blue); }
.radar-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.radar-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Pitch Section */
.pitch-section {
  padding: 80px 48px;
}
.pitch-inner { max-width: 800px; margin: 0 auto; }
.pitch-badge {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.pitch-desc {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 20px;
}
.pitch-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.pitch-window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.window-dots span:first-child { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #febc2e; }
.window-dots span:nth-child(3) { background: #28c840; }
.window-title { font-size: 12px; color: var(--text-2); font-weight: 500; margin-left: 4px; }
.pitch-body { padding: 24px; }
.pitch-tone { display: flex; gap: 8px; margin-bottom: 16px; }
.tone-opt {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  cursor: pointer;
}
.tone-opt.active {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: var(--accent);
}
.pitch-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--surface-2);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.pitch-actions { display: flex; align-items: center; gap: 12px; }
.btn-copy {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
}
.btn-edit {
  font-size: 13px;
  color: var(--text-3);
  cursor: pointer;
  text-decoration: underline;
}
.pitch-langs {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-3);
}

/* Features */
.features {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.features-col { display: flex; flex-direction: column; gap: 32px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fi-1 { background: rgba(255,94,43,0.12); color: var(--accent); }
.fi-2 { background: rgba(91,143,255,0.12); color: var(--blue); }
.fi-3 { background: rgba(52,211,153,0.12); color: var(--green); }
.fi-4 { background: rgba(255,159,67,0.12); color: var(--orange); }
.fi-5 { background: rgba(167,139,250,0.12); color: #a78bfa; }
.fi-6 { background: rgba(96,165,250,0.12); color: #60a5fa; }
.feature-item h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Closing */
.closing { padding: 96px 48px; }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.footer-copy { font-size: 13px; color: var(--text-3); }

/* Responsive */
@media (max-width: 768px) {
  .navbar, .hero, .radar, .pitch-section, .features, .closing, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-grid, .radar-inner, .features-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero { padding-top: 48px; padding-bottom: 48px; }
  .closing { padding-top: 64px; padding-bottom: 64px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}