/* ==========================================================================
   NO ID NO ENTRY (NINE) — HIGH-END CYBERSECURITY DESIGN SYSTEM
   Cloudflare Pages Ready • Zero External Framework Dependencies • Vanilla CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Canvas & Atmospheric Colors */
  --bg-deep: #030508;
  --bg-main: #06090E;
  --bg-surface: #0B1019;
  --bg-surface-elevated: #101826;
  --bg-surface-high: #162234;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(56, 189, 248, 0.12);
  --border-card-hover: rgba(56, 189, 248, 0.35);
  --border-glow: rgba(0, 240, 255, 0.4);

  /* Brand Accents */
  --cyan-primary: #00F0FF;
  --cyan-glow: rgba(0, 240, 255, 0.25);
  --cyan-dim: rgba(0, 240, 255, 0.08);

  --emerald-shield: #10B981;
  --emerald-glow: rgba(16, 185, 129, 0.22);
  --emerald-dim: rgba(16, 185, 129, 0.08);

  --amber-caution: #F59E0B;
  --amber-glow: rgba(245, 158, 11, 0.22);
  --amber-dim: rgba(245, 158, 11, 0.08);

  --crimson-threat: #EF4444;
  --crimson-glow: rgba(239, 68, 68, 0.25);
  --crimson-dim: rgba(239, 68, 68, 0.08);

  --violet-guardian: #8B5CF6;
  --violet-glow: rgba(139, 92, 246, 0.25);

  /* Typography */
  --text-pure: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dim: #475569;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.8), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  --shadow-glow-cyan: 0 0 35px -5px rgba(0, 240, 255, 0.3);
  --shadow-glow-crimson: 0 0 35px -5px rgba(239, 68, 68, 0.3);

  /* Transitions */
  --transition-quick: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric Multi-Layer Canvas */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(0, 240, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-pure);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.font-mono {
  font-family: var(--font-mono);
}

.text-cyan { color: var(--cyan-primary); }
.text-green { color: var(--emerald-shield); }
.text-amber { color: var(--amber-caution); }
.text-red { color: var(--crimson-threat); }
.text-violet { color: var(--violet-guardian); }

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 5, 8, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-quick);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-pure);
}

.brand-logo svg, .brand-logo img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
  transition: transform var(--transition-bounce);
}

.brand-logo:hover svg, .brand-logo:hover img {
  transform: scale(1.05);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  line-height: 1.1;
}

.brand-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-quick);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-pure);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--cyan-primary);
}

.nav-links a.text-amber:hover {
  color: var(--amber-caution);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.edge-status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--emerald-shield);
}

.edge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-shield);
  box-shadow: 0 0 10px var(--emerald-shield);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-size: 1.4rem;
  padding: 6px 12px;
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS & MICRO-INTERACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-cyan {
  background: linear-gradient(135deg, #00F0FF 0%, #0099FF 100%);
  color: #030508;
  box-shadow: 0 4px 18px -2px rgba(0, 240, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px 0 rgba(0, 240, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #000;
}

.btn-outline {
  background: rgba(16, 24, 38, 0.6);
  border-color: var(--border-card);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-card-hover);
  color: var(--text-pure);
  transform: translateY(-2px);
}

.btn-crisis {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #FFA3A3;
}

.btn-crisis:hover {
  background: rgba(239, 68, 68, 0.22);
  border-color: var(--crimson-threat);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px -2px rgba(239, 68, 68, 0.4);
}

/* ==========================================================================
   HERO SECTION & INTERACTIVE CHECKPOINT SIMULATOR
   ========================================================================== */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--cyan-primary);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-primary);
  animation: pulse-ring 1.8s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: var(--text-pure);
}

.hero-title span {
  background: linear-gradient(135deg, #00F0FF 0%, #38BDF8 60%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-lead strong {
  color: var(--text-primary);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* ==========================================================================
   PHONE SIMULATOR / INTERACTIVE HUD
   ========================================================================== */
.simulator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.simulator-tabs {
  display: flex;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
  margin-bottom: 20px;
  max-width: 100%;
  overflow-x: auto;
}

.sim-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-quick);
  white-space: nowrap;
}

.sim-tab-btn:hover {
  color: var(--text-pure);
}

.sim-tab-btn.active {
  background: var(--cyan-primary);
  color: #030508;
  box-shadow: 0 2px 10px rgba(0, 240, 255, 0.4);
}

/* Realistic Phone Chassis */
.phone-mockup {
  width: 100%;
  max-width: 360px;
  height: 520px;
  background: #0B0E14;
  border-radius: 40px;
  border: 3px solid #1E293B;
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 50px -10px rgba(0, 240, 255, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Notch & Status Bar */
.phone-notch {
  width: 120px;
  height: 18px;
  background: #1E293B;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.sim-screen-card {
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  animation: fadeIn 0.3s ease;
}

.sim-screen-card.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.sim-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 12px;
}

.sim-badge-red {
  background: var(--crimson-dim);
  color: var(--crimson-threat);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.sim-badge-green {
  background: var(--emerald-dim);
  color: var(--emerald-shield);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.sim-badge-amber {
  background: var(--amber-dim);
  color: var(--amber-caution);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.sim-target-box {
  background: rgba(16, 24, 38, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin: 10px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.sim-action-banner {
  background: rgba(239, 68, 68, 0.15);
  border-left: 3px solid var(--crimson-threat);
  padding: 10px 14px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 0.8rem;
  color: #FFA8A8;
}

.sim-action-banner-green {
  background: rgba(16, 185, 129, 0.15);
  border-left: 3px solid var(--emerald-shield);
  padding: 10px 14px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 0.8rem;
  color: #86EFAC;
}

/* ==========================================================================
   LIVE TELEMETRY RIBBON
   ========================================================================== */
.telemetry-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}

.telemetry-item {
  text-align: center;
  position: relative;
}

.telemetry-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-subtle);
}

.telemetry-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.telemetry-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   MODULE SECTIONS (COMMON HEADERS)
   ========================================================================== */
.module-section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-pure);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   MODULE 1: SAFE STATUS REPUTATION CHECKER
   ========================================================================== */
.checker-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.checker-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
}

.checker-nav-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  overflow-x: auto;
}

