@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&family=Archivo+Black&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b0e0a;
  --bg2: #10130d;
  --panel: #14180f;
  --panel2: #1a2014;
  --line: #2a3020;
  --volt: #8cd852;
  --volt-dim: #63a63b;
  --red: #cf4f4a;
  --amber: #d9b45c;
  --ink: #e4e6d4;
  --muted: #94997f;
  --mono: 'SFMono-Regular', 'Cascadia Code', Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--volt); color: #0a0d0a; }

a { color: var(--volt); text-decoration: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.bg-grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ---------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 10, .82);
  backdrop-filter: blur(8px);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 28px; height: 28px; object-fit: cover; border-radius: 6px; }
.brand-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 2px; color: #f2f4df;
}
.brand-name em { color: #a5e15c; font-style: normal; }
.nav-links { display: flex; gap: 22px; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.nav-links a { color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--volt); }
.nav-links a.act-link { color: var(--volt); }
.live-pill { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--volt); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 8px var(--volt-dim); animation: pulse 1.6s infinite; }
.dot.off { background: var(--red); box-shadow: 0 0 8px rgba(207,79,74,.5); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------------------------------- ticker */
.ticker {
  position: sticky; top: 52px; z-index: 45;
  overflow: hidden; white-space: nowrap;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 10, .88);
  backdrop-filter: blur(8px);
}
.ticker-track { display: inline-flex; will-change: transform; animation: ticker 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--muted); padding: 6px 0;
}
.ticker-item b { color: var(--volt); font-weight: 800; }
.ticker-item .warn { color: var(--amber); font-weight: 800; }
.ticker-sep { color: var(--volt-dim); padding: 0 4px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------------------------------- hero */
.hero {
  position: relative; z-index: 1; padding: 84px 0 34px;
  min-height: 74vh; display: flex; align-items: center; overflow: hidden;
}
.hero-art {
  position: absolute; inset: 0; z-index: 0;
  background: url('/assets/hero.png') center/cover no-repeat;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,14,10,.72) 0%, rgba(11,14,10,.42) 40%, var(--bg) 96%);
}
.hero-content { position: relative; z-index: 2; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--volt);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; background: rgba(15,19,14,.7);
}
.hero .kicker, .hero h1, .hero .hero-sub { position: relative; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 11vw, 148px);
  line-height: .9; letter-spacing: 1px; text-transform: uppercase;
  margin: 26px 0 14px;
  text-shadow: 0 3px 30px rgba(0,0,0,.65);
}
.hero h1 .stroke {
  color: transparent; -webkit-text-stroke: 2px var(--volt);
  text-shadow: none;
}
.hero-sub { max-width: 640px; font-size: 16px; color: #ffffff; text-shadow: 0 2px 14px rgba(0,0,0,.8); }
.hero-sub strong { color: var(--ink); }

.stat-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.stat-row.six .stat { min-width: 150px; flex: 1 1 150px; }
.stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 18px; min-width: 170px;
}
.stat .k { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.stat .v { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.stat .v small { color: var(--muted); font-size: 12px; }
.stat.hot .v { color: var(--volt); }

/* ---------------------------------- sections */
section { position: relative; z-index: 1; padding: 72px 0; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 22px; margin-bottom: 30px; }
.sec-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 5vw, 58px); letter-spacing: 1px; text-transform: uppercase; }
.sec-title span { color: var(--volt); }
.sec-tag { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------- free strip */
.free-strip {
  border: 1px solid var(--volt-dim); border-radius: 12px;
  background: linear-gradient(100deg, rgba(140,216,82,.10), rgba(140,216,82,.02));
  padding: 22px 26px;
}
.free-tl { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 4vw, 40px); letter-spacing: 1px; text-transform: uppercase; color: var(--ink); }
.free-tl em { color: var(--volt); font-style: normal; }
.free-sub { margin-top: 6px; font-size: 13px; color: var(--muted); max-width: 640px; }
.free-sub strong { color: var(--volt); }

