/* ==========================================================================
   NEXARA INTELLIGENCE GROUP — Editorial Intelligence Style System
   Classic gravitas + modern interactivity
   ========================================================================== */

:root {
  /* Core palette — preserved from original */
  --bg: #f4f6f8;
  --bg-warm: #f7f4ee;
  --paper: #fbf9f4;
  --surface: #ffffff;
  --ink: #0b1c32;
  --ink-soft: #1f3350;
  --muted: #5b6472;
  --muted-soft: #7c8699;
  --line: #d7dde5;
  --line-soft: #e4e8ef;
  --navy: #0f2747;
  --navy-2: #19385f;
  --navy-3: #0b1c32;
  --navy-deep: #071426;
  --accent: #8ca3bf;
  --soft: #e9eef4;
  --success: #1f6f5f;
  --highlight: #f4aa1c;
  --highlight-2: #d8951a;
  --danger: #c23b3b;
  --warning: #d67a1f;

  --shadow-sm: 0 4px 12px rgba(11, 28, 50, 0.06);
  --shadow: 0 12px 30px rgba(15, 39, 71, 0.08);
  --shadow-lg: 0 28px 60px rgba(15, 39, 71, 0.15);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1280px;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-warm);
  color: var(--ink);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}

/* ==========================================================================
   LIVE TICKER STRIP
   ========================================================================== */

.ticker-strip {
  background: var(--navy-deep);
  color: #e6edf7;
  display: flex;
  align-items: stretch;
  height: 38px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(140,163,191,0.15);
  position: relative;
  z-index: 1001;
}

.ticker-label {
  background: var(--highlight);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  padding-right: 1.8rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-deep);
  position: relative;
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(11,20,38,0.7); }
  70% { box-shadow: 0 0 0 6px rgba(11,20,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(11,20,38,0); }
}

.ticker-track {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  padding: 0 1.2rem;
  animation: ticker-scroll 62s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #d6e2f5;
}

.t-region {
  color: var(--highlight);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
}

.ticker-sep {
  color: rgba(244,170,28,0.45);
  font-size: 0.65rem;
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-3) 100%);
  border-bottom: 1px solid rgba(140, 163, 191, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 76px;
  color: #e8eef6;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: #e8eef6;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.brand-text-header small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--highlight);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.brand-text-header span {
  display: block;
  font-size: 1.02rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #c5d2e3;
  font-size: 0.92rem;
  font-weight: 500;
  margin-left: 2rem;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--highlight);
  transition: width 0.28s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
  flex-shrink: 0;
}

.icon-search,
.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 0.22s ease;
}

.icon-search:hover,
.icon-circle:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

.icon-circle {
  flex-direction: column;
  gap: 4px;
}

.icon-circle span {
  width: 14px;
  height: 1.5px;
  background: #fff;
  transition: all 0.22s ease;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.3rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 39, 71, 0.2);
}

.btn-primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 39, 71, 0.3);
}

.btn-primary svg {
  transition: transform 0.22s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-light {
  background: var(--highlight);
  color: var(--navy-deep);
}

.btn-light:hover {
  background: #fff;
  color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #e8eef6;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-register {
  background: var(--highlight);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
  box-shadow: 0 6px 16px rgba(244, 170, 28, 0.25);
}

.btn-register:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.display-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.display-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
}

.display-h2.light {
  color: #fff;
}

.display-h2.light em {
  color: var(--highlight);
}

.kicker-line {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-left: 2.2rem;
  position: relative;
}

.kicker-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--highlight);
}

.kicker-light {
  color: var(--highlight);
}

.kicker-light::before {
  background: var(--highlight);
}

.muted-lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
  margin: 1rem 0 0;
  line-height: 1.6;
}

.muted { color: var(--muted); }

/* ==========================================================================
   HERO — Editorial Magazine Cover
   ========================================================================== */

.hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-3) 50%, var(--navy-2) 100%);
  color: #f4f8ff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(140,163,191,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,163,191,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 20%, transparent 75%);
}

.hero-world {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-arcs .arc {
  animation: arc-flow 3s linear infinite;
}

.hero-arcs .a2 { animation-delay: 1s; }
.hero-arcs .a3 { animation-delay: 2s; }

@keyframes arc-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -20; }
}

.hero-nodes .pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: node-pulse 2.4s ease-out infinite;
  opacity: 0;
}

.pulse-delay-1 { animation-delay: 0.6s !important; }
.pulse-delay-2 { animation-delay: 1.2s !important; }
.pulse-delay-3 { animation-delay: 1.8s !important; }

@keyframes node-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.issue-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--highlight);
  font-weight: 600;
  text-transform: uppercase;
}

.classification {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.6rem;
}

.hl-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: hl-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hl-line:nth-child(1) { animation-delay: 0.1s; }
.hl-line:nth-child(2) { animation-delay: 0.3s; }
.hl-line:nth-child(3) { animation-delay: 0.5s; }

.hl-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--highlight);
  padding-left: 2rem;
}

@keyframes hl-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  font-size: 1.1rem;
  color: #cbd7ea;
  max-width: 56ch;
  margin: 0 0 2rem;
  line-height: 1.65;
  opacity: 0;
  animation: fade-in 0.9s ease 0.7s forwards;
}

@keyframes fade-in { to { opacity: 1; } }

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in 0.9s ease 0.9s forwards;
}

/* Hero aside — Briefing card */
.hero-aside {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  opacity: 0;
  animation: fade-in 0.9s ease 0.6s forwards;
}

.hero-aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--highlight);
}

.aside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  margin-bottom: 1.2rem;
}

.aside-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 600;
}

.aside-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

.aside-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}

.aside-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--highlight);
}

.aside-body p {
  color: #c5d2e3;
  font-size: 0.96rem;
  margin: 0 0 1.2rem;
  line-height: 1.55;
}

