/* I Didn't Use AI — Homepage v2
   Tone: Google Material Light
   Fonts: Plus Jakarta Sans (display+body) + JetBrains Mono (data)
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --blue: #1a73e8;
  --green: #34a853;
  --yellow: #f9ab00;
  --red: #ea4335;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --text: #202124;
  --text-secondary: #5f6368;
  --text-muted: #9aa0a6;
  --border: #e0e0e0;
  --border-light: #f1f3f4;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-6: 24px; --sp-8: 32px; --sp-12: 48px; --sp-16: 64px; --sp-24: 96px;
  --max-width: 1200px;
  --radius: 8px;
}

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

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

h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: 2.25rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: 1.375rem; font-weight: 600; line-height: 1.3; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--sp-6); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1557b0; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.btn-secondary { background: transparent; color: var(--blue); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg-alt); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

.section { padding: var(--sp-24) 0; }
.section-alt { padding: var(--sp-24) 0; background: var(--bg-alt); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 64px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo {
  font-weight: 800; font-size: 0.9rem; color: var(--text);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.03em;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: var(--sp-16) 0; }
  .nav-links { display: none; }
}

/* Section 2: News + Debt Counter */
.news-section { padding: var(--sp-12) 0; }
.debt-counter { text-align: center; margin-bottom: var(--sp-8); }
.debt-number {
  font-family: var(--font-mono); font-size: 4rem; font-weight: 700;
  color: var(--red); letter-spacing: -0.02em; line-height: 1;
}
.debt-label { font-size: 1.1rem; color: var(--text-secondary); margin-top: var(--sp-2); }
.debt-label em { font-style: normal; color: var(--red); font-weight: 600; }

.ticker-wrap { overflow: hidden; border-top: 1px solid var(--border); padding-top: var(--sp-4); }
.ticker {
  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.ticker-quote { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

/* Source logos (text-styled brand marks) */
.logo-guardian {
  font-family: Georgia, serif; font-weight: 700;
  font-size: 11px; color: #052962; border-left: 2px solid #052962; padding-left: 6px;
}
.logo-stanford {
  font-family: Georgia, serif; font-weight: 700;
  font-size: 11px; color: #8C1515;
}
.logo-chronicle {
  font-family: Georgia, serif; font-weight: 700;
  font-size: 11px; color: var(--text); font-style: italic;
}
.logo-court {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--border); padding: 2px 6px; border-radius: 3px;
}

@media (max-width: 768px) {
  .debt-number { font-size: 2.5rem; }
}

/* Hero */
.hero { padding: var(--sp-24) 0 var(--sp-16); }
.hero-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-12); align-items: center; }
.hero-sub { font-size: 1.15rem; color: var(--text-secondary); margin-top: var(--sp-3); margin-bottom: var(--sp-8); }
.hero-buttons { display: flex; gap: var(--sp-3); }

/* Demo container */
.demo-container {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.demo-docs { border-right: 1px solid var(--border); }
.demo-docs-toolbar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: var(--bg-alt); border-bottom: 1px solid var(--border);
}
.demo-dot { width: 8px; height: 8px; border-radius: 50%; }
.demo-docs-title { font-size: 11px; color: var(--text-secondary); margin-left: 8px; font-weight: 500; }
.demo-docs-body {
  padding: 16px; font-size: 13px; line-height: 1.7;
  min-height: 220px; color: var(--text); outline: none;
  font-family: 'Arial', sans-serif;
}
.demo-docs-body:focus { background: #fafbff; }

.demo-sidebar { background: var(--bg); padding: 12px; }
.demo-sidebar-header {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border-light); margin-bottom: 12px;
}
.demo-rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.5; }
}
.demo-rec-label { font-size: 10px; color: var(--text-secondary); }