/* ---------------------------------- case files */
.case-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.case-row {
  display: grid; grid-template-columns: 90px 1fr minmax(160px, 300px) auto;
  align-items: center; gap: 16px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px;
  transition: border-color .15s;
}
.case-row:hover { border-color: var(--volt-dim); }
.case-num { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--muted); letter-spacing: 1px; }
.case-num b { color: var(--volt); }
.case-type {
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: #14180f; background: var(--amber); border-radius: 999px; padding: 4px 10px; width: fit-content;
}
.case-type.drift { background: var(--amber); color: #14180f; }
.case-type.honeypot { background: var(--red); color: #fff; }
.case-type.pull { background: var(--red); color: #fff; }
.case-type.sweep { background: var(--volt); }
.case-pair { font-family: var(--mono); font-size: 13px; color: var(--ink); word-break: break-all; }
.case-pair small { color: var(--muted); }
.case-usd { text-align: right; font-family: var(--mono); font-size: 16px; font-weight: 700; }
.case-usd.hot { color: var(--volt); }

.case-empty {
  border: 1px dashed var(--line); border-radius: 10px; padding: 44px 20px; text-align: center; color: var(--muted);
}
.case-empty strong { color: var(--volt); font-size: 18px; display: block; margin-bottom: 6px; }


/* ---------------------------------- features */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 22px; }
.feat .n { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--volt); line-height: 1; }
.feat h3 { font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin: 12px 0 8px; }
.feat p { font-size: 13px; color: var(--muted); }

/* ---------------------------------- dashboard */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 34px; }
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.btn {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--panel2); color: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 9px 16px; cursor: pointer;
}
.btn:hover { color: var(--volt); border-color: var(--volt-dim); }
.btn.act { background: var(--volt); color: #14180f; border-color: var(--volt); }

.table-wrap { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead { background: var(--panel2); }
th { text-align: left; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 12px 14px; }
td { padding: 12px 14px; border-top: 1px solid var(--line); color: var(--ink); }
td.mono, td .addr { font-family: var(--mono); font-size: 12px; }
.tag { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 999px; padding: 3px 9px; }
.tag.drift { background: var(--amber); color: #14180f; }
.tag.honeypot { background: var(--red); color: #fff; }
.tag.pull { background: var(--red); color: #fff; }
.tag.pump { background: var(--volt); color: #14180f; }
.tag.open { color: var(--amber); border: 1px solid var(--amber); }
.tag.cleared { color: var(--volt); border: 1px solid var(--volt); }
.hot-usd { color: var(--volt); font-weight: 700; }
.row-dead { background: rgba(207,79,74,.06); }
.row-dead td { color: var(--red); }
.linklike { background: none; border: none; padding: 0; color: var(--volt); font-family: var(--mono); font-size: 12px; cursor: pointer; }
.linklike:hover { text-decoration: underline; }
.small-note { font-size: 11px; color: var(--muted); margin-top: 12px; }

/* ---------------------------------- community */
.ends { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.end {
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 24px; min-height: 130px;
  transition: border-color .15s, transform .15s;
}
.end:hover { border-color: var(--volt); transform: translateY(-2px); }
.end .k { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.end .tl { font-size: 20px; font-weight: 900; }

/* ---------------------------------- the guard */
#guard { border-top: 1px solid var(--line); }
.guard-wrap { display: grid; grid-template-columns: minmax(260px, 340px) 1fr; gap: 40px; align-items: center; }
.guard-art {
  position: relative;
  border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden;
}
.guard-art img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
.guard-art::after {
  content: ""; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(180deg, rgba(10,13,10,.05), rgba(10,13,10,.5));
  pointer-events: none;
}
.guard-text p { font-size: 15px; color: var(--muted); margin-bottom: 14px; max-width: 520px; }
.guard-text p:last-child { margin-bottom: 0; }

/* ---------------------------------- the ends map bg */
#ends { position: relative; overflow: hidden; padding: 72px 0; }
.ends-map {
  position: absolute; inset: 0; z-index: 0;
  background: url('/assets/map.png') center/cover no-repeat;
  opacity: .28;
  transform: scale(1.02);
}
.ends-inner { position: relative; z-index: 1; }

/* ---------------------------------- hero search */
.hero-search { display: flex; gap: 10px; margin-top: 28px; max-width: 640px; position: relative; z-index: 2; }
.hero-share { margin-top: 14px; position: relative; z-index: 2; }
.hero-share .btn { background: var(--volt); border: 1px solid var(--volt); color: #0b0e0a; font-weight: 800; box-shadow: 0 0 24px rgba(140,216,82,.35); }
.hero-share .btn:hover { background: var(--volt-dim); border-color: var(--volt-dim); color: #0b0e0a; box-shadow: 0 0 34px rgba(140,216,82,.55); }
.hero-search input {
  flex: 1; min-width: 0; background: rgba(15,19,14,.8); border: 1px solid var(--line);
  color: var(--ink); font-family: var(--mono); font-size: 13px; border-radius: 8px; padding: 12px 14px; outline: none;
}
.hero-search input:focus { border-color: var(--volt-dim); }

/* ---------------------------------- feed page */
.feed-strip {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--panel);
  padding: 14px 18px; font-size: 12px; color: var(--muted); margin-bottom: 16px;
}
.feed-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 8px var(--volt-dim); animation: pulse 1.6s infinite; flex: none; }
.feed-list { display: grid; gap: 10px; }
.feed-row {
  display: grid; grid-template-columns: 90px 1fr 1fr auto; align-items: center; gap: 16px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 13px 18px;
}
.feed-p { font-size: 13px; }
.feed-p.index { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--muted); letter-spacing: 1px; }
.feed-p.sym b { color: var(--ink); font-family: var(--mono); font-weight: 700; }
.feed-p.flags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.feed-p.time { font-family: var(--mono); font-size: 12px; color: var(--muted); text-align: right; }
.feed-empty {
  border: 1px dashed var(--line); border-radius: 10px; padding: 44px 20px; text-align: center; color: var(--muted);
}
.feed-empty strong { color: var(--volt); font-size: 18px; display: block; margin-bottom: 6px; }

/* ---------------------------------- rug check */
.rc-box { border: 1px solid var(--line); border-radius: 12px; background: var(--panel); padding: 22px; margin-bottom: 22px; }
.rc-search { display: flex; gap: 10px; }
.rc-search input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--mono); font-size: 13px; border-radius: 8px; padding: 12px 14px; outline: none;
}
.rc-search input:focus { border-color: var(--volt-dim); }
.rc-search .btn { white-space: nowrap; }
.rc-note { margin-top: 12px; font-size: 12px; color: var(--muted); max-width: 680px; }

.rc-verdict { display: flex; align-items: center; gap: 18px; border-radius: 12px; padding: 20px 22px; margin-bottom: 14px; }
.rc-verdict .rc-grade {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(44px, 6vw, 92px); letter-spacing: 1px; line-height: 1;
  flex: none; padding: 16px 22px; border-radius: 10px; background: var(--panel); position: relative;
}
.rc-verdict .rc-grade .rc-score {
  position: absolute; bottom: 8px; right: 12px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 1px; opacity: .85;
}
.rc-reasons { margin: 0 0 14px; padding: 12px 16px; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); font-size: 13px; color: var(--ink); line-height: 1.5; }
.rc-reasons b { font-family: 'Space Grotesk', sans-serif; letter-spacing: 1px; font-size: 11px; color: var(--muted); text-transform: uppercase; }
.rc-reasons:empty { display: none; }
.rc-verdict .rc-win { font-size: 16px; font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
.rc-verdict .rc-win b { font-family: 'Archivo Black', sans-serif; font-size: 20px; letter-spacing: .5px; }
.rc-verdict .rc-win .mono { font-size: 12px; }
.grade-clean { border: 1px solid var(--volt-dim); background: rgba(140,216,82,.06); }
.grade-clean .rc-grade { color: var(--volt); }
.grade-sus { border: 1px solid var(--amber); background: rgba(217,180,92,.07); }
.grade-sus .rc-grade { color: var(--amber); }
.grade-grimey { border: 1px solid var(--red); background: rgba(207,79,74,.08); }
.grade-grimey .rc-grade { color: var(--red); }

.rc-share { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.rc-share .btn { display: inline-flex; align-items: center; gap: 8px; }
.rc-share .hint { font-size: 12px; color: var(--muted); }
.rc-share .copied { color: var(--volt); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1px; }

/* ---------------------------------- share sheet */
.share-back { position: fixed; inset: 0; z-index: 98; background: rgba(7,10,6,.82); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; }
.share-sheet { position: relative; z-index: 99; width: min(620px, 100%); background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; max-height: 92vh; overflow: auto; }
.share-sheet .ss-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.share-sheet .ss-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .5px; }
.share-sheet .ss-title b { color: var(--volt); font-weight: 800; }
.share-sheet .ss-close { background: var(--panel2); border: 1px solid var(--line); color: var(--muted); font-size: 16px; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; line-height: 1; }
.share-sheet .ss-close:hover { color: var(--volt); border-color: var(--volt-dim); }
.share-sheet .ss-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.share-sheet .ss-card img { display: block; width: 100%; height: auto; }
.share-sheet .ss-link { display: flex; gap: 8px; margin-top: 14px; }
.share-sheet .ss-link input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--mono); font-size: 12px; border-radius: 8px; padding: 11px 12px; outline: none;
}
.share-sheet .ss-link input:focus { border-color: var(--volt-dim); }
.share-sheet .ss-copy { white-space: nowrap; }
.share-sheet .ss-note { margin-top: 12px; font-size: 12px; color: var(--muted); }
.share-sheet .ss-note b { color: var(--volt); font-weight: 700; }
.share-sheet .ss-send { display: flex; justify-content: center; width: 100%; margin-top: 16px; padding: 14px 16px; font-size: 15px; }
.share-sheet .ss-send:disabled { opacity: .7; cursor: wait; }
.share-sheet .ss-save { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.share-sheet .ss-save .sbtn { display: flex; justify-content: center; }
.share-sheet .sbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line); background: var(--panel2); color: var(--ink); border-radius: 10px;
  padding: 11px 10px; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer;
}
.share-sheet .sbtn:hover { border-color: var(--volt-dim); color: var(--volt); }
@media (max-width: 600px) { .share-sheet .ss-save { grid-template-columns: 1fr; } }

.rc-roll { display: grid; gap: 8px; margin-bottom: 14px; }
.rc-check {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px;
}
.rc-check.bad { border-color: rgba(207,79,74,.5); }
.rc-check.good { border-color: rgba(140,216,82,.4); }
.rc-mark { font-size: 16px; line-height: 1.3; flex: none; }
.rc-ok { color: var(--volt); }
.rc-bad { color: var(--red); }
.rc-mid { color: var(--muted); }
.rc-body { font-size: 13px; font-family: 'Space Grotesk', sans-serif; }
.rc-body b { font-weight: 700; letter-spacing: .5px; }
.rc-state { font-size: 10px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: 2.5px; margin-left: 6px; }
.rc-check.bad .rc-state { color: var(--red); }
.rc-check.good .rc-state { color: var(--volt); }
.rc-check:not(.bad):not(.good) .rc-state { color: var(--muted); }
.rc-detail { color: var(--muted); font-size: 12px; font-family: 'Inter', sans-serif; }
.rc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.rc-stat { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; }
.rc-stat span { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-family: 'Space Grotesk', sans-serif; }
.rc-stat b { display: block; font-family: var(--mono); font-size: 15px; margin-top: 6px; color: var(--ink); }

/* ---------------------------------- case files (home) */
.case-list { display: flex; flex-direction: column; gap: 10px; }
.case-row {
  display: grid; grid-template-columns: auto 1fr auto auto auto; gap: 14px; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px;
}
.case-row.grimy { border-color: rgba(207,79,74,.4); }
.case-sym { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; }
.case-meta { color: var(--muted); font-size: 11px; display: none; }
.case-usd b { color: var(--amber); font-family: var(--mono); font-size: 14px; }
.case-actions { display: flex; gap: 8px; }

@media (min-width: 640px) {
  .case-meta { display: block; }
  .case-row { grid-template-columns: auto 1fr auto auto auto; }
}
@media (max-width: 639px) {
  .case-row { grid-template-columns: auto 1fr auto; }
  .case-usd { grid-column: 2 / 4; }
}

/* ---------------------------------- ops list */
.ops-strip {
  display: flex; flex-direction: column; gap: 14px; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; margin-bottom: 26px; text-align: center;
  background: linear-gradient(180deg, rgba(207,79,74,.05), transparent);
}
.ops-stamp {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(30px, 6vw, 54px); letter-spacing: 3px;
  color: var(--red); text-transform: uppercase; -webkit-text-stroke: 1px rgba(207,79,74,.35);
  transform: rotate(-2deg); text-shadow: 0 0 30px rgba(207,79,74,.4);
}
.ops-copy { max-width: 660px; font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--muted); }
.ops-copy b { color: var(--red); }
.ops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 16px; }
.ops-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
  position: relative; overflow: hidden;
}
.ops-card::after {
  content: "WANTED"; position: absolute; right: -6px; top: 14px; transform: rotate(24deg);
  font-family: 'Archivo Black', sans-serif; font-size: 26px; letter-spacing: 2px; opacity: .14;
  color: var(--red); pointer-events: none;
}
.ops-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ops-num { font-family: var(--mono); color: var(--muted); font-size: 12px; }
.ops-charge {
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px; border: 1px solid var(--line);
}
.charge-hp .ops-charge { color: var(--red); border-color: rgba(207,79,74,.5); }
.charge-dp .ops-charge { color: var(--red); border-color: rgba(207,79,74,.5); }
.charge-dr .ops-charge { color: var(--amber); border-color: rgba(217,180,92,.5); }
.ops-sym {
  font-family: 'Anton', sans-serif; font-size: clamp(22px, 3vw, 30px); letter-spacing: 1px;
  color: var(--ink); line-height: 1.1; text-transform: uppercase;
}
.charge-hp .ops-sym, .charge-dp .ops-sym { color: var(--red); }
.ops-blurb { font-size: 13px; color: var(--muted); font-family: 'Space Grotesk', sans-serif; }
.ops-blurb b { color: var(--amber); font-family: var(--mono); }
.ops-meta { display: flex; flex-direction: column; gap: 4px; font-size: 11px; color: var(--muted); font-family: 'Space Grotesk', sans-serif; }
.ops-meta .mono { font-size: 11px; color: var(--ink); word-break: break-all; }
.ops-actions { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.ops-actions .btn { flex: none; }

/* ---------------------------------- mobile nav / hamburger */
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 11px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-burger span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--volt); transition: transform .2s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(320px, 84vw);
  background: #0d100b; border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform .24s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 72px 22px 26px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.55); }
