/* =========================================================
   VibeKilled.com — Stylesheet
   Aesthetic: Bloomberg Terminal × Death Row × Hacker Obituary
   ========================================================= */

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

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

:root {
  --bg:          #060610;
  --bg-card:     #0c0c1e;
  --bg-card-2:   #111128;
  --border:      rgba(255,255,255,0.07);
  --border-glow: rgba(255,45,85,0.3);
  --red:         #ff2d55;
  --orange:      #ff6b00;
  --amber:       #f5a623;
  --green:       #00ff88;
  --crt:         #c8ff00;
  --dim:         rgba(255,255,255,0.35);
  --mid:         rgba(255,255,255,0.6);
  --bright:      rgba(255,255,255,0.92);
  --font-body:   'Space Grotesk', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bright);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === SCANLINE OVERLAY === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* === TICKER TAPE === */
.ticker-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.ticker-label {
  background: #000;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,45,85,0.5);
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  animation: ticker 80s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ticker-item::after {
  content: '◆';
  font-size: 7px;
  color: rgba(255,255,255,0.5);
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 40px 60px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,45,85,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(200,255,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bright);
  margin-bottom: 6px;
  position: relative;
}

.hero h1 span.killed {
  color: var(--red);
  position: relative;
}

.site-domain {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--bright);
  font-weight: 600;
}

/* === GLOBAL STATS BAR === */
.global-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 -40px;
}

.stat-block {
  background: var(--bg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: background 0.2s;
}

.stat-block:hover { background: var(--bg-card); }

.stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--crt);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-value.red  { color: var(--red); }
.stat-value.dim  { color: var(--mid); }

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

.stat-source {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* === MAIN CONTENT === */
.main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === SECTION HEADER === */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* === FILTER BUTTONS === */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
}

.filter-btn:hover { border-color: var(--mid); color: var(--bright); }

.filter-btn.active          { background: var(--red); border-color: var(--red); color: #fff; }
.filter-btn[data-filter="CRITICAL"].active { background: var(--red); border-color: var(--red); }
.filter-btn[data-filter="HIGH"].active    { background: var(--orange); border-color: var(--orange); }
.filter-btn[data-filter="MEDIUM"].active  { background: var(--amber); border-color: var(--amber); color: #000; }

/* === COMPANY GRID === */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-bottom: 80px;
}

/* === COMPANY CARD === */
.company-card {
  background: var(--bg-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.company-card[data-threat="CRITICAL"]::before { background: var(--red); }
.company-card[data-threat="HIGH"]::before     { background: var(--orange); }
.company-card[data-threat="MEDIUM"]::before   { background: var(--amber); }

.company-card:hover {
  background: var(--bg-card-2);
}

.company-card:hover::before { opacity: 1; }

/* === CARD HEADER === */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.company-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(1) brightness(0.85);
  transition: opacity 0.3s, filter 0.3s;
}

.company-card:hover .company-logo {
  opacity: 0.85;
  filter: grayscale(0.3) brightness(1);
}

.company-logo svg { width: 100%; height: 100%; }

.card-title-group { flex: 1; }

.company-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--bright);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.company-name.glitch {
  animation: glitch 0.15s ease-in-out;
}

@keyframes glitch {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-3px) skewX(2deg); filter: hue-rotate(90deg); }
  40%  { transform: translateX(3px) skewX(-2deg); }
  60%  { transform: translateX(-2px); }
  80%  { transform: translateX(2px); filter: hue-rotate(0deg); }
  100% { transform: translateX(0); }
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ticker-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dim);
  background: rgba(255,255,255,0.06);
  padding: 2px 7px;
  border-radius: 2px;
}

.category-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1px 6px;
  border-radius: 2px;
}

.threat-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 9px;
  border-radius: 2px;
  text-transform: uppercase;
}

.threat-CRITICAL { background: rgba(255,45,85,0.15);  color: var(--red);    border: 1px solid rgba(255,45,85,0.3); }
.threat-HIGH     { background: rgba(255,107,0,0.12);  color: var(--orange); border: 1px solid rgba(255,107,0,0.3); }
.threat-MEDIUM   { background: rgba(245,166,35,0.1);  color: var(--amber);  border: 1px solid rgba(245,166,35,0.3); }

/* === COUNTDOWN === */
.countdown-section {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 18px;
  text-align: center;
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}

.countdown-timer {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--crt);
  text-shadow: 0 0 20px rgba(200,255,0,0.3);
}

.company-card[data-threat="CRITICAL"] .countdown-timer {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255,45,85,0.4);
}

.company-card[data-threat="HIGH"] .countdown-timer {
  color: var(--orange);
  text-shadow: 0 0 20px rgba(255,107,0,0.3);
}

.countdown-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dim);
  margin-top: 6px;
  letter-spacing: 0.08em;
}

/* === WHAT GETS KILLED === */
.killed-section { }

.killed-header {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.killed-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,45,85,0.2);
}

.killed-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.killed-list li {
  font-size: 13px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.killed-list li::before {
  content: '💀';
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
  filter: grayscale(0.3);
}

/* === AI REPLACEABILITY BAR === */
.replaceability-section { }

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

.rep-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
}

.rep-pct {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--bright);
}

