/* ==========================================================================
   AISLOPREMOVAL.COM — THE FORENSIC LINGUISTIC AUDIT DESIGN SYSTEM
   Theme: Declassified Forensic Dossier & Empirical Linguistic Intelligence
   Zero Generic Cards • High Visual Breathing Room • 100% Technical Precision
   ========================================================================== */

:root {
  --bg-body: #08090c;
  --bg-surface: #0e1017;
  --bg-surface-raised: #141720;
  --bg-surface-highlight: #1b1f2b;
  --bg-dossier: #0c0e14;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.28);
  --border-grid: rgba(255, 255, 255, 0.04);
  
  --color-crimson: #e5484d;
  --color-crimson-bright: #ff555a;
  --color-crimson-glow: rgba(229, 72, 77, 0.18);
  --color-amber: #f5a623;
  --color-amber-glow: rgba(245, 166, 35, 0.16);
  --color-ink-green: #30a46c;
  --color-ink-green-glow: rgba(48, 164, 108, 0.16);
  --color-blue-ink: #3b82f6;

  --text-primary: #f4f5f8;
  --text-secondary: #a8adb9;
  --text-muted: #8b92a5;
  --text-dim: #5c6375;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Roboto Mono', monospace;
  --font-serif: 'Newsreader', 'Lora', Georgia, serif;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-forensic: 0 24px 70px rgba(0, 0, 0, 0.88);
  --shadow-stamp: 0 4px 16px rgba(229, 72, 77, 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image: 
    linear-gradient(to right, var(--border-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-grid) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Typography with Generous Spacing */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.font-serif {
  font-family: var(--font-serif);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: #ffffff;
  font-weight: 600;
}

a {
  color: var(--text-primary);
  text-decoration: none;
}

.lead-p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #e4e7ee;
  font-weight: 400;
  margin-bottom: 1.8rem;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header with Generous Room */
.site-header {
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(8, 9, 12, 0.95);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Brand Identity: [ ₰ ] ai~~slop~~removal */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-dele-box {
  background: rgba(229, 72, 77, 0.15);
  border: 1px solid rgba(229, 72, 77, 0.45);
  color: var(--color-crimson-bright);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand-text .ai-prefix {
  color: var(--text-muted);
}

.brand-text .slop-strike {
  position: relative;
  color: #a3a8b8;
  display: inline-block;
  margin: 0 1px;
}

.brand-text .slop-strike::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: var(--color-crimson-bright);
  transform: rotate(-3deg);
}

.brand-text .removal-suffix {
  color: #ffffff;
  font-weight: 800;
}

.brand-unit-tag {
  font-size: 0.65rem;
  color: var(--color-crimson-bright);
  background: rgba(229, 72, 77, 0.1);
  padding: 3px 7px;
  border-radius: 2px;
  border: 1px solid rgba(229, 72, 77, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.nav-menu a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s ease;
}

.nav-menu a:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .nav-menu { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-crimson {
  background: var(--color-crimson);
  color: #ffffff;
  border-color: #ff6b70;
  box-shadow: 0 4px 20px rgba(229, 72, 77, 0.35);
}

.btn-crimson:hover {
  background: #d63c41;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(229, 72, 77, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 7px 15px;
  font-size: 0.78rem;
}

/* Sections - Generous Breathing Space */
section {
  padding: 115px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-crimson-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '■';
  font-size: 0.65rem;
  color: var(--color-crimson-bright);
}

.section-headline {
  font-size: 2.85rem;
  line-height: 1.25;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
}

/* Hero Section */
.hero {
  padding: 110px 0 85px;
  background: radial-gradient(circle at 50% 10%, rgba(229, 72, 77, 0.08) 0%, transparent 65%);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.badge-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: 3.6rem;
  max-width: 1040px;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.18;
}

.hero h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--color-crimson-bright);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 44px 0 56px;
  flex-wrap: wrap;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item .stat-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-family: var(--font-sans);
}

/* ==========================================================================
   FORENSIC DOSSIER BRIEF (MANIFESTO)
   ========================================================================== */
.manifesto-dossier {
  background: #0d0f15;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 38px 44px;
  margin: 48px 0 85px;
  position: relative;
  box-shadow: var(--shadow-forensic);
}

.manifesto-dossier::before {
  content: 'CONFIDENTIAL FORENSIC BRIEF // CORPUS AUDIT 2026';
  position: absolute;
  top: -11px;
  left: 28px;
  background: #141720;
  border: 1px solid var(--border-medium);
  padding: 3px 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.manifesto-dossier p {
  font-size: 1.25rem;
  line-height: 1.85;
  color: #e4e7ee;
}

/* ==========================================================================
   FORENSIC CASE FILES (THE 6 USE CASE DEEP DIVES)
   ========================================================================== */
.use-case-showcase {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 55px;
}

.forensic-case-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.forensic-case-row.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.forensic-case-row.reverse .case-narrative {
  order: 2;
}

.forensic-case-row.reverse .case-evidence-frame {
  order: 1;
}

@media (max-width: 980px) {
  .forensic-case-row, .forensic-case-row.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .forensic-case-row.reverse .case-narrative {
    order: 1;
  }
  .forensic-case-row.reverse .case-evidence-frame {
    order: 2;
  }
}

.case-narrative {
  display: flex;
  flex-direction: column;
}

.case-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.case-serial {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-crimson-bright);
  background: var(--color-crimson-glow);
  border: 1px solid rgba(229, 72, 77, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-threat-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-narrative h3 {
  font-size: 2.15rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.case-narrative p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #ccd0db;
  margin-bottom: 1.4rem;
}

/* Forensic Telemetry Matrix Box */
.forensic-telemetry-box {
  background: #0e1017;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 18px 22px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.telemetry-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.telemetry-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.telemetry-label {
  color: var(--text-muted);
}

.telemetry-val-bad {
  color: var(--color-crimson-bright);
  font-weight: 700;
}

.telemetry-val-fix {
  color: var(--color-ink-green);
  font-weight: 700;
}

/* Evidence Inspection Frame */
.case-evidence-frame {
  position: relative;
}

.forensic-stamp {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 20;
  border: 2px solid var(--color-crimson);
  color: var(--color-crimson-bright);
  background: rgba(8, 9, 12, 0.9);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(3deg);
  box-shadow: var(--shadow-stamp);
  pointer-events: none;
}

/* Base Window Frame for UI Mockups */
.ui-window-frame {
  background: #111319;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-forensic);
  display: flex;
  flex-direction: column;
}

/* A. LinkedIn UI */
.li-card {
  background: #1b1f23;
  color: #e1e9ee;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13.5px;
}

.li-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.li-user-block {
  display: flex;
  gap: 12px;
}

.li-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.li-user-info {
  line-height: 1.3;
}

.li-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.li-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 13.5px;
}

.li-degree {
  color: #94a3b8;
  font-size: 11.5px;
}

.li-headline {
  font-size: 11.5px;
  color: #94a3b8;
}

.li-time-row {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.li-menu-dots {
  color: #94a3b8;
  font-size: 16px;
}

.li-post-body {
  padding: 0 18px 16px;
  line-height: 1.6;
  color: #cbd5e1;
}

.li-cringe-text p {
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 13.5px;
}

.li-hashtags {
  color: #70b8ff;
  font-weight: 600;
  font-size: 12.5px;
}

.li-stats-row {
  padding: 10px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #94a3b8;
}

.li-reaction-icons {
  display: flex;
  align-items: center;
}

.li-icon-pill {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-right: -3px;
  border: 1px solid #1b1f23;
}

.li-action-bar {
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-around;
}

.li-action-btn {
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 600;
  background: transparent;
  border: none;
  padding: 6px 10px;
}

/* B. Gmail UI */
.gmail-card {
  background: #1f1f24;
  color: #e3e3e3;
  font-size: 13.5px;
}

.gmail-top-toolbar {
  padding: 10px 16px;
  background: #28292e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gmail-icons-left {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.gmail-subject-row {
  padding: 14px 18px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gmail-subject {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.gmail-inbox-pill {
  background: #33353b;
  color: #c4c7c5;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
}

.gmail-sender-row {
  padding: 8px 18px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gmail-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d93025;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.gmail-from-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 13.5px;
}

.gmail-to-meta {
  font-size: 11.5px;
  color: #8e918f;
}

.gmail-date {
  font-size: 11.5px;
  color: #8e918f;
}

.gmail-warning-banner {
  margin: 0 18px 14px;
  background: rgba(229, 72, 77, 0.15);
  border: 1px solid rgba(229, 72, 77, 0.35);
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #ff9da1;
}

.gmail-body {
  padding: 0 18px 18px;
  line-height: 1.6;
  font-size: 13.5px;
}

.gmail-body p {
  margin-bottom: 8px;
  color: #c4c7c5;
}

/* C. ChatGPT UI */
.chatgpt-card {
  background: #212121;
  color: #ececec;
  font-size: 13.5px;
}

.chatgpt-topbar {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #171717;
}

.chatgpt-model-badge {
  font-weight: 600;
  font-size: 13.5px;
}

.chatgpt-convo {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chatgpt-user-msg {
  align-self: flex-end;
  background: #303030;
  padding: 10px 14px;
  border-radius: 16px 16px 4px 16px;
  max-width: 88%;
  color: #ffffff;
  font-size: 13px;
}

.chatgpt-bot-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.chatgpt-avatar-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #10a37f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
}

.chatgpt-bot-text {
  font-size: 13.5px;
  line-height: 1.55;
}

.chatgpt-bot-text p {
  margin-bottom: 8px;
  color: #d1d5db;
}

.chatgpt-input-fake {
  margin: 8px 18px 16px;
  background: #2f2f2f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8e8e8e;
  font-size: 13px;
}

/* D. arXiv UI */
.arxiv-card {
  background: #24272f;
}

.pdf-toolbar {
  padding: 8px 16px;
  background: #191b21;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #94a3b8;
}

.pdf-page-container {
  background: #fdfdfc;
  color: #1a1a1a;
  margin: 16px;
  border-radius: 4px;
  padding: 20px 24px;
  font-family: 'Newsreader', Georgia, serif;
}

.arxiv-paper-meta {
  font-family: -apple-system, sans-serif;
  font-size: 10.5px;
  color: #666;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.arxiv-title {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 6px;
}

.arxiv-authors {
  font-family: -apple-system, sans-serif;
  font-size: 10.5px;
  color: #555;
  text-align: center;
  margin-bottom: 10px;
}

.arxiv-abstract-box {
  background: #f4f4f0;
  border-left: 2px solid #b31b1b;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.5;
  color: #2d3748;
}

/* E. GitHub UI */
.github-card {
  background: #0d1117;
  color: #c9d1d9;
}

.gh-file-header {
  padding: 8px 16px;
  background: #161b22;
  border-bottom: 1px solid #30363d;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gh-traffic-dots {
  display: flex;
  gap: 6px;
}

.gh-dot { width: 9px; height: 9px; border-radius: 50%; }
.gh-dot-red { background: #ff5f56; }
.gh-dot-yellow { background: #ffbd2e; }
.gh-dot-green { background: #27c93f; }

.gh-filename {
  font-family: var(--font-mono);
  font-weight: 600;
  color: #e6edf3;
  font-size: 12.5px;
}

.gh-code-body {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
}

.gh-line-comment {
  margin-top: 14px;
  background: #1f242c;
  border: 1px solid #d29922;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: -apple-system, sans-serif;
  font-size: 12px;
  color: #e6edf3;
}

.gh-comment-author {
  font-weight: 700;
  color: #d29922;
  margin-bottom: 4px;
}

/* F. Safari UI */
.safari-card {
  background: #1e1e24;
}

.safari-topbar {
  padding: 8px 16px;
  background: #2a2a32;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.safari-dots {
  display: flex;
  gap: 6px;
}

.safari-url-pill {
  flex: 1;
  background: #1c1c22;
  border-radius: 4px;
  padding: 4px 12px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #94a3b8;
}

.safari-saas-hero {
  padding: 24px 20px;
  background: #0f1015;
  text-align: center;
}

.saas-clone-badge {
  background: rgba(229, 72, 77, 0.15);
  border: 1px solid rgba(229, 72, 77, 0.4);
  color: #ff8589;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.saas-clone-title {
  font-family: -apple-system, sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.saas-clone-sub {
  font-size: 11.5px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.saas-fake-cta {
  background: #3b82f6;
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
}

.safari-bounce-stat {
  margin: 12px 16px;
  background: rgba(229, 72, 77, 0.12);
  border: 1px solid rgba(229, 72, 77, 0.3);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11.5px;
  color: #ff8589;
  display: flex;
  justify-content: space-between;
}

/* Red Pen Highlighting */
.hl-slop {
  background: rgba(229, 72, 77, 0.3);
  color: #ff9da1;
  border-bottom: 1px dashed #e5484d;
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 600;
}

.hl-syco {
  background: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  border-bottom: 1px dashed #3b82f6;
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 600;
}

.hl-buzz {
  background: rgba(245, 166, 35, 0.3);
  color: #fde047;
  border-bottom: 1px dashed #f5a623;
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 600;
}

.hl-dark-slop {
  background: rgba(220, 38, 38, 0.2);
  color: #b91c1c;
  border-bottom: 1px solid #b91c1c;
  padding: 0 2px;
  font-weight: 600;
}

.hl-dark-buzz {
  background: rgba(217, 119, 6, 0.2);
  color: #b45309;
  border-bottom: 1px solid #b45309;
  padding: 0 2px;
  font-weight: 600;
}

/* Comparison Matrix */
.matrix-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  background: var(--bg-surface);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.94rem;
}

.matrix-table th, .matrix-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.matrix-table th {
  background: #141720;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.matrix-table tr.highlight-row {
  background: rgba(229, 72, 77, 0.06);
}

.matrix-table tr.highlight-row td {
  color: #fff;
  font-weight: 500;
}

.check-green {
  color: var(--color-ink-green);
  font-weight: bold;
}

.cross-red {
  color: var(--color-crimson);
  font-weight: bold;
}

/* Extraction Methodology Section */
.corpus-telemetry-banner {
  background: #0d0f15;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 28px 36px;
  margin: 36px 0 54px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-forensic);
}

@media (max-width: 980px) {
  .corpus-telemetry-banner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.corpus-stat .corpus-stat-num {
  font-family: var(--font-mono);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.corpus-stat .corpus-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.extraction-phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}

@media (max-width: 860px) {
  .extraction-phase-grid { grid-template-columns: 1fr; }
}

.extraction-phase-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-forensic);
}

.extraction-phase-card:hover {
  border-color: var(--border-medium);
}

.phase-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.phase-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-crimson-bright);
  background: var(--color-crimson-glow);
  border: 1px solid rgba(229, 72, 77, 0.35);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phase-benchmark {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.extraction-phase-card h3 {
  font-size: 1.28rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.extraction-phase-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c9ccd6;
  margin-bottom: 16px;
}

.phase-finding-box {
  background: #090a0f;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: auto;
}

.phase-finding-box strong {
  color: var(--color-amber);
}

/* Deep Dive Breakdown Section */
.deep-dive-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin: 60px 0;
}

.deep-dive-block.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.deep-dive-block.reverse > * {
  direction: ltr;
}

.deep-dive-text h3 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.deep-dive-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.deep-dive-visual {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 32px;
  box-shadow: var(--shadow-forensic);
}

/* 2x2 Grid for Methodology */
.method-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .method-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

.pain-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 34px;
  position: relative;
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-crimson-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.pain-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 14px;
}

.pain-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Reviews Wall Section */
.reviews-grid-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

@media (max-width: 980px) {
  .reviews-grid-wall { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .reviews-grid-wall { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-forensic);
  position: relative;
}

.review-card:hover {
  border-color: var(--border-medium);
}

.review-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.review-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.verified-buyer-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-ink-green);
  background: var(--color-ink-green-glow);
  border: 1px solid rgba(48, 164, 108, 0.35);
  padding: 2px 7px;
  border-radius: 2px;
  text-transform: uppercase;
}

.review-quote {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #e2e5ec;
  margin-bottom: 18px;
  flex: 1;
}

.review-metric-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--color-amber);
  margin-bottom: 16px;
}

.reviewer-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.reviewer-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e222d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  border: 1px solid var(--border-medium);
}

.reviewer-details .reviewer-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.2;
}

.reviewer-details .reviewer-title {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Interactive Workbench */
.workbench-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-forensic);
  margin-top: 48px;
}

.workbench-toolbar {
  padding: 18px 24px;
  background: #141720;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.preset-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.preset-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s ease;
}

.preset-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.preset-chip.active {
  background: var(--color-crimson);
  color: #ffffff;
  border-color: #ff6b70;
  font-weight: 700;
}

.workbench-panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

@media (max-width: 860px) {
  .workbench-panes { grid-template-columns: 1fr; }
}

.pane {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.pane-raw {
  border-right: 1px solid var(--border-subtle);
  background: #0a0b10;
}

@media (max-width: 860px) {
  .pane-raw { border-right: none; border-bottom: 1px solid var(--border-subtle); }
}

.pane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pane-title {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.editor-textarea {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.85;
  color: #d8dbe2;
  min-height: 250px;
}

.manuscript-clean {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.85;
  color: #f0f0f2;
  white-space: pre-wrap;
  flex: 1;
}

.workbench-footer {
  padding: 14px 24px;
  background: #0e1017;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 14px;
}

.annotation-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.legend-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* Package Inventory Section */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 1080px) {
  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .inventory-grid { grid-template-columns: 1fr; }
}

.inventory-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 32px;
  position: relative;
}

.inv-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-ink-green);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.inventory-card h3 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
}