.drawer-back {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(7,10,6,.65); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.drawer-back.open { opacity: 1; pointer-events: auto; }
.drawer .dl {
  display: block; padding: 13px 14px; margin-bottom: 4px;
  font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); border-radius: 10px; border: 1px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.drawer .dl:hover, .drawer .dl.act-link { color: var(--volt); background: var(--panel2); border-color: var(--line); }
.drawer .dl .dl-sub { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); text-transform: none; font-weight: 600; display: block; margin-top: 2px; }
.drawer .dl-live {
  display: flex; align-items: center; gap: 8px;
  margin-top: auto; padding: 12px 14px; border-top: 1px solid var(--line);
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--volt);
}
.drawer .dl-foot { margin-top: 10px; font-size: 10px; color: var(--muted); line-height: 1.6; padding: 0 14px; }

/* keep nav usable when burger hidden on wide screens */
@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .nav-pill { margin-left: auto; }
  .live-pill { margin-right: 4px; }
  .live-pill { font-size: 0; gap: 0; }
  .live-pill .dot { font-size: 0; }
}

/* ---------------------------------- footer */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 56px 0 30px; }
.footer .giant {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 14vw, 200px); line-height: .85;
  letter-spacing: 2px; text-align: center; text-transform: uppercase; color: var(--bg2);
  -webkit-text-stroke: 1px var(--line); pointer-events: none; user-select: none;
}
.legal { font-size: 11px; color: var(--muted); margin-top: 40px; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.legal b { color: var(--ink); }

/* ---------------------------------- responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .feats, .ends { grid-template-columns: 1fr; }
  .case-row { grid-template-columns: 1fr; gap: 8px; }
  .case-usd { text-align: left; }
  .guard-wrap { grid-template-columns: 1fr; }
  .guard-art { max-width: 300px; }
  /* wide tables scroll inside the card on small screens */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 640px; }
}