.rep-track {
  background: rgba(255,255,255,0.06);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.rep-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.threat-CRITICAL .rep-fill { background: linear-gradient(90deg, var(--red), #ff6b6b); }
.threat-HIGH .rep-fill     { background: linear-gradient(90deg, var(--orange), #ffaa00); }
.threat-MEDIUM .rep-fill   { background: linear-gradient(90deg, var(--amber), #f5e623); }

/* === STATS ROW === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.mini-stat {
  background: rgba(0,0,0,0.25);
  padding: 10px 12px;
  text-align: center;
}

.mini-stat-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--bright);
  line-height: 1;
  margin-bottom: 3px;
}

.mini-stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* === DISRUPTION REASON === */
.disruption-reason {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 12px;
}

/* === KEY FACT === */
.key-fact {
  background: rgba(255,45,85,0.05);
  border: 1px solid rgba(255,45,85,0.2);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-style: italic;
}

/* === SIGNALS === */
.signals-section { }

.signals-header {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}

.signals-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.signals-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.signals-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--dim);
  font-weight: 700;
}

/* === METHODOLOGY === */
.methodology {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.method-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}

.method-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.method-text strong {
  color: var(--mid);
  font-weight: 600;
}

.sources-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sources-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.sources-list li::before {
  content: '→';
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}

.footer-updated {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.08em;
}

/* === SCROLL REVEAL === */
.card-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 48px 24px 40px; }
  .global-stats { grid-template-columns: repeat(3, 1fr); }
  .global-stats .stat-block:nth-child(4),
  .global-stats .stat-block:nth-child(5) { grid-column: span 1; }
  .main { padding: 0 24px; }
  .company-grid { grid-template-columns: 1fr; }
  .methodology { grid-template-columns: 1fr; gap: 32px; }
  footer { flex-direction: column; align-items: flex-start; text-align: left; padding: 24px; }
}

@media (max-width: 600px) {
  .global-stats { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 22px; }
  .hero h1 { font-size: 36px; }
  .countdown-timer { font-size: 24px; }
}

/* === GRID BACKGROUND LINES === */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
}

/* === PULSE ANIMATION on numbers === */
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 10px currentColor; }
  50%       { text-shadow: 0 0 25px currentColor, 0 0 50px currentColor; }
}

.countdown-timer { animation: pulse-glow 3s ease-in-out infinite; }

/* === LOADING STATE === */
.loading-msg {
  text-align: center;
  padding: 80px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.1em;
}

/* === HERO SHARE ROW === */
.hero-share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-share-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero-share-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--mid);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
}

.hero-share-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: var(--bright);
}

.hero-share-li:hover { border-color: #0077b5; color: #0077b5; }
.hero-share-x:hover  { border-color: rgba(255,255,255,0.7); color: var(--bright); }

/* === CARD FOOTER ACTIONS === */
.card-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.view-counter {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vc-eye { font-size: 11px; }

.vc-num {
  color: var(--crt);
  font-weight: 700;
}

.card-share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.work-here-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.15s;
  flex: 1;
}

.work-here-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0,255,136,0.06);
}

.share-li-btn,
.share-x-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.share-li-btn:hover {
  border-color: #0077b5;
  color: #0077b5;
  background: rgba(0,119,181,0.08);
}

.share-x-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--bright);
  background: rgba(255,255,255,0.05);
}

/* === RISK CALCULATOR PANEL === */
.risk-calc-panel {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.risk-roles-header {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.risk-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.role-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.15s;
}

.role-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.role-btn.active {
  background: rgba(0,255,136,0.12);
  border-color: var(--green);
  color: var(--green);
}

/* === RISK RESULT === */
.risk-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.risk-score-display {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  padding: 14px;
  text-align: center;
  font-family: var(--font-mono);
}

.risk-score-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}

.risk-score-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  text-shadow: 0 0 20px rgba(255,45,85,0.4);
  line-height: 1;
  margin-bottom: 6px;
}

.risk-score-meta {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.08em;
}

.risk-copy-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  border-radius: 3px;
  border: 1px solid rgba(0,119,181,0.5);
  background: rgba(0,119,181,0.08);
  color: #5ba3d9;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.risk-copy-btn:hover {
  background: rgba(0,119,181,0.15);
  border-color: #0077b5;
  color: #7fbfe8;
}

.risk-copy-btn.copied {
  background: rgba(0,255,136,0.1);
  border-color: var(--green);
  color: var(--green);
}

/* === DEEP LINK HIGHLIGHT === */
@keyframes deep-link-flash {
  0%   { box-shadow: 0 0 0 0 rgba(0,255,136,0); outline: none; }
  20%  { box-shadow: 0 0 0 3px rgba(0,255,136,0.6); }
  60%  { box-shadow: 0 0 0 3px rgba(0,255,136,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

.deep-link-highlight {
  animation: deep-link-flash 3.4s ease-out forwards;
}

/* === NOMINATION SECTION === */
.nomination-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
}

.nomination-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nom-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nom-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red);
  opacity: 0.6;
}

.nom-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--bright);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nom-sub {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
}

.nom-count-line {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

#nom-count {
  color: var(--crt);
  font-weight: 700;
}

.nom-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.nom-input {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: var(--bright);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.nom-input::placeholder { color: rgba(255,255,255,0.2); }
.nom-input:focus { border-color: rgba(255,255,255,0.3); }

.nom-submit {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 13px 20px;
  border-radius: 3px;
  border: 1px solid var(--red);
  background: rgba(255,45,85,0.1);
  color: var(--red);
  cursor: pointer;
  transition: all 0.15s;
  align-self: flex-start;
}

.nom-submit:hover {
  background: var(--red);
  color: #fff;
}

.nom-thankyou {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 3px;
  padding: 12px 16px;
  line-height: 1.6;
}

.nom-thankyou strong { color: var(--bright); }

.nom-recent {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.nom-recent-label {
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 6px;
}

@media (max-width: 900px) {
  .nomination-section { padding: 48px 24px; }
  .nom-heading { font-size: 20px; }
  .nom-submit { align-self: stretch; text-align: center; }
}