.aside-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.aside-tags span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: #cbd7ea;
  letter-spacing: 0.05em;
}

.aside-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--highlight);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: gap 0.22s ease;
}

.aside-link:hover { gap: 0.8rem; }

.aside-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.astat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.astat span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Risk strip in hero */
.risk-strip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.risk-strip-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.rs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 4px rgba(244,170,28,0.2);
  animation: rs-glow 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes rs-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244,170,28,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(244,170,28,0.08); }
}

.risk-strip-label strong {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.risk-strip-label em {
  font-style: normal;
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.risk-strip-meters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.meter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.meter-head span {
  color: #cbd7ea;
  font-weight: 500;
}

.meter-head strong {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--highlight);
  font-weight: 700;
}

.meter-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 999px;
}

.meter-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
  border-radius: inherit;
  width: 0;
  animation: meter-fill 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

@keyframes meter-fill {
  from { width: 0; }
}

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */

section {
  padding: 5rem 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.section-head-right {
  justify-self: end;
  text-align: right;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.22s ease;
}

.view-all-link:hover { gap: 0.8rem; }

/* ==========================================================================
   INTERACTIVE RISK MAP SECTION
   ========================================================================== */

.risk-map-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.legend {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.legend-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.legend-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.tier-low { background: rgba(31, 111, 95, 0.15); color: var(--success); }
.tier-med { background: rgba(214, 122, 31, 0.15); color: var(--warning); }
.tier-high { background: rgba(194, 59, 59, 0.15); color: var(--danger); }

.map-container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  min-height: 520px;
}

.world-map {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fbf9f4 0%, #f0e9d9 100%);
  border-right: 1px solid var(--line);
}

.world-map .map-dots circle {
  r: 1.6;
  transition: fill 0.4s ease;
}

.world-map .trade-routes {
  opacity: 0.55;
}

.hotspot {
  cursor: pointer;
  outline: none;
  transition: transform 0.25s ease;
  transform-origin: center;
  transform-box: fill-box;
}

.hotspot .hs-halo {
  fill: currentColor;
  opacity: 0.12;
}

.hotspot .hs-ring {
  fill: currentColor;
  opacity: 0.28;
}

.hotspot .hs-core {
  fill: currentColor;
}

.hotspot-critical { color: var(--danger); }
.hotspot-high { color: var(--warning); }
.hotspot-med { color: var(--highlight); }

.hotspot .hs-ring {
  animation: hs-pulse 2.2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.hotspot-high .hs-ring { animation-delay: 0.5s; }
.hotspot-med .hs-ring { animation-delay: 1s; }

@keyframes hs-pulse {
  0%, 100% { transform: scale(1); opacity: 0.28; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hotspot:hover .hs-halo,
.hotspot.active .hs-halo {
  opacity: 0.3;
}

.hotspot:hover .hs-ring,
.hotspot.active .hs-ring {
  opacity: 0.5;
}

.hotspot:hover,
.hotspot.active {
  transform: scale(1.15);
}

.map-info {
  padding: 2rem 2rem 2.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.mi-region {
  display: none;
  animation: mi-fade 0.35s ease;
}

.mi-region.active {
  display: block;
}

.mi-default {
  transition: opacity 0.3s ease;
}

.map-info.region-active .mi-default {
  display: none;
}

@keyframes mi-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mi-hint {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.mi-tier {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.map-info h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.map-info p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.mi-region ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.mi-region li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.mi-region li strong {
  font-family: var(--font-mono);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   REPORTS — Magazine Layout
   ========================================================================== */

.reports-section {
  background: var(--bg-warm);
}

.reports-magazine {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.report-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.report-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.report-feature-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.report-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.report-feature:hover .report-feature-image img {
  transform: scale(1.05);
}

.report-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,20,38,0.85) 100%);
  pointer-events: none;
}

.report-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--highlight);
  color: var(--navy-deep);
  padding: 0.4rem 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}

.report-feature-body {
  padding: 2rem 2rem 2.2rem;
}

.report-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-left: 1.6rem;
  position: relative;
}

.report-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--highlight);
}

.report-feature-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: var(--navy-deep);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.report-feature-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.4rem;
}

.report-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--highlight);
  padding-bottom: 2px;
  transition: gap 0.22s ease;
}

.report-feature:hover .report-cta { gap: 0.8rem; }

.report-supporting {
  display: grid;
  gap: 1.2rem;
  grid-template-rows: 1fr 1fr 1fr;
}

.brief-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.brief-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.brief-image {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.brief-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brief-card:hover .brief-image img { transform: scale(1.08); }

.brief-tag {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  background: rgba(11,20,38,0.9);
  color: var(--highlight);
  padding: 0.3rem 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.brief-body {
  padding: 1.1rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.brief-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--highlight-2);
  font-weight: 700;
}

.brief-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--navy-deep);
  margin: 0;
  letter-spacing: -0.015em;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brief-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   STAT BAND
   ========================================================================== */

.stat-band {
  background: var(--navy-deep);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stat-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,170,28,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,170,28,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-block {
  padding-left: 1.4rem;
  border-left: 2px solid var(--highlight);
}

.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-block em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services-section {
  background: var(--bg-warm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--highlight);
  transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.service-card:hover::before {
  height: 100%;
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--highlight);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin: 0 0 0.6rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.service-body p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.service-meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  font-weight: 600;
}

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */

.industries-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.8rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

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

.industry-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding: 0.6rem;
  background: var(--soft);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: var(--highlight);
  color: var(--navy-deep);
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-left: 1rem;
  position: relative;
  border-top: 1px solid var(--line-soft);
  line-height: 1.45;
}

.industry-card li:first-child { border-top: none; padding-top: 0.7rem; }

.industry-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: 700;
}

/* ==========================================================================
   METHOD — Timeline
   ========================================================================== */