@media (max-width: 600px) {
  .ticker-item { font-size: 10px; padding: 7px 0; }
  .ticker-track { animation-duration: 26s; }
  .hero { padding: 120px 0 30px; min-height: 78vh; }
  .hero-art { background-position: center 28%; }
  .hero-shade { background: linear-gradient(180deg, rgba(11,14,10,.78) 0%, rgba(11,14,10,.34) 45%, var(--bg) 98%); }
  .stat-row { gap: 10px; }
  .stat { min-width: 0; flex: 1 1 40%; }
  .guard-art { max-width: 260px; margin-inline: auto; }
  .guard-art img { aspect-ratio: 3 / 4; }
  .ends-map { opacity: .18; }
  .footer .giant { font-size: 22vw; }
  .sec-head { flex-direction: column; gap: 4px; }
  .hero-search { flex-direction: column; }
  .rc-search { flex-direction: column; }
  .rc-search .btn { justify-content: center; }
  .feed-row { grid-template-columns: 1fr; gap: 6px; }
  .feed-p.time { text-align: left; }
  .rc-verdict { flex-direction: column; align-items: stretch; text-align: left; }
  .rc-verdict .rc-grade { text-align: center; }
  .container { padding: 0 16px; }
  .nav-in { height: 50px; }
  .hero h1 { font-size: clamp(52px, 18vw, 96px); }
  .toolbar .btn { flex: 1 1 40%; justify-content: center; }
}