.inventory-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Objections Section */
.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .objections-grid { grid-template-columns: 1fr; }
}

.objection-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 32px;
}

.objection-q {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.text-crimson {
  color: var(--color-crimson-bright);
}

.objection-a {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Mega Pricing Hero */
.mega-pricing {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(229, 72, 77, 0.08) 0%, transparent 70%);
}

.mega-pricing-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 56px 48px;
  box-shadow: var(--shadow-forensic);
  position: relative;
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-crimson);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: var(--radius-xs);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.price-large {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.price-strike-old {
  font-size: 1.6rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-right: 12px;
}

.included-list {
  list-style: none;
  margin-bottom: 40px;
}

.included-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.94rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.included-list li code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 7px;
  border-radius: 2px;
  font-size: 0.82rem;
  color: #fff;
  font-family: var(--font-mono);
}

/* Footer */
.site-footer {
  padding: 70px 0;
  background: #060709;
  font-size: 0.84rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer-links a:hover {
  color: #fff;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #11131a;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  box-shadow: var(--shadow-forensic);
}

.modal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.7rem; }
  .section-headline { font-size: 2.2rem; }
  .deep-dive-block, .deep-dive-block.reverse { grid-template-columns: 1fr; }
  .hero-stats-bar { grid-template-columns: 1fr 1fr; }
  .mega-pricing-card { padding: 36px 24px; }
  .price-large { font-size: 3.2rem; }
}

