/* ============================================================
   MURDER BOARD — DroneSec Clone (Faithful)
   Source: dronesec.com layout, spacing, typography
   Accent: #c41e1e (red) replaces DroneSec #F09C00 (orange)
   Font: Figtree (body) + JetBrains Mono (intel elements)
   Max-width: 1440px (90rem) — matches DroneSec
   ============================================================ */

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-card: #eaf0fe;
  --bg-dark: #0c1832;
  --bg-dark-soft: #122040;
  --text: #000000;
  --text-muted: #555555;
  --text-light: #888888;
  --text-on-dark: #c8d0e0;
  --accent: #c41e1e;
  --accent-hover: #a01818;
  --accent-soft: rgba(196, 30, 30, 0.06);
  --accent-border: rgba(196, 30, 30, 0.25);
  --border: #e5e5e5;
  --border-dark: rgba(255,255,255,0.08);
  --nav-height: 80px;
  --font-body: 'Figtree', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1440px;
  --content-w: 1100px;
  --transition: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: var(--content-w); margin: 0 auto; padding: 0 40px; }

/* === NAV (80px, DroneSec-style) === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
}
.nav-logo {
  font-family: var(--font-mono); font-weight: 700; font-size: 18px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 36px;
  font-size: 15px; font-weight: 500; color: var(--text-muted);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 12px 28px; border-radius: 2px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); color: var(--white); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  position: absolute; left: 6px; transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 23px; }

.nav-drawer {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 40px 24px; z-index: 999; flex-direction: column;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 400;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--text); }

/* === HERO (DroneSec-style) === */
.hero {
  position: relative; min-height: 520px;
  padding-top: calc(var(--nav-height) + 72px); padding-bottom: 72px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg .dossier-bg {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 55%; max-width: 700px; opacity: 0.12;
  font-family: var(--font-mono); font-size: 14px; line-height: 2;
  color: var(--text); white-space: pre-wrap; padding: 60px;
  pointer-events: none; user-select: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 36px; max-width: 520px;
}
.hero-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 12px;
  font-weight: 600; color: var(--accent); letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* === BUTTONS (DroneSec style: flat, minimal radius) === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; padding: 14px 32px;
  border-radius: 2px; cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--white); }
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: #f0f0f0; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* === SECTIONS (DroneSec density) === */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-soft { background: var(--bg-soft); }

.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-header p {
  font-size: 18px; color: var(--text-muted); max-width: 640px; line-height: 1.7;
}
.section-dark .section-header p { color: var(--text-on-dark); }
.section-label {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--accent); margin-bottom: 16px;
}
.text-center { text-align: center; }
.text-center p,
.text-center .section-header p,
.section-header.text-center p { margin-left: auto; margin-right: auto; }
.text-center .section-header,
.section-header.text-center { display: flex; flex-direction: column; align-items: center; }

