
:root {
  --bg: #000000;
  --card: #141416;
  --border: #1F2023;
  --cyan: #22D3EE;
  --coral: #FF4D57;
  --amber: #F5B301;
  --green: #22C55E;
  --text: #ffffff;
  --muted: #B4B7BD;
  --meta: #7A7E85;
  --radius: 12px;
  --header-h: 64px;
  --wrap: min(1280px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  color-scheme: dark;
}
body { min-height: 100vh; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.mark {
  width: 28px; height: 28px; flex: 0 0 auto;
  filter: drop-shadow(0 0 6px rgba(34,211,238,.5));
}
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: .32em;
  font-size: 13px;
  text-transform: uppercase;
}

.site-header {
  position: sticky; top: 0; z-index: 80;
  height: var(--header-h);
  background: #000000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  margin-left: 4px;
  flex: 1;
}
.desktop-nav a,
.desktop-nav .nav-item {
  font-size: 13.5px;
  font-weight: 500;
  color: #E8EAED;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav .nav-item:hover { color: var(--cyan); }
.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  position: relative;
}
.nav-item .chev { width: 8px; height: 8px; opacity: .7; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  z-index: 90;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: #E8EAED !important;
}
.dropdown a:hover { color: var(--cyan) !important; background: rgba(34,211,238,.06); }

.header-utils {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  position: relative;
}
.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: #fff;
  border-radius: 8px;
  position: relative;
}
.icon-btn:hover { background: rgba(255,255,255,.05); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-bell .dot {
  position: absolute; top: 8px; right: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); border: 1.5px solid var(--bg);
}
.btn-sub {
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-left: 6px;
}
.btn-sub:hover { filter: brightness(1.08); }

.search-pop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  width: 280px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.search-pop.open { display: block; }
.search-pop input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
}
.search-pop input:focus { border-color: var(--cyan); }

.burger, .drawer-close {
  display: grid;
  place-items: center;
  margin-left: auto;
  color: #fff;
  padding: 8px;
}
.burger svg, .drawer-close svg { width: 22px; height: 22px; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 70;
  overflow: auto;
  padding-top: var(--header-h);
}
.mobile-drawer[hidden] { display: none !important; }
.drawer-list { list-style: none; margin: 0; padding: 4px 0 48px; }
.drawer-list li { border-bottom: 1px solid var(--border); }
.drawer-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 500;
}
.drawer-list a .d-ico { width: 22px; height: 22px; flex: 0 0 auto; color: var(--muted); }
.drawer-list a .d-chev { margin-left: auto; opacity: .5; width: 10px; height: 10px; }

body.nav-open { overflow: hidden; }
body.nav-open .burger { display: none; }
body.nav-open .drawer-close { display: grid; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #000;
  background-image:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.92) 34%, rgba(0,0,0,.62) 58%, rgba(0,0,0,.42) 100%),
    url("hero-desert.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 22px 0 8px;
  order: 1;
}
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 18px;
}
.hero .lede {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: #B4B7BD;
  max-width: 540px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-solid { background: var(--cyan); color: #000; border-color: var(--cyan); }
.btn-solid:hover { filter: brightness(1.08); }
.btn-ghost,
.btn-outline-cyan {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}
.btn-ghost:hover,
.btn-outline-cyan:hover { background: rgba(255,255,255,.06); }
.hero-neon-wrap {
  position: relative;
  z-index: 1;
  order: 2;
  width: min(72vw, 300px);
  max-width: 300px;
  margin: 4px auto 28px;
  pointer-events: none;
  mix-blend-mode: screen;
  isolation: isolate;
}
.hero-neon {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter:
    saturate(1.25) brightness(1.08) contrast(1.06)
    drop-shadow(0 0 16px rgba(34,211,238,.42))
    drop-shadow(0 0 30px rgba(255,77,154,.26));
  animation: neon-breathe 2.8s ease-in-out infinite;
}
.hero-neon-run {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: .9;
  -webkit-mask-image: url("hero-neon.png");
          mask-image: url("hero-neon.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.hero-neon-run-spin {
  position: absolute;
  inset: -55%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 28deg,
    rgba(34,211,238,0) 40deg,
    rgba(34,211,238,.7) 52deg,
    rgba(255,255,255,.95) 58deg,
    rgba(245,179,1,.75) 64deg,
    rgba(255,77,154,.7) 74deg,
    transparent 92deg,
    transparent 360deg
  );
  animation: neon-run-spin 3.4s linear infinite;
  will-change: transform;
}
@keyframes neon-breathe {
  0%, 100% {
    filter:
      saturate(1.22) brightness(1.05) contrast(1.05)
      drop-shadow(0 0 12px rgba(34,211,238,.32))
      drop-shadow(0 0 24px rgba(255,77,154,.2));
  }
  50% {
    filter:
      saturate(1.42) brightness(1.2) contrast(1.08)
      drop-shadow(0 0 26px rgba(34,211,238,.72))
      drop-shadow(0 0 44px rgba(255,77,154,.46))
      drop-shadow(0 0 18px rgba(245,179,1,.32));
  }
}
@keyframes neon-run-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-neon,
  .hero-neon-run-spin { animation: none; }
}

.section { padding: 48px 0 12px; }
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sec-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
.sec-sub { margin: 6px 0 0; color: var(--muted); font-size: 13.5px; }
.sec-link {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.sec-link:hover { filter: brightness(1.15); }
.sec-link svg { width: 13px; height: 13px; }
.pulse-chevrons { width: 22px; height: 16px; flex: 0 0 auto; }

.pulse-head { margin-bottom: 16px; }
.pulse-head .sec-title { margin-bottom: 2px; }
.pulse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pulse-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  min-height: 196px;
}
a.pulse-card { color: inherit; text-decoration: none; }
.pulse-card:hover { border-color: #2a2c32; }
.pulse-card .ico { width: 22px; height: 22px; margin-bottom: 12px; }
.pulse-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
}
.pulse-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  flex: 1;
}
.pulse-card .cta {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}
.cta-coral { color: var(--coral); }
.cta-cyan { color: var(--cyan); }
.cta-amber { color: var(--amber); }
.vendor-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 13px;
  color: #E8EAED;
  flex: 1;
}
.vendor-list li { display: flex; align-items: center; gap: 6px; margin: 3px 0; }
.vendor-list .n { color: var(--meta); width: 14px; }
.up { color: var(--green); font-weight: 700; }
.pill-reported {
  display: inline-block;
  background: var(--amber);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 999px;
  margin: 0 0 10px;
  width: fit-content;
}