/* ============================================================
   QA PASS — live workbench highlighting, a11y, mobile nav
   ============================================================ */

/* --- Live annotation overlay -------------------------------
   The highlight layer and the textarea must share identical
   text metrics or the coloured spans drift off the words.
   Nothing in .editor-highlights mark may alter layout:
   background + inset box-shadow only (no padding/border/weight).
----------------------------------------------------------- */
.editor-stack {
  position: relative;
  flex: 1;
  min-height: 250px;
}

.editor-stack .editor-highlights,
.editor-stack .editor-textarea {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.85;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: normal;
  tab-size: 4;
}

.editor-stack .editor-highlights {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: transparent;
  pointer-events: none;
  user-select: none;
}

.editor-stack .editor-textarea {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: transparent;
  color: #d8dbe2;
  caret-color: #fff;
  overflow-y: auto;
  resize: none;
  outline: none;
}

.editor-highlights mark {
  color: transparent;
  background: transparent;
  border-radius: 2px;
}
.editor-highlights mark.ann-verb   { background: rgba(229, 72, 77, 0.30);  box-shadow: inset 0 -2px 0 rgba(229, 72, 77, 0.85); }
.editor-highlights mark.ann-noun   { background: rgba(245, 166, 35, 0.28); box-shadow: inset 0 -2px 0 rgba(245, 166, 35, 0.85); }
.editor-highlights mark.ann-filler { background: rgba(94, 144, 255, 0.26); box-shadow: inset 0 -2px 0 rgba(94, 144, 255, 0.85); }
.editor-highlights mark.ann-punct  { background: rgba(255, 255, 255, 0.22); box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.8); }

