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

:root {
  --bg: #0f0f12;
  --surface: #16161a;
  --surface2: #1e1e24;
  --border: #2a2a33;
  --fg: #e8e8ec;
  --fg-muted: #7a7a8c;
  --green: #00ff88;
  --amber: #ffb547;
  --blue: #4fc3f7;
  --red: #ff6b6b;
  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Fira Code', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--green);
  color: var(--bg);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  letter-spacing: -0.5px;
}
.logo-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  padding: 8rem 0 5rem;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  color: var(--fg);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-meta-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.meta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.meta-dot.green { background: var(--green); }
.meta-dot.amber { background: var(--amber); }
.meta-dot.blue { background: var(--blue); }

/* Feed Card */
.hero-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.feed-header {
  background: var(--surface2);
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.feed-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}
.feed-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.5px;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.feed-items { padding: 0.5rem 0; }
.feed-item {
  padding: 0.85rem 1.25rem;
  display: grid;
  grid-template-columns: 60px 70px 1fr;
  gap: 0.75rem;
  align-items: start;
  border-bottom: 1px solid rgba(42,42,51,0.5);
}
.feed-item:last-child { border-bottom: none; }
.feed-item:hover { background: rgba(255,255,255,0.02); }
.feed-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-muted);
  padding-top: 2px;
}
.feed-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.feed-tag.green { background: rgba(0,255,136,0.12); color: var(--green); }
.feed-tag.amber { background: rgba(255,181,71,0.12); color: var(--amber); }
.feed-tag.blue { background: rgba(79,195,247,0.12); color: var(--blue); }
.feed-text { font-size: 0.75rem; color: var(--fg-muted); line-height: 1.5; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-top: 0.75rem;
  color: var(--fg);
}

/* Signals Section */
.signals { padding: 6rem 0; background: var(--bg); }
.signals-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.signal-card {
  background: var(--surface);
  padding: 2rem;
  transition: background 0.2s;
}
.signal-card:hover { background: var(--surface2); }
.signal-icon { margin-bottom: 1.25rem; color: var(--green); }
.signal-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
.signal-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.signal-stat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.3px;
  padding: 0.4rem 0.75rem;
  background: rgba(255,181,71,0.07);
  border-radius: 4px;
  display: inline-block;
}

/* How Section */
.how { padding: 6rem 0; background: #0c0c0f; }
.how-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  padding-top: 0.3rem;
  min-width: 28px;
}
.step-body { flex: 1; }
.step-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
.step-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; max-width: 560px; }
.how-connector {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--border), transparent);
  margin-left: 13px;
}