.stories-tools { display: none; align-items: center; gap: 10px; }
.arrow-btn {
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
}
.arrow-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.arrow-btn svg { width: 12px; height: 12px; }
.stories-grid { display: flex; flex-direction: column; gap: 16px; }
.story-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.story-card:hover { border-color: #2a2c32; }
.story-art {
  position: relative;
  height: 168px;
  overflow: hidden;
}
.story-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,6,10,.45));
  pointer-events: none;
}
.art-1 { background: #000 url("story-ai.jpg") center/cover no-repeat; }
.art-2 { background: #000 url("story-ma.jpg") center/cover no-repeat; }
.art-3 { background: #000 url("story-cloud.jpg") center/cover no-repeat; }
.art-4 { background: #000 url("story-soc.jpg") center/cover no-repeat; }
.story-tag {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(6px);
}
.tag-cyan { color: var(--cyan); border: 1px solid var(--cyan); }
.tag-coral { color: var(--coral); border: 1px solid var(--coral); }
.story-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.story-body h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--meta);
  font-size: 12px;
  margin-top: auto;
}
.bookmark { color: var(--meta); padding: 0; }
.bookmark svg { width: 16px; height: 16px; }
.bookmark:hover { color: var(--cyan); }

.face-wrap { position: relative; }
.face-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.face-track::-webkit-scrollbar { height: 0; }
.face-card {
  flex: 0 0 min(78%, 280px);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
}
.face-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  margin-bottom: 8px;
}
.logo-badge {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: #0c0c0e;
  border: 1px solid var(--border);
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.logo-badge svg { width: 30px; height: 30px; }
.vs-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid #2a2b30;
  display: grid; place-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--meta);
  flex: 0 0 auto;
}
.face-names {
  margin: 0 0 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.face-checks { display: block; list-style: none; margin: 0 0 14px; padding: 0; }
.face-checks li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #E8EAED;
  padding: 5px 0;
}
.face-cat { flex: 0 0 auto; min-width: 0; }
.face-bar {
  flex: 1 1 auto;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--c1) 0 var(--a), var(--c2) var(--a) 100%);
  box-shadow: 0 0 10px color-mix(in srgb, var(--c1) 35%, transparent);
  min-width: 72px;
}
.face-note { font-size: 11px; color: var(--meta); margin: 8px 0 0; }
.face-week{margin:-6px 0 12px;font-size:11px;color:var(--meta);letter-spacing:.03em}
.face-week:empty{display:none}
.face-head-tools{display:flex;align-items:center;gap:10px}
.face-cta {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: auto;
  text-transform: uppercase;
}
.face-cta:hover { filter: brightness(1.15); }
.face-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.face-foot .face-cta { margin-top: 0; }
.face-win {
  flex: 0 0 auto;
  max-width: 55%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: #E8EAED;
  background: rgba(255,255,255,.04);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.face-win.is-left,
.face-win.is-right {
  color: #0b0b0c;
  background: var(--win, var(--cyan));
  border-color: transparent;
  box-shadow: 0 0 14px color-mix(in srgb, var(--win, var(--cyan)) 45%, transparent);
}
.face-win.is-split {
  color: var(--amber);
  border-color: rgba(245,179,1,.45);
  background: rgba(245,179,1,.1);
}

.face-next-m {
  display: none;
}

.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.disc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-height: 104px;
}
.disc-card:hover { border-color: #2a2c32; }
.disc-card svg { width: 26px; height: 26px; }
.disc-card span { font-size: 12px; font-weight: 600; line-height: 1.25; }
.disc-card .full { display: none; }
.ico-cyan { color: var(--cyan); }
.ico-coral { color: var(--coral); }
.ico-amber { color: var(--amber); }

.index-block { margin-top: 8px; }
.index-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.index-sub {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 12px;
}
.desktop-index-sub { display: none; }
.rank-list { list-style: none; margin: 0; padding: 0; }
.rank-list li {
  display: grid;
  grid-template-columns: 18px 1fr auto 72px;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
}
.rank-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rank-name { font-weight: 600; }
.rank-why {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
}

/* Index score 1-100 + click trend */
.rank-list li.rank-row {
  display: block;
  padding: 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
}
.rank-list > li.rank-row {
  display: block;
  grid-template-columns: unset;
}
.rank-hit {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.rank-hit:hover .rank-name { color: var(--cyan); }
.rank-hit[aria-expanded="true"] .rank-hint { color: var(--amber); }
.rank-score {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--amber);
  min-width: 2ch;
  text-align: right;
}
.rank-score.up { color: var(--green); }
.rank-score.down { color: var(--coral); }
.rank-score.flat { color: var(--amber); }
.movers-list .rank-score { font-size: 15px; }
.spark.up polyline { stroke: var(--green); }
.spark.down polyline { stroke: var(--coral); }
.spark.flat polyline { stroke: var(--amber); }
.rank-trend-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rank-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .16s ease, border-color .16s ease, color .16s ease, background .16s ease;
}
.rank-like-btn:hover {
  border-color: rgba(255,77,87,.65);
  color: var(--coral);
  background: rgba(255,77,87,.07);
}
.rank-like-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.rank-like-btn.is-liked {
  border-color: rgba(255,77,87,.7);
  color: var(--coral);
  background: rgba(255,77,87,.1);
}
.rank-like-heart {
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(255,77,87,.25));
}
.rank-like-btn.is-liked .rank-like-heart { filter: drop-shadow(0 0 7px rgba(255,77,87,.55)); }
.rank-like-btn.is-pulsing { animation: rankLikePulse .24s ease; }
@keyframes rankLikePulse {
  50% { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .rank-like-btn { transition: none; }
  .rank-like-btn.is-pulsing { animation: none; }
}
.rank-why-label {
  margin: 8px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--meta);
}
.delta.up { color: var(--green); }
.rank-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--meta);
}
.rank-trend {
  padding: 0 0 12px 28px;
  display: grid;
  gap: 6px;
  justify-items: start;
}
.rank-trend[hidden] { display: none !important; }
.spark-lg { width: 120px; height: 28px; }
.rank-src {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
}
.movers-list li { align-items: flex-start; }
.mover-why {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
}
.rank-list li:last-child { border-bottom: 0; }
.rank-n { color: #fff; }
.delta { color: var(--green); font-weight: 700; font-size: 13px; white-space: nowrap; }
.delta.down { color: var(--coral); }
.delta.flat { color: var(--meta); }
.spark { width: 72px; height: 22px; }
.spark path, .spark polyline { fill: none; stroke: var(--cyan); stroke-width: 1.6; }

.index-stack { display: flex; flex-direction: column; gap: 12px; }
.mcap { color: var(--cyan); font-weight: 700; font-size: 13px; white-space: nowrap; }

.clip-5:not(.is-open) > li:nth-child(n+6) { display: none; }
.rank-more {
  margin-top: 10px;
  padding: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rank-more:hover { text-decoration: underline; }

.mcap-note { margin: 12px 0 0; font-size: 11px; color: var(--meta); }
.mcap-list li { font-size: 13.5px; }

.movers-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin-top: 12px;
}
.movers-metrics { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.mover { display: flex; align-items: flex-start; gap: 12px; }
.mover svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; }
.mover b { display: block; font-size: 14px; font-weight: 600; }
.mover span { font-size: 13px; color: var(--muted); }
.mover .hi { color: var(--green); font-weight: 700; }
.movers-list { list-style: none; margin: 0; padding: 0; }
.movers-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
}
.movers-list li:last-child { border-bottom: 0; }
.movers-list .mover-name { font-weight: 600; }
.movers-col .sec-link { margin-top: 14px; }

.brief-col { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.brief-card {
  margin-top: 0;
  background: var(--card);
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  box-shadow: 0 0 28px rgba(34,211,238,.12);
}
.brief-card .env { width: 28px; height: 28px; margin-bottom: 12px; color: var(--cyan); }
.brief-title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.brief-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-form input {
  background: var(--bg);
  border: 1px solid #2a2b30;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}
.nl-form input:focus { border-color: var(--cyan); }
.nl-form button {
  background: var(--cyan);
  color: #000;
  border: 0;
  border-radius: 8px;
  padding: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nl-form button:hover { filter: brightness(1.08); }
.brief-foot {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.nl-thanks { color: var(--cyan); font-size: 13px; margin: 8px 0 0; }

.earn-form { display: flex; flex-direction: column; gap: 10px; }
.earn-form input {
  background: var(--bg);
  border: 1px solid #2a2b30;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}
.earn-form input:focus { border-color: var(--cyan); }
.earn-form button {
  background: var(--cyan);
  color: #000;
  border: 0;
  border-radius: 8px;
  padding: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.earn-form button:hover { filter: brightness(1.08); }
.earn-result[hidden] { display: none !important; }
.earn-card.is-open { align-self: stretch; }
.earn-result { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.earn-co {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}
.earn-sub {
  margin: 10px 0 8px !important;
  font-size: 11px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--meta) !important;
}
.earn-calls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.earn-call {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
}
.earn-call.on { border-color: rgba(34,211,238,.45); color: var(--cyan); }
.earn-metrics { display: grid; gap: 10px; margin: 12px 0 4px; }
.earn-metric span { display: block; font-size: 11px; color: var(--meta); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.earn-metric b { display: block; margin: 4px 0 6px; font-size: 14px; }
.earn-metric b.up { color: var(--green); }
.earn-metric b.down { color: var(--coral); }
.earn-bars { display: flex; align-items: flex-end; gap: 4px; height: 28px; }
.earn-bars i {
  display: block;
  flex: 1;
  background: var(--cyan);
  border-radius: 3px 3px 0 0;
  opacity: .85;
}
.earn-themes { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }

.earn-callouts { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 6px; }
.earn-callouts li {
  font-size: 12px;
  color: #E8EAED;
  line-height: 1.4;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0a0a0a;
}
.earn-movers { display: grid; gap: 6px; }
.earn-movers span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}
.earn-movers .win { color: var(--green); background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); }
.earn-movers .lose { color: var(--coral); background: rgba(255,77,87,.08); border: 1px solid rgba(255,77,87,.25); }

.earn-themes li {
  font-size: 11px;
  font-weight: 600;
  color: #E8EAED;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 9px;
  background: #0a0a0a;
}


.earn-search-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--amber);
  line-height: 1.45;
}
.earn-board {
  margin-top: 22px;
  background: #141416;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  box-shadow: 0 0 40px rgba(34,211,238,.08);
}
.earn-board-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 8px;
}
.earn-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
}
.earn-board-lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  max-width: 72ch;
}
.earn-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.earn-chip {
  border: 1px solid var(--border);
  background: #0a0a0a;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: "Space Grotesk", sans-serif;
}
.earn-chip:hover { border-color: rgba(34,211,238,.45); color: #fff; }
.earn-chip.is-on {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(34,211,238,.18);
}
.earn-charts {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.earn-chart-card {
  margin: 0;
  background: #0d0d0f;
  border: 1px solid #1F2023;
  border-radius: 12px;
  padding: 12px 10px 8px;
}
.earn-chart-card figcaption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--meta);
  padding: 0 8px 6px;
  font-family: "Space Grotesk", sans-serif;
}
.earn-svg { width: 100%; min-height: 200px; }
.earn-svg svg { width: 100%; height: auto; overflow: visible; }
.earn-miss {
  margin: 24px 12px;
  color: var(--muted);
  font-size: 13px;
}
.earn-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}
.earn-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 108px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0a0a0a;
  color: var(--muted);
  font-size: 11px;
}
.earn-pill strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}
.earn-pill:hover { border-color: rgba(34,211,238,.45); color: var(--cyan); }
.earn-board-body {
  display: grid;
  gap: 16px;
}
.earn-insights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.earn-insights li {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0a0a0a;
  font-size: 14px;
  line-height: 1.45;
  color: #E8EAED;
}
.earn-insights a { color: var(--cyan); }
.earn-qtag {
  display: inline-block;
  margin-right: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  font-family: "Space Grotesk", sans-serif;
}
.earn-read { display: grid; gap: 10px; }
.earn-pulse, .earn-share {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.earn-pulse {
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.22);
  color: #E8EAED;
}
.earn-share {
  background: #0a0a0a;
  border: 1px solid var(--border);
  color: var(--muted);
}
.earn-share.is-gaining { color: var(--green); border-color: rgba(34,197,94,.28); }
.earn-share.is-defending { color: var(--coral); border-color: rgba(255,77,87,.28); }
.earn-share.is-mixed { color: var(--amber); border-color: rgba(245,179,1,.28); }
@keyframes earnDraw {
  to { stroke-dashoffset: 0; }
}
.earn-board-foot {
  margin: 16px 0 0;
  text-align: center;
  color: var(--meta);
  font-size: 12px;
}
@media (min-width: 1100px) {
  .earn-charts { grid-template-columns: 1fr 1fr; }
  .earn-board-body { grid-template-columns: 1.35fr .85fr; align-items: start; }
  .earn-board { padding: 26px 24px 20px; }
}

