:root {
  --bg: #080c14;
  --panel: #101727;
  --text: #ecf1ff;
  --muted: #a6b0c9;
  --accent: #37e0ff;
  --accent2: #9b5cff;
  --danger: #ff4d6d;
  --line: #1c2740;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 15% 15%, #151f38 0%, var(--bg) 45%), var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
}

body::before {
  background: #4d5fff;
  top: -70px;
  left: -90px;
  animation: floatGlow 12s ease-in-out infinite;
}

body::after {
  background: #1fd6ff;
  right: -120px;
  top: 35vh;
  animation: floatGlow 14s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(24px) translateX(14px); }
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(#fff 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  z-index: 2;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.06);
}

.reading-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2), #ff7a9c);
  box-shadow: 0 0 20px rgba(55, 224, 255, 0.5);
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(7, 12, 23, 0.65);
}

.ticker {
  position: sticky;
  top: 54px;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(18, 12, 30, 0.95), rgba(11, 18, 35, 0.95));
  overflow: hidden;
}

.ticker-label {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(90deg, #ff4d6d, #ff8a50);
  padding: 5px 8px;
  border-radius: 999px;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 24s linear infinite;
}

.ticker-track p {
  margin: 0;
  font-size: 0.82rem;
  color: #dce7ff;
  max-width: none;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.topbar nav {
  display: flex;
  gap: 16px;
}

.topbar a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  font-size: 0.92rem;
}

.topbar a:hover {
  color: var(--accent);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.15) brightness(0.35);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(155, 92, 255, 0.3), rgba(55, 224, 255, 0.08) 40%, rgba(255, 77, 109, 0.2)),
    radial-gradient(circle at 70% 20%, rgba(55, 224, 255, 0.2), transparent 35%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1100px, 92vw);
  margin-top: 64px;
}

.kicker {
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 8px;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 0.97;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.subhead {
  margin: 18px 0 24px;
  max-width: 760px;
  font-size: clamp(1rem, 2.3vw, 1.4rem);
  color: #d9e4ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats article {
  background: rgba(9, 15, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
}

.label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 5px;
}

.value {
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #fff;
}

.section {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 76px 0;
  position: relative;
  z-index: 3;
}

.dashboard {
  padding-top: 54px;
}

.dash-sub {
  margin: 2px 0 0;
  color: #b9c8ec;
}

.meter-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.meter-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(14, 21, 37, 0.95), rgba(10, 15, 28, 0.96));
  text-align: center;
}

.meter {
  --deg: 0deg;
  width: 108px;
  height: 108px;
  margin: 2px auto 10px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) var(--deg), #1a2542 0deg);
  display: grid;
  place-items: center;
  position: relative;
}

.meter::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #0b1222;
  border: 1px solid #24365f;
}

.meter span {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 800;
  color: #f0f6ff;
}

.meter-card h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.meter-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: none;
}

.section:hover::before {
  border-color: rgba(70, 100, 170, 0.65);
  background: linear-gradient(180deg, rgba(14, 22, 40, 0.56), rgba(9, 14, 26, 0.2));
}

.quick-take {
  padding-top: 48px;
}

.quick-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quick-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(15, 22, 39, 0.95), rgba(9, 14, 26, 0.95));
  position: relative;
  overflow: hidden;
}

.quick-grid article::after,
.card::after {
  content: '';
  position: absolute;
  inset: -120% auto auto -40%;
  width: 55%;
  height: 280%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: transform .9s ease;
}

.quick-grid article:hover::after,
.card:hover::after {
  transform: translateX(320%) rotate(20deg);
}

.quick-grid span {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.quick-grid h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.quick-grid p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.analysis-section {
  padding-top: 52px;
}

.insight-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.insight-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(13, 20, 36, 0.96), rgba(9, 14, 25, 0.96));
}

.insight-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #e7efff;
}

.insight-card p {
  margin: 0;
  font-size: 0.9rem;
}

.question-block {
  margin-top: 14px;
  border: 1px solid #2c406d;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(16, 26, 48, 0.94), rgba(12, 18, 33, 0.94));
}

.question-block h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.signal-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.signal-list li {
  color: #d7e3ff;
  line-height: 1.45;
}

.analysis-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #95a7d6;
}

.reason-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reason-card {
  border: 1px solid #2d406c;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(14, 22, 40, 0.95), rgba(10, 16, 30, 0.95));
}