/* Monitor Section */
.monitor { padding: 6rem 0; background: var(--bg); }
.monitor-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.monitor-content { margin-bottom: 3rem; }
.monitor-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.8px; margin: 0.75rem 0 0.75rem; }
.monitor-desc { font-size: 0.95rem; color: var(--fg-muted); }
.report-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.75rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.report-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--green); letter-spacing: 0.5px; text-transform: uppercase; }
.report-date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--fg-muted); }
.report-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 2rem; }
.report-section-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.report-alert {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.alert-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.alert-tag.risk { background: rgba(255,107,107,0.15); color: var(--red); }
.alert-tag.emerging { background: rgba(79,195,247,0.12); color: var(--blue); }
.alert-tag.supply { background: rgba(255,181,71,0.12); color: var(--amber); }
.alert-text { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.alert-text strong { color: var(--fg); }
.report-pulse { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; font-style: italic; }
.report-footer {
  padding: 0.85rem 1.75rem;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.report-mono { font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted); }

/* Vision Section */
.vision { padding: 6rem 0; background: #0c0c0f; }
.vision-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.vision-eyebrow { font-family: var(--font-mono); font-size: 0.7rem; color: var(--amber); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.vision-title { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 1.5rem; max-width: 700px; }
.vision-body { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.8; max-width: 620px; margin-bottom: 4rem; }
.vision-stat-row { display: flex; align-items: center; gap: 3rem; }
.vision-stat { }
.vision-number { font-size: 2.5rem; font-weight: 700; color: var(--fg); letter-spacing: -1px; line-height: 1; }
.vision-number-label { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.4rem; font-family: var(--font-mono); }
.vision-divider { width: 1px; height: 48px; background: var(--border); }

/* Closing Section */
.closing { padding: 8rem 0; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.closing-ornament { color: var(--green); margin-bottom: 2.5rem; display: flex; justify-content: center; opacity: 0.7; }
.closing-headline { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 1.25rem; }
.closing-sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.6; }

/* Footer */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo-mark { font-family: var(--font-mono); font-weight: 600; font-size: 0.8rem; background: var(--green); color: var(--bg); padding: 0.15rem 0.4rem; border-radius: 4px; }
.footer-logo-name { font-weight: 600; font-size: 0.9rem; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.7rem; color: var(--fg-muted); }
.footer-copy { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(122,122,140,0.5); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-feed { max-width: 480px; }
  .signals-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-stat-row { flex-wrap: wrap; gap: 2rem; }
}
@media (max-width: 600px) {
  .hero { padding: 5rem 0 3rem; }
  .signals-grid { grid-template-columns: 1fr; }
  .how-step { gap: 1.25rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-tagline { display: none; }
  .feed-item { grid-template-columns: 50px 60px 1fr; }
}

/* ─── Nav: links and CTA buttons ─────────────────────────────────── */

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.06); }
.btn-nav-secondary {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-nav-secondary:hover { color: var(--fg); border-color: var(--fg-muted); }
.btn-nav-primary {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--green);
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.btn-nav-primary:hover { opacity: 0.85; }

/* ─── Hero: CTAs and meta row ────────────────────────────────────── */

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--green);
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.btn-primary-hero:hover { opacity: 0.85; }
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary-hero:hover { color: var(--fg); border-color: var(--fg-muted); }

/* ─── How section CTA ────────────────────────────────────────────── */

.how-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── Social proof section ────────────────────────────────────────── */

.social-proof { padding: 6rem 0; background: #0c0c0f; }
.sp-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.sp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 0;
  margin-bottom: 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sp-stat { text-align: center; }
.sp-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sp-label { font-size: 0.75rem; color: var(--fg-muted); font-family: var(--font-mono); letter-spacing: 0.3px; max-width: 160px; }
.sp-divider { width: 1px; height: 48px; background: var(--border); }
.sp-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sp-testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.sp-quote { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.sp-attribution { font-size: 0.75rem; color: var(--fg-muted); font-family: var(--font-mono); }
.sp-use-cases { display: flex; flex-direction: column; gap: 1.25rem; }
.sp-use-case {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  transition: border-color 0.2s;
}
.sp-use-case:hover { border-color: var(--fg-muted); }
.use-case-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.use-case-text { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }
.use-case-text strong { color: var(--fg); }

/* ─── Pricing teaser section ──────────────────────────────────────── */

.pricing-teaser { padding: 6rem 0; background: var(--bg); }
.pricing-teaser-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-subtitle { font-size: 1rem; color: var(--fg-muted); margin-top: 0.75rem; }
.pt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.pt-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.pt-card:hover { background: var(--surface2); }
.pt-card.featured { background: var(--surface2); border-top: 2px solid var(--green); }
.pt-plan { font-family: var(--font-mono); font-size: 0.7rem; color: var(--fg-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.75rem; }
.pt-price { font-size: 2rem; font-weight: 700; color: var(--fg); letter-spacing: -1px; margin-bottom: 1.5rem; }
.pt-price span { font-size: 0.9rem; font-weight: 400; color: var(--fg-muted); }
.pt-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pt-features li { font-size: 0.8rem; color: var(--fg-muted); display: flex; align-items: center; gap: 0.5rem; }
.pt-cta {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  transition: color 0.2s, border-color 0.2s;
}
.pt-cta:hover { color: var(--fg); border-color: var(--fg-muted); }
.pt-card.featured .pt-cta {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}
.pt-card.featured .pt-cta:hover { opacity: 0.85; }
.pt-footnote { font-size: 0.75rem; color: var(--fg-muted); text-align: center; font-family: var(--font-mono); }

/* ─── FAQ section ─────────────────────────────────────────────────── */

.faq { padding: 6rem 0; background: #0c0c0f; }
.faq-inner { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-toggle { flex-shrink: 0; color: var(--fg-muted); transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; padding-bottom: 1.5rem; }

/* ─── Signals section CTA ──────────────────────────────────────────── */

.signals-cta {
  text-align: center;
  margin-top: 3rem;
}
.btn-signals-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--green);
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.btn-signals-cta:hover { opacity: 0.85; }

/* ─── Closing section CTA ─────────────────────────────────────────── */

.closing-cta { margin-top: 2rem; }
.closing-fine-print { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(122,122,140,0.5); margin-top: 1rem; }

/* ─── Footer links ────────────────────────────────────────────────── */

.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-link { font-size: 0.8rem; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--fg); }
.footer-bottom { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.footer-sep { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(122,122,140,0.4); }
.footer-link-sm { font-family: var(--font-mono); font-size: 0.7rem; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-link-sm:hover { color: var(--fg); }

/* ─── Pricing page specific ───────────────────────────────────────── */

.pricing-hero { padding: 7rem 0 3rem; background: var(--bg); }
.pricing-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.pricing-headline { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -1.5px; margin: 0.75rem 0; color: var(--fg); }
.pricing-sub { font-size: 1rem; color: var(--fg-muted); }

.pricing-cards { padding: 0 0 6rem; background: var(--bg); }
.pricing-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pc-card.featured {
  background: var(--surface2);
  border-color: var(--green);
  border-width: 1px;
  box-shadow: 0 0 0 1px var(--green) inset;
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pc-plan { font-family: var(--font-mono); font-size: 0.7rem; color: var(--green); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.pc-price { font-size: 2.2rem; font-weight: 700; color: var(--fg); letter-spacing: -1.5px; line-height: 1; margin-bottom: 0.75rem; }
.pc-price span { font-size: 0.85rem; font-weight: 400; color: var(--fg-muted); }
.pc-desc { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; margin-bottom: 1.5rem; }
.pc-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pc-features li { font-size: 0.8rem; color: var(--fg-muted); display: flex; align-items: center; gap: 0.5rem; }
.pc-btn {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
  color: var(--fg-muted);
}
.pc-btn:hover { color: var(--fg); border-color: var(--fg-muted); }
.pc-btn-primary { background: var(--green); color: var(--bg) !important; border-color: var(--green) !important; }
.pc-btn-primary:hover { opacity: 0.85; }
.pc-btn-current { background: var(--surface2); color: var(--fg-muted) !important; border-color: var(--border); cursor: default; }
.pc-trial-note { font-size: 0.65rem; color: rgba(122,122,140,0.6); font-family: var(--font-mono); text-align: center; margin-top: 0.75rem; }

/* ─── Mobile overrides ────────────────────────────────────────────── */

@media (max-width: 1000px) {
  .pt-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards-inner { grid-template-columns: repeat(2, 1fr); }
  .sp-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .pt-grid { grid-template-columns: 1fr; }
  .pricing-cards-inner { grid-template-columns: 1fr; }
  .nav-links .nav-link { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .sp-stats { flex-direction: column; gap: 1.5rem; }
  .sp-divider { width: 48px; height: 1px; }
}

/* ─── Rebuilt landing page sections ───────────────────────────────── */

/* Hero: two-column layout */
.hero-inner {
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Nav: hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-muted);
  padding: 0.4rem;
  border-radius: 6px;
  transition: color 0.2s;
}
.nav-hamburger:hover { color: var(--fg); }
@media (max-width: 700px) {
  .nav-hamburger { display: flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: rgba(15,15,18,0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { display: flex !important; }
}

/* ─── Live Feed Preview ──────────────────────────────────────────── */
.live-feed-section { padding: 5rem 0; background: var(--bg); }
.live-feed-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.lf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) {
  .lf-grid { grid-template-columns: 1fr; }
}
.lf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.lf-card:hover { border-color: var(--fg-muted); background: var(--surface2); }
.lf-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.lf-repo {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lf-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lf-badge-amber { background: rgba(255,181,71,0.12); color: var(--amber); }
.lf-badge-green { background: rgba(0,255,136,0.12); color: var(--green); }
.lf-badge-blue { background: rgba(79,195,247,0.12); color: var(--blue); }
.lf-card-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 0.85rem; }
.lf-time { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(122,122,140,0.6); }

/* ─── Why Section ─────────────────────────────────────────────────── */
.why-section { padding: 5rem 0; background: #0c0c0f; }
.why-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.why-card:hover { background: var(--surface2); }
.why-icon { color: var(--green); margin-bottom: 1.5rem; }
.why-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.85rem; color: var(--fg); }
.why-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; }

/* ─── Signal Types Deep-Dive ─────────────────────────────────────── */
.signals-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .signals-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .signals-grid-5 { grid-template-columns: 1fr; }
}
.signal-icon { margin-bottom: 1.1rem; }
.signal-icon-amber { color: var(--amber); }
.signal-icon-green { color: var(--green); }
.signal-icon-blue { color: var(--blue); }
.signal-icon-red { color: var(--red); }
.signal-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.trigger-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.trigger-amber { background: var(--amber); }
.trigger-green { background: var(--green); }
.trigger-blue { background: var(--blue); }
.trigger-red { background: var(--red); }
.trigger-text { font-family: var(--font-mono); font-size: 0.65rem; color: var(--fg-muted); }

/* ─── Updated pricing teaser ─────────────────────────────────────── */
.pt-annual { font-size: 0.75rem; color: rgba(122,122,140,0.6); text-align: center; font-family: var(--font-mono); margin-top: 0.5rem; }

/* ─── Updated social proof ───────────────────────────────────────── */
.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .sp-testimonials { grid-template-columns: 1fr; }
}
.sp-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-quote {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.25rem;
}
.sp-attribution {
  font-size: 0.75rem;
  color: rgba(122,122,140,0.6);
  font-family: var(--font-mono);
  display: block;
}

/* ─── Responsive updates ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .signals-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .signals-grid-5 { grid-template-columns: 1fr; }
  .closing-cta .btn-primary-hero { width: 100%; text-align: center; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
}