.site-footer {
  margin-top: 40px;
  padding: 40px 0 28px;
  border-top: 1px solid var(--border);
  background: #000;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}
.foot-brand p {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 0;
  max-width: 240px;
}
.foot-col h4 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: #E8EAED;
  margin: 8px 0;
}
.foot-col a:hover { color: var(--cyan); }
.foot-follow .foot-insure {
  display: block;
  margin: 0 0 22px;
}
.foot-follow .foot-insure h4 { margin-bottom: 8px; }
.foot-insure-item {
  margin: 0;
  font-size: 14px;
  color: #E8EAED;
  line-height: 1.4;
}
.foot-soon-soon {
  color: var(--meta);
  font-weight: 400;
  font-size: 13px;
}
.socials { display: flex; gap: 10px; flex: 0 0 auto; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid #3a3b40;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0;
}
.socials a:hover { border-color: var(--cyan); color: var(--cyan); }
.socials a svg { width: 16px; height: 16px; }
.copy { margin: 32px 0 0; color: var(--meta); font-size: 12px; }

.foot-follow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.foot-ventures {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  border: 0;
}
.foot-hi {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
  color: var(--amber);
  text-shadow:
    0 0 6px rgba(245,179,1,.85),
    0 0 16px rgba(245,179,1,.45);
}
a.foot-hi {
  text-decoration: none;
  margin: 0;
  display: inline;
}
a.foot-hi:hover {
  color: var(--amber);
  text-shadow:
    0 0 8px rgba(245,179,1,.95),
    0 0 20px rgba(245,179,1,.55);
}
.page-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 11px 18px;
  border: 1px solid var(--amber);
  color: var(--amber);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.page a.page-cta { color: var(--amber); }
.page-cta:hover { background: rgba(245,179,1,.12); }

.page { padding: 48px 0 72px; max-width: 820px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 12px;
}
.page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.page .lede { font-size: 18px; color: #c5c8ce; margin: 0 0 8px; }
.page h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  margin: 40px 0 10px;
}
.page p, .page li { color: var(--muted); }
.page a { color: var(--cyan); }
.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0;
}
.audience article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.audience h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 8px 0;
  font-size: 18px;
  color: var(--text);
}
.tag {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 700;
}
.callout {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  border-top: 2px solid var(--amber);
}
.callout h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 8px 0;
  color: var(--text);
}
.updated { font-size: 12px; color: var(--meta); margin-top: 36px; }

.topbar { display: none; }

@media (min-width: 1100px) {
  :root { --wrap: min(1280px, calc(100% - 64px)); }
  .burger, .drawer-close, .mobile-drawer { display: none !important; }
  .desktop-nav { display: flex; }
  .header-utils { display: flex; }

  .hero { min-height: 520px; }
  .hero-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 520px;
    gap: 24px;
  }
  .hero-copy {
    max-width: 52%;
    padding: 36px 0 64px;
    order: 0;
  }
  .hero-neon-wrap {
    width: 44%;
    max-width: 540px;
    margin: 12px 0 0 auto;
    order: 0;
    align-self: center;
  }
  .hero-cta { flex-direction: row; max-width: none; gap: 14px; }
  .btn { border-radius: 8px; padding: 13px 20px; }

  .section { padding: 56px 0 8px; }
  .pulse-head { display: flex; align-items: baseline; gap: 18px; }
  .pulse-head .sec-sub { margin: 0; }
  .pulse-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .pulse-card { min-height: 228px; padding: 18px 16px 16px; }

  .stories-tools { display: flex; }
  .stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    overflow: visible;
  }
  .story-art { height: 150px; }
  .story-body h3 { font-size: 15.5px; }
  .bookmark { display: none; }

  .face-track {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
  }
  .face-card { flex: 0 0 calc(25% - 9px); min-width: 240px; padding: 16px 14px 14px; }
  .face-logos { flex-direction: column; gap: 6px; min-height: 118px; }
  .vs-circle {
    width: auto; height: auto; border: 0;
    font-size: 11px; color: #c5c8ce;
    letter-spacing: .02em; text-transform: lowercase;
  }
  .face-names { font-size: 12.5px; min-height: 36px; }
  .logo-badge { width: 44px; height: 44px; font-size: 14px; }

  .disc-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .disc-card { min-height: 110px; }
  .disc-card .full { display: inline; }
  .disc-card .short { display: none; }

  .dash {
    display: grid;
    grid-template-columns: 1.15fr .9fr .85fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .index-stack {
    border-right: 1px solid var(--border);
    gap: 0;
  }
  .index-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 22px 22px 18px;
    border-right: 0;
  }
  .mcap-card { border-top: 1px solid var(--border); padding-top: 20px; }
  .movers-col {
    margin-top: 0;
    padding: 22px 22px 18px;
    border: 0;
    border-radius: 0;
    border-right: 1px solid var(--border);
    background: transparent;
  }
  .index-block .brief-col { margin: 0; padding: 16px; gap: 12px; }
  .index-block .brief-card {
    margin: 0;
    box-shadow: 0 0 24px rgba(34,211,238,.1);
  }
  .brief-title { color: var(--cyan); font-size: 18px; }
  .nl-form button, .earn-form button { border-radius: 999px; }
  .desktop-index-sub {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin: 6px 0 16px;
  }
  .mobile-index-sub { display: none; }

  .foot-grid { grid-template-columns: 1.15fr .65fr .65fr .65fr minmax(280px,1.8fr); gap: 32px; }
  .foot-follow-row { flex-wrap: nowrap; }
  .audience { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1099px) {
  .hero {
    min-height: 0;
    background-color: #000;
    background-image:
      linear-gradient(180deg, #000 0%, rgba(0,0,0,.94) 42%, rgba(0,0,0,.55) 72%, rgba(0,0,0,.38) 100%),
      url("hero-desert.jpg");
  }
  .hero-inner { flex-direction: column; }
  .hero-copy { padding: 22px 0 8px; max-width: none; order: 1; }
  .hero-neon-wrap { order: 2; margin: 4px auto 28px; }
  .hero-cta { max-width: none; }
  .drawer-close { display: none; }
  body.nav-open .drawer-close { display: grid; }
}

@media (max-width: 899px) {
  :root { --wrap: min(1280px, calc(100% - 28px)); }
}

@media (max-width: 640px) {
  .hero { min-height: 0; }
  .pulse-card { min-height: 210px; padding: 14px 12px; }
  .pulse-card h3 { font-size: 11px; }
  .hero-neon-wrap { width: min(82vw, 280px); max-width: 280px; margin: 4px auto 24px; }
}

.brand { flex: 0 0 auto; min-width: max-content; }
.brand-lockup {
  height: 40px;
  width: auto !important;
  max-width: none !important;
  display: block;
  mix-blend-mode: screen;
}
.site-header .brand-lockup { height: 40px; }
.foot-brand .brand-lockup { height: 44px; }

.radar-page {
  padding: 36px 0 72px;
}
.radar-page .eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 12px;
}
.radar-page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5.4vw, 56px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.radar-lede {
  font-size: clamp(16px, 1.7vw, 20px);
  color: #c5c8ce;
  margin: 0 0 18px;
  max-width: 720px;
  font-weight: 500;
  line-height: 1.5;
}
.radar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--meta);
  font-size: 13px;
}
.radar-meta b { color: var(--text); font-weight: 700; }
.radar-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
}
.radar-filter input[type="search"] {
  width: min(100%, 420px);
  background: #000;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  color: var(--text);
}
.radar-filter input[type="search"]:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,.12);
}
.radar-filter .radar-count {
  color: var(--muted);
  font-size: 13px;
}
.radar-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.radar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.radar-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
  white-space: nowrap;
}
.radar-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: #E8EAED;
}
.radar-table tbody tr:last-child td { border-bottom: 0; }
.radar-table tbody tr:hover td { background: rgba(34,211,238,.04); }
.radar-table .n {
  color: var(--meta);
  font-weight: 700;
  width: 40px;
  font-variant-numeric: tabular-nums;
}
.radar-table .co {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.radar-table .co a:hover { color: var(--cyan); }
.radar-table .what { color: var(--muted); max-width: 420px; line-height: 1.4; }
.radar-table .hq { color: var(--meta); white-space: nowrap; font-size: 13px; }
.radar-table .sig a { color: var(--cyan); }
.radar-table .sig a:hover { filter: brightness(1.15); }
.radar-table .sig { max-width: 340px; line-height: 1.4; font-size: 13px; }

.pulse-hot,
.pulse-rising,
.pulse-watch {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.pulse-hot {
  color: #000;
  background: #FF4D9A;
  box-shadow: 0 0 12px rgba(255,77,154,.35);
}
.pulse-rising {
  color: #000;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(34,211,238,.28);
}
.pulse-watch {
  color: #000;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(245,179,1,.28);
}

.radar-empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
}
.radar-note {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--meta);
  line-height: 1.55;
  max-width: 820px;
}
.radar-stub {
  margin-top: 28px;
  padding: 28px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 2px solid var(--cyan);
}
.radar-stub h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 10px;
  font-size: 22px;
}
.radar-stub p { color: var(--muted); margin: 0; max-width: 640px; }