.demo-metrics { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.demo-metric { display: flex; align-items: center; gap: 8px; }
.demo-metric-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  color: var(--text-muted); width: 28px; flex-shrink: 0;
}
.demo-metric-track { flex: 1; height: 6px; background: var(--border-light); border-radius: 3px; overflow: hidden; }
.demo-metric-fill { height: 100%; border-radius: 3px; background: var(--blue); transition: width 0.4s ease; }
.dm-green { background: var(--green); }
.dm-yellow { background: var(--yellow); }
.demo-metric-val {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: var(--text-secondary); width: 32px; text-align: right;
}

.demo-captures { min-height: 60px; margin-bottom: 12px; display: flex; flex-direction: column; gap: 4px; }
.demo-capture-card {
  font-size: 10px; padding: 6px 8px; border-radius: 4px;
  font-family: var(--font-mono); animation: slideIn 0.3s ease;
}
.demo-capture-card.normal { background: #e6f4ea; color: #137333; }
.demo-capture-card.alert { background: #fce8e6; color: #c5221f; }
.demo-capture-card.info { background: #e8f0fe; color: #1967d2; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.demo-btn {
  font-family: var(--font); font-size: 10px; font-weight: 600;
  padding: 6px 8px; border: 1px solid var(--border);
  border-radius: 4px; background: var(--bg); color: var(--text-secondary);
  cursor: pointer; transition: background 0.2s;
}
.demo-btn:hover { background: var(--bg-alt); color: var(--text); }

.demo-hint { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: var(--sp-3); }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero-text { text-align: center; }
  .hero-buttons { justify-content: center; }
  .demo-container { grid-template-columns: 1fr; }
  .demo-docs { border-right: none; border-bottom: 1px solid var(--border); }
}

/* Section 3: Extension Band */
.ext-band { padding: var(--sp-6) 0; background: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.ext-band-inner { display: flex; align-items: center; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }
.ext-band-icon { font-size: 1.5rem; }
.ext-band-text { font-size: 0.95rem; color: var(--text-secondary); }
.ext-band-text strong { color: var(--text); }

/* Section 4: Feature Cards */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); margin-top: var(--sp-8); }
.feature-card {
  padding: var(--sp-8); border: 1px solid var(--border); border-radius: var(--radius);
  transition: box-shadow 0.2s; position: relative; overflow: hidden;
}
.feature-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.feature-card h3 { margin-bottom: var(--sp-2); }

/* Feature Card — Exhibit Number */
.fc-exhibit {
  position: absolute;
  top: -8px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}
.fc-header {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}
.fc-header h3 { margin-bottom: 0; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); margin-top: var(--sp-2); margin-bottom: var(--sp-8); }