.check-type-btn {
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-quick);
}

.check-type-btn.active, .check-type-btn:hover {
  color: var(--cyan-primary);
  background: var(--cyan-dim);
}

.search-input-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.search-input-wrap input {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-pure);
  outline: none;
  transition: all var(--transition-quick);
}

.search-input-wrap input:focus {
  border-color: var(--cyan-primary);
  box-shadow: 0 0 16px -2px rgba(0, 240, 255, 0.3);
}

.quick-samples {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sample-chip {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 5px 12px;
  cursor: pointer;
  transition: all var(--transition-quick);
}

.sample-chip:hover {
  background: var(--bg-surface-high);
  color: var(--text-pure);
  border-color: var(--cyan-primary);
}

/* Diagnostic Progress Box */
.scan-progress-box {
  display: none;
  background: #04070B;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.scan-step-line {
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scan-step-line.done {
  color: var(--emerald-shield);
}

/* Result Box */
.checker-result {
  display: none;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  animation: fadeIn 0.3s ease;
}

.result-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.result-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-clean {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-shield);
  color: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.badge-threat {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--crimson-threat);
  color: #EF4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.badge-review {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--amber-caution);
  color: #F59E0B;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.result-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.result-detail-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.result-detail-card .label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.result-detail-card .val {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-pure);
}

.zero-lure-callout {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: #FCA5A5;
  line-height: 1.5;
  margin-top: 20px;
}

/* ==========================================================================
   MODULE 2: B2B BUSINESS APPEALS & DELISTING HUB
   ========================================================================== */
.appeals-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.appeals-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier-card {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition-quick);
  position: relative;
}

.tier-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

.tier-card.selected {
  border-color: var(--cyan-primary);
  background: var(--bg-surface-elevated);
  box-shadow: 0 0 25px -5px rgba(0, 240, 255, 0.25);
}

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

.tier-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
}

.tier-price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan-primary);
}

.tier-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Lookup Tab Card */
.ticket-lookup-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-pure);
  outline: none;
  transition: all var(--transition-quick);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan-primary);
  box-shadow: 0 0 14px -2px rgba(0, 240, 255, 0.25);
}

.upload-zone {
  border: 2px dashed var(--border-card);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: rgba(16, 24, 38, 0.4);
  transition: all var(--transition-quick);
}

.upload-zone:hover {
  border-color: var(--cyan-primary);
  background: var(--cyan-dim);
}

/* ==========================================================================
   MODULE 3: LIVE FACT-CHECK & SCAM RADAR
   ========================================================================== */
.radar-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.radar-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radar-pill-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  cursor: pointer;
  transition: all var(--transition-quick);
}

.radar-pill-btn.active, .radar-pill-btn:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan-primary);
  color: var(--cyan-primary);
}

.radar-stream-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.radar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.radar-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.radar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.source-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-primary);
  letter-spacing: 0.04em;
}

.rating-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: var(--crimson-threat);
  text-transform: uppercase;
}

.radar-claim-text {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-pure);
}

.radar-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   COMPARISON MATRIX (TRADITIONAL VS NO ID NO ENTRY)
   ========================================================================== */
.comparison-table-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 30px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.comp-table th {
  background: var(--bg-surface-elevated);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-pure);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

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

.comp-table .feature-col {
  color: var(--text-primary);
  font-weight: 600;
  width: 40%;
}

.comp-table .bad-col {
  color: #F87171;
  width: 30%;
}

.comp-table .good-col {
  color: #34D399;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.04);
  width: 30%;
}

/* ==========================================================================
   THE 5 DEFENSE PILLARS
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  border-color: var(--cyan-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-primary);
  margin-bottom: 14px;
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--cyan-primary);
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PARENT EMERGENCY GUIDE CALLOUT
   ========================================================================== */
.crisis-hero-banner {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 60px 0;
  box-shadow: var(--shadow-glow-crimson);
}

.crisis-hotline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.hotline-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  transition: all var(--transition-quick);
}

.hotline-card:hover {
  border-color: var(--amber-caution);
  transform: translateY(-2px);
}

.hotline-region {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hotline-number {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--amber-caution);
  text-decoration: none;
  display: block;
}

/* ==========================================================================
   DOWNLOAD SECTION & CHECKSUM
   ========================================================================== */
.download-card-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
  max-width: 840px;
  margin: 0 auto;
}

.checksum-box {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px auto 0;
  max-width: 680px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  overflow-x: auto;
}

.copy-checksum-btn {
  background: var(--bg-surface-high);
  border: 1px solid var(--border-subtle);
  color: var(--cyan-primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-quick);
  white-space: nowrap;
}

.copy-checksum-btn:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #020407;
  padding: 70px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-pure);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-quick);
}

.footer-col a:hover {
  color: var(--cyan-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .telemetry-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .appeals-grid {
    grid-template-columns: 1fr;
  }
  .radar-stream-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .crisis-hotline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .edge-status-pill {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .search-input-wrap {
    flex-direction: column;
  }
  .result-detail-grid {
    grid-template-columns: 1fr;
  }
  .telemetry-strip {
    grid-template-columns: 1fr;
  }
  .radar-stream-grid {
    grid-template-columns: 1fr;
  }
  .crisis-hotline-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