@media (max-width: 899px) {
  .radar-table .hq { display: none; }
  .radar-table th.hq { display: none; }
}
@media (max-width: 640px) {
  .radar-table .what { max-width: 220px; }
  .radar-table th.sig, .radar-table td.sig { min-width: 180px; }
}

.deals-page {
  overflow-x: hidden;
}
.deals-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.deal-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-width: 0;
}
.deal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.deal-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.deal-pill-crushed {
  color: #000;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(34,211,238,.45);
}
.deal-pill-faltered {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255,77,87,.38);
}
.deal-pill-ma {
  color: #000;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(245,179,1,.3);
}
.deal-pill-product {
  color: #000;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(34,211,238,.28);
}
.deal-pill-watch {
  color: #000;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(245,179,1,.28);
}
@keyframes deal-pill-pulse-coral {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255,77,87,.35); }
  50% { transform: scale(1.07); box-shadow: 0 0 22px rgba(255,77,87,.75); }
}
@keyframes deal-pill-pulse-amber {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(245,179,1,.3); }
  50% { transform: scale(1.07); box-shadow: 0 0 22px rgba(245,179,1,.7); }
}
@keyframes deal-pill-pulse-cyan {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(34,211,238,.3); }
  50% { transform: scale(1.07); box-shadow: 0 0 22px rgba(34,211,238,.7); }
}
.deal-pill-live {
  will-change: transform, box-shadow;
  cursor: pointer;
}
.deal-pill-live.deal-pill-faltered { animation: deal-pill-pulse-coral 1.55s ease-in-out infinite; }
.deal-pill-live.deal-pill-ma,
.deal-pill-live.deal-pill-watch { animation: deal-pill-pulse-amber 1.55s ease-in-out infinite; }
.deal-pill-live.deal-pill-product,
.deal-pill-live.deal-pill-crushed { animation: deal-pill-pulse-cyan 1.55s ease-in-out infinite; }
button.deals-hot-toggle[aria-expanded="true"] .deal-pill-live,
.deal-card-ma.is-brief-open .deal-pill-live {
  animation: none;
  transform: none;
}

.deal-who {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 10px 0 6px;
}
.deal-h {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
}
.deal-body {
  color: #c5c8ce;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.deal-src {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
}
a.deal-src:hover { filter: brightness(1.15); }