.method-section {
  background: var(--bg-warm);
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  padding-top: 3rem;
}

.method-line {
  position: absolute;
  top: 3rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0, var(--line) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.method-step {
  position: relative;
  z-index: 1;
}

.method-marker {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.4rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 8px var(--bg-warm);
}

.method-step:hover .method-marker {
  background: var(--navy);
  color: var(--highlight);
  transform: scale(1.05);
}

.method-content {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: 4px;
}

.method-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin: 0 0 0.9rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.method-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.method-content li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.4rem 0 0.4rem 1.1rem;
  position: relative;
}

.method-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: 700;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-section {
  padding: 4rem 0 6rem;
  background: var(--paper);
}

.cta-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  color: #fff;
  border-radius: 6px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.cta-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,170,28,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,170,28,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 30%, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, rgba(0,0,0,0.6), transparent 70%);
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,170,28,0.15), transparent 60%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-copy p {
  color: rgba(255,255,255,0.75);
  margin: 1rem 0 0;
  max-width: 50ch;
  line-height: 1.6;
}

.cta-contact {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 1.8rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--highlight);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cta-contact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  word-break: break-word;
}

.cta-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin: 0 0 1.3rem;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--navy-deep);
  color: #e0e7f3;
  padding: 3.5rem 0 2rem;
  position: relative;
}

.footer-dark {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
  display: grid;
  gap: 0.9rem;
}

.footer-brand .brand {
  color: #e0e7f3;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--highlight);
  margin: 0.5rem 0 0;
  letter-spacing: -0.015em;
  font-style: italic;
}

.footer-blurb {
  margin: 0;
  color: #a9b5c9;
  max-width: 44ch;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  color: #c5d2e3;
  font-size: 0.92rem;
}

.footer-links a:hover { color: var(--highlight); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.social-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  transition: all 0.22s ease;
}

.social-dot:hover {
  background: var(--highlight);
  color: var(--navy-deep);
  border-color: var(--highlight);
  transform: translateY(-2px);
}

.footer-note {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin: 0;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #8a95a8;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
}

.footer-bottom-links a:hover { color: var(--highlight); }

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */

.search-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 3000;
}

.search-overlay.open { display: block; }

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 38, 0.85);
  backdrop-filter: blur(14px);
  animation: fade-in 0.3s ease;
}

.search-panel {
  position: relative;
  max-width: 720px;
  margin: 8vh auto 0;
  padding: 3rem 2.5rem;
  animation: search-rise 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes search-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-close:hover {
  background: var(--highlight);
  color: var(--navy-deep);
  border-color: var(--highlight);
}

.search-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.5);
}

.search-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.search-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }

.search-suggestions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.search-suggestions > span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.search-suggestions a {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: #e0e7f3;
  font-size: 0.88rem;
  border-radius: 999px;
  transition: all 0.22s ease;
}

.search-suggestions a:hover {
  background: var(--highlight);
  color: var(--navy-deep);
  border-color: var(--highlight);
}

/* ==========================================================================
   MENU OVERLAY
   ========================================================================== */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 38, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: flex-end;
  z-index: 2000;
}

.menu-overlay.open { display: flex; }

.menu-backdrop {
  flex: 1;
  cursor: pointer;
}

.menu-panel {
  width: min(680px, 100%);
  background: var(--paper);
  color: var(--navy-deep);
  padding: 2rem 2.2rem 2.5rem;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--highlight);
}

.menu-overlay.open .menu-panel { transform: translateX(0); }

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.menu-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-close {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-deep);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.22s ease;
}

.menu-close:hover {
  background: var(--navy-deep);
  color: var(--highlight);
  border-color: var(--navy-deep);
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem 2rem;
  flex: 1;
}

.menu-col h4 {
  font-family: var(--font-mono);
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.menu-col a {
  display: block;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  padding: 0.15rem 0;
  position: relative;
}

.menu-col a:hover {
  color: var(--highlight-2);
  padding-left: 8px;
}

.menu-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.menu-dot {
  color: var(--highlight);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* ==========================================================================
   ARTICLE / SUBPAGE STYLES (preserved for other pages)
   ========================================================================== */

/* ==========================================================================
   ARTICLE PAGES — Editorial reading experience
   ========================================================================== */

.container.narrow {
  width: min(100% - 2rem, 920px);
  margin: 0 auto;
}

/* ----- Article Hero ----- */
.article-hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-3) 60%, var(--navy-2) 100%);
  color: #f4f8ff;
  overflow: hidden;
}

.article-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

.article-hero .container {
  position: relative;
  z-index: 1;
}

.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.6rem;
  font-weight: 500;
  transition: color 0.22s ease;
}

.article-breadcrumb:hover {
  color: var(--highlight);
}

.article-breadcrumb svg {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.article-breadcrumb:hover svg {
  transform: translateX(-3px);
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.article-hero-meta .article-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--highlight);
  padding: 0.35rem 0.75rem;
  font-weight: 700;
  border-radius: 0;
}

.article-hero-meta .article-classification {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.article-hero-meta .article-issue {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 600;
}

.article-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.4rem;
  max-width: 22ch;
}

.article-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--highlight);
}

.article-lede {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: #cbd7ea;
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 0 2rem;
  font-style: italic;
}

.article-byline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem 1.6rem;
  align-items: center;
  padding: 1.4rem 0 0;
  border-top: 1px dashed rgba(255,255,255,0.18);
}

.byline-portrait {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  border: 1px solid rgba(244,170,28,0.4);
  color: var(--highlight);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.byline-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.byline-author {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.byline-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.byline-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.byline-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  color: #e8eef6;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.22s ease;
  border-radius: 0;
}

.byline-btn:hover {
  background: var(--highlight);
  color: var(--navy-deep);
  border-color: var(--highlight);
  transform: translateY(-1px);
}

/* ----- Article Body ----- */
.article-body {
  padding: 3.5rem 0 4rem;
  background: var(--bg-warm);
  position: relative;
}

.article-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--highlight);
}

