@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --bg: #050E08;
  --bg-card: #0A1410;
  --bg-card-hover: #0F1F15;
  --green: #2DD881;
  --green-dim: rgba(45, 216, 129, 0.12);
  --gold: #C9932A;
  --gold-dim: rgba(201, 147, 42, 0.12);
  --red: #FF5A5A;
  --red-dim: rgba(255, 90, 90, 0.12);
  --text: #E8F0EA;
  --text-muted: rgba(232, 240, 234, 0.5);
  --text-dim: rgba(232, 240, 234, 0.3);
  --border: rgba(201, 147, 42, 0.15);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  grid-template-rows: 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(45, 216, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-sidebar {
  background: #080F0B;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  gap: 32px;
}

.sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

.brand-name {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sidebar-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-content {
  padding: 80px 60px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 12px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-value {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green);
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 60px 40px;
}

.monitor {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 147, 42, 0.08);
}

.monitor-topbar {
  background: #0A1410;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.red { background: #FF5A5A; }
.dot.yellow { background: var(--gold); }
.dot.green { background: var(--green); }

.monitor-title {
  font-size: 10px;
  color: var(--text-dim);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
}

.monitor-body { padding: 20px; }

.panel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.panel-green { border-color: rgba(45, 216, 129, 0.2); }
.panel-red { border-color: rgba(255, 90, 90, 0.2); }
.panel-gold { border-color: rgba(201, 147, 42, 0.2); }

.panel-label { font-size: 10px; color: var(--text-dim); margin-bottom: 4px; letter-spacing: 0.04em; }
.panel-metric { font-family: var(--serif); font-size: 18px; color: var(--text); }
.panel-trend { font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.panel-trend.up { color: var(--green); }
.panel-trend.down { color: var(--red); }
.panel-trend.warn { color: var(--gold); }

.monitor-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--green);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.last-update { font-size: 10px; color: var(--text-dim); }

/* THE LEAK */
.the-leak {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--bg) 0%, #07120A 100%);
}

.leak-header { margin-bottom: 64px; }

.leak-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  max-width: 500px;
}

.leak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}

.leak-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.leak-icon {
  color: var(--red);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leak-card h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.leak-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.leak-pullout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 48px;
}

.leak-pullout blockquote {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 16px;
}

.leak-pullout .attribution {
  font-size: 12px;
  color: var(--gold);
  padding-left: 24px;
  letter-spacing: 0.04em;
}

/* THE AGENT */
.the-agent {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: #07120A;
}

.agent-left { display: flex; flex-direction: column; gap: 28px; }

.agent-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}

.agent-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.agent-features { display: flex; flex-direction: column; gap: 20px; }

.agent-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.af-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.agent-feature h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.agent-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.agent-console {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.console-header {
  background: #0A1410;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.console-label { font-size: 11px; color: var(--text-dim); letter-spacing: 0.05em; }

.console-badge {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 3px 8px;
  border-radius: 20px;
}

.console-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.signal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  border-left: 3px solid transparent;
}

.signal-alert { border-left-color: var(--red); }
.signal-opp { border-left-color: var(--green); }
.signal-churn { border-left-color: var(--gold); }

.signal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.signal-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}

.signal-tag.alert { background: var(--red-dim); color: var(--red); }
.signal-tag.opp { background: var(--green-dim); color: var(--green); }
.signal-tag.churn { background: var(--gold-dim); color: var(--gold); }

.signal-time { font-size: 10px; color: var(--text-dim); }

.signal-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 120px 80px;
  background: var(--bg);
}

.hiw-header { margin-bottom: 72px; }

.hiw-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: start;
}

.step { display: flex; flex-direction: column; gap: 20px; }

.step-number {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.step h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--border) 100%);
  margin: 32px auto 0;
}

/* OUTCOMES */
.outcomes {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--bg) 0%, #07120A 100%);
}

.outcomes-header { margin-bottom: 72px; }

.outcomes-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

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

.outcome-metric {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--green);
  line-height: 1;
}

.outcome-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.outcome-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 80px;
  background: #07120A;
}

.manifesto-content { max-width: 720px; }

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.manifesto-closing {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.75;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* PRICING PAGE */
.pricing-page {
  min-height: 100vh;
  background: var(--bg);
  padding: 0 80px 120px;
}

.pricing-nav {
  padding: 32px 0;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--text); }

.pricing-header {
  max-width: 560px;
  margin-bottom: 48px;
}

.pricing-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.pricing-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s;
}

.toggle-label.toggle-active { color: var(--text); }

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.toggle-switch.annual { background: var(--green-dim); border-color: var(--green); }

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--text-dim);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.toggle-switch.annual .toggle-thumb {
  transform: translateX(20px);
  background: var(--green);
}