/* M&A cheat sheet on Latest Deals */
.deal-card-ma { grid-column: 1 / -1; }
.ma-brief { margin: 0 0 12px; }
.ma-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
}
.ma-co { color: var(--cyan); font-weight: 700; }
a.ma-co:hover { text-decoration: underline; }
.ma-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.ma-grid h3 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ma-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #c5c8ce;
}
.ma-money strong { color: #fff; font-weight: 600; }
.ma-rounds {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.ma-rounds a { color: var(--cyan); font-size: 13px; }
.ma-mini {
  margin: 0 0 10px 28px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0a0a0a;
  display: grid;
  gap: 6px;
}
.ma-mini p { margin: 0; font-size: 12px; line-height: 1.45; color: var(--muted); }
.ma-lab {
  display: inline-block;
  min-width: 5.5rem;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
}
.ma-mini-co { color: #E8EAED; }
@media (min-width: 900px) {
  .ma-grid { grid-template-columns: 1.1fr 1.1fr .9fr; align-items: start; }
}
.deals-empty {
  color: var(--muted);
  font-size: 15px;
  margin: 8px 0 18px;
}
@media (min-width: 900px) {
  .deal-group { grid-template-columns: 1fr 1fr; }
  .deal-group[data-kind="watch"] { grid-template-columns: 1fr; }
}
@media (max-width: 899px) {
  .deal-group { grid-template-columns: 1fr; }
  .deal-card { padding: 16px 14px 14px; }
}

button.btn { font-family: inherit; }
.deals-panel {
  margin-top: 14px;
  max-width: 540px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px 12px;
  min-width: 0;
}
.deals-hot {
  list-style: none;
  margin: 0;
  padding: 0;
}
.deals-hot li + li { border-top: 1px solid var(--border); }
.deals-hot-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  grid-template-areas:
    "n who pill"
    "n h   h";
  column-gap: 8px;
  row-gap: 2px;
  align-items: baseline;
  padding: 9px 4px;
  min-width: 0;
}
.deals-hot-n {
  grid-area: n;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}
.deals-hot-who {
  grid-area: who;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.deals-hot-h {
  grid-area: h;
  font-size: 13.5px;
  color: #c5c8ce;
  line-height: 1.35;
  min-width: 0;
}
.deals-hot-row .deal-pill {
  grid-area: pill;
  justify-self: end;
  transform: scale(.92);
  transform-origin: right center;
}
a.deals-hot-row:hover .deals-hot-h { color: #fff; }
.deals-full {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}
.deals-full:hover { filter: brightness(1.15); }
@media (max-width: 1099px) {
  .deals-panel { max-width: none; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .deals-panel { transition: none; }
}

a.story-card { color: inherit; }
a.story-card h3 { color: var(--text); }
.stories-grid a.story-card:hover h3 { color: var(--cyan); }

.story-page h1 { font-size: clamp(28px, 5vw, 44px); }
.story-byline { color: var(--meta); font-size: 13px; margin: 0 0 4px; }
.story-hero {
  height: 220px;
  border-radius: var(--radius);
  margin: 22px 0 28px;
  border: 1px solid var(--border);
}
.story-page .story-body-copy p { margin: 0 0 16px; }
.story-page .story-body-copy p:last-child { margin-bottom: 0; }
.story-page blockquote {
  margin: 20px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--cyan);
  color: #d5d8de;
  background: var(--card);
  border-radius: 0 8px 8px 0;
}
.story-page blockquote p { margin: 0; color: #d5d8de; }
.story-sources { margin-top: 40px; }
.story-sources ul { padding-left: 18px; }
.story-sources li { margin: 6px 0; }
.story-share {
  margin-top: 48px;
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
}
.story-share h2 { margin-top: 0; }
.tweet-preview {
  white-space: pre-wrap;
  background: #0b0b0d;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 8px;
  color: #e8eaed;
  font-size: 14px;
  line-height: 1.45;
  font-family: Inter, system-ui, sans-serif;
  margin: 0;
}
.story-share-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  align-items: center;
}
.copy-x {
  display: inline-block;
  padding: 11px 18px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.copy-x:hover { background: rgba(34,211,238,.12); }
.copy-x.is-copied { border-color: var(--green); color: var(--green); }
.story-share a.page-cta { margin-top: 0; }
.archive-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 800px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
.archive-page .lede { margin-bottom: 8px; }
.tag-amber { color: var(--amber); border: 1px solid var(--amber); }

.tweet-thread {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
}
.tweet-thread li { margin: 6px 0; }

/* Versus page — keep local; do not restyle the rest of the site */
.versus-page { max-width: 880px; }
.versus-page h1 { margin-bottom: 10px; }
.vp-week {
  margin: -4px 0 14px;
  font-size: 12px;
  color: var(--meta);
  letter-spacing: .04em;
}
.vp-say {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  margin: 22px 0 32px;
}
.vp-say-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.vp-say-kicker span {
  color: var(--meta);
  letter-spacing: .1em;
  font-weight: 600;
}
.vp-say-line {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.28;
  color: #fff;
  margin: 0 0 10px;
}
.vp-say-note {
  margin: 0;
  font-size: 12px;
  color: var(--meta);
}
.vp-heads {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 8px 0 22px;
}
.vp-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.vp-head p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}
.versus-page .vp-logos .logo-badge,
.versus-page .vp-head .logo-badge {
  width: 64px;
  height: 64px;
  font-size: 18px;
}
.vp-bars { margin: 0 0 12px; }
.versus-page h2 { margin: 48px 0 14px; }
.vp-tech { display: flex; flex-direction: column; gap: 0; }
.vp-row {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.vp-row:first-child { border-top: 0; padding-top: 4px; }
.vp-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.vp-row-head h3,
.vp-vert h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0;
}
.vp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vp-cols p {
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}
.vp-side {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vp-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vp-chip.is-split {
  border-color: #3a3b40;
  color: var(--meta);
}
.vp-verts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vp-vert {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
}
.vp-vert p {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.vp-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 8px;
}
a.vp-hub-card {
  color: inherit;
  min-width: 0;
  flex: none;
}
.vp-hub-call {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vp-sources { margin-top: 28px; }
.vp-back {
  margin: 36px 0 0;
  font-size: 13px;
}
@media (max-width: 720px) {
  .vp-cols,
  .vp-verts,
  .vp-hub { grid-template-columns: 1fr; }
  .vp-heads { gap: 10px; }
  .vp-say { padding: 18px 16px 14px; }
}


/* Events — local to #events; do not restyle the rest of the site */
#events { padding-bottom: 32px; }
#events .sec-head { margin-bottom: 10px; align-items: flex-end; }
#events .eyebrow { margin-bottom: 6px; color: var(--amber); }
#events .sec-title { letter-spacing: .12em; }
#events .sec-sub { margin: 8px 0 0; max-width: 560px; }
.events-kicker {
  margin: 22px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.events-ed {
  font-family: Inter, system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--amber);
  border: 1px solid rgba(245,179,1,.45);
  border-radius: 999px;
  padding: 3px 8px;
}
.events-upcoming {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
#events .events-upcoming.clip-5:not(.is-open) > .ev-card:nth-child(n+6) { display: none; }
.ev-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ev-card:hover { border-color: #2a2c32; }
.ev-card.ev-flip {
  padding: 0;
  cursor: pointer;
  perspective: 1100px;
  min-height: 188px;
}
.ev-card.ev-flip.is-live {
  border-color: rgba(255,77,87,.55);
  box-shadow: 0 0 18px rgba(255,77,87,.12);
}
.ev-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  min-height: 188px;
  height: 100%;
}
.ev-card.is-flipped .ev-flip-inner { transform: rotateY(180deg); }
.ev-face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  min-height: 188px;
  box-sizing: border-box;
}
/* live face height set below with day-swipe */
.ev-front { position: relative; }
.ev-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ev-back-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 14px 14px 12px;
  box-sizing: border-box;
}
.ev-back-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
}
.ev-flip-close {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 6px 0 0;
}
.ev-live-btn, .ev-flip-close {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}
.ev-live-btn { background: var(--coral); }
.ev-badge-live {
  color: #fff;
  background: var(--coral);
  animation: evLivePulse 1.6s ease-in-out infinite;
}
@keyframes evLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,87,.5); }
  50% { box-shadow: 0 0 0 6px rgba(255,77,87,0); }
}
.ev-day-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.ev-day-tab {
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.ev-day-tab.is-on {
  color: #0b0b0c;
  background: var(--coral);
  border-color: transparent;
}
.ev-day-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  margin: 0 0 8px;
  touch-action: pan-y;
}
.ev-day-track {
  display: flex;
  width: calc(var(--day-count, 1) * 100%);
  transform: translateX(calc(var(--day-idx, 0) * -100% / var(--day-count, 1)));
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.ev-day-slide {
  width: calc(100% / var(--day-count, 1));
  flex: 0 0 calc(100% / var(--day-count, 1));
  padding-right: 2px;
  box-sizing: border-box;
}
.ev-day-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 4px;
}
.ev-day-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.22);
  cursor: pointer;
}
.ev-day-dot.is-on { background: var(--coral); box-shadow: 0 0 8px rgba(255,77,87,.55); }
.ev-day-hint {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--meta);
}
.ev-card.ev-flip.is-live .ev-face { min-height: 320px; }
.ev-card.ev-flip.is-live.is-flipped { min-height: 360px; }
.ev-card.ev-flip.is-live.is-flipped .ev-flip-inner,
.ev-card.ev-flip.is-live.is-flipped .ev-face { min-height: 360px; height: 360px; }