.article-content {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.article-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--highlight);
}

.article-content > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--navy-deep);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin: 2.6rem 0 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.article-content > h2:first-child {
  margin-top: 0;
}

.article-content > h2::before {
  content: "§";
  position: absolute;
  left: -1.4rem;
  top: 0;
  color: var(--highlight);
  font-weight: 400;
  font-style: italic;
  font-size: 0.85em;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 1.8rem 0 0.7rem;
}

.article-content p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

.article-content > p:first-of-type::first-letter,
.article-content .lead::first-letter {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  margin: 0.35rem 0.6rem 0 0;
  color: var(--navy-deep);
  letter-spacing: -0.04em;
}

.article-content p.lead {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--navy-deep);
  font-weight: 400;
  margin-bottom: 1.4rem;
}

.article-content strong {
  color: var(--navy-deep);
  font-weight: 700;
}

.article-content em {
  font-style: italic;
}

.article-content a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--highlight);
  transition: all 0.2s ease;
}

.article-content a:hover {
  color: var(--highlight-2);
  background: rgba(244, 170, 28, 0.08);
}

.article-content ul,
.article-content ol {
  margin: 0.6rem 0 1.4rem;
  padding-left: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 0.6rem;
  padding-left: 0.4rem;
}

.article-content ul {
  list-style: none;
  padding-left: 0;
}

.article-content ul > li {
  position: relative;
  padding-left: 1.6rem;
}

.article-content ul > li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--highlight);
  font-weight: 700;
}

.article-content ol {
  list-style: none;
  counter-reset: ol-counter;
  padding-left: 0;
}

.article-content ol > li {
  position: relative;
  padding-left: 2.4rem;
  counter-increment: ol-counter;
}

.article-content ol > li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--highlight);
  letter-spacing: 0.04em;
}

/* Executive Summary box */
.executive-summary {
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--highlight);
  padding: 1.6rem 1.8rem;
  border-radius: 2px;
  margin: 1rem 0 2rem;
  position: relative;
}

.executive-summary::after {
  content: "EXEC SUMMARY";
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--highlight);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.2rem 0.55rem;
}

.executive-summary > h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin: 0 0 0.7rem;
  padding: 0;
  border: none;
  font-weight: 600;
}

.executive-summary > h2::before {
  display: none;
}

.executive-summary p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 0.7rem;
}

.executive-summary p:last-child {
  margin-bottom: 0;
}

.executive-summary p::first-letter {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  float: none;
  margin: 0;
  color: inherit;
}

/* Scenario block */
.scenario {
  margin: 1.2rem 0 1.4rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy);
  border-radius: 2px;
  background: var(--paper);
  transition: all 0.22s ease;
}

.scenario:hover {
  border-left-color: var(--highlight);
  box-shadow: var(--shadow-sm);
}

.scenario h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--navy-deep);
  font-size: 1.15rem;
}

.scenario p {
  margin-bottom: 0.5rem;
}

.scenario p:last-child {
  margin-bottom: 0;
}

/* Takeaway block */
.takeaway,
.article-content .takeaway {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  color: #cbd7ea;
  padding: 1.3rem 1.5rem;
  margin: 0.9rem 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  font-size: 0.96rem;
  line-height: 1.65;
}

.takeaway::before,
.article-content .takeaway::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--highlight);
}

.takeaway strong,
.article-content .takeaway strong {
  display: block;
  color: var(--highlight);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

/* Key Takeaways block (final summary) */
.key-takeaways {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 2rem 2.2rem 2.2rem;
  border-radius: 4px;
  margin: 2.2rem 0 0.5rem;
  position: relative;
  overflow: hidden;
}

.key-takeaways::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--highlight);
}

.key-takeaways::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,170,28,0.12), transparent 60%);
  pointer-events: none;
}

.key-takeaways h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--highlight);
  margin: 0 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(244,170,28,0.25);
  font-weight: 600;
  letter-spacing: -0.015em;
  position: relative;
}

.key-takeaways h2::before {
  content: "◆";
  margin-right: 0.5rem;
  color: var(--highlight);
  font-style: normal;
  position: static;
}

.key-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.key-takeaways ul > li {
  padding: 0.7rem 0 0.7rem 1.6rem;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  color: #cbd7ea;
  font-size: 0.96rem;
  line-height: 1.6;
  position: relative;
}

.key-takeaways ul > li:last-child {
  border-bottom: none;
}

.key-takeaways ul > li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--highlight);
  font-weight: 700;
  font-family: var(--font-mono);
}

.key-takeaways ul > li strong {
  color: #fff;
  font-weight: 700;
  display: inline;
}

/* Tables */
.article-content table,
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 2rem;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.article-content table th,
.article-content table td,
.article-table th,
.article-table td {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  text-align: left;
  color: var(--ink-soft);
  vertical-align: top;
  line-height: 1.55;
}

.article-content table th,
.article-table th {
  background: var(--navy-deep);
  color: var(--highlight);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  font-size: 0.95rem;
  text-transform: none;
}

.article-content table tbody tr:hover,
.article-table tbody tr:hover {
  background: var(--paper);
}

.article-content table tbody tr:nth-child(even),
.article-table tbody tr:nth-child(even) {
  background: rgba(233, 238, 244, 0.35);
}

.article-content table tbody tr:nth-child(even):hover,
.article-table tbody tr:nth-child(even):hover {
  background: var(--paper);
}

.article-content table strong,
.article-table strong {
  color: var(--navy-deep);
}

/* Article footer / related */
.article-footer-bar {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.article-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.article-footer-prompt {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.article-footer-prompt span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight-2);
  font-weight: 600;
}