.reason-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.section.is-collapsed > p.extra-copy {
  display: none;
}

.read-toggle {
  margin-top: 10px;
  border: 1px solid #2b416f;
  background: #101b33;
  color: #e5eeff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 12px;
  cursor: pointer;
}

.read-toggle:hover {
  border-color: #3a5ea0;
}

.section::before {
  content: '';
  position: absolute;
  inset: 36px -16px 20px;
  border: 1px solid rgba(40, 58, 100, 0.45);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.42), rgba(9, 14, 26, 0.18));
  z-index: -1;
  pointer-events: none;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 8px;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

p {
  color: #cfdaef;
  line-height: 1.75;
  max-width: 940px;
}

.image-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-grid.triple {
  grid-template-columns: repeat(3, 1fr);
}

.image-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0b1222;
}

.image-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.image-grid figure:hover img {
  transform: scale(1.03);
  filter: saturate(1.14);
}

.image-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.data-section .lead {
  margin-top: 4px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.card {
  background: linear-gradient(160deg, rgba(16, 23, 39, 0.96), rgba(10, 15, 28, 0.96));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.mosaic {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.mosaic img {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(1.06);
}

.mosaic img:first-child {
  height: 100%;
  min-height: 190px;
  grid-row: span 2;
}

.brand-ecosystem {
  margin-top: 16px;
  border: 1px solid #2a3b64;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(140deg, rgba(16, 23, 41, 0.95), rgba(11, 17, 31, 0.95));
}

.brand-ecosystem h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #e7efff;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-tags span {
  border: 1px solid #30497c;
  background: #121d35;
  color: #dce8ff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.84rem;
  font-weight: 600;
}

.quote-strip {
  margin-top: 14px;
  border: 1px solid #2a3d69;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 14px 16px;
  background: linear-gradient(120deg, rgba(12, 19, 36, 0.96), rgba(12, 17, 31, 0.9));
}

.quote-strip p {
  margin: 0;
  color: #e5eeff;
  font-weight: 600;
}

.glow {
  box-shadow: 0 0 0 transparent;
  transition: transform .22s ease, box-shadow .22s ease;
}

.glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(55, 224, 255, 0.14);
}

.card h3 {
  margin: 0 0 8px;
}

.card .big {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.bar-chart {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #0b1222;
}

.coin-model {
  margin-top: 14px;
  border: 1px solid #2d416f;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(14, 22, 40, 0.96), rgba(10, 16, 29, 0.96));
}

.coin-model h3 {
  margin: 0 0 6px;
}

.coin-model p {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: #b5c5ea;
}

.coin-inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.coin-inputs label {
  display: grid;
  gap: 5px;
  font-size: 0.8rem;
  color: #cddaf8;
}

.coin-inputs input {
  width: 100%;
  border: 1px solid #2e4473;
  border-radius: 10px;
  background: #0c1529;
  color: #edf3ff;
  padding: 9px 10px;
  font-weight: 600;
}

.coin-presets {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coin-presets button {
  border: 1px solid #2f4a7f;
  background: #111c35;
  color: #deebff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.coin-presets button:hover {
  border-color: #4f74ba;
}

.coin-results {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.coin-results article {
  border: 1px solid #2a3d67;
  background: #0c1529;
  border-radius: 12px;
  padding: 10px;
}

.coin-results span {
  display: block;
  color: #a8b9e2;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.coin-results strong {
  font-size: 1.1rem;
  color: #f4f8ff;
}

.coin-chart-wrap {
  margin-top: 12px;
  border: 1px solid #2a3e68;
  border-radius: 12px;
  background: #0c1426;
  padding: 10px;
}

.coin-chart-wrap h4 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: #dce8ff;
}

.coin-chart-wrap canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  background: linear-gradient(180deg, #0a1223, #0b1528);
  border: 1px solid #23365e;
}

.coin-chart-wrap small {
  display: block;
  margin-top: 8px;
  color: #9fb2db;
  font-size: 0.72rem;
}

.feature-photo {
  margin: 16px 0 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0b1222;
}

.feature-photo img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.feature-photo figcaption {
  color: var(--muted);
  padding: 10px 12px;
  font-size: 0.9rem;
}

.people-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.people-grid figure {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0b1222;
  padding: 8px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.people-grid figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 61, 116, 0.3);
}

.people-grid img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
  background: #0a1020;
  border-radius: 10px;
  padding: 4px;
  transition: transform .3s ease;
}

.people-grid figure:hover img {
  transform: scale(1.03);
}

.people-grid figcaption {
  padding: 0;
  font-size: 0.8rem;
  color: #dde7ff;
  font-weight: 600;
}

.people-grid figcaption strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.25;
  margin-bottom: 4px;
}