.ev-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.ev-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.25;
}
.ev-badge {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.ev-badge-upcoming {
  color: #000;
  background: var(--amber);
}
.ev-badge-recap {
  color: #000;
  background: var(--cyan);
}
.ev-meta {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--meta);
  letter-spacing: .02em;
}
.ev-why {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  flex: 1;
}
.ev-link {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
}
.ev-link:hover { filter: brightness(1.15); }
.events-findings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.ev-recap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
}
.ev-recap:hover { border-color: #2a2c32; }
.ev-takes {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ev-takes li {
  font-size: 13.5px;
  line-height: 1.45;
  color: #E8EAED;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0a0a0a;
}
.ev-takes li::before {
  content: "→ ";
  color: var(--amber);
  font-weight: 700;
}
.ev-srcs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ev-srcs a {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
}
.ev-srcs a:hover { filter: brightness(1.15); }
.events-foot {
  margin: 16px 0 0;
  font-size: 11px;
  color: var(--meta);
}
.events-empty { color: var(--muted); font-size: 14px; }
@media (min-width: 720px) {
  .events-upcoming { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .desktop-nav { gap: 16px; }
  .events-upcoming { grid-template-columns: repeat(3, 1fr); }
  .events-findings { grid-template-columns: repeat(3, 1fr); }
  .ev-recap { padding: 18px 16px 16px; }
}


/* Channel — local to #channel; standalone category, not nested under Events */
#channel { padding-bottom: 36px; }
#channel .sec-head { margin-bottom: 14px; align-items: flex-end; }
#channel .sec-title { letter-spacing: .12em; }
#channel .sec-sub { margin: 8px 0 0; max-width: 560px; }

.channel-regions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 22px;
}
.ch-region {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
a.ch-region { color: inherit; cursor: pointer; transition: transform .16s ease, border-color .16s ease; }
.ch-region:hover { border-color: #2a2c32; }
a.ch-region:hover {
  border-color: #2a2c32;
  transform: translateY(-2px);
  background: rgba(34,211,238,.04);
}
.ch-region-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ch-region h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.ch-heat {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.ch-heat-hot {
  color: #000;
  background: var(--coral);
}
.ch-heat-warm {
  color: #000;
  background: var(--amber);
}
.ch-heat-steady {
  color: var(--muted);
  background: #0a0a0a;
  border: 1px solid var(--border);
}
.ch-region-blurb {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  flex: 1;
}
.ch-region-leader {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--meta);
}
.ch-region-leader b {
  color: #E8EAED;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
}
.ch-region-map {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.channel-kicker {
  margin: 22px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.channel-board {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.channel-board > li { display: block; }
.ch-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: start;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: inherit;
}
.ch-n { grid-row: 1 / span 2; }
.ch-name-block { grid-column: 2; }
.ch-meta { grid-column: 3; grid-row: 1; }
.ch-move { grid-column: 2 / -1; }
.channel-board > li:last-child .ch-row { border-bottom: 0; }
a.ch-row:hover {
  background: rgba(34,211,238,.04);
  transform: translateY(-1px);
}
.ch-n {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--cyan);
  padding-top: 2px;
}
.ch-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: -.02em;
}
.ch-hq {
  margin-left: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--meta);
  letter-spacing: 0;
}
.ch-move {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.ch-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding-top: 2px;
}
.ch-chip {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: #0a0a0a;
  white-space: nowrap;
}
.ch-arrow {
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  min-width: 1.1em;
  text-align: center;
}
.ch-arrow-up { color: var(--green); }
.ch-arrow-down { color: var(--coral); }
.ch-arrow-same { color: var(--meta); }

#channel .channel-board.clip-5:not(.is-open) > li:nth-child(n+6) { display: none; }

.channel-moves {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.ch-move-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: inherit;
}
a.ch-move-card:hover { border-color: #2a2c32; }
.ch-move-who {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.ch-move-what {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.ch-move-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.ch-kind {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.ch-kind-contract {
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,.35);
  background: rgba(34,211,238,.08);
}
.ch-kind-expansion {
  color: #000;
  background: var(--amber);
}
.ch-kind-award {
  color: #000;
  background: var(--green);
}
.ch-kind-acquisition {
  color: #000;
  background: var(--coral);
}
.ch-kind-program {
  color: var(--muted);
  border: 1px solid var(--border);
  background: #0a0a0a;
}
.ch-move-date {
  font-size: 11px;
  color: var(--meta);
  white-space: nowrap;
}

.channel-foot {
  margin: 16px 0 0;
  font-size: 11px;
  color: var(--meta);
}
.channel-empty { color: var(--muted); font-size: 14px; }

@media (min-width: 720px) {
  .channel-regions { grid-template-columns: 1fr 1fr; }
  .channel-moves { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .desktop-nav { gap: 14px; }
  .channel-regions { grid-template-columns: repeat(4, 1fr); }
  .ch-row {
    grid-template-columns: 28px minmax(140px, 1.1fr) minmax(0, 2fr) auto;
    align-items: center;
  }
  .ch-n { grid-row: auto; }
  .ch-name-block { grid-column: 2; }
  .ch-move { grid-column: 3; margin: 0; }
  .ch-meta { grid-column: 4; grid-row: auto; }
}


/* Channel map page */
.cmap-page { padding: 32px 0 0; }
.cmap-page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 10px;
}
.cmap-page .lede { font-size: 17px; color: #c5c8ce; margin: 0 0 16px; max-width: 720px; }
.cmap-back {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
}
.cmap-switch { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; }
.cmap-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.cmap-chip b { color: var(--cyan); font-variant-numeric: tabular-nums; }
.cmap-chip:hover { border-color: #2a2c32; color: #fff; }
.cmap-chip.is-on { border-color: #fff; color: #fff; }
.cmap-legend { margin: 0 0 14px; }
.cmap-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--meta);
}
.cmap-swatch {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.cmap-swatch-amber { background: var(--amber); color: var(--amber); }
.cmap-swatch-cyan { background: var(--cyan); color: var(--cyan); }
.cmap-frame {
  width: 100%;
  height: min(68vh, 640px);
  min-height: 380px;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
#cmap { width: 100%; height: 100%; background: #0a0a0a; }
.cmap-empty {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  margin: 0; color: var(--muted);
}
.cmap-note {
  margin: 14px auto 48px;
  font-size: 12px;
  color: var(--meta);
}
.leaflet-container { background: #0a0a0a; font-family: Inter, system-ui, sans-serif; }
.leaflet-control-attribution {
  background: rgba(0,0,0,.65) !important;
  color: #7A7E85 !important;
}
.leaflet-control-attribution a { color: var(--cyan) !important; }
.leaflet-bar a {
  background: #141416 !important;
  color: #fff !important;
  border-bottom-color: var(--border) !important;
}
.leaflet-bar a:hover { background: #1c1d21 !important; }
.cmap-pin {
  background: none !important;
  border: 0 !important;
}
.cmap-pin-dot {
  display: block;
  width: 12px; height: 12px;
  margin: 3px;
  border-radius: 50%;
  border: 1.5px solid #fff;
}
.cmap-pin-amber .cmap-pin-dot {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,179,1,.28), 0 0 14px rgba(245,179,1,.85);
}
.cmap-pin-cyan .cmap-pin-dot {
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,.28), 0 0 14px rgba(34,211,238,.85);
}
.cmap-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(0,0,0,.62);
  display: grid; place-items: center;
  padding: 20px;
}
.cmap-overlay[hidden] { display: none; }
.cmap-pop {
  width: min(420px, 100%);
  background: #141416;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  position: relative;
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  outline: none;
}
.cmap-pop h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0 28px 6px 0;
  color: #fff;
}
.cmap-pop-loc {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
}
.cmap-pop-comp {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.cmap-pop-src {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.cmap-pop-x {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}
.cmap-pop-x:hover { color: #fff; background: #1c1d21; }

/* Pulse page — local; do not restyle the rest of the site */
.pulse-page { max-width: 880px; }
.pulse-page h1 { margin-bottom: 10px; }
.pulse-page a.pulse-card { color: inherit; }
.pulse-asof {
  margin: -4px 0 18px;
  font-size: 12px;
  color: var(--meta);
  letter-spacing: .04em;
}
.pulse-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 28px;
}
.pulse-tab {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pulse-page a.pulse-tab { color: var(--muted); }
.pulse-tab:hover { border-color: #2a2c32; color: #fff; }
.pulse-tab.is-on {
  border-color: #fff;
  color: #fff;
}
.pulse-page a.pulse-tab.is-on { color: #fff; }
.pulse-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 8px;
}
.pulse-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pulse-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
}
.pulse-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pulse-item h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 10px;
}
.pulse-dek {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.pulse-why {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-left: 2px solid var(--cyan);
  color: #E8EAED;
  font-size: 13.5px;
  line-height: 1.5;
  background: rgba(34,211,238,.04);
}
.pulse-item-src {
  margin: 0;
  font-size: 12px;
  color: var(--meta);
}
.pulse-item-date {
  font-size: 12px;
  color: var(--meta);
}
.pill-confirmed {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 999px;
  width: fit-content;
  text-transform: uppercase;
}
.pulse-page .pill-reported {
  margin: 0;
  text-transform: uppercase;
}
.pulse-back {
  margin: 36px 0 0;
  font-size: 13px;
}
@media (max-width: 720px) {
  .pulse-hub { grid-template-columns: 1fr; }
  .pulse-item { padding: 18px 16px 16px; }
  .pulse-item h2 { font-size: 18px; }
}

.pulse-page.is-funding { max-width: 1120px; }
.fund-wrap:not(.is-open) .fund-table tbody tr:nth-child(n+11),
.fund-wrap:not(.is-open) .fund-stack .fund-card:nth-child(n+11) {
  display: none;
}
.fund-more {
  margin-top: 14px;
  padding: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fund-more:hover { text-decoration: underline; }
.fund-window {
  margin: -8px 0 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 820px;
}
.fund-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.fund-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.fund-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
  white-space: nowrap;
}
.fund-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: #E8EAED;
}
.fund-table tbody tr:last-child td { border-bottom: 0; }
.fund-table tbody tr:hover td { background: rgba(34,211,238,.04); }
.fund-table .n {
  color: var(--cyan);
  font-weight: 800;
  width: 36px;
  font-variant-numeric: tabular-nums;
}
.fund-table .co {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.fund-table .co a { color: #fff; }
.fund-table .co a:hover { color: var(--cyan); }
.fund-date {
  display: block;
  margin-top: 3px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--meta);
  white-space: nowrap;
}
.fund-table .amt,
.fund-table .val {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 600;
}
.fund-table .what {
  color: var(--muted);
  max-width: 280px;
  line-height: 1.4;
  font-size: 13px;
}
.fund-cat {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,.35);
  background: rgba(34,211,238,.08);
}
.fund-est {
  color: var(--meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fund-stack { display: none; }
.fund-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
}
.fund-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.fund-card-top .n {
  color: var(--cyan);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 1.2em;
}
.fund-card .co {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.fund-card a.co:hover { color: var(--cyan); }
.fund-dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 0 0 12px;
}
.fund-dl div { min-width: 0; }
.fund-dl dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--meta);
  margin: 0 0 3px;
}
.fund-dl dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #E8EAED;
}
.fund-card .what {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
}
.fund-src {
  margin: 0;
  font-size: 12px;
  color: var(--meta);
}
.fund-src a { color: var(--cyan); }
@media (max-width: 860px) {
  .fund-table-wrap { display: none; }
  .fund-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}


/* —— Breach week ticker —— */
.ticker-stack {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,77,87,.18);
  background: #0a0a0c;
}
.breach-week {
  margin-top: 0;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}
.breach-week[hidden] { display: none !important; }
.breach-week-bar {
  display: flex;
  align-items: center;
  min-height: 52px;
}
.breach-week-lock {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 8px 16px 8px 20px;
  border-right: 1px solid var(--border);
  background: var(--card);
  z-index: 2;
  min-width: 128px;
}
.breach-week-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  line-height: 1.2;
}
.breach-week-range {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
}
.breach-week-scroller {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 28px), transparent);
}
.breach-week-track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.breach-week-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 8px 0 4px;
  white-space: nowrap;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
}
.breach-week-item + .breach-week-item::before,
.breach-week-clone-start::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3d44;
  margin-right: 18px;
  flex: 0 0 auto;
  align-self: center;
}
.breach-week-item:hover,
.breach-week-item:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.breach-week-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--meta);
  letter-spacing: .04em;
}
.breach-week-item:hover .breach-week-meta,
.breach-week-item:focus-visible .breach-week-meta {
  color: rgba(34,211,238,.7);
}
@media (max-width: 700px) {
  .breach-week-lock {
    min-width: 0;
    padding: 8px 12px;
  }
  .breach-week-kicker { font-size: 10px; letter-spacing: .12em; }
  .breach-week-range { font-size: 10px; }
  .breach-week-item { font-size: 13px; }
}