.article-footer-prompt strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-deep);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
}

.article-footer-prompt p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 56ch;
  line-height: 1.55;
}

.article-footer-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Related articles */
.related-section {
  background: var(--bg-warm);
  padding: 4rem 0 5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.related-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateX(3px);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.related-image {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 130px;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.06);
}

.related-tag {
  position: absolute;
  bottom: 0.55rem;
  left: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  background: rgba(11,20,38,0.92);
  color: var(--highlight);
  padding: 0.28rem 0.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.related-body {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.related-body .brief-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--highlight-2);
  font-weight: 700;
}

.related-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--navy-deep);
  margin: 0;
  letter-spacing: -0.012em;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* People page preservation */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.person-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  transition: all 0.25s ease;
}

.person-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.person-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--highlight);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.person-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: var(--navy-deep);
  font-family: var(--font-display);
}

.person-role {
  color: var(--highlight-2);
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.person-summary {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.5rem 0 0;
}

.page-hero {
  padding-bottom: 4.5rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero .hero-copy p {
  max-width: 58ch;
}

/* ==========================================================================
   SUBPAGE HERO VARIANT (people, subscribe)
   ========================================================================== */

.hero-subpage {
  padding: 3.5rem 0 4rem;
}

.hero-subpage .hero-layout {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.hero-subpage .hero-headline {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
}

/* Aside: checklist variant */
.aside-checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.aside-checklist li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: #cbd7ea;
  line-height: 1.4;
}

.aside-checklist li span {
  color: var(--highlight);
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* Aside: coverage meters */
.coverage-meters {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.coverage-meter .cm-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.coverage-meter .cm-head span {
  color: #cbd7ea;
  font-weight: 500;
}

.coverage-meter .cm-head strong {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--highlight);
  font-weight: 700;
}

.coverage-meter .cm-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 999px;
}

.coverage-meter .cm-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
  border-radius: inherit;
  width: 0;
  animation: meter-fill 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

/* ==========================================================================
   PEOPLE PAGE — Bench cards
   ========================================================================== */

.bench-section {
  background: var(--bg-warm);
}

.bench-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.bench-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.8rem 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bench-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--highlight);
  transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bench-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.bench-card:hover::before {
  height: 100%;
}

.bench-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--line);
}

.bench-portrait {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-2));
  color: var(--highlight);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(15, 39, 71, 0.18);
}

.bench-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--highlight);
  line-height: 1;
  letter-spacing: -0.04em;
}

.bench-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight-2);
  font-weight: 600;
  margin-bottom: 0.7rem;
  padding-left: 1.4rem;
  position: relative;
}

.bench-role::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--highlight);
}

.bench-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy-deep);
  margin: 0 0 0.7rem;
  letter-spacing: -0.018em;
  font-weight: 600;
  line-height: 1.15;
}

.bench-bio {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 1.2rem;
  line-height: 1.6;
}

.bench-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line-soft);
}

.bench-tags span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--paper);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}

/* ==========================================================================
   SUBSCRIBE PAGE — Plan cards
   ========================================================================== */

.plans-section {
  background: var(--bg-warm);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.plan-card.featured {
  border: 2px solid var(--highlight);
  background: linear-gradient(180deg, #fffbf2 0%, #fff 60%);
  box-shadow: 0 18px 40px rgba(244, 170, 28, 0.12);
}

.plan-card.featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--highlight);
}

.plan-card.featured:hover {
  border-color: var(--highlight);
}

.plan-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}

.plan-tier {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.plan-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--highlight);
  line-height: 1;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--navy-deep);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.1;
}

.plan-tag {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.4rem;
  line-height: 1.55;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.plan-price strong {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.025em;
  line-height: 1;
}

.plan-price small {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  flex: 1;
}

.plan-features li {
  padding: 0.7rem 0 0.7rem 1.4rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.45;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--highlight);
  font-weight: 700;
  font-family: var(--font-mono);
}

.plan-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0 0 1.4rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-style: italic;
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Selected plan state */
.plan-card.is-selected {
  border-color: var(--navy);
  box-shadow: 0 18px 40px rgba(15, 39, 71, 0.18);
  transform: translateY(-2px);
}

.plan-card.is-selected.featured {
  border-color: var(--highlight);
  box-shadow: 0 18px 40px rgba(244, 170, 28, 0.22);
}

.plan-select.is-selected {
  background: var(--navy-deep);
  color: var(--highlight);
}

/* Coming Soon — diagonal ribbon */
.plan-card.coming-soon {
  position: relative;
}

.plan-card.coming-soon .btn {
  opacity: 0.5;
  cursor: not-allowed;
}

.coming-flag {
  position: absolute;
  top: 18px;
  right: -42px;
  background: var(--navy-deep);
  color: var(--highlight);
  padding: 0.45rem 3.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(38deg);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* Custom tier secondary CTA */
.btn-ghost-dark {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--navy);
  color: #fff;
}

/* Plans note */
.plans-note {
  margin-top: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--highlight);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 2px;
}

.pn-mark {
  color: var(--highlight);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.plans-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ==========================================================================
   SUBSCRIBE PAGE — Form
   ========================================================================== */

.form-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.subscribe-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  position: relative;
  overflow: hidden;
}

.subscribe-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--highlight);
}

.form-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.form-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  background: var(--bg-warm);
  color: var(--ink);
  transition: all 0.2s ease;
  font-weight: 500;
}

.form-field input:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 39, 71, 0.08);
}

.form-fieldset {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1rem 1.4rem 1.4rem;
  margin: 0 0 1.4rem;
  background: var(--bg-warm);
}

.form-legend {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  padding: 0 0.5rem;
}

.tag-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.checkbox-v2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.88rem;
  color: var(--navy-deep);
  font-weight: 500;
  border-radius: 2px;
  user-select: none;
}