.people-grid figcaption small {
  display: block;
  color: #9fb0d8;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 500;
}

.bar-chart h3 {
  margin: 0 0 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 170px 1fr 34px;
  gap: 10px;
  align-items: center;
  margin: 9px 0;
}

.bar-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.bar {
  height: 11px;
  background: #111a30;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #1d2947;
}

.bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: loadBar 1.4s ease forwards;
  animation-delay: 0.2s;
}

@keyframes loadBar {
  to {
    width: var(--w);
  }
}

.timeline {
  margin-top: 16px;
  border-left: 2px solid #203057;
  padding-left: 20px;
  display: grid;
  gap: 16px;
}

.timeline article {
  background: #0c1325;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  position: relative;
}

.timeline article::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: -26px;
  top: 20px;
}

.timeline time {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--accent);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  min-height: 300px;
  object-fit: cover;
}

ul {
  padding-left: 18px;
  color: #d4def5;
  line-height: 1.7;
}

.watch-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.watch-grid div {
  border: 1px solid #22335c;
  background: #0d1529;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.final {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #f0f5ff;
  font-weight: 600;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  text-align: center;
  padding: 24px 14px 36px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .hero-stats,
  .cards,
  .watch-grid,
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .meter-grid {
    grid-template-columns: 1fr;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .coin-inputs,
  .coin-results {
    grid-template-columns: 1fr;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .image-grid,
  .image-grid.triple,
  .mosaic,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .mosaic img:first-child {
    grid-row: auto;
    min-height: 190px;
  }

  .bar-row {
    grid-template-columns: 120px 1fr 30px;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px;
  }

  .topbar nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ticker {
    top: 74px;
  }

  .hero-stats,
  .cards,
  .watch-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

/* --- Cinematic redesign override --- */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 4px);
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(55, 224, 255, 0.22) 0%, rgba(55, 224, 255, 0) 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.section-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(76, 101, 162, 0.45);
  border-radius: 14px;
  background: rgba(9, 14, 27, 0.72);
  backdrop-filter: blur(8px);
}

.section-rail a {
  text-decoration: none;
  color: #9db1df;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  border-radius: 8px;
}

.section-rail a.active,
.section-rail a:hover {
  color: #f5f9ff;
  background: linear-gradient(90deg, rgba(55, 224, 255, 0.22), rgba(155, 92, 255, 0.22));
}

.hero-content::after {
  content: '';
  position: absolute;
  inset: auto 0 -30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55, 224, 255, 0.75), transparent);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-pills span {
  border: 1px solid rgba(73, 100, 161, 0.6);
  background: rgba(12, 20, 37, 0.72);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #d8e5ff;
}

.quick-grid article,
.meter-card,
.people-grid figure,
.card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.quick-grid article:hover,
.meter-card:hover,
.people-grid figure:hover,
.card:hover {
  transform: translateY(-4px);
  border-color: #3f62a9;
  box-shadow: 0 12px 24px rgba(20, 36, 72, 0.35);
}

@media (max-width: 950px) {
  .section-rail {
    display: none;
  }
}

@media (max-width: 640px) {
  .cursor-glow {
    display: none;
  }
}

/* ===== MAX IMPACT REDESIGN ===== */
.impact-theme {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 65, 108, 0.22), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(55, 224, 255, 0.22), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(155, 92, 255, 0.15), transparent 38%),
    #060914;
}

.impact-theme .hero {
  min-height: 110vh;
}

.impact-theme .hero-overlay {
  background:
    linear-gradient(120deg, rgba(255, 51, 102, 0.34), rgba(13, 19, 35, 0.2) 45%, rgba(61, 214, 255, 0.28)),
    radial-gradient(circle at 65% 18%, rgba(97, 220, 255, 0.28), transparent 35%);
}

.impact-theme h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #ffffff, #8fe8ff 35%, #d7b0ff 65%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShift 7s linear infinite;
  text-shadow: none;
}

@keyframes titleShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.impact-theme .subhead {
  font-size: clamp(1.05rem, 2.6vw, 1.55rem);
  color: #f4f8ff;
  max-width: 900px;
}