/* —— Losses YTD ticker (flush under Breach week) —— */
.loss-year {
  background: #0c0c10;
  border-top: 1px solid var(--border);
}
.loss-year[hidden] { display: none !important; }
.loss-year-bar {
  display: flex;
  align-items: center;
  min-height: 52px;
}
.loss-year-lock {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 8px 16px 8px 20px;
  border-right: 1px solid var(--border);
  background: var(--card);
  z-index: 2;
  min-width: 128px;
}
.loss-year-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1.2;
}
.loss-year-total {
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
}
.loss-year-scroller {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 28px), transparent);
}
.loss-year-track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.loss-year-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 8px 0 4px;
  white-space: nowrap;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
}
.loss-year-item + .loss-year-item::before,
.loss-year-clone-start::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3d44;
  margin-right: 18px;
  flex: 0 0 auto;
  align-self: center;
}
.loss-year-item:hover,
.loss-year-item:focus-visible {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.loss-year-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--meta);
  letter-spacing: .04em;
}
.loss-year-item:hover .loss-year-meta,
.loss-year-item:focus-visible .loss-year-meta {
  color: rgba(245,179,1,.75);
}
@media (max-width: 700px) {
  .loss-year-lock {
    min-width: 0;
    padding: 8px 12px;
  }
  .loss-year-kicker { font-size: 10px; letter-spacing: .12em; }
  .loss-year-total { font-size: 12px; }
  .loss-year-item { font-size: 13px; }
}

/* Research — own category, after Channel. No yellow eyebrow. */
#research { padding-bottom: 36px; }
#research .sec-head { margin-bottom: 14px; align-items: flex-end; }
#research .sec-title { letter-spacing: .12em; }
#research .sec-sub { margin: 8px 0 0; max-width: 560px; }