/* Section 5: Report Mockup */
.report-mockup {
  max-width: 640px; margin: 0 auto; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.report-mockup-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
}
.report-mockup-logo { font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.report-mockup-badge {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  color: var(--green); background: #e6f4ea; padding: 4px 10px; border-radius: 4px;
}
.report-mockup-body { padding: 24px; }
.report-mockup-line { height: 8px; background: var(--border-light); border-radius: 4px; margin-bottom: 12px; }
.w80 { width: 80%; } .w60 { width: 60%; } .w90 { width: 90%; }
.w40 { width: 40%; } .w70 { width: 70%; } .w85 { width: 85%; } .w50 { width: 50%; }
.report-mockup-verdict {
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700;
  color: var(--green); padding: 12px 0; margin: 8px 0;
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}

/* FAQ */
.faq-list { max-width: 720px; margin: var(--sp-8) auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: var(--sp-4) 0; }
.faq-item summary {
  font-weight: 600; font-size: 1rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--text-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
  margin-top: var(--sp-2); padding-bottom: var(--sp-2);
}

/* CTA */
.cta-final { padding: var(--sp-24) 0; background: var(--bg-alt); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-sub { font-size: 1.1rem; color: var(--text-secondary); margin: var(--sp-3) 0 var(--sp-8); }
.cta-trust { font-size: 0.8rem; color: var(--text-muted); margin-top: var(--sp-4); font-family: var(--font-mono); }

/* Footer */
.footer { padding: var(--sp-8) 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-4); }
.footer-links { display: flex; gap: var(--sp-6); }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* Scroll Reveals */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .ext-band-inner { text-align: center; flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* Demo Signal Bar */
.demo-signal { margin-bottom: 10px; }
.demo-signal-label { font-family: var(--font-mono); font-size: 8px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.demo-signal-bar {
  display: flex; gap: 1px; height: 20px; background: var(--border-light);
  border-radius: 3px; padding: 2px; overflow: hidden; align-items: flex-end;
}
.demo-sig {
  width: 3px; flex-shrink: 0; border-radius: 1px;
  transition: height 0.15s ease;
}
.demo-sig.g { background: var(--green); }
.demo-sig.b { background: var(--blue); }
.demo-sig.r { background: var(--red); }
.demo-sig.y { background: var(--yellow); }

/* Demo Evidence Counters */
.demo-evidence {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 4px;
  margin-bottom: 10px;
}
.demo-ev {
  background: var(--bg-alt); border: 1px solid var(--border-light);
  border-radius: 4px; padding: 4px 6px; text-align: center;
}
.demo-ev-val {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--text); display: block;
}
.demo-ev-label {
  font-family: var(--font-mono); font-size: 7px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Demo Chain Status */
.demo-chain {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px; background: #e6f4ea; border-radius: 4px;
  margin-bottom: 10px; font-size: 10px;
}
.demo-chain-icon { color: var(--green); font-weight: 700; }
.demo-chain-text { font-family: var(--font-mono); color: #137333; font-weight: 500; }
.demo-chain-count { margin-left: auto; font-family: var(--font-mono); color: var(--text-muted); font-size: 9px; }

/* Demo Section Labels */
.demo-section-label {
  font-family: var(--font-mono); font-size: 8px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 4px;
}

/* Mini CWT Chart */
.demo-cwt { margin-bottom: 10px; }
.demo-cwt-svg {
  width: 100%; height: auto;
  background: var(--bg-alt); border: 1px solid var(--border-light);
  border-radius: 4px;
}
.cwt-dot {
  transition: opacity 0.3s ease;
}

/* Burst DNA Fingerprint */
.demo-dna { margin-bottom: 10px; }
.demo-dna-row {
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 3px;
}
.demo-dna-label {
  font-family: var(--font-mono); font-size: 8px; font-weight: 700;
  color: var(--text-muted); width: 12px; flex-shrink: 0;
}
.demo-dna-strand {
  flex: 1; height: 8px; display: flex; gap: 1px;
  background: var(--border-light); border-radius: 2px;
  padding: 1px; overflow: hidden;
}
.demo-dna-bar {
  height: 100%; border-radius: 1px; flex-shrink: 0;
  animation: dnaGrow 0.2s ease-out;
}
@keyframes dnaGrow {
  from { width: 0; opacity: 0; }
  to { opacity: 1; }
}

/* Demo Video Popup */
.demo-video-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 20;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  animation: fadeIn 0.3s ease;
}
.demo-video-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.demo-video-popup {
  background: #1a1a2e;
  border-radius: 8px;
  width: 88%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: popIn 0.25s ease;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.demo-video-header {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.demo-video-rec {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #ff4444;
  animation: pulse 1s ease-in-out infinite;
}
.demo-video-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-left: auto;
  margin-right: 8px;
}
.demo-video-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  cursor: pointer;
  padding: 0 4px;
}
.demo-video-close:hover { color: #fff; }

.demo-video-content {
  padding: 12px;
}
.demo-video-docs {
  background: #fff;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 10px;
  line-height: 1.6;
  color: #202124;
  font-family: Arial, sans-serif;
  position: relative;
  min-height: 80px;
}
.demo-video-text {
  font-size: 10px;
}
.demo-video-highlight {
  background: rgba(234,67,53,0.12);
  border-bottom: 2px solid #ea4335;
  padding: 0 1px;
}
.demo-video-cursor {
  display: inline;
  color: #1a73e8;
  font-weight: 700;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
.demo-video-alert-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: #c5221f;
  background: #fce8e6;
  padding: 2px 6px;
  border-radius: 3px;
}

.demo-video-progress {
  height: 3px;
  background: rgba(255,255,255,0.1);
}
.demo-video-progress-bar {
  height: 100%;
  width: 0%;
  background: #ea4335;
  transition: width 0.1s linear;
}

.demo-video-footer {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.demo-video-hash { color: rgba(255,255,255,0.2); }

/* Make demo-container position relative for overlay */
.demo-container { position: relative; }

/* REC capture card variant */
.demo-capture-card.rec {
  background: #1a1a2e; color: #ff4444;
  display: flex; align-items: center; gap: 6px;
}
.demo-rec-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 8px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.demo-rec-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #ff4444; animation: pulse 1s ease-in-out infinite;
}

/* Feature Card Visuals */
.fc-visual {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* Card 1: Heatmap Grid */
.fc-visual-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fc-heatmap {
  display: grid;
  grid-template-columns: repeat(27, 1fr);
  gap: 2px;
}
.fc-hm-cell {
  aspect-ratio: 1;
  border-radius: 1.5px;
  min-width: 0;
  transition: opacity 0.3s;
}
.fc-heatmap-legend {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
}
.fc-hm-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  margin-right: 3px;
  vertical-align: middle;
}

/* Card 2: Hash chain visual */
.fc-visual-chain {
  display: flex;
  align-items: center;
  gap: 0;
}
.fc-chain-node {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  flex-shrink: 0;
}
.fc-chain-hash {
  font-size: 8px;
  color: var(--green);
  font-weight: 600;
}
.fc-chain-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 8px;
}
.fc-chain-new {
  border-color: var(--green);
  background: #e6f4ea;
}

/* Card 3: Source trace */
.fc-visual-trace {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-trace-doc {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px;
  position: relative;
}
.fc-trace-name {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.fc-trace-preview {
  height: 3px;
  width: 70%;
  background: var(--border-light);
  border-radius: 2px;
}
.fc-trace-arrow {
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.fc-trace-active {
  border-color: var(--yellow);
  background: #fef7e0;
}
.fc-trace-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  color: #f57c00;
  background: #fff3e0;
  padding: 1px 4px;
  border-radius: 2px;
}

/* Card 4: Event Recording — Filmstrip */
.fc-filmstrip {
  display: flex;
  gap: 6px;
  overflow: hidden;
}
.fc-frame {
  flex: 1;
  min-width: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 6px;
  position: relative;
}
.fc-frame-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 4px;
}
.fc-frame-line {
  height: 3px;
  background: var(--border);
  border-radius: 1px;
}
.fc-frame-time {
  font-family: var(--font-mono);
  font-size: 7px;
  color: var(--text-muted);
}

/* Event frames — red border + REC badge */
.fc-frame-event {
  border-color: var(--red);
  background: #fef2f2;
}
.fc-frame-rec {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}
.fc-frame-highlight {
  height: 6px;
  background: rgba(234,67,53,0.15);
  border-bottom: 1.5px solid var(--red);
  border-radius: 1px;
}
.fc-frame-badge {
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 600;
  color: var(--red);
  margin-top: 2px;
}

/* Report Mockup Enhanced */
.report-mock-section {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.report-mock-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 80px;
  flex-shrink: 0;
}
.report-mock-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
}
.report-mock-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.report-mock-metric {
  display: flex;
  align-items: center;
  gap: 8px;
}
.report-mock-metric-name {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  width: 28px;
  flex-shrink: 0;
}
.report-mock-metric-bar {
  flex: 1;
  height: 5px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}
.report-mock-metric-val {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
  width: 32px;
  text-align: right;
}
.report-mock-footer-info {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  margin-top: 4px;
}