.breaking-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 140, 170, 0.7);
  background: linear-gradient(90deg, rgba(255, 52, 107, 0.2), rgba(255, 95, 53, 0.2));
  color: #ffd8e2;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 10px;
  animation: badgePulse 1.6s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 79, 129, 0.0); }
  50% { box-shadow: 0 0 28px rgba(255, 79, 129, 0.35); }
}

.impact-theme .ticker {
  background: linear-gradient(90deg, rgba(58, 11, 35, 0.94), rgba(10, 22, 44, 0.95));
  border-top-color: rgba(255, 110, 149, 0.35);
  border-bottom-color: rgba(77, 199, 255, 0.35);
}

.impact-theme .section::before {
  border: 1px solid rgba(98, 126, 198, 0.42);
  background: linear-gradient(180deg, rgba(16, 24, 44, 0.58), rgba(8, 13, 25, 0.23));
}

.impact-theme .section h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.impact-theme .section h2::after {
  width: 110px;
  height: 4px;
  background: linear-gradient(90deg, #ff5a8b, #37e0ff, #a77dff);
}

.impact-theme .card,
.impact-theme .quick-grid article,
.impact-theme .meter-card,
.impact-theme .insight-card,
.impact-theme .reason-card,
.impact-theme .question-block,
.impact-theme .coin-model {
  background: linear-gradient(160deg, rgba(18, 26, 48, 0.96), rgba(10, 16, 31, 0.97));
  border-color: rgba(81, 112, 188, 0.55);
  box-shadow: 0 12px 30px rgba(7, 13, 25, 0.55);
}

.impact-theme .image-grid img,
.impact-theme .feature-photo img,
.impact-theme .split img,
.impact-theme .mosaic img {
  filter: saturate(1.22) contrast(1.07);
}

.impact-theme .watch-grid div,
.impact-theme .brand-tags span,
.impact-theme .hero-pills span {
  border-color: rgba(93, 124, 199, 0.72);
  background: rgba(18, 29, 54, 0.9);
}

.shock-board {
  padding-top: 52px;
}

.shock-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 12px;
}

.shock-card {
  border: 1px solid rgba(88, 120, 195, 0.55);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(165deg, rgba(14, 22, 42, 0.96), rgba(8, 14, 27, 0.97));
  box-shadow: 0 14px 30px rgba(9, 15, 28, 0.5);
}

.shock-card h3 {
  margin: 0 0 10px;
  color: #eaf2ff;
}

.feed-window {
  height: 190px;
  overflow: hidden;
  border: 1px solid #2a3f6b;
  border-radius: 10px;
  background: #0b1324;
}

.feed-window ul {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  display: grid;
  gap: 12px;
  animation: none;
}

.feed-window li {
  color: #cfe0ff;
  font-size: 0.86rem;
  line-height: 1.35;
}

.feed-window a {
  color: #d7e6ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.feed-window a:hover {
  color: #8fe8ff;
  border-bottom-color: rgba(143, 232, 255, 0.6);
}

@keyframes feedScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-45%); }
}

.radar {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 4px auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 224, 255, 0.08), rgba(55, 224, 255, 0.02) 60%, transparent 75%);
  border: 1px solid #2d456f;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(70, 116, 194, 0.45);
}

.r1 { inset: 18%; }
.r2 { inset: 34%; }
.r3 { inset: 50%; }

.blip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37e0ff;
  box-shadow: 0 0 16px rgba(55, 224, 255, 0.75);
  animation: blipPulse 1.7s ease-in-out infinite;
}

.b1 { top: 24%; left: 64%; }
.b2 { top: 62%; left: 38%; animation-delay: .4s; }
.b3 { top: 47%; left: 72%; animation-delay: .8s; }

@keyframes blipPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.8); opacity: 1; }
}

.radar-card p {
  margin: 0;
  color: #b8caef;
  font-size: 0.86rem;
  text-align: center;
}

.engine {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 10px 0;
}

.engine span {
  color: #c9daff;
  font-size: 0.82rem;
}

.engine b {
  color: #f1f7ff;
  font-size: 0.82rem;
}

.engine i {
  grid-column: 1 / -1;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #37e0ff, #a070ff, #ff4f8a);
  width: 0;
  animation: engineLoad 1.2s ease forwards;
}

@keyframes engineLoad {
  to { width: var(--engine); }
}

@media (max-width: 950px) {
  .shock-grid {
    grid-template-columns: 1fr;
  }
}