.checkbox-v2:hover {
  border-color: var(--navy);
  background: var(--paper);
  transform: translateX(2px);
}

.checkbox-v2 input {
  accent-color: var(--navy);
  cursor: pointer;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.checkbox-v2:has(input:checked) {
  border-color: var(--navy);
  background: var(--soft);
  font-weight: 600;
}

.form-submit-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
  margin-top: 0.4rem;
}

.status-msg {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  min-height: 1.2em;
}

.status-msg.ok {
  color: var(--success);
  font-weight: 600;
}

.status-msg.error {
  color: var(--danger);
  font-weight: 600;
}

/* Terms & Conditions consent block */
.consent-block {
  margin: 1.6rem 0 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.terms-scroll {
  background: var(--soft, #f5f5f0);
  border: 1px solid var(--line, #e0ddd5);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  max-height: 180px;
  overflow-y: auto;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--body, #2a2e35);
  font-family: var(--font-mono);
}

.terms-scroll p {
  margin: 0 0 0.6rem;
}

.terms-scroll ol {
  margin: 0 0 0.6rem;
  padding-left: 1.3rem;
}

.terms-scroll ol li {
  margin-bottom: 0.35rem;
}

.terms-scroll .terms-contact {
  margin-bottom: 0;
  color: var(--muted);
}

.terms-scroll .terms-contact a {
  color: var(--gold, #f4aa1c);
  text-decoration: none;
}

.terms-scroll .terms-contact a:hover {
  text-decoration: underline;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--body);
  line-height: 1.5;
}

.consent-checkbox-label input[type="checkbox"] {
  accent-color: var(--navy);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  cursor: pointer;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Active subscribe button on its own page */
.btn-register.active {
  background: var(--navy-deep);
  color: var(--highlight);
  border-color: var(--highlight);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-aside {
    max-width: 560px;
  }

  .risk-strip {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .world-map {
    border-right: none;
    border-bottom: 1px solid var(--line);
    height: 400px;
  }

  .reports-magazine {
    grid-template-columns: 1fr;
  }

  .industries-grid,
  .method-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-line { display: none; }

  .footer-dark {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }

  /* Subpages */
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .form-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Article pages */
  .article-byline {
    grid-template-columns: auto 1fr;
  }

  .byline-actions {
    grid-column: 1 / -1;
    margin-top: 0.4rem;
  }

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

  .article-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .icon-search { display: none; }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head-right {
    justify-self: start;
    text-align: left;
  }

  .risk-strip-meters {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .stat-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  /* Subpages */
  .bench-grid {
    grid-template-columns: 1fr;
  }

  .tag-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Article pages */
  .article-content > h2::before {
    display: none;
  }

  .article-content::before {
    width: 2px;
  }
}

@media (max-width: 680px) {
  section { padding: 3.5rem 0; }

  .hero { padding: 2.5rem 0 3rem; }

  .hero-headline { font-size: clamp(3rem, 14vw, 4.5rem); }

  .hl-italic { padding-left: 1rem; }

  .aside-stats { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }

  .astat strong { font-size: 1.2rem; }

  .risk-strip,
  .cta-card { padding: 1.5rem; }

  .risk-strip-meters { grid-template-columns: 1fr; }

  .brief-card {
    grid-template-columns: 1fr;
  }

  .brief-image {
    aspect-ratio: 16 / 9;
  }

  .industries-grid,
  .method-timeline,
  .stat-band-grid {
    grid-template-columns: 1fr;
  }

  .stat-band-grid { gap: 1.5rem; }

  .footer-dark {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: auto; }

  .service-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.5rem;
  }

  .ticker-label {
    padding: 0 0.8rem 0 0.8rem;
    padding-right: 1.4rem;
    font-size: 0.7rem;
  }

  .search-panel { padding: 3rem 1.5rem; margin-top: 4vh; }

  .search-input-wrap input { font-size: 1.3rem; }

  .cta-card { padding: 2rem 1.5rem; }

  .cta-section { padding: 3rem 0 4rem; }

  .hero-meta { flex-wrap: wrap; gap: 0.5rem; }

  .classification { font-size: 0.65rem; }

  .brief-body p { -webkit-line-clamp: 3; }

  .method-marker { width: 54px; height: 54px; font-size: 1.2rem; box-shadow: 0 0 0 6px var(--bg-warm); }

  .nav { min-height: 68px; gap: 0.6rem; }

  .nav-actions { gap: 0.4rem; }

  .btn-register {
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
  }

  .brand-text-header small { font-size: 0.6rem; }

  .brand-text-header span { font-size: 0.88rem; }

  .brand { gap: 0.55rem; }

  .brand-mark { width: 38px; height: 38px; }

  .icon-circle { width: 34px; height: 34px; }

  /* Subpages */
  .bench-card { padding: 1.4rem; }

  .bench-portrait { width: 54px; height: 54px; font-size: 1.2rem; }

  .bench-num { font-size: 2.2rem; }

  .bench-name { font-size: 1.3rem; }

  .plan-card { padding: 1.5rem 1.4rem; }

  .plan-name { font-size: 1.6rem; }

  .plan-price strong { font-size: 2.2rem; }

  .form-grid-v2 { grid-template-columns: 1fr; gap: 1rem; }

  .tag-grid-v2 { grid-template-columns: 1fr; }

  .form-fieldset { padding: 0.9rem 1rem 1.1rem; }

  .subscribe-shell { padding: 1.4rem 1.2rem; }

  .form-submit-row { flex-direction: column; align-items: stretch; }

  .form-submit-row .btn { width: 100%; }

  .coming-flag { font-size: 0.6rem; padding: 0.4rem 3rem; right: -38px; top: 14px; }

  /* Article pages */
  .article-hero { padding: 2rem 0 2rem; }

  .article-headline { font-size: clamp(2rem, 9vw, 2.8rem); }

  .article-lede { font-size: 1rem; }

  .article-content { padding: 1.4rem 1.2rem; }

  .article-content > h2 { font-size: 1.4rem; margin: 2rem 0 0.9rem; }

  .article-content h3 { font-size: 1.08rem; }

  .article-content > p:first-of-type::first-letter,
  .article-content .lead::first-letter {
    font-size: 2.6rem;
    margin: 0.2rem 0.4rem 0 0;
  }

  .executive-summary,
  .scenario,
  .key-takeaways {
    padding: 1.2rem 1.2rem;
  }

  .key-takeaways { padding: 1.4rem 1.3rem; }

  .article-content table,
  .article-table {
    font-size: 0.84rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .article-content table th,
  .article-content table td,
  .article-table th,
  .article-table td {
    padding: 0.7rem 0.6rem;
    white-space: normal;
    min-width: 110px;
  }

  .byline-actions { flex-direction: column; align-items: stretch; }

  .byline-btn { justify-content: center; }
}

/* ==========================================================================
   POLYMARKET GURU — NAV BUTTON
   ========================================================================== */

.btn-guru {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-guru:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(244,170,28,0.08);
}

.btn-guru.active {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(244,170,28,0.08);
}

.btn-guru svg { flex-shrink: 0; }

@media (max-width: 680px) {
  .btn-guru .guru-text { display: none; }
  .btn-guru { padding: 0.62rem 0.7rem; }
}

/* ==========================================================================
   POLYMARKET GURU — PAGE STYLES
   ========================================================================== */

/* Hero */
.guru-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.guru-hero-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3.5rem;
  align-items: center;
}

.guru-hero-left { position: relative; }

/* ── Signal Board ── */
.signal-board {
  position: relative;
  background: rgba(8,14,26,0.85);
  border: 1px solid rgba(140,163,191,0.18);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  box-shadow: 0 0 0 1px rgba(244,170,28,0.04),
              0 32px 80px rgba(0,0,0,0.5),
              inset 0 1px 0 rgba(255,255,255,0.04);
}

/* animated scan line */
.sb-scan {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(244,170,28,0.03) 45%,
    rgba(244,170,28,0.07) 50%,
    rgba(244,170,28,0.03) 55%,
    transparent 100%
  );
  animation: sb-scan 7s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sb-scan {
  0%   { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

.sb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(140,163,191,0.1);
  background: rgba(244,170,28,0.04);
}

.sb-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
}

.sb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a9070;
  animation: pulse-ring 1.8s infinite;
  flex-shrink: 0;
}

.sb-clock {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}

/* signal rows */
.sb-body {
  padding: 0.6rem 0;
  position: relative;
  z-index: 2;
}

.sb-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  animation: sb-row-in 0.4s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes sb-row-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sb-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.sb-region {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--highlight);
  font-weight: 700;
}

.sb-name {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sb-bar-track {
  width: 90px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.sb-bar {
  height: 100%;
  width: var(--w, 0%);
  background: var(--c, var(--highlight));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 0 6px color-mix(in srgb, var(--c, var(--highlight)) 50%, transparent);
}

.sb-pct {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  min-width: 3ch;
  text-align: right;
  transition: all 0.8s ease;
}

.sb-delta {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  min-width: 4ch;
  text-align: right;
}
.sb-delta.up   { color: #1a9070; }
.sb-delta.dn   { color: #c23b3b; }
.sb-delta.flat { color: rgba(255,255,255,0.35); }

/* regional risk heatmap */
.sb-heatmap {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.8rem 1rem 0.9rem;
  position: relative;
  z-index: 2;
}

.sb-section-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin: 0 0 0.65rem;
}

.sb-heat-grid { display: flex; flex-direction: column; gap: 0.45rem; }

.sb-heat-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.sb-heat-label {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.sb-heat-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.sb-heat-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}

.sb-heat-tag {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  text-align: center;
  min-width: 54px;
}
.sb-heat-tag.critical { background: rgba(194,59,59,0.2);  color: #e05252; }
.sb-heat-tag.elevated { background: rgba(214,122,31,0.2); color: #e08a3a; }
.sb-heat-tag.moderate { background: rgba(244,170,28,0.15);color: var(--highlight); }

/* board footer */
.sb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
}

.sb-engine {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}

.sb-engine-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a9070;
  animation: pulse-ring 2.4s infinite;
}

.sb-upd {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
}

.guru-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(140,163,191,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,163,191,0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.guru-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 90% at 30% 55%, rgba(244,170,28,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.guru-kicker {
  font-family: var(--font-mono);
  font-size: 0.71rem;
  letter-spacing: 0.22em;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.guru-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.2rem;
  position: relative;
}

.guru-headline em {
  color: var(--highlight);
  font-style: normal;
}

.guru-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.8rem;
  position: relative;
}

.guru-stats {
  display: flex;
  gap: 2.8rem;
  flex-wrap: wrap;
  position: relative;
}

.guru-stat { display: flex; flex-direction: column; gap: 0.18rem; }

.guru-stat-value {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
}

.guru-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Filter tabs */
.guru-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.2rem;
}

.guru-filter {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.18s ease;
  font-weight: 600;
}

.guru-filter:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.guru-filter.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
}

/* Markets grid */
.markets-section {
  padding: 5rem 0 5.5rem;
  background: var(--bg-warm);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.6rem 1.4rem;
  transition: all 0.22s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.market-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--line);
}

.market-card.geo  { border-top-color: #4a90d9; }
.market-card.econ { border-top-color: #1f6f5f; }
.market-card.tech { border-top-color: #8b5cf6; }
.market-card.pol  { border-top-color: #c23b3b; }

.market-cat {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 0.7rem;
}

.market-card.geo  .market-cat { color: #4a90d9; }
.market-card.econ .market-cat { color: #1f6f5f; }
.market-card.tech .market-cat { color: #8b5cf6; }
.market-card.pol  .market-cat { color: #c23b3b; }

.market-question {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 1.2rem;
  flex: 1;
}

.market-prob-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.market-prob-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
  min-width: 4ch;
}

.market-prob-track {
  flex: 1;
  height: 5px;
  background: var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
}

.market-prob-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}

.prob-green { background: #1a9070; }
.prob-amber { background: #d67a1f; }
.prob-red   { background: #c23b3b; }

.market-prob-label {
  font-size: 0.72rem;
  color: var(--muted-soft);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.market-assessment {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  margin-bottom: 1rem;
}

.assess-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.08rem;
}

.assess-badge.up   { background: rgba(26,144,112,0.12); color: #1a9070; }
.assess-badge.down { background: rgba(194,59,59,0.1); color: #c23b3b; }
.assess-badge.flat { background: rgba(214,122,31,0.1); color: #d67a1f; }

.assess-text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.assess-text strong { color: var(--ink-soft); }

.market-extra {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 0.7rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line-soft);
}

.market-err {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted-soft);
}

.market-bs {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.5rem;
  border-radius: 2px;
  cursor: help;
}

.market-bs.bs-high     { background: rgba(194,59,59,0.08);  color: #c23b3b; }
.market-bs.bs-moderate { background: rgba(214,122,31,0.1); color: #d67a1f; }
.market-bs.bs-low      { background: rgba(26,144,112,0.08); color: #1a9070; }

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.m-tag {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  background: var(--soft);
  color: var(--muted);
  border-radius: 2px;
}

/* Deep-dive section */
.guru-deep {
  padding: 5rem 0;
  background: var(--navy-deep);
  color: #fff;
}

.guru-deep-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.deep-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.deep-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.4rem;
  line-height: 1.15;
}

.deep-body p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.deep-body strong { color: rgba(255,255,255,0.9); }

.deep-factors {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.deep-factor {
  background: rgba(255,255,255,0.03);
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.factor-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.factor-icon.risk { background: rgba(194,59,59,0.15); color: #e05252; }
.factor-icon.bull { background: rgba(26,144,112,0.15); color: #1a9070; }
.factor-icon.warn { background: rgba(244,170,28,0.12); color: var(--highlight); }

.factor-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}

.factor-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* Disclaimer */
.guru-disclaimer {
  padding: 2rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclaimer-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.disclaimer-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244,170,28,0.1);
  color: var(--highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.disclaimer-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.disclaimer-text strong { color: var(--ink-soft); }

/* Responsive — Polymarket page */
@media (max-width: 1100px) {
  .guru-hero-layout { grid-template-columns: 1fr 380px; gap: 2.5rem; }
}

@media (max-width: 1000px) {
  .markets-grid { grid-template-columns: 1fr; }
  .guru-deep-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .guru-hero-layout { grid-template-columns: 1fr; }
  .guru-hero-right { max-width: 520px; }
  .sb-bar-track { width: 120px; }
}

@media (max-width: 680px) {
  .guru-hero { padding: 3.5rem 0 3rem; }
  .guru-stats { gap: 1.8rem; }
  .guru-stat-value { font-size: 1.3rem; }
  .sb-bar-track { width: 70px; }
  .sb-name { font-size: 0.66rem; }
}

/* ── Skeleton loading states ─────────────────────────────────────── */
@keyframes skel-shimmer {
  from { background-position: -700px 0; }
  to   { background-position: 700px 0; }
}

.skel-dark {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.13) 50%, rgba(255,255,255,0.04) 100%);
  background-size: 1400px 100%;
  animation: skel-shimmer 1.8s infinite linear;
  border-radius: 3px;
}
.skel-light {
  background: linear-gradient(90deg, #e8edf2 0%, #f4f6f9 50%, #e8edf2 100%);
  background-size: 1400px 100%;
  animation: skel-shimmer 1.8s infinite linear;
  border-radius: 4px;
  display: block;
}

/* Signal board skeleton row */
.sb-skel-row {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: fadeIn 0.3s ease both;
  animation-delay: var(--delay, 0s);
}
.sb-skel-meta  { flex: 0 0 110px; display: flex; flex-direction: column; gap: 5px; }
.sb-skel-rgn   { height: 9px;  width: 38px; }
.sb-skel-nm    { height: 7px;  width: 85px; }
.sb-skel-track { flex: 1;      height: 5px; }
.sb-skel-pct   { width: 28px;  height: 10px; }
.sb-skel-dlt   { width: 30px;  height: 9px; }

/* Heatmap skeleton row */
.sb-heat-skel { display: flex; align-items: center; gap: 0.6rem; padding: 0.28rem 0; }
.sb-heat-skel-lbl { height: 8px; width: 70px; }
.sb-heat-skel-bar { flex: 1; height: 5px; }
.sb-heat-skel-tag { height: 8px; width: 56px; }

/* Market card skeleton */
.market-card.skel-card { display: flex; flex-direction: column; gap: 0.85rem; min-height: 260px; pointer-events: none; }
.skel-ln { height: 12px; }
.skel-ln.s-sm { width: 38%; }
.skel-ln.s-md { width: 65%; }
.skel-ln.s-lg { width: 100%; }
.skel-ln.s-h  { width: 100%; height: 18px; }
.skel-bar-h   { height: 7px; width: 100%; border-radius: 3px; }
.skel-bdg     { height: 22px; width: 130px; border-radius: 20px; }

/* Market error/unavailable state */
.market-err-state {
  grid-column: 1 / -1; text-align: center; padding: 4rem 2rem;
  color: var(--muted); font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em;
}
.market-err-state svg { display: block; margin: 0 auto 1rem; opacity: 0.4; }