.annual-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 3px 8px;
  border-radius: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  border-color: rgba(201, 147, 42, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan-recommended {
  border-color: rgba(45, 216, 129, 0.3);
  background: linear-gradient(160deg, #0A1410 0%, #0C1F14 100%);
  box-shadow: 0 0 0 1px rgba(45, 216, 129, 0.1), 0 8px 40px rgba(45, 216, 129, 0.05);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--green);
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header { margin-bottom: 20px; }

.plan-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.price-currency {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 6px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.price-annual-note {
  display: none;
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 4px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.feat-included { color: var(--text-muted); }
.feat-included svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.feat-excluded { color: var(--text-dim); }
.feat-excluded svg { color: var(--text-dim); flex-shrink: 0; margin-top: 2px; }

.plan-cta { margin-top: auto; }

.btn-plan {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-plan-free {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-plan-free:hover {
  border-color: rgba(201, 147, 42, 0.4);
  color: var(--text);
}

.btn-plan-growth {
  background: var(--green);
  color: #050E08;
  font-weight: 600;
}

.btn-plan-growth:hover {
  background: #3aeca0;
  box-shadow: 0 4px 16px rgba(45, 216, 129, 0.3);
}

.btn-plan-enterprise {
  background: var(--gold);
  color: #050E08;
  font-weight: 600;
}

.btn-plan-enterprise:hover {
  background: #d9a93a;
  box-shadow: 0 4px 16px rgba(201, 147, 42, 0.3);
}

.annual-alt-note {
  display: none;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* PAYMENT SUCCESS */
.payment-success {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
}

.ps-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.ps-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  max-width: 500px;
  margin: 16px 0 20px;
}

.ps-body {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.ps-actions { margin-bottom: 32px; }

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: #050E08;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #3aeca0;
  box-shadow: 0 4px 16px rgba(45, 216, 129, 0.3);
}

.ps-note {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 380px;
  line-height: 1.7;
}

.ps-note a { color: var(--text-muted); }

/* FOOTER */
.footer {
  padding: 60px 80px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .brand-mark {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
}

.footer-brand .brand-name {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: initial;
  transform: none;
}

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

.footer-nav {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-muted); }

.manifesto-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 24px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.manifesto-cta:hover {
  background: rgba(201, 147, 42, 0.2);
  border-color: rgba(201, 147, 42, 0.4);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* SIGNALS DASHBOARD */
.signals-page {
  min-height: 100vh;
  background: var(--bg);
}

.signals-nav {
  padding: 20px 60px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-brand .brand-mark {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
}

.nav-brand .brand-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.signals-body {
  padding: 48px 60px;
  max-width: 1200px;
}

.signals-header {
  margin-bottom: 40px;
}

.signals-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--text);
  margin: 8px 0 12px;
}

.signals-meta {
  font-size: 13px;
  color: var(--text-dim);
}

.signals-meta span { margin-right: 20px; }

/* Metric cards row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 20px 16px;
}

.metric-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.metric-value {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-sub {
  font-size: 11px;
  color: var(--text-dim);
}

.metric-card.green .metric-value { color: var(--green); }
.metric-card.gold .metric-value { color: var(--gold); }
.metric-card.red .metric-value { color: var(--red); }

/* Signals table */
.signals-section-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.signals-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.signals-table {
  width: 100%;
  border-collapse: collapse;
}

.signals-table th {
  padding: 14px 20px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  text-align: left;
  background: #080F0B;
}

.signals-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(201, 147, 42, 0.07);
  font-size: 13px;
  vertical-align: top;
}

.signals-table tr:last-child td { border-bottom: none; }

.signals-table tr:hover td { background: var(--bg-card-hover); }

/* Rank column */
.rank-cell {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-dim);
  width: 50px;
}

/* Company name */
.company-name {
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.company-email {
  font-size: 11px;
  color: var(--text-dim);
}

/* Score */
.score-cell { width: 80px; }

.score-badge {
  display: inline-block;
  font-family: var(--serif);
  font-size: 18px;
  padding: 2px 8px;
  border-radius: 6px;
}

.score-high { color: var(--red); background: var(--red-dim); }
.score-mid { color: var(--gold); background: var(--gold-dim); }
.score-low { color: var(--green); background: var(--green-dim); }

/* Signal type badge */
.signal-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.signal-badge.margin_destroyer { background: var(--red-dim); color: var(--red); }
.signal-badge.renewal_risk { background: var(--gold-dim); color: var(--gold); }
.signal-badge.pricing_opportunity { background: var(--green-dim); color: var(--green); }

.signal-type-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: capitalize;
}

/* Impact */
.impact-value {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}

.impact-label {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Action */
.action-text {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

/* Empty state */
.empty-state {
  padding: 80px 40px;
  text-align: center;
}

.empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-dim);
}

.empty-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.empty-body {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-seed {
  display: inline-block;
  padding: 10px 20px;
  background: var(--green-dim);
  border: 1px solid rgba(45, 216, 129, 0.2);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-seed:hover {
  background: rgba(45, 216, 129, 0.2);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-sidebar { display: none; }

  .hero-content {
    padding: 60px 32px 32px;
    grid-row: 1;
  }

  .hero-visual {
    padding: 32px;
    grid-row: 2;
  }

  .monitor { max-width: 100%; }

  .the-leak, .the-agent, .how-it-works, .outcomes, .manifesto, .footer {
    padding: 80px 32px;
  }

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

  .the-agent {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-connector { display: none; }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .panel-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider { display: none; }

  .signals-nav { padding: 16px 24px; }
  .signals-body { padding: 32px 24px; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .signals-table-wrap { overflow-x: auto; }
  .signals-table { min-width: 600px; }
}