.research-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 8px;
}
.rs-tile,
.rs-next {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease;
}
a.rs-tile:hover,
a.rs-next:hover {
  border-color: #2a2c32;
  transform: translateY(-2px);
  background: rgba(34,211,238,.04);
}
.rs-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.rs-tile h3,
.rs-next h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.rs-heat {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.rs-heat-hot { color: #000; background: var(--coral); }
.rs-heat-forming { color: #000; background: var(--amber); }
.rs-heat-mature {
  color: var(--muted);
  background: #0a0a0a;
  border: 1px solid var(--border);
}
.rs-thesis {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  flex: 1;
}
.rs-names {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #E8EAED;
}
.rs-go {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.research-kicker,
.rs-page-kicker {
  margin: 22px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.research-page h2.rs-page-kicker {
  margin: 28px 0 12px;
  font-size: 12px;
  color: var(--muted);
}
.research-emerging {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.rs-next { border-color: rgba(34,211,238,.18); }
.research-foot {
  margin: 16px 0 0;
  font-size: 11px;
  color: var(--meta);
}
.research-empty { color: var(--muted); font-size: 14px; }

.research-page { max-width: 1120px; }
.research-page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0;
}
.rs-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.rs-asof { font-size: 12px; color: var(--meta); margin: 0 0 18px; }
.rs-kind {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.rs-back-top {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
}
.rs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.rs-tab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.rs-tab:hover { border-color: #2a2c32; color: #fff; }
a.rs-tab.is-on { border-color: #fff; color: #fff; }
.rs-thesis-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #c5c8ce;
  margin: 0 0 14px;
  max-width: 760px;
}
.rs-tam {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 8px 0 28px;
  max-width: 640px;
}
.rs-tam h2 { margin: 0 0 6px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.rs-tam-val {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.rs-tam-src { margin: 8px 0 0; font-size: 12px; color: var(--meta); }
.rs-tam-src a { color: var(--cyan); }
.research-page h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  margin: 28px 0 12px;
  color: #fff;
}
.rs-vendors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.rs-vendor {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px 12px;
}
.rs-vendor h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.rs-vendor h3 a { color: #fff; }
.rs-vendor h3 a:hover { color: var(--cyan); }
.rs-vendor p { margin: 0; font-size: 13.5px; line-height: 1.45; color: var(--muted); }
.rs-stage {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--meta);
}
.rs-src { margin-top: 8px !important; font-size: 12px !important; }
.rs-src a { color: var(--cyan); }
.rs-incs { display: flex; flex-wrap: wrap; gap: 8px; }
.rs-inc {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #E8EAED;
  background: var(--card);
}
.rs-back { margin: 36px 0 0; font-size: 13px; }

@media (min-width: 720px) {
  .research-grid { grid-template-columns: 1fr 1fr; }
  .research-emerging { grid-template-columns: 1fr 1fr; }
  .rs-vendors { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .desktop-nav { gap: 12px; }
  .research-grid { grid-template-columns: repeat(4, 1fr); }
  .research-emerging { grid-template-columns: repeat(5, 1fr); }
}

.research-page a.rs-tile,
.research-page a.rs-next { color: inherit; }
.research-page .rs-tile h3,
.research-page .rs-next h3 { color: #fff; }
.research-page .rs-names { color: #E8EAED; }
.research-page .rs-thesis { color: var(--muted); }
.research-page a.rs-back-top,
.research-page .rs-back a { color: var(--cyan); }

/* Frontier — own category, after Research. No yellow eyebrow. */
#frontier { padding-bottom: 36px; }
#frontier .sec-head { margin-bottom: 14px; align-items: flex-end; }
#frontier .sec-title { letter-spacing: .12em; }
#frontier .sec-sub { margin: 8px 0 0; max-width: 640px; }
.frontier-plain {
  margin: 0 0 10px;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.55;
  color: #E8EAED;
}
.frontier-caveat {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--meta);
}
.frontier-charts {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 0 0 8px;
}
.frontier-chart-card {
  margin: 0;
  background: #0d0d0f;
  border: 1px solid #1F2023;
  border-radius: 12px;
  padding: 12px 10px 8px;
}
.frontier-chart-card figcaption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--meta);
  padding: 0 8px 6px;
  font-family: "Space Grotesk", sans-serif;
}
.frontier-svg { width: 100%; min-height: 220px; }
.frontier-svg svg { width: 100%; height: auto; overflow: visible; }
.frontier-src {
  margin: 4px 8px 4px;
  font-size: 11px;
  color: var(--meta);
}
.frontier-src a { color: var(--cyan); }
.frontier-kicker {
  margin: 22px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.frontier-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.fr-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
}
.fr-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
}
.fr-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fr-stat p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}
.frontier-recs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.frontier-recs li {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0a0a0a;
}
.frontier-recs h4 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.frontier-recs p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.fr-who {
  display: inline-block;
  margin-right: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  font-family: "Space Grotesk", sans-serif;
}
.frontier-help {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
.fr-help {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease;
}
a.fr-help:hover {
  border-color: #2a2c32;
  transform: translateY(-2px);
  background: rgba(34,211,238,.04);
}
.fr-kind {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.fr-help h4 {
  margin: 6px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.fr-status {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--meta);
  letter-spacing: 0;
  text-transform: none;
  font-family: Inter, system-ui, sans-serif;
}
.fr-help p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.frontier-foot {
  margin: 16px 0 0;
  text-align: center;
  color: var(--meta);
  font-size: 12px;
}
.frontier-foot a { color: var(--cyan); }
@media (min-width: 720px) {
  .frontier-stats { grid-template-columns: repeat(4, 1fr); }
  .frontier-help { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .frontier-charts { grid-template-columns: 1.3fr .7fr; }
}


/* Quantum — after Frontier, before footer. Neon dark cards + SVG charts. */
#quantum { padding-bottom: 40px; }
#quantum .sec-head { margin-bottom: 14px; align-items: flex-end; }
#quantum .sec-title { letter-spacing: .12em; }
#quantum .sec-sub { margin: 8px 0 0; max-width: 720px; }
.quantum-caveat {
  margin: 0 0 8px;
  max-width: 920px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--meta);
}
.quantum-progress-note {
  margin: 0 0 16px;
  max-width: 920px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}


#quantum-years {
  width: 100%;
  min-height: 380px;
  display: block;
}
#quantum-years svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 380px;
  overflow: visible;
}
.quantum-chart-wide {
  padding: 1rem 1.1rem 1.15rem;
}
.quantum-charts-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.quantum-charts-stack {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0 1.75rem;
}
.quantum-chart-wide { min-height: auto; }
.quantum-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(167, 139, 250, .22);
  border-radius: 14px;
  background: rgba(12, 14, 22, .65);
  margin: .75rem 0 1.5rem;
}
.quantum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.quantum-table th,
.quantum-table td {
  padding: .72rem .9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
.quantum-table th {
  color: #A78BFA;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(167, 139, 250, .06);
}
.quantum-table td { color: #E8EAED; }
.quantum-table td a { color: #E8EAED; text-decoration: none; }
.quantum-table td a:hover { color: #22D3EE; }
.quantum-table tr:last-child td { border-bottom: 0; }
.quantum-svg { width: 100%; min-height: 300px; }
.quantum-charts {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 0 0 10px;
}
.quantum-chart-card {
  margin: 0;
  background: #0d0d0f;
  border: 1px solid #1F2023;
  border-radius: 12px;
  padding: 12px 10px 10px;
}
.quantum-chart-card figcaption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--meta);
  padding: 0 8px 6px;
  font-family: "Space Grotesk", sans-serif;
}
.quantum-svg { width: 100%; min-height: 280px; }
.quantum-svg svg { width: 100%; height: auto; overflow: visible; }
.quantum-src {
  margin: 4px 8px 2px;
  font-size: 11px;
  color: var(--meta);
}
.quantum-trend-map {
  display: grid;
  gap: 8px;
  padding: 4px 6px 6px;
}
.q-trend-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: #0a0a0a;
  border: 1px solid #1a1b1e;
}
.q-trend-row .q-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #E8EAED;
}
.q-trend-row .q-ticker {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--meta);
  letter-spacing: .04em;
}
.q-spark {
  width: 100%;
  height: 28px;
}
.q-spark svg { width: 100%; height: 28px; display: block; }
.quantum-kicker {
  margin: 22px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.quantum-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
.q-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  display: grid;
  gap: 8px;
}
.q-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  justify-content: space-between;
}
.q-card-id {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.q-rank {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #A78BFA;
  letter-spacing: .06em;
}
.q-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.q-card h3 a { color: inherit; text-decoration: none; }
.q-card h3 a:hover { color: var(--cyan); }
.q-ex {
  font-size: 12px;
  font-weight: 600;
  color: var(--meta);
  margin-left: 6px;
}
.q-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.q-badge.ahead {
  color: #22C55E;
  background: rgba(34,197,94,.1);
  border-color: rgba(34,197,94,.35);
}
.q-badge.steady {
  color: var(--amber);
  background: rgba(245,179,1,.1);
  border-color: rgba(245,179,1,.35);
}
.q-badge.behind {
  color: #FF4D57;
  background: rgba(255,77,87,.1);
  border-color: rgba(255,77,87,.35);
}
.q-focus {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.q-meta-row {
  display: grid;
  gap: 6px 14px;
  grid-template-columns: 1fr;
}
.q-meta-row dt {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--meta);
  margin: 0;
}
.q-meta-row dd {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #E8EAED;
}
.q-score {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--cyan);
}
.q-why {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}
.q-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.q-sources a {
  font-size: 11px;
  color: var(--cyan);
  text-decoration: none;
}
.q-sources a:hover { text-decoration: underline; }
.quantum-foot {
  margin: 16px 0 0;
  text-align: center;
  color: var(--meta);
  font-size: 12px;
}
.quantum-foot a { color: var(--cyan); }
@media (min-width: 720px) {
  .quantum-grid { grid-template-columns: 1fr 1fr; }
  .q-meta-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .quantum-charts:not(.quantum-charts-stack) { grid-template-columns: 1.15fr .85fr; }
  .quantum-charts-stack { grid-template-columns: 1fr; }
  .quantum-grid { grid-template-columns: 1fr 1fr; }
}

.ma-mini[hidden], .ma-brief[hidden] { display: none !important; }
button.deals-hot-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: grid;
  grid-template-columns: 18px auto 1fr auto;
  gap: 8px 10px;
  align-items: center;
  padding: 10px 0;
}
.ma-open {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245,179,1,.45);
  background: rgba(245,179,1,.08);
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ma-open[aria-expanded="true"] {
  border-color: rgba(34,211,238,.45);
  color: var(--cyan);
  background: rgba(34,211,238,.08);
}


/* —— What’s The Use —— */
.wtu-block { padding-top: 12px; padding-bottom: 8px; }
.wtu-lead {
  margin: -2px 0 14px;
  max-width: 560px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  letter-spacing: .01em;
}
.wtu-form { margin-bottom: 4px; }
.wtu-search {
  position: relative;
  margin: 0 0 6px;
}
.wtu-search-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(34,211,238,.35), rgba(245,179,1,.22), rgba(255,77,109,.2));
  opacity: .55;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.wtu-input-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #0c0d10;
  border: 1px solid rgba(34,211,238,.45);
  border-radius: 16px;
  padding: 10px 10px 10px 16px;
  box-shadow: 0 0 0 1px rgba(34,211,238,.08), 0 18px 40px rgba(0,0,0,.35);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wtu-input-row:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,.16), 0 18px 40px rgba(0,0,0,.4);
}
.wtu-search-ico {
  width: 22px;
  height: 22px;
  color: var(--cyan);
  opacity: .9;
  flex-shrink: 0;
}
.wtu-input-row textarea {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 10px 4px;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  line-height: 1.4;
  resize: none;
  min-height: 52px;
  outline: none;
  box-shadow: none;
}
.wtu-input-row textarea::placeholder { color: #5c606a; }
.wtu-input-row textarea:focus {
  border: 0;
  box-shadow: none;
}
.wtu-input-row button {
  background: linear-gradient(180deg, #3de7f5, var(--cyan));
  color: #041016;
  border: 0;
  border-radius: 12px;
  padding: 0 26px;
  height: 52px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  min-width: 120px;
  transition: filter .15s ease, transform .15s ease;
}
.wtu-input-row button:hover { filter: brightness(1.08); }
.wtu-input-row button:disabled {
  opacity: .55;
  cursor: wait;
  filter: none;
}
.wtu-hint {
  margin: 10px 0 0;
  font-size: 11px;
  color: #6b6e76;
}
.wtu-status {
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
}
.wtu-status.is-error {
  border-color: rgba(255,77,87,.4);
  color: #ffb4b8;
}
.wtu-status.is-loading {
  border-color: rgba(34,211,238,.35);
  color: var(--cyan);
}
.wtu-board {
  margin-top: 22px;
}
.wtu-board-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 12px;
}
.wtu-board-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
}
.wtu-board-sub {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.wtu-results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: none;
}
.wtu-results:empty { display: none; }
.wtu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.wtu-card:hover { border-color: #2a2c32; }
.wtu-card.is-open {
  border-color: rgba(34,211,238,.45);
  box-shadow: 0 0 0 1px rgba(34,211,238,.1);
}
.wtu-row {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.wtu-rank {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  background: rgba(34,211,238,.12);
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,.28);
}
.wtu-card[data-rank="1"] .wtu-rank {
  background: rgba(245,179,1,.16);
  border-color: rgba(245,179,1,.45);
  color: var(--amber);
}
.wtu-card[data-rank="2"] .wtu-rank,
.wtu-card[data-rank="3"] .wtu-rank {
  background: rgba(34,211,238,.1);
}
.wtu-name {
  display: block;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
}
.wtu-product {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
}
.wtu-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.wtu-score {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.wtu-chev {
  width: 16px;
  height: 16px;
  opacity: .55;
  transition: transform .18s ease;
}
.wtu-card.is-open .wtu-chev { transform: rotate(180deg); opacity: .9; }
.wtu-detail {
  display: none;
  padding: 0 18px 18px 76px;
  border-top: 1px solid var(--border);
}
.wtu-card.is-open .wtu-detail { display: block; padding-top: 14px; }
.wtu-why-label {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
}
.wtu-detail p {
  margin: 0 0 10px;
  color: #c4c7cf;
  font-size: 14px;
  line-height: 1.55;
}
.wtu-detail .wtu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}
.wtu-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.wtu-detail a {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.wtu-detail a:hover { text-decoration: underline; }
@keyframes wtu-pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
.wtu-status.is-loading { animation: wtu-pulse 1.2s ease-in-out infinite; }

@media (max-width: 720px) {
  .wtu-input-row {
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto auto;
    padding: 12px;
  }
  .wtu-search-ico { grid-row: 1; }
  .wtu-input-row textarea { grid-column: 2; font-size: 15px; min-height: 48px; }
  .wtu-input-row button {
    grid-column: 1 / -1;
    min-height: 48px;
    width: 100%;
  }
  .wtu-detail { padding-left: 16px; }
  .wtu-row { grid-template-columns: 40px 1fr auto; gap: 10px; padding: 14px; }
}