/* === STATEMENT SECTION (dark, impactful) === */
.section-statement {
  background: linear-gradient(160deg, var(--bg-dark) 0%, #1a2a4a 100%);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-statement .section-header { margin-bottom: 0; }
.section-statement .section-header h2 {
  color: var(--white); max-width: 800px; margin-left: auto; margin-right: auto;
}
.section-statement .section-header p {
  color: var(--text-on-dark); max-width: 640px; margin-left: auto; margin-right: auto;
}
.section-statement + .section { padding-top: 64px; }

/* === DOSSIER HERO VISUAL (full-width dark block) === */
.hero-dossier {
  background: var(--bg-dark); border-radius: 8px;
  padding: 48px; margin-top: 60px;
  font-family: var(--font-mono); font-size: 13px; line-height: 2;
  color: #666; position: relative; overflow: hidden;
  max-width: 900px;
}
.hero-dossier::before {
  content: 'SAMPLE EXTRACT'; position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 600; color: var(--accent);
  border: 1px solid var(--accent); padding: 3px 10px; border-radius: 2px;
  letter-spacing: 0.06em;
}
.hero-dossier .wht { color: #fff; font-weight: 500; }
.hero-dossier .dim { color: #444; }
.hero-dossier .val { color: #aaa; }
.hero-dossier .red { color: var(--accent); }

/* === NUMBERED STEPS (DroneSec accordion style) === */
.steps-list { max-width: 900px; }
.step-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.section-dark .step-item { border-color: var(--border-dark); }
.step-header {
  display: flex; align-items: center; gap: 32px;
  padding: 28px 0; cursor: pointer; user-select: none;
}
.step-number {
  font-size: 36px; font-weight: 400; min-width: 56px;
  color: var(--text);
}
.section-dark .step-number { color: var(--white); }
.step-title { font-size: 18px; font-weight: 400; flex: 1; }
.section-dark .step-title { color: var(--white); }
.step-chevron {
  width: 36px; height: 36px; border: 1px solid var(--accent);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--transition);
}
.step-chevron svg { width: 16px; height: 16px; color: var(--accent); }
.step-item.open .step-chevron { transform: rotate(180deg); }
.step-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.step-item.open .step-content { max-height: 400px; }
.step-desc {
  padding: 0 0 32px 88px;
  color: var(--text-muted); font-size: 18px; line-height: 1.7;
  max-width: 600px;
}
.section-dark .step-desc { color: var(--text-on-dark); }

/* === CARDS (DroneSec light-blue bg) === */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-card); border-radius: 8px;
  padding: 36px; transition: transform var(--transition);
}
.card:hover { transform: translateY(-2px); }
.card-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--accent); margin-bottom: 16px;
}
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.card p { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

/* Dark variant cards */
.section-dark .card { background: var(--bg-dark-soft); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: var(--text-on-dark); }

/* === SPLIT LAYOUT === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split h3 { font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.split p { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

/* === DOSSIER PREVIEW BLOCK === */
.dossier {
  background: var(--bg-dark); border-radius: 8px;
  padding: 36px; font-family: var(--font-mono); font-size: 13px;
  line-height: 1.9; color: #666; position: relative;
}
.dossier-label {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 600; color: var(--accent);
  border: 1px solid var(--accent); padding: 2px 8px; border-radius: 2px;
  letter-spacing: 0.05em;
}
.dossier .wht { color: #fff; font-weight: 500; }
.dossier .dim { color: #444; }
.dossier .val { color: #aaa; }
.dossier .red { color: var(--accent); }

/* === TAGS === */
.tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; padding: 3px 10px; border-radius: 2px;
  letter-spacing: 0.02em;
}
.tag-sourced { background: rgba(34,139,34,0.08); color: #228b22; border: 1px solid rgba(34,139,34,0.15); }
.tag-inferred { background: rgba(196,150,30,0.08); color: #b8860b; border: 1px solid rgba(196,150,30,0.15); }
.tag-speculative { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }

/* === WELCOME / DARK FEATURE SECTION === */
.welcome-section {
  background: var(--bg-dark); padding: 100px 0;
  background-image: linear-gradient(rgba(12,24,50,0.85), rgba(12,24,50,0.85));
}
.welcome-section h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 600;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 40px;
}
.welcome-btns { display: flex; gap: 16px; margin-bottom: 64px; flex-wrap: wrap; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.feature-item {
  padding: 40px; border-left: 1px solid var(--border-dark);
}
.feature-item:first-child { border-left: none; }
.feature-item h4 {
  font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 16px;
}
.feature-item p {
  font-size: 18px; color: var(--text-on-dark); line-height: 1.7;
}

/* === PRICING === */
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 56px; max-width: 520px; margin: 0 auto; position: relative;
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; padding: 6px 20px; border-radius: 2px;
  white-space: nowrap;
}
.pricing-amount {
  font-size: 56px; font-weight: 600; line-height: 1; margin: 24px 0 4px;
  font-family: var(--font-body);
}
.pricing-original {
  font-size: 18px; color: var(--text-light); text-decoration: line-through; margin-bottom: 8px;
}
.pricing-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; }
.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  display: flex; gap: 12px; padding: 12px 0;
  font-size: 18px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23c41e1e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* === ANALYST CARD === */
.analyst-card {
  display: flex; gap: 32px; align-items: flex-start;
  background: var(--bg-card); border-radius: 8px; padding: 48px;
}
.analyst-avatar {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
}
.analyst-name { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.analyst-role { font-size: 14px; color: var(--accent); font-family: var(--font-mono); margin-bottom: 12px; }
.analyst-bio { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

/* === FAQ === */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-q { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.faq-a { font-size: 18px; color: var(--text-muted); line-height: 1.7; }
.faq-compact .faq-item { padding: 18px 0; }

/* === DENSE SECTION === */
.section-dense { padding: 24px 0 48px 0; }

/* === CONTACT / CTA WITH BRACKETS (DroneSec pattern) === */
.bracket-section { padding: 100px 0; background: var(--bg-soft); }
.bracket-box {
  max-width: 700px; margin: 0 auto;
  padding: 60px 48px;
  position: relative;
}
.bracket-box::before,
.bracket-box::after {
  content: ''; position: absolute; width: 40px; height: 40px;
  border-color: var(--accent); border-style: solid;
}
.bracket-box::before {
  top: 0; left: 0;
  border-width: 3px 0 0 3px;
}
.bracket-box::after {
  bottom: 0; right: 0;
  border-width: 0 3px 3px 0;
}
.bracket-box h2 {
  font-size: 36px; font-weight: 600;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.bracket-box p {
  font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px;
}

/* === TRUST GRID === */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden;
}
.trust-item { background: var(--white); padding: 36px 24px; text-align: center; }
.trust-icon { font-size: 24px; margin-bottom: 12px; }
.trust-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.trust-item p { font-size: 18px; color: var(--text-muted); line-height: 1.6; }

/* === CHECKLIST === */
.checklist li {
  display: flex; gap: 12px; margin-bottom: 14px;
  font-size: 18px; color: var(--text-muted); line-height: 1.6;
}
.checklist li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
  background: var(--accent-soft); border: 1px solid var(--accent-border); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23c41e1e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* === FOOTER (DroneSec: dark, minimal) === */
.footer { background: var(--bg-dark); padding: 64px 0 40px; color: var(--text-on-dark); }
.footer-brand {
  font-family: var(--font-mono); font-weight: 700; font-size: 20px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  margin-bottom: 32px;
}
.footer-brand span { color: var(--accent); }
.footer-links { display: flex; gap: 32px; margin-bottom: 24px; }
.footer-links a { font-size: 14px; color: var(--text-on-dark); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px; color: #667;
}

/* === CALLOUT === */
.callout {
  background: var(--accent-soft); border-left: 3px solid var(--accent);
  padding: 24px 28px; border-radius: 0 8px 8px 0;
  font-size: 18px; color: var(--text-muted); line-height: 1.7;
}
.callout strong { color: var(--text); }

/* === SAMPLE REPORT PAGE === */
.report-doc {
  background: #0a0f1a;
  padding: 40px 20px 80px;
  min-height: 100vh;
}
.report-inner {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 2px;
  padding: 56px 56px 64px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  color: #1a1a1a;
  font-family: var(--font-body, 'Figtree', sans-serif);
}
.report-intro {
  max-width: 820px;
  margin: 0 auto 24px;
  padding: 0;
  text-align: left;
}
.report-intro .dim { color: rgba(255,255,255,0.5); }
.report-inner .report-head {
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.report-inner .wht {
  color: #1a1a1a;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-weight: 600;
}
.report-inner .dim { color: #666; }
.report-inner .val {
  color: #333;
  font-family: var(--font-body, 'Figtree', sans-serif);
}
.report-inner p.val { line-height: 1.7; margin-bottom: 16px; }
.report-inner .red { color: #c41e1e; }
.report-inner .report-label { color: #c41e1e; }
.report-inner .report-title { color: #1a1a1a; }
.report-inner .report-block {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.report-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.report-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.report-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 28px;
}
.report-inner .report-end {
  border-top: 2px solid #1a1a1a;
  padding-top: 24px;
  margin-top: 32px;
  text-align: center;
}
.report-inner .report-end .dim { color: #999; }
.report-inner .redacted {
  background: #1a1a1a;
  color: #1a1a1a;
  padding: 0 8px;
  border-radius: 2px;
  user-select: none;
}
.report-inner .tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}
.report-inner .tag-sourced { background: #e8f5e9; color: #2e7d32; }
.report-inner .tag-inferred { background: #fff3e0; color: #e65100; }
.report-inner .tag-speculative { background: #fce4ec; color: #c62828; }

/* Report tables */
.report-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
}
.report-inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
  min-width: 540px;
}
.report-inner th,
.report-inner td {
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}
.report-inner th {
  background: #f5f5f5;
  font-weight: 600;
  color: #1a1a1a;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
}
.report-inner td {
  color: #333;
  font-size: 13px;
}

/* Methodology notes */
.methodology-note {
  font-style: italic;
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin: 8px 0 16px;
}

/* Decision trigger callouts */
.dt-callout {
  border-left: 3px solid #c41e1e;
  background: #fafafa;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

/* Verdict box */
.verdict-box {
  border: 2px solid #c41e1e;
  padding: 24px;
  margin: 24px 0;
  border-radius: 4px;
  background: #fff8f8;
}
.verdict-box .report-title {
  color: #c41e1e;
  margin-bottom: 16px;
}

/* Report notice */
.report-notice {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  margin-top: 24px;
}

/* === PRINT STYLES === */
@media print {
  .no-print { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .report-doc {
    background: #fff; color: #333; padding: 0;
    font-size: 10pt; line-height: 1.7;
  }
  .report-inner { max-width: 100%; padding: 0 20px; background: #fff; box-shadow: none; border: none; }
  .report-doc .wht { color: #000; }
  .report-doc .val { color: #333; }
  .report-doc .dim { color: #666; }
  .report-doc .red { color: #c41e1e; }
  .report-head { border-color: #ccc; }
  .report-block { border-color: #ccc; page-break-inside: avoid; }
  .redacted { background: #000; color: #000; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .tag { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* === PRICING EXTRAS === */
.pricing-launch-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 8px;
}
.pricing-next-steps {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 24px;
}
.pricing-next-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-next-steps ol {
  list-style: decimal;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 16px;
}
.pricing-next-steps ol li {
  padding: 4px 0;
}

/* === SIGNUP SECTION === */
.signup-section {
  background: var(--bg-soft);
  text-align: center;
  padding: 80px 0;
}
.signup-inner {
  max-width: 520px;
  margin: 0 auto;
}
.signup-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.signup-section p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.signup-form {
  display: flex;
  gap: 8px;
}
.signup-form input[type="email"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
}
.signup-form input[type="email"]:focus {
  border-color: var(--accent);
}
.signup-form .btn {
  flex-shrink: 0;
}

/* === BLINKING CURSOR === */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.cursor-blink {
  font-family: var(--font-mono);
  color: var(--white);
  animation: blink 1s step-end infinite;
}

/* === SAMPLE GATE FORM === */
.sample-gate-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.sample-gate-form input[type="email"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  background: var(--bg-dark-soft);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.sample-gate-form input[type="email"]::placeholder {
  color: var(--text-light);
}
.sample-gate-form input[type="email"]:focus {
  border-color: var(--accent);
}
.sample-gate-form .btn {
  flex-shrink: 0;
}
.sample-gate-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

/* === UTILITIES & MODIFIERS === */
.hero-compact { min-height: auto; padding-bottom: 48px; }
.hero-tight { padding-bottom: 24px; }
.section-flush { padding-top: 0; }
.btn-block { width: 100%; justify-content: center; }
.split p + p { margin-top: 16px; }
.analyst-bio + .analyst-bio { margin-top: 12px; }
.dossier-brand { text-align: center; padding: 60px 40px; }
.brand-mark { font-size: 48px; color: var(--accent); font-weight: 600; margin-bottom: 16px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .container, .container-narrow { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-reverse { direction: ltr; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-left: none; border-bottom: 1px solid var(--border-dark); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-dossier { padding: 32px; }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 72px 0; }
  .welcome-section { padding: 72px 0; }
  .section-statement { padding: 80px 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 48px); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-split { gap: 32px; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .step-desc { padding-left: 0; }
  .step-number { font-size: 28px; min-width: 40px; }
  .analyst-card { flex-direction: column; }
  .bracket-box { padding: 40px 24px; }
  .pricing-card { padding: 36px 24px; }
  .section { padding: 56px 0; }
  .section-statement { padding: 64px 0; }
  .footer-links { flex-direction: column; gap: 12px; }
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; justify-content: center; }
  .sample-gate-form { flex-direction: column; }
  .sample-gate-form .btn { width: 100%; justify-content: center; }
  .report-inner { padding: 28px 20px 36px; }
  .report-inner table { min-width: 400px; font-size: 12px; }
  .report-inner th, .report-inner td { padding: 8px; }
  .dt-callout { padding: 12px 16px; }
  .verdict-box { padding: 16px; }
}