/* --- Keyboard focus visibility (was entirely absent) ------- */
a:focus-visible,
button:focus-visible,
textarea:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-ink-green, #30a46c);
  outline-offset: 3px;
  border-radius: 3px;
}
.editor-stack .editor-textarea:focus-visible {
  outline-offset: -2px;
}

/* --- Mobile navigation ------------------------------------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 36px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium, rgba(255,255,255,0.14));
  border-radius: var(--radius-xs, 4px);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1120px) {
  .nav-toggle { display: flex; }

  /* Replaces the old bare `display:none`, which left mobile with no nav at all. */
  .nav-menu {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: #0a0b10;
    border-bottom: 1px solid transparent;
    transition: max-height 0.25s ease, padding 0.25s ease;
    z-index: 90;
  }
  .nav-menu.open {
    max-height: 70vh;
    padding: 8px 20px 16px;
    border-bottom-color: var(--border-subtle, rgba(255,255,255,0.08));
  }
  .nav-menu a {
    width: 100%;
    padding: 14px 4px;
    font-size: 0.86rem;
    border-bottom: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
  }
  .nav-menu a:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
  .header-actions .btn-open-checkout { font-size: 0.72rem; padding: 8px 10px; }
}

/* --- Respect reduced-motion preferences -------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   Cookie consent banner
   ============================================================ */
.consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #0d0f14;
  border-top: 1px solid var(--border-medium, rgba(255,255,255,0.14));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.55);
  transform: translateY(105%);
  transition: transform 0.26s ease;
}
.consent-bar.visible { transform: translateY(0); }

.consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.consent-copy {
  flex: 1 1 420px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-secondary, #a6adba);
}
.consent-copy strong { color: #fff; }
.consent-copy a { color: var(--color-ink-green, #30a46c); text-decoration: underline; }

.consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-btn {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  padding: 10px 18px;
  border-radius: var(--radius-xs, 4px);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.consent-reject {
  background: transparent;
  border: 1px solid var(--border-medium, rgba(255,255,255,0.18));
  color: var(--text-secondary, #a6adba);
}
.consent-reject:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

.consent-accept {
  background: var(--color-ink-green, #30a46c);
  border: 1px solid var(--color-ink-green, #30a46c);
  color: #04140c;
  font-weight: 700;
}
.consent-accept:hover { background: #3cbb7c; }

.consent-reopen { cursor: pointer; }
.consent-reopen-holder {
  width: 100%;
  margin-top: 12px;
  font-family: var(--font-mono, monospace);
  font-size: 0.76rem;
}
.consent-reopen-holder a { color: var(--text-muted, #6b7280); }

@media (max-width: 620px) {
  .consent-inner { padding: 16px 18px; gap: 14px; }
  .consent-copy { font-size: 0.8rem; }
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1; text-align: center; }
}
