:root {
  --bg: #04050a;
  --bg-2: #0a0e18;
  --panel: rgba(14, 18, 32, 0.86);
  --panel-2: rgba(12, 16, 28, 0.72);
  --text: #e9efff;
  --muted: #a9b4d0;
  --line: rgba(138, 163, 233, 0.26);
  --mint: #7ef0cf;
  --blue: #6cc2ff;
  --violet: #c9a0ff;
  --rainbow-soft: linear-gradient(90deg, rgba(126, 240, 207, 0.88), rgba(108, 194, 255, 0.86), rgba(201, 160, 255, 0.84), rgba(232, 213, 123, 0.82));
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: Helvetica, Arial, sans-serif;
  background: #000;
}

.page { max-width: 1320px; margin: 0 auto; padding: 18px 16px 56px; position: relative; }
.page::before {
  content: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(126, 160, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(126, 160, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 25%, #000 22%, transparent 85%);
  z-index: -1;
}
.logo-wrap { margin-bottom: 8px; }
.logo-wrap a { display: inline-block; }
.logo {
  display: block;
  width: min(350px, 60vw);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
.site-brand {
  display: inline-block;
  text-decoration: none;
}
.site-brand__img {
  display: block;
  width: min(390px, 56vw);
  height: auto;
}
.tagline { margin: -2px 0 12px 18px; font-size: 18px; color: #d4ddf8; letter-spacing: .02em; }

.nav {
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 40;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow: visible;
  padding-bottom: 0;
  scrollbar-width: thin;
  scrollbar-color: #3a4160 transparent;
  align-items: flex-start;
}
.nav-toggle, .nav-burger { display: none; }
.nav-burger {
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(26, 34, 62, 0.95), rgba(18, 26, 46, 0.95));
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 10px;
  width: fit-content;
  cursor: pointer;
}
.nav-burger-icon { font-size: 14px; line-height: 1; }
.nav-toggle:focus-visible + .nav-burger { outline: 2px solid rgba(125, 231, 212, 0.8); outline-offset: 2px; }

.nav a,
.nav .nav-parent {
  flex: 0 0 auto;
  min-width: calc(var(--nav-fit, 8) * 1ch);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(26, 34, 62, 0.95), rgba(18, 26, 46, 0.95));
  appearance: none;
  font: inherit;
  cursor: pointer;
}
.nav-group {
  position: relative;
  flex: 0 0 auto;
}
.nav-socials {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
}
.nav .nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(26, 34, 62, 0.95), rgba(18, 26, 46, 0.95));
  min-width: 0;
  padding: 0;
  flex: 0 0 30px;
}
.nav .nav-social-link img {
  width: 14px;
  height: 14px;
  display: block;
}
.nav-group .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.nav-caret {
  color: #9fd3ff;
  font-size: 10px;
  line-height: 1;
  transition: transform 140ms ease;
}
.nav-cascade {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: min(210px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(132, 155, 220, 0.35);
  background: linear-gradient(165deg, rgba(10, 15, 29, 0.96), rgba(12, 18, 34, 0.96));
  box-shadow: 0 16px 42px rgba(2, 5, 12, 0.6);
  z-index: 15;
  gap: 6px;
}
.nav-group:hover .nav-cascade,
.nav-group:focus-within .nav-cascade,
.nav-group.is-open .nav-cascade { display: grid; }
.nav-group:hover .nav-caret,
.nav-group:focus-within .nav-caret,
.nav-group.is-open .nav-caret {
  transform: rotate(180deg);
}
.nav-cascade a {
  min-width: 0;
  width: 100%;
  text-transform: none;
  letter-spacing: .01em;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  padding: 8px 10px;
}
.nav-cascade a.is-sub-active {
  border-color: rgba(125, 231, 212, 0.9);
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.2);
}
.nav a:hover,
.nav .nav-parent:hover { border-color: rgba(124, 169, 255, 0.7); }
.nav a.is-active,
.nav .nav-parent.is-active {
  border-color: rgba(125, 231, 212, 0.9);
  background:
    linear-gradient(135deg, rgba(30, 44, 73, 0.95), rgba(27, 30, 58, 0.95)) padding-box,
    var(--rainbow-soft) border-box;
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.2), 0 0 10px rgba(170, 152, 255, 0.16);
}
.ticker {
  margin: 0 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 13, 27, 0.92), rgba(11, 18, 34, 0.92)) padding-box,
    var(--rainbow-soft) border-box;
  overflow: hidden;
}
.ticker-news { margin-bottom: 7px; }
.ticker-stock {
  margin-top: -4px;
  margin-bottom: 12px;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(8, 18, 20, 0.92), rgba(14, 16, 32, 0.9)) padding-box,
    linear-gradient(120deg, rgba(125, 231, 212, 0.58), rgba(124, 169, 255, 0.56), rgba(201, 160, 255, 0.56)) border-box;
}
.ticker-track { display: flex; align-items: center; min-height: 40px; gap: 0; }
.ticker-stock .ticker-track { min-height: 30px; }
.ticker-label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  color: #e6fff9;
  border-right: 1px solid rgba(125, 231, 212, 0.28);
  padding: 0 10px;
  background: #000;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.ticker-label-stock {
  font-size: 10px;
  letter-spacing: .12em;
  color: #d9fff3;
  border-right-color: rgba(126, 240, 207, 0.34);
  padding: 0 9px;
  background: rgba(4, 10, 16, 0.95);
}
.ticker-stream {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.ticker-move {
  font-size: 14px;
  color: #dce9ff;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding-left: 0;
  animation: ticker-move 102s linear infinite;
  will-change: transform;
}
.ticker-news .ticker-move { animation-duration: 92s; }
.ticker-stock .ticker-move {
  animation-duration: 84s;
  font-size: 12px;
  color: #d8f6ff;
}
.ticker-item { color: #dce9ff; text-decoration: none; margin-right: 10px; }
.ticker-item:hover { color: #eff8ff; text-decoration: underline; }
.ticker-source { color: #9fb7eb; font-size: 12px; }
.ticker-sep { display: inline-block; margin: 0 12px; color: #7ef0cf; }
.ticker-sep-stock { color: rgba(125, 231, 212, 0.84); margin: 0 10px; }
.ticker-stock-item {
  margin-right: 2px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 650;
}
.stock-symbol { color: #ecf7ff; letter-spacing: .03em; }
.stock-price { color: #c9dcff; margin-left: 4px; }
.stock-delta { margin-left: 4px; font-weight: 750; letter-spacing: .01em; }
.stock-up .stock-delta { color: #76eebf; }
.stock-down .stock-delta { color: #ff8eae; }
.stock-flat .stock-delta { color: #9db3da; }
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: linear-gradient(165deg, var(--panel), var(--panel-2));
  backdrop-filter: none;
}
.home-brand-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin-bottom: 14px;
  padding: 18px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  border-color: rgba(126, 240, 207, 0.22);
  background:
    linear-gradient(90deg, rgba(6, 10, 20, 0.22) 0%, rgba(6, 10, 20, 0.08) 28%, rgba(6, 10, 20, 0.05) 56%, rgba(6, 10, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 14, 28, 0.02), rgba(7, 14, 28, 0.18)),
    var(--home-hero-image, image-set(
      url("aura-hero.webp") type("image/webp"),
      url("aura-hero.png") type("image/png")
    )) var(--home-hero-position, 22% 46%) / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(126, 240, 207, 0.06), 0 18px 48px rgba(2, 5, 12, 0.34);
}
.home-brand-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(520px, calc(100% - 36px));
  border-radius: 28px;
  border: 1px solid rgba(136, 167, 239, 0.18);
  background:
    linear-gradient(160deg, rgba(5, 10, 23, 0.84), rgba(7, 12, 25, 0.58)),
    linear-gradient(120deg, rgba(126, 240, 207, 0.12), rgba(108, 194, 255, 0.1), rgba(201, 160, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 54px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.home-brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 38%, rgba(126, 240, 207, 0.24), transparent 24%),
    radial-gradient(circle at 34% 28%, rgba(108, 194, 255, 0.18), transparent 22%),
    radial-gradient(circle at 76% 18%, rgba(168, 139, 250, 0.14), transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(244, 200, 143, 0.1), transparent 18%);
}
.home-brand-hero__content {
  position: relative;
  z-index: 1;
  width: clamp(420px, 37vw, 500px);
  max-width: calc(100% - 32px);
  margin: 18px 18px 18px auto;
  padding: 18px 22px 20px;
  align-self: center;
  border: 1px solid rgba(132, 155, 220, 0.18);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(7, 12, 24, 0.82), rgba(6, 10, 21, 0.54));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.home-brand-hero .kicker {
  margin: 0 0 10px;
}
.home-brand-hero h1 {
  max-width: 9ch;
  margin: 0 0 14px;
  font-size: clamp(1.95rem, 3.45vw, 3.1rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.home-brand-hero__lead {
  max-width: 25ch;
  color: #d5e4ff;
  font-size: 0.96rem;
  line-height: 1.46;
}
.home-brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.home-brand-hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eff5ff;
  background:
    linear-gradient(145deg, rgba(8, 14, 28, 0.88), rgba(10, 16, 31, 0.82)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.58), rgba(108, 194, 255, 0.5), rgba(201, 160, 255, 0.56)) border-box;
  box-shadow: inset 0 0 0 1px rgba(126, 240, 207, 0.08);
}
.home-brand-hero__link:hover {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(145deg, rgba(14, 21, 41, 0.96), rgba(15, 19, 36, 0.92)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.74), rgba(108, 194, 255, 0.68), rgba(201, 160, 255, 0.72)) border-box;
}
.aur-ad-slot {
  margin: 0 0 14px;
  border-color: rgba(138, 163, 233, 0.22);
  background:
    linear-gradient(145deg, rgba(8, 14, 28, 0.9), rgba(10, 16, 31, 0.86)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.14), rgba(108, 194, 255, 0.12), rgba(201, 160, 255, 0.14)) border-box;
  padding: 10px 12px 12px;
}
.aur-ad-slot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.aur-ad-slot__label,
.aur-ad-slot__placement {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9fb6dd;
}
.aur-ad-slot__placement {
  color: #7ef0cf;
}
.aur-ad-slot__ins {
  min-height: 96px;
}
.aur-ad-slot-inline,
.aur-ad-slot-footer {
  width: 100%;
}
.aur-ad-slot-inline .aur-ad-slot__ins,
.aur-ad-slot-footer .aur-ad-slot__ins {
  min-height: 90px;
}
.aur-ad-slot-rail {
  margin-top: 12px;
  padding: 10px;
}
.aur-ad-slot-rail .aur-ad-slot__ins {
  min-height: 250px;
}
.bench-hero-pro {
  background: linear-gradient(135deg, rgba(58, 89, 179, 0.36), rgba(132, 64, 196, 0.32), rgba(47, 109, 146, 0.34));
}
.kicker { margin: 0 0 7px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); }
h1 { text-shadow: 0 0 14px rgba(148, 183, 255, 0.14); }
h1 { margin: 0 0 8px; font-size: clamp(1.7rem, 4vw, 2.9rem); letter-spacing: -0.01em; }
h2 { margin: 0 0 8px; font-size: 1.07rem; }
.lead { margin: 0; color: var(--muted); line-height: 1.45; }

.news-3col {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.26fr 1.08fr .84fr;
  gap: 12px;
  align-items: start;
}
.section-shell {
  position: relative;
  border: 1px solid rgba(123, 144, 208, 0.25);
  background:
    linear-gradient(150deg, rgba(9, 15, 28, 0.93), rgba(7, 12, 24, 0.92)) padding-box,
    linear-gradient(120deg, rgba(125, 231, 212, 0.18), rgba(124, 169, 255, 0.14), rgba(201, 160, 255, 0.18)) border-box;
}
.section-shell-news {
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.08);
}
.section-shell-signal {
  box-shadow: inset 0 0 0 1px rgba(124, 169, 255, 0.1);
}
.section-shell-ops {
  box-shadow: inset 0 0 0 1px rgba(201, 160, 255, 0.1);
}
.section-shell-subscribe {
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.08);
}
.section-shell-subscribe-meta {
  box-shadow: inset 0 0 0 1px rgba(124, 169, 255, 0.1);
}
.section-shell-archive {
  box-shadow: inset 0 0 0 1px rgba(201, 160, 255, 0.1);
}
.section-shell-about {
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.1);
}
.section-shell-debates {
  box-shadow: inset 0 0 0 1px rgba(201, 160, 255, 0.1);
}
.section-shell-education {
  box-shadow: inset 0 0 0 1px rgba(124, 169, 255, 0.1);
}
.section-shell-tools {
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.09);
}
.section-shell-promptlab {
  box-shadow: inset 0 0 0 1px rgba(124, 169, 255, 0.12);
}
.section-shell-reskill {
  box-shadow: inset 0 0 0 1px rgba(201, 160, 255, 0.11);
}
.section-hero-news,
.section-hero-subscribe,
.section-hero-archive,
.section-hero-about,
.section-hero-debates,
.section-hero-education,
.section-hero-tools,
.section-hero-promptlab,
.section-hero-reskill {
  position: relative;
}
.section-hero-news::after,
.section-hero-subscribe::after,
.section-hero-archive::after,
.section-hero-about::after,
.section-hero-debates::after,
.section-hero-education::after,
.section-hero-tools::after,
.section-hero-promptlab::after,
.section-hero-reskill::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 231, 212, 0.38), rgba(124, 169, 255, 0.2), rgba(201, 160, 255, 0.38));
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(13, 20, 40, 0.9), rgba(14, 18, 30, 0.88));
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--rainbow-soft);
  opacity: .9;
}
.tools-framework-shell,
.careers-stage,
.resume-stage {
  display: grid;
  gap: 16px;
}
.tools-framework-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 16px;
  align-items: end;
}
.tools-framework-head--compact {
  grid-template-columns: 1fr;
  gap: 8px;
}
.tools-principles-grid,
.tools-paths-grid,
.career-spotlight-grid,
.career-hub-grid,
.resume-before-after-grid {
  display: grid;
  gap: 12px;
}
.tools-principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tools-paths-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tools-framework-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 231, 212, 0.2), rgba(124, 169, 255, 0.38), rgba(201, 160, 255, 0.2));
}
.tools-principles-card,
.tools-path-card,
.career-spotlight-card,
.career-hub-card {
  display: grid;
  gap: 10px;
  align-content: start;
}
.tools-principles-card h3,
.tools-path-card h3,
.career-spotlight-card h2,
.career-hub-card h2 {
  margin: 0;
}
.career-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}
.career-spotlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.career-hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.careers-stage {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
}
.careers-stage__copy,
.resume-stage__copy {
  display: grid;
  gap: 14px;
}
.careers-stage__stats,
.resume-stage__checklist,
.resume-template-grid {
  display: grid;
  gap: 10px;
}
.careers-stage__stats article,
.resume-stage__checklist article,
.resume-template-grid article {
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 10px;
  padding: 12px;
  background: rgba(8, 13, 24, 0.58);
}
.careers-stage__stats strong,
.resume-stage__checklist strong,
.resume-template-grid strong {
  display: block;
  font-size: 1.4rem;
  color: #e7f6ff;
}
.careers-stage__stats span,
.resume-stage__checklist span,
.resume-template-grid span {
  display: block;
  margin-top: 4px;
  color: #b9cae8;
  font-size: 13px;
  line-height: 1.45;
}
.resume-stage {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: start;
}
.resume-before-after-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resume-example {
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 10px;
  padding: 14px;
  background: rgba(8, 13, 24, 0.62);
  color: #c9d7f0;
}
.resume-example--strong {
  border-color: rgba(125, 231, 212, 0.34);
  background: linear-gradient(145deg, rgba(8, 13, 24, 0.76), rgba(10, 20, 24, 0.66));
  color: #e8fff8;
}
.tools-grid,
.promptlab-grid,
.reskill-grid {
  padding: 12px;
  border-radius: 6px;
}
.promptlab-flow {
  padding: 12px;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .tools-grid,
  .promptlab-grid,
  .reskill-grid,
  .promptlab-flow {
    padding: 8px;
  }
}
.right-col {
  position: relative;
  align-self: start;
  height: auto;
}
.split-line { height: 1px; margin: 14px 0; background: linear-gradient(90deg, rgba(126, 240, 207, .55), rgba(201, 160, 255, .55)); }

.panel-list {
  margin-top: 8px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 2px;
  background: rgba(9, 13, 23, 0.66);
  overflow: hidden;
}
.story-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.story-row:last-child { border-bottom: 0; }
.story-rank { font-size: 16px; font-weight: 800; color: #b9cdfb; }
.story-link { text-decoration: none; color: #e8eeff; font-size: 14px; line-height: 1.28; }
.story-link:hover { color: #d8f8ff; text-decoration: underline; }
.story-meta { margin-top: 4px; font-size: 12px; color: var(--muted); }
.story-score { margin-top: 3px; font-size: 11px; color: #9bb4e8; }
.story-row.compact .story-link { font-size: 13px; }
.blog-report-row {
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: start;
}
.blog-thumb-link {
  display: block;
  width: 120px;
  height: 76px;
  border-radius: 8px;
  border: 1px solid rgba(132, 155, 220, 0.28);
  overflow: hidden;
  background: linear-gradient(140deg, rgba(11, 17, 34, 0.9), rgba(13, 18, 30, 0.92));
}
.blog-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-thumb-fallback {
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b6c9f3;
}
.story-badges {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.story-badge {
  border: 1px solid rgba(132, 155, 220, 0.36);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(16, 24, 43, 0.66);
  color: #dbe8ff;
}
.prediction-terminal {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(7, 14, 24, 0.96), rgba(8, 12, 28, 0.95)) padding-box,
    linear-gradient(115deg, rgba(126, 240, 207, 0.78), rgba(124, 169, 255, 0.74), rgba(201, 160, 255, 0.78)) border-box;
  box-shadow: inset 0 0 0 1px rgba(132, 155, 220, 0.12), 0 8px 24px rgba(8, 12, 24, 0.45);
}
.prediction-head h2 { margin: 0 0 6px; font-size: 1.24rem; }
.prediction-head .section-desc { margin: 0 0 10px; }
.prediction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.prediction-exchange {
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(140deg, rgba(11, 18, 34, 0.82), rgba(7, 12, 24, 0.84)) padding-box,
    linear-gradient(120deg, rgba(125, 231, 212, 0.22), rgba(124, 169, 255, 0.2), rgba(201, 160, 255, 0.22)) border-box;
  overflow: hidden;
}
.prediction-exchange-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #dbf0ff;
  border-bottom: 1px solid rgba(132, 155, 220, 0.22);
  background: rgba(9, 15, 30, 0.86);
}
.prediction-list { display: grid; gap: 0; }
.prediction-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-top: 1px solid rgba(132, 155, 220, 0.14);
}
.prediction-row:first-child { border-top: 0; }
.prediction-rank {
  font-size: 16px;
  font-weight: 800;
  color: #b9cdfb;
  line-height: 1;
  padding-top: 2px;
}
.prediction-body { display: grid; gap: 5px; }
.prediction-link {
  color: #b5ecff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 15px;
  line-height: 1.28;
}
.prediction-link:hover { color: #e5fbff; }
.prediction-meta {
  color: #9fb4da;
  font-size: 12px;
}
.prediction-badges { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.badge-label {
  border-color: rgba(201, 160, 255, 0.52);
  color: #eddcff;
}
.score-high {
  border-color: rgba(126, 240, 207, 0.68);
  color: #c9fff0;
  box-shadow: inset 0 0 0 1px rgba(126, 240, 207, 0.2);
}
.score-strong {
  border-color: rgba(108, 194, 255, 0.62);
  color: #d6eeff;
  box-shadow: inset 0 0 0 1px rgba(108, 194, 255, 0.2);
}
.score-watch {
  border-color: rgba(201, 160, 255, 0.62);
  color: #ead9ff;
  box-shadow: inset 0 0 0 1px rgba(201, 160, 255, 0.2);
}
.score-low {
  border-color: rgba(232, 213, 123, 0.6);
  color: #f5ebbe;
  box-shadow: inset 0 0 0 1px rgba(232, 213, 123, 0.2);
}
.story-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.story-tag {
  border: 1px solid rgba(132, 155, 220, 0.32);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  color: #cfe0ff;
  background: rgba(12, 18, 32, 0.76);
  text-transform: lowercase;
}

.tag-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-post-shell {
  padding: 18px 22px 22px;
}

.blog-post-meta {
  margin-bottom: 12px;
}

.blog-post-article {
  max-width: 860px;
}

.blog-post-article > * + * {
  margin-top: 14px;
}

.blog-post-article h2 {
  margin: 34px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #eff5ff;
}

.blog-post-article h3 {
  margin: 22px 0 10px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: #edf4ff;
}

.blog-post-article p,
.blog-post-article li {
  font-size: 18px;
  line-height: 1.72;
  color: #d9e6ff;
}

.blog-post-article a {
  color: #9fe7ff;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-post-article ul,
.blog-post-article ol {
  padding-left: 24px;
}

.blog-post-article li + li {
  margin-top: 8px;
}

.blog-post-article .report-map-nav {
  margin-top: 6px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 16, 32, 0.86), rgba(7, 12, 25, 0.78));
}

.blog-post-article .report-map-nav h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.blog-post-article .report-list {
  margin: 0;
}

.blog-post-article .report-section {
  padding-top: 6px;
}

.blog-post-article .report-section + .report-section,
.blog-post-article .report-map-nav + .report-section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(132, 155, 220, 0.18);
}

.blog-post-article .report-section-summary {
  background: linear-gradient(180deg, rgba(10, 17, 33, 0.52), rgba(7, 12, 25, 0));
  border-radius: 14px;
  padding: 18px 18px 4px;
}

.blog-post-article .report-signal-header {
  margin-bottom: 14px;
}

.blog-post-article .report-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fcff0;
}

.blog-post-article .report-source-line {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #9db4dc;
}

.blog-post-article .report-section-meta {
  padding: 16px 18px 6px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  border-radius: 14px;
  background: rgba(9, 14, 27, 0.62);
}

@media (max-width: 720px) {
  .blog-post-shell {
    padding: 14px 14px 18px;
  }

  .blog-post-article p,
  .blog-post-article li {
    font-size: 16px;
    line-height: 1.68;
  }

  .blog-post-article .report-map-nav {
    padding: 14px 14px 10px;
  }

  .blog-post-article .report-section-summary,
  .blog-post-article .report-section-meta {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.coffee-link img {
  width: 100%;
  max-width: 220px;
  margin: 0;
  border: 1px solid rgba(125, 231, 212, 0.25);
  border-radius: 4px;
  display: block;
}
.donate-shell {
  margin-top: 4px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 10px;
  padding: 10px;
  background: rgba(8, 12, 22, 0.82);
  perspective: 820px;
}
.donate-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.donate-tab {
  border: 1px solid rgba(132, 155, 220, 0.34);
  background: rgba(12, 17, 31, 0.85);
  color: #cfdcff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.donate-tab.is-active {
  border-color: rgba(159,186,255,.7);
  background: linear-gradient(135deg, rgba(83,117,224,.45), rgba(154,96,208,.38));
  color: #eef4ff;
}
.donate-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid rgba(180, 197, 235, 0.45);
  color: #eef4ff;
  background: rgba(32, 42, 68, 0.8);
}
.donate-icon-cash { border-color: rgba(126, 240, 207, 0.6); color: #7ef0cf; }
.donate-icon-venmo { border-color: rgba(131, 186, 255, 0.6); color: #9bd3ff; }
.donate-icon-btc { border-color: rgba(255, 197, 120, 0.65); color: #f4c574; }
.donate-icon-eth { border-color: rgba(194, 163, 255, 0.65); color: #d4bcff; }
.donate-icon-xtz { border-color: rgba(116, 193, 255, 0.65); color: #8fd2ff; }
.donate-qr-wrap img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform, filter;
}
.donate-qr-wrap img.is-flipping {
  animation: qrFlip 420ms ease;
}
.donate-foot { margin-top: 8px; }
.scan-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #dff3ff;
  border: 1px solid rgba(126, 240, 207, 0.46);
  background: rgba(17, 26, 42, 0.9);
  border-radius: 999px;
  padding: 4px 8px;
}
@keyframes qrFlip {
  0% { transform: rotateY(0deg) translateZ(0); filter: saturate(1); }
  40% { transform: rotateY(18deg) translateZ(8px); filter: saturate(1.15); }
  100% { transform: rotateY(0deg) translateZ(0); filter: saturate(1); }
}

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

.meta-count { color: var(--muted); font-size: 12px; }
.section-desc { margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.tool-desc { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.util-compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.util-compact-card { margin: 0; }
.util-compact-card h3 { margin: 0 0 4px; font-size: 14px; }
.api-pre {
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 8px;
  background: rgba(6, 11, 21, 0.85);
  color: #dff0ff;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.dir-table-wrap { overflow: auto; max-height: 430px; }
.dir-table-wrap.no-limit { max-height: none; }
.dir-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.dir-table th, .dir-table td { border: 1px solid rgba(123, 144, 208, 0.26); padding: 8px 10px; text-align: left; vertical-align: top; font-size: 13px; }
.dir-table th { background: rgba(24, 31, 56, 0.92); color: #dce6ff; position: sticky; top: 0; }
.dir-table a { color: #d8e6ff; text-decoration: none; }
.dir-table a:hover { text-decoration: underline; }

.bench-pro-wrap { margin-top: 14px; }
.bench-toolbar { display: grid; gap: 10px; margin-bottom: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bench-label { color: var(--muted); font-size: 11px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.bench-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.bm-filter, .bm-tier {
  border: 1px solid rgba(140, 165, 235, 0.35);
  background: rgba(14, 19, 34, 0.8);
  color: #d9e5ff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
}
.bm-filter.is-active, .bm-tier.is-active {
  border-color: rgba(125, 231, 212, 0.7);
  background: linear-gradient(135deg, rgba(81, 106, 196, 0.35), rgba(143, 88, 207, 0.35));
}
.bench-scroll { overflow: auto; }
.bench-table { width: 100%; min-width: 980px; border-collapse: collapse; }
.bench-table th, .bench-table td { border: 1px solid rgba(120, 140, 201, 0.28); padding: 8px 10px; text-align: center; font-size: 12px; }
.bench-table th:first-child, .bench-table td:first-child { text-align: left; }
.bench-table thead th { background: rgba(26, 33, 60, 0.94); color: #dbe6ff; position: sticky; top: 0; }
.bm-model { font-weight: 700; }
.bm-meta { font-size: 11px; color: var(--muted); }
.bm-sort { border: 0; background: transparent; color: #e7ecff; cursor: pointer; font-weight: 700; border-radius: 8px; padding: 2px 8px; transition: box-shadow 160ms ease, background 160ms ease, color 160ms ease; }
.bm-sort.is-active {
  color: #f6fbff;
  background: linear-gradient(135deg, rgba(81, 106, 196, 0.34), rgba(143, 88, 207, 0.28));
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.58), 0 0 0 1px rgba(255,255,255,0.06);
}
.bench-note { margin-top: 9px; color: var(--muted); font-size: 12px; }
.bench-tier-5 { background: linear-gradient(135deg, rgba(56, 198, 148, .42), rgba(60, 120, 210, .26)); }
.bench-tier-4 { background: linear-gradient(135deg, rgba(54, 155, 225, .38), rgba(90, 102, 219, .24)); }
.bench-tier-3 { background: linear-gradient(135deg, rgba(101, 128, 232, .32), rgba(128, 86, 214, .2)); }
.bench-tier-2 { background: linear-gradient(135deg, rgba(130, 94, 210, .28), rgba(150, 76, 188, .18)); }
.bench-tier-1 { background: linear-gradient(135deg, rgba(168, 80, 160, .24), rgba(136, 64, 126, .18)); }

.step-flow {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.step-card {
  border: 1px solid rgba(129, 153, 221, 0.28);
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(15, 19, 33, 0.88), rgba(11, 14, 26, 0.88));
}
.step-card pre { margin: 8px 0; padding: 10px; border-radius: 10px; border: 1px solid rgba(130, 154, 223, .35); background: rgba(6, 10, 20, .72); overflow-x: auto; }
.step-card code { color: #dff3ff; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; }
.step-id {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid rgba(125, 231, 212, 0.5);
  border-radius: 999px;
  color: #d4fff7;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.influencer-tight {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.influencer-tight a {
  text-decoration: none;
  color: #dce8ff;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 4px;
  padding: 6px 6px;
  font-size: 12px;
  background: rgba(10, 14, 24, 0.6);
  text-align: center;
}
.influencer-tight a:hover { border-color: rgba(125, 231, 212, 0.7); }

.yt-row {
  display: grid;
  grid-template-columns: 44px minmax(220px, 340px) 1fr;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.yt-row:last-child { border-bottom: 0; }
.yt-rank { font-weight: 800; color: #bdd2ff; }
.yt-embed iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 8px; background: #000; }
.yt-desc { margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.yt-grid-host {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.yt-grid-host .yt-tutorial-card {
  grid-template-columns: 1fr;
  gap: 8px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 8px;
  background: rgba(8, 14, 28, 0.62);
  padding: 12px;
  border-bottom: 1px solid rgba(132, 155, 220, 0.24);
}
.yt-grid-host .yt-rank {
  font-size: 12px;
  letter-spacing: .05em;
}
.yt-grid-host .yt-copy .story-link {
  display: inline-block;
  margin-bottom: 4px;
}

.subscribe-form { display: grid; gap: 8px; }
.subscribe-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: stretch;
  padding: 4px;
  border: 1px solid rgba(117,130,170,.46);
  border-radius: 12px;
  background: rgba(8,12,22,.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.subscribe-row input {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 14px;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  min-width: 0;
}
.subscribe-row input:focus {
  outline: none;
}
.subscribe-row button {
  border: 1px solid rgba(159,186,255,.62);
  background: linear-gradient(135deg, rgba(83,117,224,.62), rgba(154,96,208,.56));
  color: #eef3ff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.subscribe-row button:hover { box-shadow: 0 0 14px rgba(180, 146, 255, 0.22); }
.subscribe-note, .subscribe-status { color: var(--muted); font-size: 13px; margin: 0; }
.subscribe-inline-module {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, .86fr);
  gap: 14px;
  align-items: start;
}
.subscribe-inline-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}
.subscribe-inline-copy h2 { margin: 2px 0 4px; }
.subscribe-inline-copy .section-desc { margin-bottom: 0; }
.subscribe-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.subscribe-inline-points span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(132, 155, 220, 0.28);
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.78);
  color: #dbe8ff;
  font-size: 12px;
  line-height: 1.2;
}
.subscribe-inline-form {
  padding: 12px;
  border: 1px solid rgba(123, 144, 208, 0.24);
  border-radius: 14px;
  background: rgba(6, 11, 21, 0.58);
  align-content: start;
}
.subscribe-inline-form label {
  font-size: 13px;
  color: #d9e7ff;
}
.subscribe-inline-module-full {
  gap: 12px;
}
.subscribe-inline-module-full .subscribe-inline-copy {
  gap: 7px;
}
.subscribe-inline-module-full .subscribe-inline-form {
  width: min(100%, 560px);
  justify-self: end;
  align-self: center;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.subscribe-inline-module-full .subscribe-inline-form label {
  margin-bottom: 2px;
}
.subscribe-inline-module-full .subscribe-row {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.subscribe-inline-module-full .subscribe-note,
.subscribe-inline-module-full .subscribe-status {
  font-size: 12px;
}
.subscribe-inline-module-compact {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.82fr);
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.subscribe-inline-module-compact .subscribe-inline-copy {
  gap: 6px;
}
.subscribe-inline-module-compact .kicker {
  margin-bottom: 0;
}
.subscribe-inline-module-compact .subscribe-inline-copy h2 {
  font-size: 30px;
  line-height: 1.08;
}
.subscribe-inline-module-compact .subscribe-inline-copy .section-desc {
  font-size: 16px;
  color: #bfcdeb;
}
.subscribe-inline-module-compact .subscribe-inline-points {
  margin-top: 2px;
}
.subscribe-inline-module-compact .subscribe-inline-points span {
  padding: 5px 9px;
  font-size: 11px;
}
.subscribe-inline-module-compact .subscribe-inline-form {
  padding: 10px;
}
.subscribe-inline-module-stacked {
  grid-template-columns: 1fr;
}
.subscribe-inline-module-stacked .subscribe-row {
  grid-template-columns: 1fr;
  gap: 8px;
}
.subscribe-inline-module-stacked .subscribe-row input {
  border-radius: 8px;
}
.subscribe-inline-module-stacked .subscribe-row button {
  width: 100%;
}
.subscribe-inline-module-stacked .subscribe-inline-form {
  width: 100%;
}
.subscribe-inline-module-stacked.subscribe-inline-module-compact .subscribe-inline-copy h2 {
  font-size: clamp(2rem, 3vw, 2.55rem);
}
.sticky-subscribe {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 18px);
  width: min(1120px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(129, 154, 220, 0.28);
  background:
    linear-gradient(145deg, rgba(6, 12, 24, 0.98), rgba(8, 14, 31, 0.96)) padding-box,
    linear-gradient(120deg, rgba(125, 231, 212, 0.22), rgba(124, 169, 255, 0.18), rgba(201, 160, 255, 0.22)) border-box;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 55;
}
.sticky-subscribe.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.sticky-subscribe-copy {
  display: grid;
  gap: 4px;
}
.sticky-subscribe-copy strong {
  font-size: 16px;
  color: #eef4ff;
  line-height: 1.3;
}
.sticky-subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(117,130,170,.46);
  border-radius: 12px;
  background: rgba(8,12,22,.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.sticky-subscribe-form input {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 14px;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  min-width: 0;
}
.sticky-subscribe-form input:focus {
  outline: none;
}
.sticky-subscribe-form button {
  border: 1px solid rgba(159,186,255,.6);
  background: linear-gradient(135deg, rgba(83,117,224,.62), rgba(154,96,208,.56));
  color: #eef3ff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.sticky-turnstile {
  grid-column: 1 / -1;
  min-height: 0;
  display: none;
}
.sticky-turnstile.is-ready {
  display: block;
}
.sticky-subscribe .subscribe-status {
  grid-column: 1 / -1;
}
.subscribe-modal-shell {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}
.subscribe-modal-shell.is-open { display: flex; }
.subscribe-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.74);
  backdrop-filter: blur(6px);
}
.subscribe-modal {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100vw - 28px));
  padding: 22px;
}
.subscribe-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(159,186,255,.42);
  background: rgba(9, 14, 30, 0.82);
  color: #eef3ff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.turnstile-container { min-height: 0; max-width: 100%; overflow: hidden; display: none; }
.turnstile-container.is-ready { display: block; min-height: 66px; }
.turnstile-container > div,
.turnstile-container iframe { max-width: 100% !important; width: 100% !important; }
.subscribe-main { grid-column: span 1; }
.subscribe-summary { grid-column: span 1; }
.subscribe-btc { grid-column: 1 / -1; }
.btc-qr-wrap img { width: min(280px, 100%); max-width: 100%; margin: 4px 0 0; border-radius: 8px; }
.venmo-qr-wrap img { width: min(220px, 100%); max-width: 100%; margin: 8px 0 0; border-radius: 8px; }
.subscribe-address-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.subscribe-address-row code {
  display: block;
  padding: 8px 10px;
  border: 1px solid rgba(132, 155, 220, 0.3);
  border-radius: 8px;
  background: rgba(8, 12, 22, 0.9);
  color: #d7e7ff;
  font-size: 12px;
  line-height: 1.35;
  word-break: break-all;
}
.subscribe-address-row button {
  border: 1px solid rgba(159,186,255,.6);
  background: linear-gradient(135deg, rgba(83,117,224,.45), rgba(154,96,208,.4));
  color: #eef3ff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.subscribe-address-row button:hover { box-shadow: 0 0 14px rgba(180, 146, 255, 0.22); }

.kpi-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.kpi { border: 1px solid rgba(117,130,170,.35); border-radius: 10px; padding: 10px; background: rgba(10,14,24,.7); }
.kpi h3 { margin: 0; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.kpi p { margin: 6px 0 0; font-size: 22px; font-weight: 700; color: #dce8ff; }
.stats-grid {
  display: block;
  margin-top: 16px;
  column-count: 2;
  column-gap: 14px;
}
.stats-grid > .card {
  display: inline-block;
  width: 100%;
  min-height: 0;
  margin: 0 0 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.bars { display: grid; gap: 8px; }
.bar-row { display: grid; grid-template-columns: 210px 1fr 70px; gap: 8px; align-items: center; font-size: 12px; }
.bar-row span { color: #dbe6ff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar { height: 10px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, rgba(121,194,255,.9), rgba(178,130,248,.85)); }
.bar-row b { text-align: right; color: #b9c7ea; }
.stats-canvas { width: 100%; height: auto; border: 1px solid rgba(117, 130, 170, 0.35); border-radius: 10px; background: rgba(6, 10, 20, 0.85); margin-bottom: 10px; }
.stats-canvas-sm { max-width: 520px; }
.roi-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
  align-items: end;
}
.roi-controls label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  min-width: 0;
  line-height: 1.25;
}
.roi-controls input {
  border: 1px solid rgba(117,130,170,.5);
  background: rgba(8,12,22,.9);
  color: var(--text);
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  width: 100%;
  min-width: 0;
}
.roi-investment-note strong { color: #f0c36a; }
.roi-job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.roi-job {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  align-items: start;
  padding: 8px;
  border: 1px solid rgba(117,130,170,.35);
  border-radius: 8px;
  background: rgba(10,14,24,.72);
}
.roi-job input { margin-top: 2px; }
.roi-job span { font-size: 13px; color: #dbe6ff; }
.roi-job small { grid-column: 2; font-size: 11px; color: var(--muted); }
.role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.role-chip {
  border: 1px solid rgba(132, 155, 220, 0.3);
  background: rgba(12, 17, 30, 0.9);
  color: #dce9ff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
}
.compose-shell {
  display: grid;
  gap: 16px;
}
.compose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 16px;
  align-items: start;
}
.compose-main, .compose-side {
  display: grid;
  gap: 14px;
}
.compose-panel,
.compose-side-card,
.compose-preview-shell,
.manage-sidebar-card,
.manage-editor-card,
.manage-field-cluster {
  padding: 16px;
  border: 1px solid rgba(117,130,170,.28);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(6,10,20,.92), rgba(5,10,24,.78));
  box-shadow: inset 0 1px 0 rgba(190, 215, 255, 0.04);
}
.compose-panel-head,
.compose-side-head,
.manage-panel-head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.compose-panel-head h2,
.compose-side-head h2,
.manage-panel-head h2 {
  margin: 0;
  font-size: 1.25rem;
}
.compose-panel-head p,
.compose-side-head p,
.manage-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.compose-field,
.manage-field {
  display: grid;
  gap: 7px;
}
.compose-field span,
.manage-field span,
.compose-fieldset-head span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9cb4e6;
}
.compose-main input,
.compose-side input,
.compose-side textarea,
.compose-main textarea,
.manage-editor-card input,
.manage-editor-card textarea,
.manage-sidebar-card input,
.manage-sidebar-card select {
  border: 1px solid rgba(117,130,170,.5);
  background: rgba(8,12,22,.9);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}
.compose-field-grid,
.manage-meta-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.compose-side-stack,
.manage-sidebar-stack {
  display: grid;
  gap: 14px;
}
.compose-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding: 10px;
  border: 1px solid rgba(117,130,170,.24);
  border-radius: 12px;
  background: rgba(12,18,34,.82);
}
.compose-toolbar button, .compose-attach { border: 1px solid rgba(129, 151, 220, 0.5); background: rgba(14, 20, 37, 0.9); color: #e3eeff; border-radius: 8px; padding: 7px 10px; font-size: 12px; cursor: pointer; }
.compose-attach { display: inline-flex; align-items: center; }
#compose-image { display: none; }
.compose-editor {
  min-height: 520px;
  border: 1px solid rgba(117,130,170,.5);
  background: rgba(8,12,22,.9);
  color: var(--text);
  padding: 16px;
  border-radius: 12px;
  line-height: 1.62;
  overflow: auto;
}
.compose-editor:focus { outline: 2px solid rgba(125, 231, 212, 0.5); outline-offset: 2px; }
.compose-actions,
.compose-action-bar,
.manage-action-bar {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.compose-action-bar,
.manage-action-bar {
  margin-top: 0;
  padding: 12px 14px;
  border: 1px solid rgba(117,130,170,.24);
  border-radius: 14px;
  background: rgba(8,14,28,.8);
  justify-content: space-between;
}
.manage-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 2px 0 4px;
}
.compose-action-bar-main,
.compose-action-bar-links,
.manage-publish-links,
.manage-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.compose-actions button,
.compose-action-bar button,
.manage-action-bar button,
.manage-action-row button {
  border: 1px solid rgba(159,186,255,.6);
  background: linear-gradient(135deg, rgba(83,117,224,.45), rgba(154,96,208,.4));
  color: #eef3ff;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.compose-actions button:hover,
.compose-action-bar button:hover,
.manage-action-bar button:hover,
.manage-action-row button:hover {
  box-shadow: 0 0 14px rgba(180, 146, 255, 0.22);
}
.compose-preview-shell h2,
.manage-sidebar-card h2,
.manage-editor-card h2 {
  margin: 0;
}
.compose-preview-shell .card {
  margin: 0;
}
.compose-preview-frame {
  min-height: 240px;
}
.compose-side-card textarea#mj-prompt {
  min-height: 220px;
}
.manage-shell {
  display: grid;
  gap: 14px;
}
.manage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: start;
}
.manage-sidebar-card {
  position: sticky;
  top: 14px;
}
#manage-post-select {
  width: 100%;
  min-height: 420px;
  padding: 8px;
  border: 1px solid rgba(117,130,170,.32);
  border-radius: 12px;
  background: rgba(3,7,17,.96);
  color: var(--text);
}
#manage-post-select option {
  padding: 10px 12px;
  border-radius: 8px;
}
.manage-editor-card textarea#manage-content {
  min-height: 700px;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  line-height: 1.45;
}
.manage-preview-card {
  padding: 16px;
  border: 1px solid rgba(117,130,170,.28);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7,12,24,.9), rgba(5,10,21,.8));
}
.manage-preview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: start;
}
.manage-preview-image-card,
.manage-preview-article-card {
  padding: 14px;
  border: 1px solid rgba(117,130,170,.24);
  border-radius: 14px;
  background: rgba(6,10,20,.72);
}
.manage-preview-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9cb4e6;
}
.manage-image-preview-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(117,130,170,.35);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
  padding: 18px;
}
.manage-image-preview-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(133,150,212,.35);
}
.manage-article-preview {
  min-height: 180px;
}
.manage-preview-article-shell h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.manage-preview-excerpt,
.manage-preview-seo {
  color: var(--muted);
}
.manage-preview-body {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(117,130,170,.24);
  line-height: 1.65;
}
.manage-preview-body > :first-child {
  margin-top: 0;
}
.manage-field-cluster textarea {
  min-height: 110px;
}
.manage-publish-links {
  justify-content: flex-start;
}
.manage-utility-links {
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .news-3col { grid-template-columns: 1fr; }
  .right-col { position: relative; }
  .yt-row { grid-template-columns: 38px 1fr; }
  .yt-embed { grid-column: 1 / -1; }
  .compose-grid,
  .manage-grid {
    grid-template-columns: 1fr;
  }
  .manage-preview-grid {
    grid-template-columns: 1fr;
  }
  .manage-sidebar-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .logo { width: min(240px, 76vw); }
  .site-brand__img { width: min(322px, 62vw); }
  .tagline { font-size: 17px; margin: 0 0 12px 14px; }
  .hero { padding: 18px; }
  .home-brand-hero {
    min-height: 360px;
    background:
      linear-gradient(90deg, rgba(6, 10, 20, 0.12) 0%, rgba(6, 10, 20, 0.06) 24%, rgba(6, 10, 20, 0.12) 56%, rgba(6, 10, 20, 0.34) 100%),
      linear-gradient(180deg, rgba(7, 14, 28, 0.03) 0%, rgba(7, 14, 28, 0.16) 46%, rgba(7, 14, 28, 0.44) 100%),
      var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      )) var(--home-hero-position-tablet, var(--home-hero-position, 20% 46%)) / cover no-repeat;
  }
  .home-brand-hero__content {
    width: min(50%, 238px);
    max-width: 238px;
    margin: 0 0 0 auto;
    padding: 0;
  }
  .home-brand-hero h1 {
    max-width: 5.5ch;
  }
  .card { padding: 12px; }
  .nav-burger { display: inline-flex; margin-bottom: 8px; }
  .nav-links {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }
  .nav-toggle:checked ~ .nav-links { display: grid; }
  .nav a,
  .nav .nav-parent { min-width: 0; width: auto; font-size: 11px; padding: 10px 8px; line-height: 1.15; min-height: 44px; display:flex; align-items:center; justify-content:center; }
  .nav-group { width: auto; }
  .nav-group .nav-parent { width: 100%; justify-content: center; }
  .nav-group--stacked .nav-cascade {
    display: grid;
    position: static;
    min-width: 0;
    margin-top: 6px;
    box-shadow: none;
    border-color: rgba(132, 155, 220, 0.28);
  }
  .nav-socials {
    display: flex;
    grid-column: 1 / -1;
    margin-left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-top: 4px;
    gap: 10px;
  }
  .nav .nav-social-link {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 8px;
    padding: 0;
  }
  .nav .nav-social-link img {
    width: 16px;
    height: 16px;
  }
  .nav-cascade a { text-align: center; font-size: 11px; }
  .grid, .kpi-grid, .bench-toolbar, .influencer-tight, .about-grid { grid-template-columns: 1fr; }
  .stats-grid { column-count: 1; }
  .yt-grid-host { grid-template-columns: 1fr; }
  .util-compact-grid { grid-template-columns: 1fr; }
  .dir-controls { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 120px 1fr 60px; }
  .subscribe-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .subscribe-row input {
    border: 1px solid rgba(117,130,170,.5);
    background: rgba(8,12,22,.9);
    border-radius: 8px;
  }
  .subscribe-row button {
    border-radius: 8px;
  }
  .subscribe-layout { grid-template-columns: 1fr; }
  .subscribe-inline-module { grid-template-columns: 1fr; }
  .subscribe-inline-module-compact { grid-template-columns: 1fr; }
  .sticky-subscribe {
    width: calc(100vw - 18px);
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .sticky-subscribe-form {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .sticky-subscribe-form input {
    border: 1px solid rgba(117,130,170,.5);
    background: rgba(8,12,22,.9);
    border-radius: 8px;
  }
  .sticky-subscribe-form button { border-radius: 8px; }
  .roi-controls { grid-template-columns: 1fr; }
  .roi-job-grid { grid-template-columns: 1fr; }
  .help-glossary-item { grid-template-columns: 1fr; }
  .compose-grid,
  .manage-grid,
  .compose-field-grid,
  .manage-meta-grid { grid-template-columns: 1fr; }
  .compose-action-bar,
  .manage-action-bar {
    align-items: stretch;
  }
  .compose-action-bar-main,
  .compose-action-bar-links,
  .manage-publish-links,
  .manage-utility-links {
    width: 100%;
  }
  .ticker-news .ticker-move { animation-duration: 118s; }
  .ticker-stock .ticker-move { animation-duration: 108s; }
  .prediction-grid { grid-template-columns: 1fr; }
  .footer-subscribe-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .archive-entry { padding: 12px 14px; }
  .merch-image { min-height: 260px; }
  .merch-image img { max-height: 240px; }
}

.site-footer { margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(123, 144, 208, .26); display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-start; font-size: 12px; color: #b6c8ea; }
.site-footer__group { display: grid; gap: 6px; }
.site-footer__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8fd8ff;
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer__meta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-subscribe-cta {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(123, 144, 208, 0.24);
  border-radius: 12px;
  background: rgba(8, 14, 28, 0.66);
  color: #cad7f3;
}
.footer-subscribe-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(159,186,255,.52);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(24, 33, 62, 0.92);
  color: #e8f2ff;
  text-decoration: none;
  white-space: nowrap;
}
.footer-subscribe-cta a:hover {
  border-color: rgba(125, 231, 212, 0.7);
  color: #effff9;
}
.site-footer a { color: #c9d8ff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-socials { display: inline-flex; align-items: center; gap: 8px; }
.site-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(139, 176, 255, 0.45);
  background: rgba(12, 20, 40, 0.72);
}
.site-social img { width: 13px; height: 13px; display: block; }
.site-social:hover { border-color: rgba(157, 223, 255, 0.95); background: rgba(19, 30, 59, 0.92); }
.site-version {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #95a8d7;
  border: 1px solid rgba(123, 144, 208, 0.26);
  border-radius: 999px;
  padding: 1px 8px;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}
.site-version:hover {
  color: #dce9ff;
  border-color: rgba(157, 223, 255, 0.72);
  text-decoration: none;
}
a[href^="mailto:"] { color: #9fe7ff; text-decoration: underline; text-underline-offset: 2px; }
a[href^="mailto:"]:hover { color: #d6f6ff; }
.card a { color: #9fe7ff; text-decoration: underline; text-underline-offset: 2px; }
.card a:hover { color: #d9f8ff; }
.card a[href^="http"] { color: #9fe7ff; text-decoration: underline; text-underline-offset: 2px; }
.card a[href^="http"]:hover { color: #d9f8ff; }
.site-footer a:hover,
.card a[href^="http"]:hover,
a[href^="mailto:"]:hover {
  text-decoration-color: #c9a0ff;
}
.subscribe-form textarea { border: 1px solid rgba(117,130,170,.5); background: rgba(8,12,22,.9); color: var(--text); padding: 10px 12px; border-radius: 8px; font-size: 14px; min-height: 220px; }

.source-block h3 { margin: 10px 0 4px; font-size: 12px; color: #d7f5ee; text-transform: uppercase; letter-spacing: .06em; }
.source-block p { margin: 0; color: #b9c8e6; font-size: 13px; line-height: 1.45; }
.versions-summary-shell {
  margin-top: 12px;
  border-radius: 20px;
}
.version-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.version-summary-grid article {
  padding: 4px 2px;
}
.version-summary-grid h2 {
  margin: 4px 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.versions-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.version-card {
  border-radius: 20px;
  padding: 18px 18px 16px;
}
.version-card--current {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(125, 231, 212, 0.12), transparent 48%),
    radial-gradient(120% 120% at 100% 0%, rgba(201, 160, 255, 0.12), transparent 44%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}
.version-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.version-card__head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.version-card__meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: #a6bde7;
  font-size: 12px;
}
.version-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(126, 240, 207, 0.42);
  background: rgba(9, 18, 30, 0.8);
  color: #d8fff5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.version-card h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
  color: #eef5ff;
}
.feature-list { margin: 0; padding-left: 18px; color: #d9e5ff; }
.feature-list li { margin: 6px 0; }
.dir-summary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dir-summary-card {
  min-height: 100%;
  border-left: 1px solid rgba(132, 155, 220, 0.18);
}
.dir-ecosystem-frame {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(125, 231, 212, 0.08), transparent 34%),
    radial-gradient(110% 120% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 36%),
    rgba(8, 12, 22, 0.78);
}
.dir-ecosystem-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.dir-ecosystem-stats article {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(123, 144, 208, 0.24);
  border-radius: 10px;
  background: rgba(9, 14, 24, 0.68);
}
.dir-ecosystem-stats strong {
  font-size: 22px;
  line-height: 1;
  color: #f2f7ff;
}
.dir-ecosystem-stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #acc0e5;
}
.dir-ecosystem-spotlight {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dir-ecosystem-spotlight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.92), rgba(15, 21, 39, 0.88));
  color: #edf4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.dir-controls { display: grid; grid-template-columns: 1.4fr .8fr; gap: 10px; margin-bottom: 12px; }
.dir-controls input, .dir-controls select { border: 1px solid rgba(117,130,170,.5); background: rgba(8,12,22,.9); color: var(--text); padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.archive-toolbar-shell { display: grid; gap: 10px; margin-bottom: 10px; }
.archive-toolbar { display: grid; gap: 10px; }
.archive-toolbar-primary { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(160px, .72fr)); }
.archive-toolbar-secondary { grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(160px, .9fr) auto; }
.archive-toolbar input,
.archive-toolbar select,
.archive-clear {
  border: 1px solid rgba(117,130,170,.5);
  background: rgba(8,12,22,.9);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.archive-clear {
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(83,117,224,.34), rgba(154,96,208,.28));
  border-color: rgba(159,186,255,.58);
}
.archive-clear:hover { box-shadow: 0 0 14px rgba(180, 146, 255, 0.18); }
.archive-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin: 6px 0 10px; }
.archive-kpi { border: 1px solid rgba(123, 144, 208, .26); border-radius: 8px; padding: 10px; background: rgba(10, 15, 27, 0.72); display: grid; gap: 3px; }
.archive-kpi strong { font-size: 18px; color: #e8f2ff; line-height: 1.1; }
.archive-kpi span { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #a9c0e9; }
.archive-groups { display: grid; gap: 0; margin-top: 8px; border: 1px solid rgba(123, 144, 208, 0.18); border-radius: 12px; overflow: hidden; }
.archive-row { grid-template-columns: 1fr; }
.archive-entry { display: grid; gap: 6px; padding: 14px 16px; background: rgba(9, 14, 24, 0.72); }
.archive-row + .archive-row .archive-entry { border-top: 1px solid rgba(123, 144, 208, 0.16); }
.archive-entry-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.archive-entry-badges { display: inline-flex; gap: 6px; align-items: center; flex-wrap: wrap; flex: 0 0 auto; }
.archive-host { color: #9cb4de; font-size: 12px; }
.archive-tags { display: inline-flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.archive-tags em { font-style: normal; border: 1px solid rgba(132, 155, 220, 0.28); border-radius: 999px; padding: 2px 7px; font-size: 10px; color: #d9e7ff; background: rgba(12, 17, 30, 0.82); }
.archive-badge { display: inline-block; margin-top: 6px; margin-left: 8px; border: 1px solid rgba(125, 231, 212, 0.45); border-radius: 999px; padding: 2px 7px; font-size: 10px; color: #d9fff5; letter-spacing: .03em; }
.archive-date-pill { display: inline-block; border: 1px solid rgba(201, 160, 255, 0.45); border-radius: 999px; padding: 3px 8px; font-size: 10px; color: #efe3ff; letter-spacing: .05em; background: rgba(21, 14, 34, 0.8); text-transform: uppercase; }
.archive-break {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid rgba(123, 144, 208, 0.16);
  border-bottom: 1px solid rgba(123, 144, 208, 0.16);
  background: linear-gradient(135deg, rgba(12, 17, 31, 0.92), rgba(10, 15, 27, 0.9));
}
.archive-break-label {
  font-size: 11px;
  color: #b8caef;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dir-quick-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.dir-quick-nav a { text-decoration: none; border: 1px solid rgba(132, 155, 220, 0.28); color: #deebff; background: rgba(10, 14, 24, 0.78); border-radius: 999px; padding: 5px 10px; font-size: 11px; }
.dir-quick-nav a:hover { border-color: rgba(125, 231, 212, 0.7); color: #effff9; }
.dir-section-head { margin-bottom: 10px; }
.dir-section-head h2 { margin: 0; }
.dir-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; max-height: none; overflow: visible; }
.dir-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid rgba(123, 144, 208, 0.2); border-radius: 6px; padding: 8px 10px; background: rgba(9, 14, 24, 0.68); }
.dir-item-host { color: #aebede; font-size: 12px; flex: 0 0 auto; white-space: nowrap; }
.dir-empty { color: #aebede; font-size: 13px; border: 1px dashed rgba(123, 144, 208, 0.26); border-radius: 6px; padding: 9px 10px; background: rgba(9, 14, 24, 0.45); }
#dir-grid { grid-template-columns: 1fr; }

@media (max-width: 1400px) {
  .dir-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dir-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .dir-ecosystem-stats { grid-template-columns: 1fr; }
  .dir-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-toolbar-primary,
  .archive-toolbar-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .dir-summary-grid { grid-template-columns: 1fr; }
  .version-summary-grid {
    grid-template-columns: 1fr;
  }
  .version-card__head {
    flex-direction: column;
  }
  .version-card__meta {
    justify-items: start;
  }
  .blog-report-row {
    grid-template-columns: 1fr;
  }
  .blog-thumb-link {
    width: 100%;
    height: 140px;
  }
  .dir-list { grid-template-columns: 1fr; }
  .archive-toolbar-primary,
  .archive-toolbar-secondary { grid-template-columns: 1fr; }
  .archive-kpis { grid-template-columns: 1fr; }
  .archive-entry-head { flex-direction: column; }
  .archive-entry-badges { justify-content: flex-start; }
  .archive-break { padding: 10px 12px; }
  .subscribe-row { grid-template-columns: 1fr; }
  .subscribe-row button { width: 100%; }
}

.news-3col .right-col table.dir-table { min-width: 0; width: 100%; }

.pdoom-box { display: grid; gap: 8px; }
.pdoom-box label { display: grid; grid-template-columns: 1fr 78px; align-items: center; gap: 8px; font-size: 12px; color: #d7e6ff; }
.pdoom-box input { border: 1px solid rgba(117,130,170,.55); background: rgba(6,10,20,.85); color: var(--text); padding: 6px 7px; border-radius: 4px; }
.pdoom-box button { border: 1px solid rgba(159,186,255,.6); background: linear-gradient(135deg, rgba(83,117,224,.5), rgba(154,96,208,.5)); color: #eef3ff; padding: 8px 10px; border-radius: 4px; font-weight: 700; cursor: pointer; }
.help-alpha-wrap { max-height: 480px; overflow: auto; border: 1px solid rgba(123, 144, 208, .26); border-radius: 8px; padding: 10px; background: rgba(6, 11, 21, 0.66); }
.help-alpha-list { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.help-pill { border: 1px solid rgba(132, 155, 220, 0.28); background: rgba(12, 17, 30, 0.94); color: #d9e7ff; border-radius: 999px; padding: 3px 9px; font-size: 10px; line-height: 1.2; cursor: pointer; max-width: 240px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.help-pill:hover { border-color: rgba(125, 231, 212, 0.7); color: #e7fff9; }
.help-glossary-detail { margin-bottom: 10px; font-size: 12px; color: #cfe2ff; line-height: 1.45; min-height: 18px; }
.about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-contact { grid-column: 1 / -1; }

/* About page: dense editorial layout with controlled asymmetry */
.about-integrated {
  margin-top: 8px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 10px;
  background: linear-gradient(155deg, rgba(10, 15, 29, 0.92), rgba(8, 12, 24, 0.92));
  overflow: hidden;
  position: relative;
}

.about-integrated::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--rainbow-soft);
  opacity: 0.95;
  pointer-events: none;
}

.about-topline {
  padding: 12px 14px 8px;
  border-bottom: 1px solid rgba(132, 155, 220, 0.22);
}

.about-tag {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9ed8ff;
}

.about-topline h2 {
  margin: 0;
  font-size: 24px;
  color: #f2f7ff;
  letter-spacing: -0.01em;
  text-shadow: 0 0 12px rgba(140, 180, 255, 0.2);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 0;
}

.about-main {
  min-width: 0;
  padding: 12px 14px;
  border-right: 1px solid rgba(132, 155, 220, 0.16);
  background:
    radial-gradient(130% 90% at 0% 0%, rgba(125, 231, 212, 0.08), transparent 58%),
    radial-gradient(120% 90% at 100% 0%, rgba(201, 160, 255, 0.07), transparent 62%);
}

.about-main p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.about-main-lead {
  font-size: 16px !important;
  color: #e6f1ff;
}

.about-proofline {
  margin: 10px 0 0;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #dbfff7;
  background:
    linear-gradient(145deg, rgba(14, 28, 39, 0.58), rgba(20, 18, 36, 0.55)) padding-box,
    var(--rainbow-soft) border-box;
  font-size: 13px;
  font-weight: 700;
}

.about-detail {
  margin-top: 9px;
  padding-top: 7px;
  border-top: 1px dashed rgba(167, 134, 224, 0.32);
}

.about-detail summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #d2b1ff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.about-detail summary::-webkit-details-marker { display: none; }

.about-detail summary::before {
  content: "▸";
  color: #c8a3ff;
  font-size: 12px;
  line-height: 1;
}

.about-detail[open] summary::before { content: "▾"; }

.about-detail summary:focus,
.about-detail summary:focus-visible {
  outline: none;
  box-shadow: none;
  color: #e1c9ff;
  text-decoration: underline;
}

.about-detail-body {
  margin-top: 7px;
  display: grid;
  gap: 7px;
}

.about-detail-body p {
  font-size: 13px;
  color: #cbd9f4;
}

.about-rail {
  min-width: 0;
  padding: 12px;
  background: linear-gradient(165deg, rgba(12, 17, 33, 0.95), rgba(10, 14, 26, 0.95));
}

.about-rail h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #edf4ff;
}

.about-rail ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}

.about-rail li {
  font-size: 13px;
  line-height: 1.33;
  color: #d4e3ff;
}

.about-contact-inline {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(132, 155, 220, 0.2);
  display: grid;
  gap: 3px;
}

.about-contact-inline span {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9db4e3;
}

.about-contact-inline a {
  color: #a8ddff;
  font-size: 14px;
  font-weight: 700;
}

.about-matrix {
  border-top: 1px solid rgba(132, 155, 220, 0.2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-matrix article {
  padding: 11px 12px;
  border-right: 1px solid rgba(132, 155, 220, 0.14);
  border-bottom: 1px solid rgba(132, 155, 220, 0.14);
  background: linear-gradient(170deg, rgba(12, 18, 32, 0.6), rgba(10, 14, 26, 0.62));
}

.about-matrix article:nth-child(3n) {
  border-right: 0;
}

.about-matrix h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #eef6ff;
}

.about-matrix p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: #ccd9f0;
}

.journey-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(132, 155, 220, 0.18);
}

.journey-showcase-copy {
  padding: 16px 16px 18px;
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(126, 240, 207, 0.12), transparent 55%),
    radial-gradient(120% 100% at 100% 0%, rgba(201, 160, 255, 0.12), transparent 58%),
    linear-gradient(160deg, rgba(10, 16, 31, 0.94), rgba(8, 12, 24, 0.94));
}

.journey-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8ff7c3;
}

.journey-showcase-copy h3,
.journey-values-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f3f7ff;
  text-shadow: 0 10px 32px rgba(92, 126, 210, 0.22);
}

.journey-showcase-copy p,
.journey-values-copy p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #cedcf5;
}

.journey-value-row,
.journey-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-value-row {
  margin-top: 12px;
}

.journey-value-row span,
.journey-values-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.92), rgba(15, 21, 39, 0.88));
  color: #edf4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.journey-values-grid span:nth-child(3n + 1),
.journey-value-row span:nth-child(3n + 1) {
  border-color: rgba(125, 231, 212, 0.34);
}

.journey-values-grid span:nth-child(3n + 2),
.journey-value-row span:nth-child(3n + 2) {
  border-color: rgba(108, 194, 255, 0.34);
}

.journey-values-grid span:nth-child(3n + 3),
.journey-value-row span:nth-child(3n + 3) {
  border-color: rgba(201, 160, 255, 0.36);
}

.journey-system-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-left: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(150% 100% at 50% 0%, rgba(108, 194, 255, 0.1), transparent 46%),
    radial-gradient(120% 100% at 100% 100%, rgba(201, 160, 255, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(7, 11, 24, 0.98), rgba(5, 9, 19, 0.96));
}

.journey-system-card::before,
.journey-system-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.journey-system-card::before {
  background-image:
    linear-gradient(rgba(126, 160, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 160, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 48%, #000 20%, transparent 78%);
}

.journey-system-card::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(125, 231, 212, 0.18), transparent 26%),
    radial-gradient(circle at 50% 48%, rgba(108, 194, 255, 0.14), transparent 38%);
  animation: journeyPulse 7.5s ease-in-out infinite;
}

.journey-system-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 4px;
  width: 176px;
  padding: 20px 16px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.28);
  background:
    radial-gradient(circle at 50% 40%, rgba(125, 231, 212, 0.12), transparent 56%),
    linear-gradient(160deg, rgba(15, 27, 45, 0.95), rgba(15, 18, 38, 0.95)) padding-box,
    var(--rainbow-soft) border-box;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.journey-system-tag {
  font-size: 10px;
  letter-spacing: .16em;
  color: #8ff7c3;
}

.journey-system-core strong {
  font-size: 27px;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #f1f6ff;
  text-align: center;
}

.journey-system-core small {
  max-width: 112px;
  font-size: 11px;
  line-height: 1.28;
  color: #bfd3f5;
  text-align: center;
}

.journey-system-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(132, 155, 220, 0.16);
}

.journey-system-ring-a {
  width: 340px;
  height: 340px;
  animation: journeyOrbitA 24s linear infinite;
}

.journey-system-ring-b {
  width: 430px;
  height: 430px;
  border-color: rgba(125, 231, 212, 0.12);
  animation: journeyOrbitB 32s linear infinite;
}

.journey-system-node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: 160px;
  padding: 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  background: linear-gradient(155deg, rgba(14, 21, 37, 0.95), rgba(11, 17, 31, 0.9));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.journey-system-node strong {
  font-size: 14px;
  color: #f0f6ff;
}

.journey-system-node span {
  font-size: 12px;
  line-height: 1.3;
  color: #c8d7f2;
}

.journey-node-ingest { left: 26px; top: 56px; }
.journey-node-rank { right: 32px; top: 72px; }
.journey-node-write { left: 28px; bottom: 62px; }
.journey-node-ship { right: 24px; bottom: 58px; }
.journey-node-harden {
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 180px;
}

.journey-surfaces-card {
  padding: 18px;
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 48%),
    radial-gradient(140% 100% at 0% 100%, rgba(108, 194, 255, 0.08), transparent 46%),
    linear-gradient(160deg, rgba(8, 12, 24, 0.96), rgba(6, 10, 20, 0.98));
}

.journey-section-visual {
  height: 220px;
  margin-bottom: 14px;
}

.journey-phase-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(130% 140% at 0% 0%, rgba(108, 194, 255, 0.07), transparent 50%),
    linear-gradient(160deg, rgba(8, 12, 24, 0.94), rgba(7, 11, 21, 0.96));
}

.journey-phase-strip::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 231, 212, 0.15), rgba(108, 194, 255, 0.28), rgba(201, 160, 255, 0.2));
}

.journey-phase-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 16px 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background: linear-gradient(170deg, rgba(14, 20, 36, 0.94), rgba(10, 15, 28, 0.94));
}

.journey-phase-card::after,
.journey-flow-step::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 231, 212, 0.72), rgba(108, 194, 255, 0.42), rgba(201, 160, 255, 0.72));
  opacity: 0.92;
}

.journey-phase-card:nth-child(3n + 1) {
  border-color: rgba(125, 231, 212, 0.24);
}

.journey-phase-card:nth-child(3n + 2) {
  border-color: rgba(108, 194, 255, 0.24);
}

.journey-phase-card:nth-child(3n + 3) {
  border-color: rgba(201, 160, 255, 0.24);
}

.journey-phase-step {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  background: rgba(7, 13, 26, 0.92);
  color: #8ff7c3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journey-phase-card h3 {
  margin: 0;
  font-size: 18px;
  color: #f1f6ff;
}

.journey-phase-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.38;
  color: #c9d8f1;
}

.journey-values-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(7, 11, 21, 0.95), rgba(7, 10, 18, 0.98));
}

.journey-values-copy {
  padding: 16px;
  background:
    radial-gradient(120% 110% at 0% 0%, rgba(125, 231, 212, 0.08), transparent 50%),
    linear-gradient(160deg, rgba(9, 14, 27, 0.94), rgba(8, 12, 24, 0.96));
}

.journey-values-grid {
  align-content: center;
  padding: 18px 16px;
  border-left: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 48%),
    linear-gradient(160deg, rgba(10, 15, 29, 0.96), rgba(8, 12, 24, 0.96));
}

.journey-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-color: rgba(126, 240, 207, 0.22);
  background:
    linear-gradient(90deg, rgba(4, 8, 18, 0.97) 0%, rgba(4, 8, 18, 0.92) 34%, rgba(4, 8, 18, 0.68) 62%, rgba(4, 8, 18, 0.72) 100%),
    radial-gradient(120% 140% at 0% 0%, rgba(126, 240, 207, 0.14), transparent 42%),
    radial-gradient(120% 120% at 100% 0%, rgba(108, 194, 255, 0.14), transparent 44%),
    radial-gradient(120% 120% at 50% 100%, rgba(201, 160, 255, 0.1), transparent 42%),
    url("/assets/journey/journey-hero-constellation.webp") right center / cover no-repeat,
    linear-gradient(165deg, rgba(8, 13, 26, 0.97), rgba(6, 10, 20, 0.99));
  box-shadow: inset 0 0 0 1px rgba(126, 240, 207, 0.06), 0 20px 54px rgba(0, 0, 0, 0.24);
}

.journey-hero::before,
.journey-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.journey-hero::before {
  background-image:
    linear-gradient(rgba(126, 160, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 160, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
}

.journey-hero::after {
  inset: auto 20px 20px auto;
  width: min(42vw, 460px);
  height: min(42vw, 460px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 231, 212, 0.2), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(108, 194, 255, 0.14), transparent 52%);
  filter: blur(8px);
}

.journey-hero > * {
  position: relative;
  z-index: 1;
}

.journey-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.journey-hero .lead {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.56;
}

.journey-shell-v2 {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.journey-landing,
.journey-flow-card,
.journey-surfaces-card,
.journey-phase-layout,
.journey-values-panel,
.journey-builder-panel {
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(10, 15, 29, 0.94), rgba(7, 11, 21, 0.97));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.journey-landing {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
}

.journey-landing-copy {
  padding: 24px 24px 26px;
  background:
    radial-gradient(135% 110% at 0% 0%, rgba(126, 240, 207, 0.12), transparent 54%),
    radial-gradient(120% 110% at 100% 0%, rgba(201, 160, 255, 0.1), transparent 56%),
    linear-gradient(160deg, rgba(11, 17, 32, 0.95), rgba(9, 13, 24, 0.95));
}

.journey-visual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(108, 194, 255, 0.08), transparent 54%),
    linear-gradient(160deg, rgba(9, 14, 27, 0.97), rgba(6, 10, 20, 0.99));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.journey-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.08), rgba(5, 8, 18, 0.18)),
    linear-gradient(90deg, rgba(5, 8, 18, 0.12), transparent 24%, transparent 76%, rgba(5, 8, 18, 0.12));
}

.journey-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-landing-visual {
  min-height: 100%;
  border-left: 1px solid rgba(132, 155, 220, 0.18);
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
}

.journey-landing-visual img {
  min-height: 100%;
}

.journey-section-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8ff7c3;
}

.journey-landing-copy h2,
.journey-story-card h2,
.journey-section-head h2,
.journey-phase-intro h2,
.journey-values-copy-v2 h2,
.journey-builder-card h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: .98;
  letter-spacing: -0.035em;
  color: #f3f7ff;
  text-shadow: 0 12px 36px rgba(88, 114, 208, 0.22);
}

.journey-landing-copy p,
.journey-story-card p,
.journey-founder-card p,
.journey-section-head p,
.journey-phase-intro p,
.journey-blueprint-card p,
.journey-values-copy-v2 p,
.journey-builder-card p,
.journey-contact-card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.52;
  color: #cfdbf4;
}

.journey-chip-row,
.journey-contact-pills,
.journey-values-grid-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-chip-row {
  margin-top: 14px;
}

.journey-chip-row span,
.journey-contact-pills span,
.journey-values-grid-v2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.94), rgba(13, 18, 32, 0.92));
  color: #edf4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.journey-proof-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border-left: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(108, 194, 255, 0.08), transparent 50%),
    linear-gradient(160deg, rgba(9, 13, 25, 0.96), rgba(7, 11, 20, 0.98));
}

.journey-proof-card {
  padding: 14px 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background: linear-gradient(165deg, rgba(14, 21, 37, 0.94), rgba(10, 15, 29, 0.96));
}

.journey-proof-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9cc0eb;
}

.journey-proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f2f6ff;
}

.journey-proof-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #c8d7f2;
}

.journey-origin-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
}

.journey-story-card,
.journey-founder-card,
.journey-blueprint-card {
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(10, 15, 29, 0.95), rgba(8, 12, 23, 0.97));
}

.journey-founder-card {
  background:
    radial-gradient(140% 110% at 100% 0%, rgba(201, 160, 255, 0.09), transparent 56%),
    linear-gradient(160deg, rgba(11, 15, 28, 0.96), rgba(7, 10, 19, 0.98));
}

.journey-founder-card blockquote {
  margin: 0 0 14px;
  padding: 16px 18px;
  border-left: 3px solid rgba(125, 231, 212, 0.62);
  border-radius: 10px;
  background: rgba(13, 21, 37, 0.72);
  color: #eef6ff;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.journey-proofline-v2 {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(15, 25, 39, 0.66), rgba(20, 18, 36, 0.62)) padding-box,
    var(--rainbow-soft) border-box;
  color: #e6fff8;
  font-size: 13px;
  font-weight: 700;
}

.journey-flow-card {
  padding: 18px;
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(108, 194, 255, 0.08), transparent 50%),
    linear-gradient(160deg, rgba(8, 12, 24, 0.96), rgba(6, 10, 20, 0.98));
}

.journey-section-head {
  max-width: 860px;
  margin-bottom: 14px;
}

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

.journey-flow-step {
  position: relative;
  padding: 16px 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background: linear-gradient(165deg, rgba(14, 21, 37, 0.95), rgba(10, 15, 28, 0.97));
}

.journey-flow-step span,
.journey-phase-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background: rgba(7, 12, 25, 0.94);
  color: #8ff7c3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.journey-flow-step h3,
.journey-phase-item h3,
.journey-contact-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f2f6ff;
}

.journey-flow-step p,
.journey-phase-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #cad8f2;
}

.journey-phase-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.journey-phase-intro {
  padding: 20px;
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(125, 231, 212, 0.08), transparent 52%),
    linear-gradient(160deg, rgba(10, 16, 30, 0.96), rgba(8, 12, 22, 0.98));
}

.journey-phase-list {
  position: relative;
  display: grid;
  gap: 0;
  padding: 18px 18px 18px 30px;
}

.journey-phase-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, rgba(125, 231, 212, 0.28), rgba(108, 194, 255, 0.26), rgba(201, 160, 255, 0.22));
}

.journey-phase-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0 14px 0;
}

.journey-phase-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #8ff7c3;
  box-shadow: 0 0 0 6px rgba(143, 247, 195, 0.12);
}

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

.journey-blueprint-card .feature-list {
  margin: 0;
}

.journey-values-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.journey-values-copy-v2 {
  padding: 20px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(125, 231, 212, 0.08), transparent 52%),
    linear-gradient(160deg, rgba(10, 15, 29, 0.95), rgba(8, 12, 23, 0.98));
}

.journey-values-grid-v2 {
  align-content: center;
  padding: 20px;
  border-left: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(201, 160, 255, 0.09), transparent 54%),
    linear-gradient(160deg, rgba(9, 14, 27, 0.97), rgba(7, 11, 20, 0.99));
}

.journey-builder-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.journey-builder-card,
.journey-contact-card {
  padding: 20px;
}

.journey-builder-card {
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(108, 194, 255, 0.08), transparent 52%),
    linear-gradient(160deg, rgba(10, 15, 28, 0.96), rgba(8, 12, 23, 0.99));
}

.journey-contact-card {
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(201, 160, 255, 0.1), transparent 56%),
    linear-gradient(160deg, rgba(10, 14, 27, 0.97), rgba(7, 10, 20, 0.99));
}

.journey-contact-cta {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(12, 20, 36, 0.86), rgba(9, 14, 28, 0.92)) padding-box,
    linear-gradient(120deg, rgba(125, 231, 212, 0.34), rgba(108, 194, 255, 0.3), rgba(201, 160, 255, 0.32)) border-box;
}

.journey-contact-cta span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9fc0eb;
}

.journey-contact-link {
  color: #b8efff;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
}

.journey-contact-link:hover {
  color: #effbff;
  text-decoration: underline;
}

.journey-contact-pills {
  margin-top: 14px;
}

.journey-values-grid-v2 span:nth-child(3n + 1),
.journey-chip-row span:nth-child(3n + 1),
.journey-contact-pills span:nth-child(3n + 1) {
  border-color: rgba(125, 231, 212, 0.36);
}

.journey-values-grid-v2 span:nth-child(3n + 2),
.journey-chip-row span:nth-child(3n + 2),
.journey-contact-pills span:nth-child(3n + 2) {
  border-color: rgba(108, 194, 255, 0.34);
}

.journey-values-grid-v2 span:nth-child(3n + 3),
.journey-chip-row span:nth-child(3n + 3),
.journey-contact-pills span:nth-child(3n + 3) {
  border-color: rgba(201, 160, 255, 0.36);
}

@keyframes journeyPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes journeyOrbitA {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes journeyOrbitB {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .journey-system-card::after,
  .journey-system-ring-a,
  .journey-system-ring-b {
    animation: none;
  }
}

/* Semantic highlight language for communication clarity */
.hi-key,
.hi-action,
.hi-risk {
  font-weight: 700;
  padding: 0 0.08em;
  border-radius: 3px;
}

.hi-key {
  color: #dff4ff;
  background: linear-gradient(90deg, rgba(108, 194, 255, 0.2), rgba(140, 187, 255, 0.14));
  box-shadow: inset 0 -1px 0 rgba(123, 190, 255, 0.38);
}

.hi-action {
  color: #e8fff7;
  background: linear-gradient(90deg, rgba(126, 240, 207, 0.2), rgba(114, 233, 202, 0.14));
  box-shadow: inset 0 -1px 0 rgba(125, 231, 212, 0.42);
}

.hi-risk {
  color: #ffe9ef;
  background: linear-gradient(90deg, rgba(255, 120, 160, 0.2), rgba(201, 160, 255, 0.13));
  box-shadow: inset 0 -1px 0 rgba(255, 142, 180, 0.45);
}

@media (max-width: 960px) {
  .journey-landing,
  .journey-phase-layout,
  .journey-values-panel,
  .journey-builder-panel,
  .journey-origin-grid {
    grid-template-columns: 1fr;
  }
  .journey-proof-stack,
  .journey-values-grid-v2,
  .journey-contact-card {
    border-left: 0;
    border-top: 1px solid rgba(132, 155, 220, 0.18);
  }
  .journey-builder-card,
  .journey-phase-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.18);
  }
  .journey-landing-visual {
    border-left: 0;
    border-top: 1px solid rgba(132, 155, 220, 0.18);
  }
  .journey-flow-grid,
  .journey-blueprint-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey-showcase,
  .journey-values-band {
    grid-template-columns: 1fr;
  }
  .journey-system-card,
  .journey-values-grid {
    border-left: 0;
    border-top: 1px solid rgba(132, 155, 220, 0.18);
  }
  .journey-phase-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey-phase-strip::before {
    display: none;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-main {
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.16);
  }
  .about-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-matrix article:nth-child(3n) {
    border-right: 1px solid rgba(132, 155, 220, 0.14);
  }
  .about-matrix article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .journey-landing-copy h2,
  .journey-story-card h2,
  .journey-section-head h2,
  .journey-phase-intro h2,
  .journey-values-copy-v2 h2,
  .journey-builder-card h2 {
    font-size: 27px;
  }
  .journey-hero {
    min-height: 240px;
    background-position: 0 0, 0 0, 100% 0, 50% 100%, 72% center, 0 0;
  }
  .journey-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }
  .journey-section-visual {
    height: 154px;
  }
  .journey-flow-grid,
  .journey-blueprint-grid,
  .journey-proof-stack {
    grid-template-columns: 1fr;
  }
  .journey-phase-list {
    padding: 16px 14px 16px 24px;
  }
  .journey-phase-list::before {
    left: 16px;
  }
  .journey-phase-item::before {
    left: -18px;
  }
  .journey-showcase-copy h3,
  .journey-values-copy h3 {
    font-size: 23px;
  }
  .journey-system-card {
    min-height: 500px;
  }
  .journey-system-ring-a {
    width: 280px;
    height: 280px;
  }
  .journey-system-ring-b {
    width: 360px;
    height: 360px;
  }
  .journey-system-node {
    width: 138px;
    padding: 10px;
  }
  .journey-node-ingest { left: 12px; top: 34px; }
  .journey-node-rank { right: 12px; top: 48px; }
  .journey-node-write { left: 10px; bottom: 86px; }
  .journey-node-ship { right: 10px; bottom: 88px; }
  .journey-node-harden {
    bottom: 18px;
    width: 168px;
  }
  .journey-phase-strip {
    grid-template-columns: 1fr;
  }
  .about-topline h2 {
    font-size: 20px;
  }
  .about-main p {
    font-size: 13px;
  }
  .about-main-lead {
    font-size: 15px !important;
  }
  .about-matrix {
    grid-template-columns: 1fr;
  }
  .about-matrix article {
    border-right: 0 !important;
  }
}

/* AI Debates: integrated editorial layout */
.debates-integrated {
  margin-top: 8px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 10px;
  background: linear-gradient(155deg, rgba(10, 15, 29, 0.92), rgba(8, 12, 24, 0.92));
  overflow: hidden;
  position: relative;
}

.debates-integrated::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--rainbow-soft);
  opacity: 0.95;
  pointer-events: none;
}

.debates-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 0;
  margin-top: 12px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.debates-hero-stage__media {
  min-height: 320px;
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(7, 12, 24, 0.96), rgba(6, 10, 20, 0.96));
}

.debates-hero-stage__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.debates-hero-stage__copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 26px 28px;
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(201, 160, 255, 0.12), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(125, 231, 212, 0.08), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.debates-hero-stage__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #f2f7ff;
  text-wrap: balance;
}

.debates-hero-stage__copy p {
  margin: 0;
  color: #d3e2ff;
  font-size: 15px;
  line-height: 1.55;
}

.debates-stage-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.debates-stage-points article {
  display: grid;
  gap: 6px;
  padding: 12px 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(10, 17, 32, 0.84), rgba(7, 11, 23, 0.8));
}

.debates-stage-points span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9ed8ff;
}

.debates-stage-points strong {
  font-size: 15px;
  line-height: 1.2;
  color: #edf5ff;
}

.debates-topline {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  border-bottom: 1px solid rgba(132, 155, 220, 0.2);
}

.debates-intro {
  padding: 12px 14px;
  border-right: 1px solid rgba(132, 155, 220, 0.16);
}

.debates-tag {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9ed8ff;
}

.debates-intro h2 {
  margin: 0 0 6px;
  font-size: 24px;
  color: #f2f7ff;
  text-shadow: 0 0 12px rgba(140, 180, 255, 0.2);
}

.debates-intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.38;
}

.debates-method {
  padding: 12px;
}

.debates-method h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #edf4ff;
}

.debates-method ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}

.debates-method li {
  font-size: 13px;
  line-height: 1.34;
  color: #d2e1ff;
}

.debates-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.debates-col {
  padding: 12px 14px;
}

.debates-col-acc {
  border-right: 1px solid rgba(132, 155, 220, 0.16);
  background:
    radial-gradient(110% 90% at 0% 0%, rgba(125, 231, 212, 0.12), transparent 58%),
    linear-gradient(145deg, rgba(15, 27, 44, 0.72), rgba(10, 20, 36, 0.66));
}

.debates-col-doomer {
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(201, 160, 255, 0.13), transparent 58%),
    linear-gradient(145deg, rgba(28, 16, 34, 0.72), rgba(20, 13, 29, 0.66));
}

.debates-col h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #f2f7ff;
}

.debates-claim {
  margin: 0 0 8px;
  font-size: 14px;
  color: #d9e8ff;
}

.debates-col ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}

.debates-col li {
  font-size: 13px;
  line-height: 1.34;
}

.debates-truth {
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(132, 155, 220, 0.2);
  background:
    linear-gradient(145deg, rgba(8, 12, 22, 0.8), rgba(11, 16, 28, 0.8)) padding-box,
    var(--rainbow-soft) border-box;
  border-top: 1px solid transparent;
}

.debates-truth h3 {
  margin: 0 0 5px;
  font-size: 15px;
  color: #f0f6ff;
}

.debates-truth p {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.35;
}

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

.tools-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 0;
  margin-top: 12px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.tools-hero-stage__media {
  min-height: 320px;
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(7, 12, 24, 0.96), rgba(6, 10, 20, 0.96));
}

.tools-hero-stage__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-hero-stage__copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 26px 28px;
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(125, 231, 212, 0.12), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(244, 200, 143, 0.08), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.tools-stage-tag {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #98f1de;
}

.tools-hero-stage__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.15vw, 3.05rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #f2f7ff;
  text-wrap: balance;
}

.tools-hero-stage__copy p {
  margin: 0;
  color: #d3e2ff;
  font-size: 15px;
  line-height: 1.55;
}

.tools-stage-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.tools-stage-points article {
  display: grid;
  gap: 6px;
  padding: 12px 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(10, 17, 32, 0.84), rgba(7, 11, 23, 0.8));
}

.tools-stage-points span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #98f1de;
}

.tools-stage-points strong {
  font-size: 15px;
  line-height: 1.2;
  color: #edf5ff;
}

.page-visual-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 0;
  margin-top: 12px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.page-visual-stage__media {
  min-height: 320px;
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(7, 12, 24, 0.96), rgba(6, 10, 20, 0.96));
}

.page-visual-stage__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-visual-stage__copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 26px 28px;
}

.page-visual-stage__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.15vw, 3.05rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #f2f7ff;
  text-wrap: balance;
}

.page-visual-stage__copy p {
  margin: 0;
  color: #d3e2ff;
  font-size: 15px;
  line-height: 1.55;
}

.page-visual-stage__eyebrow {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.page-visual-stage__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.page-visual-stage__points article {
  display: grid;
  gap: 6px;
  padding: 12px 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(10, 17, 32, 0.84), rgba(7, 11, 23, 0.8));
}

.page-visual-stage__points span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-visual-stage__points strong {
  font-size: 15px;
  line-height: 1.2;
  color: #edf5ff;
}

.page-visual-stage--archive .page-visual-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(201, 160, 255, 0.14), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(108, 194, 255, 0.1), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.page-visual-stage--archive .page-visual-stage__eyebrow,
.page-visual-stage--archive .page-visual-stage__points span {
  color: #d8b7ff;
}

.page-visual-stage--bench .page-visual-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(108, 194, 255, 0.14), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(125, 231, 212, 0.1), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.page-visual-stage--bench .page-visual-stage__eyebrow,
.page-visual-stage--bench .page-visual-stage__points span {
  color: #8fdcff;
}

.page-visual-stage--blog .page-visual-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(125, 231, 212, 0.12), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(244, 200, 143, 0.08), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.page-visual-stage--blog .page-visual-stage__eyebrow,
.page-visual-stage--blog .page-visual-stage__points span {
  color: #98f1de;
}

.page-visual-stage--stats .page-visual-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(124, 169, 255, 0.14), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(108, 194, 255, 0.08), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.page-visual-stage--stats .page-visual-stage__eyebrow,
.page-visual-stage--stats .page-visual-stage__points span {
  color: #9fc0eb;
}

.page-visual-stage--bias .page-visual-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(125, 231, 212, 0.12), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(201, 160, 255, 0.1), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.page-visual-stage--bias .page-visual-stage__eyebrow,
.page-visual-stage--bias .page-visual-stage__points span {
  color: #9ff3e1;
}

.page-visual-stage--404 .page-visual-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(243, 198, 118, 0.14), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(120, 196, 255, 0.12), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.page-visual-stage--404 .page-visual-stage__eyebrow,
.page-visual-stage--404 .page-visual-stage__points span {
  color: #f0c982;
}

.not-found-route {
  margin: 12px 0 0;
  color: #cfddf7;
  font-size: 13px;
  line-height: 1.5;
}

.not-found-route code {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background: rgba(7, 12, 24, 0.76);
  color: #eff5ff;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.not-found-action-grid {
  margin-top: 12px;
}

.education-hero-stage,
.archive-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 0;
  margin-top: 12px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.education-hero-stage__media,
.archive-hero-stage__media {
  min-height: 320px;
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(7, 12, 24, 0.96), rgba(6, 10, 20, 0.96));
}

.education-hero-stage__media img,
.archive-hero-stage__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.education-hero-stage__copy,
.archive-hero-stage__copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 26px 28px;
}

.education-hero-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(124, 169, 255, 0.14), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(125, 231, 212, 0.08), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.archive-hero-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(201, 160, 255, 0.14), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(108, 194, 255, 0.1), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.education-stage-tag,
.archive-stage-tag {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.education-stage-tag {
  color: #8fdcff;
}

.archive-stage-tag {
  color: #d8b7ff;
}

.education-hero-stage__copy h2,
.archive-hero-stage__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.15vw, 3.05rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #f2f7ff;
  text-wrap: balance;
}

.education-hero-stage__copy p,
.archive-hero-stage__copy p {
  margin: 0;
  color: #d3e2ff;
  font-size: 15px;
  line-height: 1.55;
}

.education-stage-points,
.archive-stage-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.education-stage-points article,
.archive-stage-points article {
  display: grid;
  gap: 6px;
  padding: 12px 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(10, 17, 32, 0.84), rgba(7, 11, 23, 0.8));
}

.education-stage-points span,
.archive-stage-points span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.education-stage-points span {
  color: #8fdcff;
}

.archive-stage-points span {
  color: #d8b7ff;
}

.education-stage-points strong,
.archive-stage-points strong {
  font-size: 15px;
  line-height: 1.2;
  color: #edf5ff;
}

.education-integrated {
  margin-top: 12px;
  padding: 16px;
  border-radius: 6px;
}

.education-topline {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 12px;
  margin-bottom: 12px;
}

.education-intro,
.education-method {
  border: 1px solid rgba(136, 158, 224, 0.28);
  border-radius: 6px;
  padding: 14px;
  background: linear-gradient(150deg, rgba(10, 18, 34, 0.94), rgba(8, 14, 28, 0.9));
}

.education-tag {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
}

.education-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.education-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.education-method h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.education-method ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 5px;
}

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

.education-grid .card {
  margin: 0;
}
.education-workspace {
  margin-bottom: 12px;
}
.education-focus-card {
  margin-top: 10px;
  border: 1px solid rgba(136, 158, 224, 0.24);
  border-radius: 8px;
  padding: 12px;
  background: rgba(8, 14, 28, 0.62);
}
.education-focus-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}
.education-focus-card p {
  margin: 0 0 8px;
  color: #c9d9f7;
  line-height: 1.45;
}
.education-focus-card p:last-child {
  margin-bottom: 0;
}
.education-dynamic-shell {
  margin-top: 12px;
}
.education-dynamic-frame {
  width: 100%;
  min-height: 760px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 10px;
  background: #020616;
  margin-top: 10px;
}
.promptlab-signal-card {
  background:
    radial-gradient(100% 140% at 88% 0%, rgba(201, 160, 255, 0.08), transparent 44%),
    linear-gradient(145deg, rgba(10, 17, 31, 0.88), rgba(7, 11, 23, 0.86));
}
.education-era-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.history-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.history-story {
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(120% 120% at 90% 0%, rgba(126, 240, 207, 0.06), transparent 44%),
    linear-gradient(145deg, rgba(9, 14, 28, 0.94), rgba(7, 11, 23, 0.92));
}
.history-story-art {
  min-height: 140px;
  position: relative;
  border-bottom: 1px solid rgba(132, 155, 220, 0.18);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  overflow: hidden;
}
.history-story-art span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(208, 235, 255, 0.22);
  background: rgba(5, 11, 22, 0.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ebf4ff;
  font-weight: 800;
}
.history-story-art::before,
.history-story-art::after {
  content: "";
  position: absolute;
  inset: 0;
}
.history-story-art::before {
  opacity: 0.88;
}
.history-story-art::after {
  inset: auto 18px 16px auto;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  border: 1px solid rgba(231, 243, 255, 0.12);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.06);
  opacity: 0.72;
}
.history-stage-fire::before {
  background:
    radial-gradient(circle at 26% 72%, rgba(255, 175, 83, 0.92), transparent 18%),
    radial-gradient(circle at 36% 63%, rgba(255, 109, 61, 0.72), transparent 18%),
    linear-gradient(160deg, rgba(48, 24, 12, 0.94), rgba(10, 13, 24, 0.96));
}
.history-stage-fire::after {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 219, 146, 0.92), transparent 18%),
    radial-gradient(circle at 60% 56%, rgba(255, 145, 83, 0.72), transparent 24%),
    linear-gradient(145deg, rgba(52, 24, 16, 0.56), rgba(13, 22, 34, 0.24));
}
.history-stage-ledger::before {
  background:
    linear-gradient(0deg, rgba(196, 158, 94, 0.16), rgba(196, 158, 94, 0.16)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 36px),
    linear-gradient(160deg, rgba(34, 24, 11, 0.95), rgba(7, 12, 24, 0.96));
}
.history-stage-ledger::after {
  background:
    linear-gradient(145deg, rgba(236, 203, 139, 0.28), rgba(89, 63, 29, 0.08)),
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent);
}
.history-stage-print::before {
  background:
    radial-gradient(circle at 74% 28%, rgba(125, 231, 212, 0.38), transparent 22%),
    linear-gradient(160deg, rgba(15, 28, 52, 0.95), rgba(7, 12, 24, 0.96));
}
.history-stage-print::after {
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 16px),
    linear-gradient(145deg, rgba(123, 169, 255, 0.2), rgba(201, 160, 255, 0.12));
}
.history-stage-industry::before {
  background:
    linear-gradient(180deg, rgba(255, 182, 85, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(20, 24, 34, 0.95), rgba(8, 12, 22, 0.96));
}
.history-stage-industry::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 12%, transparent 12% 20%, rgba(255,255,255,0.08) 20% 32%, transparent 32% 40%, rgba(255,255,255,0.08) 40% 52%, transparent 52%),
    linear-gradient(145deg, rgba(255, 182, 85, 0.24), rgba(85, 112, 214, 0.08));
}
.history-stage-network::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(111, 216, 255, 0.28), transparent 20%),
    radial-gradient(circle at 78% 74%, rgba(126, 240, 207, 0.24), transparent 24%),
    linear-gradient(160deg, rgba(8, 17, 36, 0.95), rgba(7, 12, 24, 0.96));
}
.history-stage-network::after {
  background:
    linear-gradient(145deg, rgba(124, 169, 255, 0.18), rgba(201, 160, 255, 0.12)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 58%, rgba(255,255,255,0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 52% 78%, rgba(255,255,255,0.12) 0 2px, transparent 3px);
}
.history-stage-agents::before {
  background:
    radial-gradient(circle at 22% 26%, rgba(201, 160, 255, 0.3), transparent 20%),
    radial-gradient(circle at 78% 66%, rgba(126, 240, 207, 0.28), transparent 24%),
    linear-gradient(160deg, rgba(10, 18, 38, 0.95), rgba(5, 9, 20, 0.96));
}
.history-stage-agents::after {
  background:
    linear-gradient(145deg, rgba(201, 160, 255, 0.2), rgba(111, 216, 255, 0.16)),
    linear-gradient(90deg, transparent 0 14%, rgba(255,255,255,0.08) 14% 16%, transparent 16% 32%, rgba(255,255,255,0.08) 32% 34%, transparent 34%);
}
.history-story-copy {
  padding: 14px;
  display: grid;
  gap: 8px;
}
.history-story-copy h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}
.history-story-copy p {
  margin: 0;
  color: #c7d8f6;
  line-height: 1.62;
}
.history-shift {
  margin-top: 4px !important;
  padding-top: 10px;
  border-top: 1px solid rgba(132, 155, 220, 0.16);
  color: #e9f3ff !important;
}
.history-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.history-chart-card p {
  line-height: 1.62;
}
.history-metric-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}
.history-metric-strip div,
.history-horizon-grid article {
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 10px;
  padding: 10px 11px;
  background: rgba(8, 13, 24, 0.58);
  display: grid;
  gap: 5px;
}
.history-metric-strip strong,
.history-horizon-grid h3 {
  color: #f2f8ff;
  font-size: 14px;
}
.history-metric-strip span,
.history-horizon-grid p {
  color: #bfd3f3;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.history-horizon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.history-bottomline {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(125, 231, 212, 0.24);
  border-radius: 12px;
  padding: 14px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(125, 231, 212, 0.08), transparent 44%),
    linear-gradient(145deg, rgba(10, 17, 31, 0.82), rgba(8, 13, 24, 0.78));
}
.history-bottomline strong {
  color: #dbfff4;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}
.history-bottomline span,
.history-source-note {
  color: #c4d7f5;
  line-height: 1.58;
}
.history-source-note {
  margin-top: 12px;
  font-size: 12px;
}
.openclaw-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 231, 212, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(10, 16, 30, 0.94), rgba(6, 10, 20, 0.92));
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.openclaw-logo-link:hover {
  border-color: rgba(125, 231, 212, 0.74);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(4, 8, 18, 0.48);
}
.openclaw-logo {
  width: min(100%, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.code-school-hero-card,
.post-labor-hero-card {
  overflow: hidden;
}
.code-school-hero-art,
.post-labor-hero-art {
  position: relative;
  min-height: 290px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(126, 240, 207, 0.18), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(108, 194, 255, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(9, 14, 30, 0.98), rgba(4, 8, 20, 0.96));
}
.code-school-hero-art::before,
.post-labor-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 231, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 194, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}
.code-school-hero-art::after,
.post-labor-hero-art::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -18%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 24px;
  transform: rotate(-10deg);
  background: linear-gradient(145deg, rgba(13, 21, 44, 0.86), rgba(23, 48, 88, 0.6));
  border: 1px solid rgba(132, 155, 220, 0.24);
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.08);
}
.code-school-hero-art::after {
  clip-path: polygon(8% 12%, 88% 0%, 100% 44%, 78% 100%, 18% 90%, 0% 42%);
}
.post-labor-hero-art::after {
  clip-path: polygon(10% 14%, 92% 8%, 100% 62%, 66% 100%, 0% 86%, 0% 38%);
}
.code-school-hero-copy,
.post-labor-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 26px 26px 30px;
}
.code-school-hero-copy h2,
.post-labor-hero-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.03;
}
.code-school-hero-copy p,
.post-labor-hero-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #d5e3fb;
}
.reskill-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.reskill-plan-grid article {
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 12px;
  padding: 14px;
  background:
    radial-gradient(100% 120% at 85% 0%, rgba(125, 231, 212, 0.08), transparent 48%),
    linear-gradient(145deg, rgba(10, 17, 31, 0.88), rgba(7, 11, 23, 0.86));
}
.reskill-plan-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.reskill-plan-grid p {
  margin: 0 0 10px;
  line-height: 1.55;
  color: #d0def7;
}
.reskill-plan-grid ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.reskill-plan-grid li {
  color: #d9e6fc;
  line-height: 1.45;
}
.education-era-card {
  border: 1px solid rgba(136, 158, 224, 0.24);
  border-radius: 8px;
  padding: 10px;
  background: rgba(8, 14, 28, 0.62);
}
.education-era-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #e8f2ff;
}
.education-era-card p {
  margin: 0;
  font-size: 13px;
  color: #c9d9f7;
  line-height: 1.45;
}
.edu-chart {
  width: 100%;
  height: auto;
  border: 1px solid rgba(130, 150, 210, 0.28);
  border-radius: 10px;
  margin-top: 6px;
}
.education-causal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.education-causal-grid div {
  border: 1px solid rgba(132, 155, 220, 0.25);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(9, 14, 26, 0.64);
  display: grid;
  gap: 4px;
}
.education-causal-grid strong {
  color: #f1f7ff;
  font-size: 13px;
}
.education-causal-grid span {
  color: #b9cceb;
  font-size: 12px;
  line-height: 1.4;
}
.debate-video-row {
  grid-template-columns: 56px minmax(240px, 380px) 1fr;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(7, 12, 24, 0.7);
}
.debate-video-row:last-child {
  margin-bottom: 0;
}
.debate-video-row .yt-rank {
  font-size: 10px;
  letter-spacing: .08em;
  color: #9ddfff;
}

@media (max-width: 960px) {
  .debates-hero-stage {
    grid-template-columns: 1fr;
  }
  .debates-hero-stage__media {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.18);
  }
  .debates-hero-stage__copy {
    padding: 18px 16px 20px;
  }
  .tools-hero-stage {
    grid-template-columns: 1fr;
  }
  .tools-hero-stage__media {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.18);
  }
  .tools-hero-stage__copy {
    padding: 18px 16px 20px;
  }
  .debates-stage-points {
    grid-template-columns: 1fr;
  }
  .tools-stage-points {
    grid-template-columns: 1fr;
  }
  .page-visual-stage {
    grid-template-columns: 1fr;
  }
  .page-visual-stage__media {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.18);
  }
  .page-visual-stage__copy {
    padding: 18px 16px 20px;
  }
  .page-visual-stage__points {
    grid-template-columns: 1fr;
  }
  .education-hero-stage,
  .archive-hero-stage {
    grid-template-columns: 1fr;
  }
  .education-hero-stage__media,
  .archive-hero-stage__media {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.18);
  }
  .education-hero-stage__copy,
  .archive-hero-stage__copy {
    padding: 18px 16px 20px;
  }
  .education-stage-points,
  .archive-stage-points {
    grid-template-columns: 1fr;
  }
  .debates-topline {
    grid-template-columns: 1fr;
  }
  .debates-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.16);
  }
  .debates-columns {
    grid-template-columns: 1fr;
  }
  .debates-col-acc {
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.16);
  }
  .education-topline {
    grid-template-columns: 1fr;
  }
  .education-grid {
    grid-template-columns: 1fr;
  }
  .education-dynamic-frame {
    min-height: 640px;
  }
  .education-era-grid,
  .education-causal-grid,
  .history-story-grid,
  .history-chart-grid,
  .history-horizon-grid,
  .history-metric-strip {
    grid-template-columns: 1fr;
  }
  .reskill-plan-grid {
    grid-template-columns: 1fr;
  }
  .code-school-hero-art,
  .post-labor-hero-art {
    min-height: 250px;
  }
  .debate-video-row {
    grid-template-columns: 44px 1fr;
  }
  .debate-video-row .yt-embed {
    grid-column: 1 / -1;
  }
}
.help-letter-nav { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.help-letter {
  border: 1px solid rgba(132, 155, 220, 0.28);
  background: rgba(12, 17, 30, 0.82);
  color: #d7e5ff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  cursor: pointer;
}
.help-letter.is-active { border-color: rgba(125, 231, 212, 0.75); color: #e9fffa; }
.help-alpha-groups { display: grid; gap: 10px; max-height: 620px; overflow: auto; }
.help-letter-group { border: 1px solid rgba(123, 144, 208, .26); border-radius: 8px; padding: 10px; background: rgba(6, 11, 21, 0.56); }
.help-letter-group h3 { margin: 0 0 8px; font-size: 14px; color: #def4ff; }
.help-letter-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.help-glossary-item { display: grid; grid-template-columns: minmax(160px, 220px) 1fr; gap: 8px; align-items: start; }
.subscribe-layout { grid-template-columns: 1fr 1.2fr; align-items: start; }
.news-3col + .subscribe-inline-module,
.subscribe-inline-module + .news-3col { margin-top: 12px; }
.merch-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.merch-card {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 8px;
  aspect-ratio: auto;
  min-height: 540px;
}
.merch-image {
  min-height: 380px;
  height: 100%;
  border: 1px solid rgba(132, 155, 220, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.merch-image span { font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.merch-image-light {
  background: linear-gradient(135deg, rgba(245, 248, 255, 0.95), rgba(224, 233, 249, 0.92));
}
.merch-image-light span { color: #0c1222; }
.merch-image-dark {
  background: linear-gradient(135deg, rgba(14, 18, 32, 0.96), rgba(8, 12, 22, 0.96));
}
.merch-image-dark span { color: #eef4ff; }
.merch-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 350px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
.merch-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merch-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.merch-meta strong { font-size: 18px; color: #e6f6ff; }
.merch-buy {
  text-decoration: none;
  border: 1px solid rgba(159,186,255,.6);
  background: linear-gradient(135deg, rgba(83,117,224,.45), rgba(154,96,208,.4));
  color: #eef3ff;
  padding: 7px 11px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
}
.merch-buy:hover { box-shadow: 0 0 14px rgba(180, 146, 255, 0.22); }
@media (max-width: 1320px) {
  .merch-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .merch-card { min-height: 0; }
  .merch-image { min-height: 300px; }
  .merch-image img { max-height: 280px; }
}

@media (max-width: 1180px) {
  .tools-framework-head,
  .career-section-head,
  .careers-stage,
  .resume-stage {
    grid-template-columns: 1fr;
  }
  .tools-principles-grid,
  .career-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .career-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page {
    padding: 12px 12px 40px;
  }
  .site-brand__img { width: min(255px, 66vw); }
  .tagline {
    margin: 6px 0 14px 4px;
    font-size: 15px;
    line-height: 1.25;
  }
  .hero { padding: 14px; }
  .nav {
    margin-bottom: 12px;
  }
  .nav-burger {
    margin-bottom: 10px;
    padding: 10px 14px;
    font-size: 12px;
  }
  .ticker {
    margin-bottom: 10px;
  }
  .ticker-track {
    min-height: 34px;
  }
  .ticker-stock .ticker-track {
    min-height: 28px;
  }
  .ticker-label {
    padding: 0 8px;
    font-size: 10px;
  }
  .ticker-label-stock {
    padding: 0 8px;
    font-size: 9px;
  }
  .ticker-move {
    font-size: 12px;
  }
  .ticker-source {
    font-size: 11px;
  }
  .ticker-sep {
    margin: 0 10px;
  }
  .ticker-sep-stock {
    margin: 0 8px;
  }
  .home-brand-hero {
    background:
      linear-gradient(90deg, rgba(6, 10, 20, 0.08) 0%, rgba(6, 10, 20, 0.04) 26%, rgba(6, 10, 20, 0.12) 54%, rgba(6, 10, 20, 0.34) 100%),
      linear-gradient(180deg, rgba(7, 14, 28, 0.04) 0%, rgba(7, 14, 28, 0.1) 38%, rgba(7, 14, 28, 0.24) 100%),
      var(--home-hero-mobile-image, var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      ))) var(--home-hero-position-mobile, var(--home-hero-position, 18% 48%)) / cover no-repeat;
    min-height: 452px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 14px;
  }
  .home-brand-hero__content {
    width: min(48%, 224px);
    max-width: 224px;
    margin: 0 0 0 auto;
    padding: 0;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
    background:
      linear-gradient(180deg, rgba(4, 9, 21, 0), rgba(4, 9, 21, 0));
  }
  .home-brand-hero .kicker {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
  }
  .home-brand-hero h1 {
    font-size: clamp(2rem, 8vw, 2.48rem);
    max-width: 5.4ch;
    margin-left: auto;
    margin-bottom: 10px;
    text-wrap: pretty;
  }
  .home-brand-hero__lead {
    font-size: 0.94rem;
    max-width: 13ch;
    line-height: 1.42;
    margin-left: auto;
  }
  .home-brand-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .home-brand-hero__link {
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .home-brand-hero__actions .home-brand-hero__link:last-child {
    grid-column: auto;
  }
  .aur-ad-slot {
    margin-bottom: 10px;
    padding: 8px 10px 10px;
  }
  .aur-ad-slot__head {
    align-items: center;
    flex-direction: row;
    gap: 6px;
    margin-bottom: 6px;
  }
  .aur-ad-slot__ins {
    min-height: 84px;
  }
  h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .lead { font-size: 14px; }
  .story-row { grid-template-columns: 38px 1fr; gap: 8px; padding: 8px 9px; }
  .story-link { font-size: 13px; }
  .merch-grid { grid-template-columns: 1fr; }
  .merch-card { gap: 6px; }
  .merch-image { min-height: 220px; padding: 12px; }
  .merch-image img { max-height: 200px; }
  .site-footer { gap: 10px; font-size: 11px; }
  .site-footer__meta {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
  .tools-principles-grid,
  .tools-paths-grid,
  .career-spotlight-grid,
  .career-hub-grid,
  .resume-before-after-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 10px 10px 34px;
  }
  .tagline {
    font-size: 14px;
    margin-left: 2px;
  }
  .home-brand-hero {
    background:
      linear-gradient(90deg, rgba(6, 10, 20, 0.14) 0%, rgba(6, 10, 20, 0.06) 24%, rgba(6, 10, 20, 0.14) 54%, rgba(6, 10, 20, 0.3) 100%),
      linear-gradient(180deg, rgba(7, 14, 28, 0.06) 0%, rgba(7, 14, 28, 0.12) 42%, rgba(7, 14, 28, 0.28) 100%),
      var(--home-hero-mobile-sm-image, var(--home-hero-mobile-image, var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      )))) var(--home-hero-position-mobile-sm, var(--home-hero-position-mobile, var(--home-hero-position, 16% 48%))) / cover no-repeat;
    min-height: 418px;
  }
  .home-brand-hero__content {
    width: min(51%, 188px);
    max-width: 188px;
  }
  .home-brand-hero h1 {
    font-size: clamp(1.8rem, 7.9vw, 2.16rem);
    max-width: 5ch;
  }
  .home-brand-hero__lead {
    max-width: 11.5ch;
  }
  .home-brand-hero__actions {
    grid-template-columns: 1fr;
  }
  .home-brand-hero__actions .home-brand-hero__link:last-child {
    grid-column: auto;
  }
  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ticker-move {
    font-size: 11px;
  }
}

.anchor-box {
  border: 1px solid rgba(132, 155, 220, 0.28);
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(10, 16, 30, 0.78), rgba(8, 13, 25, 0.76));
}
.anchor-avatar-wrap {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
}
.anchor-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(159, 186, 255, 0.55);
  background:
    radial-gradient(circle at 35% 25%, rgba(126, 240, 207, 0.3), transparent 46%),
    radial-gradient(circle at 75% 75%, rgba(201, 160, 255, 0.32), transparent 52%),
    linear-gradient(145deg, rgba(15, 26, 48, 0.96), rgba(8, 14, 26, 0.96));
  position: relative;
  box-shadow: 0 0 0 1px rgba(125, 231, 212, 0.12), 0 8px 20px rgba(3, 8, 18, 0.55);
}
.anchor-eyes,
.anchor-mouth {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.anchor-eyes::before,
.anchor-eyes::after {
  content: "";
  position: absolute;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9f4ff;
  box-shadow: 0 0 8px rgba(149, 223, 255, 0.7);
}
.anchor-eyes { top: 22px; width: 22px; }
.anchor-eyes::before { left: 0; }
.anchor-eyes::after { right: 0; }
.anchor-mouth {
  top: 37px;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: rgba(212, 229, 255, 0.92);
  transition: height .15s ease, top .15s ease;
}
.anchor-avatar.is-speaking {
  animation: anchorPulse 1.1s ease-in-out infinite;
}
.anchor-avatar.is-speaking .anchor-mouth {
  height: 9px;
  top: 34px;
}
.anchor-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9ddcff;
  font-weight: 800;
}
.anchor-controls {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}
.anchor-voice-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
}

/* Private Dashboard */
.dash-shell {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.dash-shell-pro {
  border-color: rgba(132, 155, 220, 0.3);
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(124, 169, 255, 0.1), transparent 55%),
    radial-gradient(120% 120% at 92% 10%, rgba(201, 160, 255, 0.12), transparent 52%),
    linear-gradient(145deg, rgba(10, 16, 34, 0.94), rgba(7, 11, 24, 0.92));
  padding: 16px 18px;
}

.dash-hero-pro {
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(126, 240, 207, 0.12), transparent 46%),
    radial-gradient(100% 140% at 88% 8%, rgba(124, 169, 255, 0.16), transparent 52%),
    linear-gradient(165deg, var(--panel), var(--panel-2));
}

.dash-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.dash-chip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.dash-chip {
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 9px;
  padding: 8px 10px;
  background: linear-gradient(145deg, rgba(8, 13, 24, 0.78), rgba(10, 17, 31, 0.78));
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.dash-chip-card {
  border: 1px solid rgba(132, 155, 220, 0.26);
  border-radius: 9px;
  padding: 8px 10px;
  background: linear-gradient(145deg, rgba(8, 13, 24, 0.78), rgba(10, 17, 31, 0.78));
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.dash-chip span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9cb2dd;
  font-weight: 800;
}

.dash-chip-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9cb2dd;
  font-weight: 800;
}

.dash-chip strong {
  font-size: 13px;
  color: #edf4ff;
  line-height: 1.2;
}

.dash-chip-value {
  font-size: 13px;
  color: #edf4ff;
  line-height: 1.2;
}

.dash-chip-info {
  border-color: rgba(159, 186, 255, 0.34);
}

.dash-chip-card.dash-chip-info {
  border-color: rgba(159, 186, 255, 0.34);
}

.dash-chip-up {
  border-color: rgba(125, 231, 212, 0.46);
  box-shadow: 0 0 0 1px rgba(125, 231, 212, 0.08) inset;
}

.dash-chip-card.dash-chip-up {
  border-color: rgba(125, 231, 212, 0.46);
  box-shadow: 0 0 0 1px rgba(125, 231, 212, 0.08) inset;
}

.dash-chip-flat {
  border-color: rgba(201, 160, 255, 0.34);
}

.dash-chip-card.dash-chip-flat {
  border-color: rgba(201, 160, 255, 0.34);
}

.dash-session-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  padding-top: 0;
}

.dash-session-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(12, 19, 39, 0.9), rgba(8, 12, 25, 0.88));
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #a4bbe4;
  font-weight: 700;
  white-space: nowrap;
}

.dash-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(140px, 180px) minmax(140px, 170px) auto;
  gap: 8px;
}

.dash-toolbar input,
.dash-toolbar select,
.dash-toolbar button {
  height: 40px;
}

.dash-toolbar input,
.dash-toolbar select {
  border-radius: 9px;
}

.dash-toolbar button {
  padding: 0 14px;
  font-size: 13px;
}

.dash-quick-nav {
  display: grid;
  grid-template-columns:
    minmax(210px, 0.88fr)
    minmax(320px, 1.38fr)
    minmax(180px, 0.68fr)
    minmax(240px, 1fr)
    minmax(180px, 0.64fr);
  gap: 10px;
  min-width: 0;
}

.dash-nav-group {
  min-width: 0;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(10, 16, 34, 0.88), rgba(8, 12, 25, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.dash-nav-label {
  margin: 0 0 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9fb5df;
  font-weight: 800;
}

.dash-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dash-nav-group-single .dash-nav-pills .dash-quick-link {
  width: 100%;
}

.dash-quick-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  font-weight: 800;
  color: #e7f1ff;
  border: 1px solid rgba(132, 155, 220, 0.38);
  border-radius: 999px;
  padding: 7px 12px;
  background: linear-gradient(135deg, rgba(22, 36, 66, 0.92), rgba(20, 29, 52, 0.92));
}

.dash-quick-link:hover {
  border-color: rgba(125, 231, 212, 0.66);
  color: #dffff8;
}

.dash-quick-btn {
  cursor: pointer;
}

#dash-logout {
  appearance: none;
  border: 1px solid rgba(132, 155, 220, 0.38);
  border-radius: 999px;
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(22, 36, 66, 0.92), rgba(20, 29, 52, 0.92));
  color: #e7f1ff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

#dash-logout:hover {
  border-color: rgba(125, 231, 212, 0.66);
  color: #dffff8;
}
.dash-quick-link.is-active {
  border-color: rgba(125, 231, 212, 0.82);
  color: #e8fff8;
  box-shadow: inset 0 0 0 1px rgba(125, 231, 212, 0.2);
}

.dash-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-up-btn {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(132, 155, 220, 0.46);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: #d7e8ff;
  background: linear-gradient(135deg, rgba(24, 34, 62, 0.92), rgba(33, 31, 65, 0.92));
  box-shadow: inset 0 0 0 1px rgba(201, 160, 255, 0.1);
}

.dash-up-btn:hover {
  border-color: rgba(125, 231, 212, 0.72);
  color: #dffff7;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
  align-items: start;
}

.dash-grid-pro {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.74fr);
  gap: 12px;
  align-items: start;
}

.dash-col-main,
.dash-col-side {
  display: grid;
  gap: 12px;
  align-items: start;
}

.dash-panel {
  border-color: rgba(132, 155, 220, 0.3);
  box-shadow: inset 0 0 0 1px rgba(124, 169, 255, 0.06);
}

.dash-grid-masonry {
  display: block;
  column-count: 2;
  column-gap: 12px;
}

.dash-grid-masonry > .card {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
}

.dash-blog-frame {
  width: 100%;
  min-height: 640px;
  border: 1px solid rgba(132, 155, 220, 0.28);
  border-radius: 14px;
  background: #020616;
  margin-top: 10px;
}

.dash-editorial {
  border-color: rgba(132, 155, 220, 0.34);
  background:
    radial-gradient(120% 120% at 90% 4%, rgba(126, 240, 207, 0.08), transparent 50%),
    linear-gradient(140deg, rgba(8, 14, 29, 0.95), rgba(6, 10, 24, 0.94));
}

.dash-article-images-grid {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.dash-article-image-preview {
  min-height: 280px;
}

.dash-article-image-card {
  display: grid;
  gap: 12px;
}

.dash-article-image-card__img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.28);
  display: block;
  background: rgba(4, 9, 20, 0.9);
}

.dash-article-image-card__meta {
  display: grid;
  gap: 6px;
}

.dash-digest-grid {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.dash-digest-editor {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 12px;
}

.dash-digest-preview-wrap {
  min-width: 0;
}

.dash-digest-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.dash-preview-toggle {
  display: inline-flex;
  gap: 6px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 999px;
  padding: 4px;
  background: rgba(4, 9, 21, 0.72);
}

.dash-preview-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9fb6dd;
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.dash-preview-toggle button.is-active {
  background: linear-gradient(90deg, rgba(27, 50, 76, 0.95) 0%, rgba(50, 57, 118, 0.95) 55%, rgba(92, 57, 118, 0.95) 100%);
  color: #edf4ff;
  box-shadow: 0 0 0 1px rgba(125, 231, 212, 0.28) inset;
}

.dash-digest-preview-shell {
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(4, 9, 21, 0.78), rgba(3, 7, 19, 0.94));
  padding: 14px;
  overflow: auto;
  transition: padding .18s ease, border-color .18s ease;
}

.dash-digest-preview-stage {
  width: 700px;
  max-width: 720px;
  min-height: 620px;
  margin: 0 auto;
}

.dash-digest-preview-stage .dash-blog-frame {
  width: 700px;
  max-width: none;
  margin: 0;
  transform-origin: top left;
  will-change: transform;
}

.dash-digest-preview-shell.is-mobile .dash-digest-preview-stage {
  max-width: 390px;
}

.dash-digest-preview-shell.is-tablet .dash-digest-preview-stage {
  max-width: 640px;
}

.dash-digest-preview-shell.is-desktop .dash-digest-preview-stage,
.dash-digest-preview-shell.is-laptop .dash-digest-preview-stage {
  max-width: 720px;
}

.dash-hero-preview-frame {
  margin: 0 auto;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background: linear-gradient(180deg, rgba(5, 9, 22, 0.98), rgba(5, 9, 22, 0.9));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.dash-hero-preview-frame--desktop {
  max-width: 1140px;
  border-radius: 18px;
  padding: 14px;
}

.dash-hero-preview-frame--tablet,
.dash-hero-preview-frame--mobile {
  border-radius: 28px;
  padding: 14px;
}

.dash-hero-preview-frame--tablet {
  max-width: 860px;
}

.dash-hero-preview-frame--mobile {
  max-width: 420px;
}

.dash-hero-preview-label {
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.dash-home-hero-live-preview {
  width: min(100%, 1100px);
  margin: 0;
}

.dash-home-hero-live-preview .home-brand-hero__link {
  pointer-events: none;
}

.dash-home-hero-live-preview--desktop {
  min-height: 308px;
}

.dash-home-hero-live-preview--tablet {
  width: min(100%, 820px);
  min-height: 390px;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(6, 10, 20, 0.12) 0%, rgba(6, 10, 20, 0.06) 24%, rgba(6, 10, 20, 0.12) 56%, rgba(6, 10, 20, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 14, 28, 0.03) 0%, rgba(7, 14, 28, 0.16) 46%, rgba(7, 14, 28, 0.44) 100%),
    var(--home-hero-image, image-set(
      url("aura-hero.webp") type("image/webp"),
      url("aura-hero.png") type("image/png")
    )) var(--home-hero-position-tablet, var(--home-hero-position, 20% 46%)) / cover no-repeat;
}

.dash-home-hero-live-preview--tablet::before {
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: min(40%, 344px);
  border-radius: 26px;
}

.dash-home-hero-live-preview--tablet .home-brand-hero__content {
  width: min(40%, 344px);
  max-width: 344px;
  margin: auto 0 auto auto;
  padding: 28px 24px 22px;
}

.dash-home-hero-live-preview--tablet h1 {
  max-width: 7.35ch;
  font-size: clamp(2.4rem, 5.4vw, 3.7rem);
}

.dash-home-hero-live-preview--tablet .home-brand-hero__lead {
  max-width: 18ch;
  font-size: 0.96rem;
}

.dash-home-hero-live-preview--mobile {
  width: min(100%, 390px);
  min-height: 360px;
  justify-content: center;
  align-items: stretch;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.06) 0%, rgba(6, 10, 20, 0.16) 34%, rgba(6, 10, 20, 0.46) 100%),
    linear-gradient(90deg, rgba(6, 10, 20, 0.08) 0%, rgba(6, 10, 20, 0.04) 28%, rgba(6, 10, 20, 0.18) 100%),
    var(--home-hero-mobile-image, var(--home-hero-image, image-set(
      url("aura-hero.webp") type("image/webp"),
      url("aura-hero.png") type("image/png")
    ))) var(--home-hero-position-mobile, var(--home-hero-position, 18% 48%)) / cover no-repeat;
}

.dash-home-hero-live-preview--mobile::before {
  top: auto;
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: auto;
  border-radius: 22px;
}

.dash-home-hero-live-preview--mobile .home-brand-hero__content {
  width: min(100%, 320px);
  max-width: 320px;
  margin: auto auto 8px;
  padding: 18px 18px 18px;
}

.dash-home-hero-live-preview--mobile h1 {
  max-width: 6ch;
  font-size: clamp(2.15rem, 9vw, 3rem);
}

.dash-home-hero-live-preview--mobile .home-brand-hero__lead {
  max-width: 18ch;
  font-size: 0.94rem;
}

.dash-home-hero-live-preview--mobile .home-brand-hero__actions {
  display: grid;
  grid-template-columns: 1fr;
}

.dash-home-hero-live-preview--mobile .home-brand-hero__link {
  width: 100%;
  justify-content: center;
}

.dash-growth-subhead {
  color: #9ddcff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dash-digest-meta-card {
  padding: 12px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  background: rgba(4, 9, 21, 0.72);
}

.dash-digest-rules {
  display: grid;
  gap: 8px;
}

.dash-digest-rule {
  border: 1px solid rgba(132, 155, 220, 0.18);
  border-radius: 10px;
  padding: 10px 11px;
  background: linear-gradient(145deg, rgba(9, 15, 30, 0.78), rgba(7, 11, 24, 0.76));
}

.dash-digest-rule strong {
  display: block;
  margin-bottom: 4px;
  color: #eef5ff;
  font-size: 13px;
}

.dash-digest-rule span {
  display: block;
  color: #aebddd;
  font-size: 12px;
  line-height: 1.55;
}

.dash-digest-qa-results {
  display: grid;
  gap: 8px;
}

.dash-qa-issue {
  display: grid;
  gap: 4px;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: rgba(7, 11, 24, 0.76);
}

.dash-qa-issue strong {
  color: #eef5ff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-qa-issue span {
  color: #b4c3df;
  font-size: 13px;
  line-height: 1.5;
}

.dash-qa-issue.is-warning {
  border-color: rgba(255, 205, 110, 0.38);
  background: linear-gradient(145deg, rgba(37, 24, 7, 0.82), rgba(18, 12, 6, 0.74));
}

.dash-qa-issue.is-warning strong {
  color: #ffd590;
}

.dash-qa-issue.is-error {
  border-color: rgba(255, 123, 146, 0.4);
  background: linear-gradient(145deg, rgba(41, 10, 19, 0.84), rgba(24, 8, 15, 0.76));
}

.dash-qa-issue.is-error strong {
  color: #ffb3c1;
}

.dash-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .dash-digest-grid {
    grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
    gap: 12px;
  }

  .dash-digest-preview-stage {
    width: 640px;
    max-width: 640px;
  }

  .dash-digest-preview-stage .dash-blog-frame {
    width: 640px;
  }
}

@media (max-width: 1023px) {
  .dash-digest-grid {
    grid-template-columns: 1fr;
  }

  .dash-article-images-grid {
    grid-template-columns: 1fr;
  }

  .dash-digest-preview-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-digest-editor {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  .dash-digest-grid {
    gap: 10px;
  }

  .dash-digest-preview-toolbar {
    gap: 10px;
  }

  .dash-preview-toggle {
    width: 100%;
    display: flex;
  }

  .dash-preview-toggle button {
    flex: 1 1 0;
    text-align: center;
  }

  .dash-digest-preview-shell {
    padding: 8px;
    border-radius: 14px;
    overflow-x: hidden;
  }

  .dash-digest-preview-stage {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .dash-digest-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dash-digest-preview-shell {
    padding: 6px;
  }

  .dash-blog-frame {
    border-radius: 10px;
    min-height: 520px;
  }
}

.dash-grid > .card {
  min-height: 0;
}

.dash-articles-card {
  grid-column: 1 / -1;
}

.dash-trend-list {
  display: grid;
  gap: 8px;
}

.dash-trend-card {
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 10px;
  padding: 10px 11px;
  display: grid;
  gap: 5px;
  background: linear-gradient(145deg, rgba(7, 11, 21, 0.72), rgba(8, 13, 24, 0.72));
}

.dash-trend-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
  align-items: center;
}

.dash-rank {
  font-size: 13px;
  color: #c9dbff;
  font-weight: 800;
}

.dash-status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  border: 1px solid rgba(132, 155, 220, 0.32);
  border-radius: 999px;
  padding: 2px 7px;
  color: #dbe7ff;
}

.dash-up .dash-status {
  border-color: rgba(125, 231, 212, 0.6);
  color: #bff7e9;
}

.dash-down .dash-status {
  border-color: rgba(245, 130, 151, 0.6);
  color: #ffd2da;
}

.dash-flat .dash-status {
  border-color: rgba(201, 160, 255, 0.6);
  color: #e5cffd;
}

.dash-trend-meta {
  font-size: 12px;
  color: #b8cae9;
}

.dash-trend-bar,
.dash-source-bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(29, 42, 73, 0.56);
  border: 1px solid rgba(132, 155, 220, 0.2);
}

.dash-trend-bar i,
.dash-source-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(123, 182, 247, 0.9), rgba(170, 120, 224, 0.9));
}

.dash-source-list {
  display: grid;
  gap: 8px;
}

.dash-source-row {
  border: 1px solid rgba(132, 155, 220, 0.2);
  border-radius: 10px;
  padding: 9px 10px;
  display: grid;
  gap: 7px;
  background: rgba(8, 13, 24, 0.62);
}

.dash-article-list {
  display: grid;
  gap: 8px;
}

.dash-item-card {
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 10px;
  padding: 9px 11px;
  display: grid;
  gap: 5px;
  background: linear-gradient(145deg, rgba(7, 11, 21, 0.72), rgba(8, 13, 24, 0.72));
}

.dash-item-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: baseline;
}

.dash-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.dash-tag {
  font-size: 11px;
  line-height: 1;
  border: 1px solid rgba(132, 155, 220, 0.34);
  border-radius: 999px;
  padding: 4px 7px;
  color: #d9e8ff;
  background: rgba(22, 34, 58, 0.5);
}

@media (max-width: 1220px) {
  .dash-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }
  .dash-grid-masonry {
    column-count: 1;
  }
  .dash-grid-pro {
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  }
}

@media (max-width: 1023px) {
  .dash-top-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .dash-session-bar {
    width: 100%;
    justify-content: flex-end;
    padding-top: 0;
  }

  .dash-toolbar {
    grid-template-columns: 1fr;
  }

  .dash-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .dash-nav-group-editorial-core,
  .dash-nav-group-audience {
    grid-column: span 2;
  }

  .dash-quick-link,
  #dash-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .dash-nav-pills .dash-quick-link {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }

  .dash-grid-pro {
    grid-template-columns: 1fr;
  }

  .dash-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .dash-quick-nav {
    grid-template-columns: 1fr;
  }

  .dash-nav-group-editorial-core,
  .dash-nav-group-audience {
    grid-column: auto;
  }

  .dash-nav-pills .dash-quick-link {
    flex-basis: 100%;
  }

  .dash-session-bar {
    justify-content: stretch;
    align-items: stretch;
  }

  .dash-session-state,
  #dash-logout {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .dash-chip-grid {
    grid-template-columns: 1fr;
  }
}
.anchor-voice-row label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #a9c7ef;
  font-weight: 700;
}
.anchor-controls select {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(132, 155, 220, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(17, 28, 54, 0.95), rgba(18, 24, 44, 0.95));
  color: #e9efff;
  font-size: 12px;
  padding: 6px 8px;
}
.anchor-btn-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.anchor-btn-row button {
  width: 100%;
  border: 1px solid rgba(132, 155, 220, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(40, 63, 118, 0.92), rgba(70, 47, 106, 0.9));
  color: #e9efff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  min-height: 38px;
  padding: 8px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.anchor-btn-row button:hover {
  border-color: rgba(125, 231, 212, 0.7);
}
.anchor-btn-row button:disabled {
  opacity: 0.55;
  cursor: default;
}
@keyframes anchorPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(125, 231, 212, 0.12), 0 8px 20px rgba(3, 8, 18, 0.55); }
  50% { box-shadow: 0 0 0 1px rgba(125, 231, 212, 0.24), 0 10px 26px rgba(86, 126, 238, 0.28); }
}
@media (max-width: 760px) {
  .anchor-btn-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.reskill-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 12px;
}
.reskill-grounding,
.reskill-triage {
  background:
    radial-gradient(120% 120% at 90% 0%, rgba(125, 231, 212, 0.08), transparent 46%),
    linear-gradient(145deg, rgba(10, 16, 30, 0.9), rgba(8, 12, 24, 0.88));
}
.reskill-compass-art {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.reskill-compass-art span {
  min-height: 110px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  font-size: 14px;
  font-weight: 800;
  color: #f1f7ff;
  background:
    radial-gradient(circle at 75% 22%, rgba(125, 231, 212, 0.26), transparent 24%),
    linear-gradient(145deg, rgba(17, 27, 49, 0.92), rgba(10, 16, 28, 0.88));
}
.reskill-triage-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.reskill-triage-grid article {
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 10px;
  padding: 11px;
  background: rgba(8, 13, 24, 0.58);
}
.reskill-triage-grid h3 {
  margin: 0 0 6px;
  font-size: 15px;
}
.reskill-triage-grid p {
  margin: 0;
  color: #c5d8f7;
  line-height: 1.5;
}
.reskill-levels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.reskill-level {
  text-decoration: none;
  color: #e9efff;
  border: 1px solid rgba(132, 155, 220, 0.28);
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(13, 20, 40, 0.78), rgba(10, 16, 30, 0.76));
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.reskill-level:hover {
  border-color: rgba(125, 231, 212, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 14, 28, 0.48);
}
.reskill-level h3 {
  margin: 6px 0 4px;
  font-size: 14px;
}
.reskill-level p {
  margin: 0;
  font-size: 12px;
  line-height: 1.36;
  color: #bed1f2;
}
.reskill-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #d6f7ff;
  border: 1px solid rgba(126, 240, 207, 0.38);
  border-radius: 999px;
  padding: 2px 7px;
  background: rgba(8, 20, 32, 0.74);
}
.reskill-accordion details {
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 10px;
  padding: 8px 10px;
  background: linear-gradient(155deg, rgba(10, 16, 30, 0.74), rgba(9, 14, 24, 0.72));
}
.reskill-accordion details + details {
  margin-top: 8px;
}
.reskill-accordion summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #edf4ff;
  font-size: 13px;
}
.reskill-accordion summary::-webkit-details-marker { display: none; }
.reskill-accordion summary::before {
  content: "▸";
  margin-right: 6px;
  color: #9ed8ff;
}
.reskill-accordion details[open] summary::before { content: "▾"; }
.reskill-accordion ul {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.reskill-accordion li {
  font-size: 13px;
  line-height: 1.35;
  color: #d0def7;
}
.reskill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.reskill-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.3);
  padding: 6px 10px;
  font-size: 12px;
  color: #d4e8ff;
  background: linear-gradient(145deg, rgba(13, 20, 40, 0.78), rgba(10, 15, 28, 0.72));
}
@media (max-width: 1040px) {
  .reskill-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .reskill-compass-art {
    grid-template-columns: 1fr;
  }
  .reskill-levels {
    grid-template-columns: 1fr;
  }
}

.home-brand-hero {
  min-height: clamp(430px, 44vw, 560px);
  padding: 18px;
  align-items: stretch;
  justify-content: flex-end;
  border-radius: 24px;
  background:
    linear-gradient(92deg, rgba(4, 8, 17, 0.1) 0%, rgba(4, 8, 17, 0.04) 34%, rgba(4, 8, 17, 0.18) 62%, rgba(4, 8, 17, 0.58) 100%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.04), rgba(6, 10, 20, 0.18)),
    var(--home-hero-image, image-set(
      url("aura-hero.webp") type("image/webp"),
      url("aura-hero.png") type("image/png")
    )) var(--home-hero-position, 22% 46%) / cover no-repeat;
}
.home-brand-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(490px, calc(100% - 36px));
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(5, 10, 23, 0.86), rgba(7, 12, 25, 0.58)),
    linear-gradient(120deg, rgba(126, 240, 207, 0.12), rgba(108, 194, 255, 0.1), rgba(201, 160, 255, 0.12));
  border: 1px solid rgba(136, 167, 239, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 54px rgba(0, 0, 0, 0.32);
}
.home-brand-hero__content {
  width: min(500px, 100%);
  max-width: 500px;
  margin-left: auto;
  padding: 26px 26px 22px;
  display: grid;
  align-content: center;
  gap: 0;
}
.home-brand-hero h1 {
  max-width: 6ch;
  margin-bottom: 14px;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.home-brand-hero__lead {
  max-width: 24ch;
  color: #d8e8ff;
  font-size: 1.02rem;
  line-height: 1.48;
}
.home-brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.home-brand-hero__metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.home-hero-metric {
  min-height: 88px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.72), rgba(8, 12, 23, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.home-hero-metric span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9fb7e9;
}
.home-hero-metric strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #f1f6ff;
}
.home-hero-metric strong.is-text {
  font-size: 0.98rem;
  line-height: 1.26;
  letter-spacing: -0.01em;
}

.home-atlas {
  margin-top: 14px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  border-radius: 24px;
}
.home-atlas__media {
  position: relative;
  min-height: 348px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background: linear-gradient(160deg, rgba(7, 12, 24, 0.96), rgba(6, 10, 19, 0.82));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}
.home-atlas__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.18)),
    radial-gradient(circle at 18% 24%, rgba(126, 240, 207, 0.16), transparent 26%),
    radial-gradient(circle at 76% 74%, rgba(108, 194, 255, 0.14), transparent 26%);
  pointer-events: none;
}
.home-atlas__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-atlas__copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 4px 0;
}
.home-atlas__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-atlas__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.home-atlas__link {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  background: linear-gradient(180deg, rgba(9, 15, 28, 0.8), rgba(7, 11, 22, 0.72));
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.home-atlas__link:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 240, 207, 0.32);
  background: linear-gradient(180deg, rgba(10, 17, 31, 0.92), rgba(8, 12, 23, 0.82));
}
.home-atlas__link-meta {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9cb7e7;
}
.home-atlas__link strong {
  font-size: 17px;
  line-height: 1.1;
  color: #eef5ff;
}
.home-atlas__link p {
  margin: 0;
  font-size: 13px;
  line-height: 1.42;
  color: #bfd0ee;
}
.home-atlas__callout {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.84), rgba(7, 11, 21, 0.72));
}
.home-atlas__callout p {
  margin: 0;
  color: #d7e5ff;
  font-size: 14px;
  line-height: 1.48;
}

.news-front-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 14px;
  align-items: start;
}
.home-feed-column,
.home-context-column > .card,
.home-context-split > .card,
.home-ops-split > .card {
  border-radius: 20px;
}
.home-feed-column {
  padding: 18px;
}
.home-section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.home-section-head .kicker {
  margin-bottom: 0;
}
.home-section-head h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  letter-spacing: -0.03em;
}
.home-section-head .section-desc {
  margin-bottom: 0;
}
.home-lead-story {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  background:
    linear-gradient(180deg, rgba(10, 17, 32, 0.94), rgba(8, 12, 24, 0.88)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.18), rgba(108, 194, 255, 0.14), rgba(201, 160, 255, 0.18)) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.home-lead-story__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.home-lead-story__rank {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(126, 240, 207, 0.34);
  background: rgba(11, 22, 35, 0.8);
  color: #d8fff5;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.home-lead-story__title {
  display: block;
  margin-top: 12px;
  text-decoration: none;
  color: #eff5ff;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-lead-story__title:hover {
  color: #d8f8ff;
}
.home-lead-story__source {
  margin: 8px 0 0;
  color: #98afd8;
  font-size: 13px;
}
.home-lead-story__body {
  margin: 10px 0 0;
  color: #d6e5ff;
  font-size: 14px;
  line-height: 1.5;
}
.home-ranked-list {
  margin-top: 12px;
}
.home-context-column {
  display: grid;
  gap: 14px;
}
.home-context-split,
.home-ops-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.home-context-column .prediction-terminal {
  margin-top: 0;
}
.home-context-column .dir-table {
  min-width: 0;
  width: 100%;
}
.home-context-column .dir-table th,
.home-context-column .dir-table td {
  font-size: 12px;
}
.home-support-card .donate-shell {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .news-front-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .home-atlas {
    grid-template-columns: 1fr;
  }
  .home-brand-hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-brand-hero {
    min-height: 520px;
    padding: 16px;
    background:
      linear-gradient(180deg, rgba(4, 8, 17, 0.06) 0%, rgba(4, 8, 17, 0.22) 48%, rgba(4, 8, 17, 0.58) 100%),
      linear-gradient(90deg, rgba(4, 8, 17, 0.16) 0%, rgba(4, 8, 17, 0.08) 34%, rgba(4, 8, 17, 0.28) 100%),
      var(--home-hero-mobile-image, var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      ))) var(--home-hero-position-mobile, var(--home-hero-position, 18% 48%)) / cover no-repeat;
  }
  .home-brand-hero::before {
    top: auto;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    height: auto;
    border-radius: 22px;
  }
  .home-brand-hero__content {
    width: min(100%, 332px);
    max-width: 332px;
    padding: 18px 16px 16px;
  }
  .home-brand-hero h1 {
    max-width: 5.1ch;
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }
  .home-brand-hero__lead {
    max-width: 18ch;
    font-size: 0.96rem;
  }
  .home-brand-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-brand-hero__link {
    width: 100%;
    justify-content: center;
  }
  .home-atlas {
    padding: 14px;
  }
  .home-atlas__media {
    min-height: 240px;
  }
  .home-atlas__links,
  .home-context-split,
  .home-ops-split {
    grid-template-columns: 1fr;
  }
  .home-feed-column {
    padding: 14px;
  }
  .home-lead-story {
    padding: 14px;
  }
  .home-lead-story__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 560px) {
  .home-brand-hero {
    min-height: 486px;
    background:
      linear-gradient(180deg, rgba(4, 8, 17, 0.08) 0%, rgba(4, 8, 17, 0.24) 46%, rgba(4, 8, 17, 0.62) 100%),
      linear-gradient(90deg, rgba(4, 8, 17, 0.18) 0%, rgba(4, 8, 17, 0.08) 28%, rgba(4, 8, 17, 0.26) 100%),
      var(--home-hero-mobile-sm-image, var(--home-hero-mobile-image, var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      )))) var(--home-hero-position-mobile-sm, var(--home-hero-position-mobile, var(--home-hero-position, 16% 48%))) / cover no-repeat;
  }
  .home-brand-hero__content {
    width: 100%;
    max-width: none;
  }
  .home-brand-hero__metrics,
  .home-atlas__links {
    grid-template-columns: 1fr;
  }
  .home-atlas__copy h2 {
    font-size: 1.9rem;
  }
  .home-section-head h2 {
    font-size: 1.28rem;
  }
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 22px;
  border-color: rgba(126, 240, 207, 0.22);
  background:
    linear-gradient(90deg, rgba(4, 8, 18, 0.96) 0%, rgba(4, 8, 18, 0.9) 34%, rgba(4, 8, 18, 0.68) 64%, rgba(4, 8, 18, 0.76) 100%),
    radial-gradient(120% 140% at 0% 0%, rgba(126, 240, 207, 0.12), transparent 44%),
    radial-gradient(120% 140% at 100% 0%, rgba(108, 194, 255, 0.12), transparent 46%),
    radial-gradient(120% 140% at 50% 100%, rgba(201, 160, 255, 0.09), transparent 42%),
    linear-gradient(165deg, rgba(8, 13, 26, 0.97), rgba(6, 10, 20, 0.99));
  box-shadow: inset 0 0 0 1px rgba(126, 240, 207, 0.06), 0 20px 54px rgba(0, 0, 0, 0.22);
}
.contact-hero::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(34vw, 380px);
  height: min(34vw, 380px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 240, 207, 0.16), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(108, 194, 255, 0.12), transparent 52%);
  filter: blur(10px);
  pointer-events: none;
}
.contact-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.contact-hero .lead {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.56;
}
.contact-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eff5ff;
  background:
    linear-gradient(145deg, rgba(8, 14, 28, 0.88), rgba(10, 16, 31, 0.82)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.58), rgba(108, 194, 255, 0.5), rgba(201, 160, 255, 0.56)) border-box;
}
.contact-hero-link.is-secondary {
  color: #d7e7ff;
  background:
    linear-gradient(145deg, rgba(10, 15, 29, 0.76), rgba(8, 12, 22, 0.72)) padding-box,
    linear-gradient(120deg, rgba(132, 155, 220, 0.24), rgba(132, 155, 220, 0.16)) border-box;
}

.contact-shell {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}
.contact-lead-panel,
.contact-bottom-panel {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 0;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(10, 15, 29, 0.94), rgba(7, 11, 21, 0.97));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}
.contact-visual-card {
  position: relative;
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(108, 194, 255, 0.08), transparent 54%),
    linear-gradient(160deg, rgba(9, 14, 27, 0.97), rgba(6, 10, 20, 0.99));
}
.contact-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.04), rgba(5, 8, 18, 0.16)),
    linear-gradient(90deg, rgba(5, 8, 18, 0.08), transparent 24%, transparent 76%, rgba(5, 8, 18, 0.08));
}
.contact-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-lead-copy,
.contact-bottom-copy,
.contact-bottom-cta {
  padding: 20px;
}
.contact-lead-copy {
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 54%),
    linear-gradient(160deg, rgba(10, 14, 27, 0.97), rgba(7, 10, 20, 0.99));
}
.contact-lead-copy h2,
.contact-bottom-copy h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #f3f7ff;
  text-shadow: 0 12px 36px rgba(88, 114, 208, 0.22);
}
.contact-lead-copy p,
.contact-bottom-copy p,
.contact-card p {
  color: #cfdbf4;
}
.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.contact-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.94), rgba(13, 18, 32, 0.92));
  color: #edf4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.contact-primary-cta {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(12, 20, 36, 0.86), rgba(9, 14, 28, 0.92)) padding-box,
    linear-gradient(120deg, rgba(125, 231, 212, 0.34), rgba(108, 194, 255, 0.3), rgba(201, 160, 255, 0.32)) border-box;
}
.contact-primary-cta span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fc0eb;
}
.contact-booking-shell {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(126, 240, 207, 0.08), transparent 48%),
    radial-gradient(120% 120% at 100% 0%, rgba(108, 194, 255, 0.08), transparent 52%),
    radial-gradient(120% 120% at 50% 100%, rgba(201, 160, 255, 0.08), transparent 46%),
    linear-gradient(160deg, rgba(10, 15, 29, 0.96), rgba(7, 11, 21, 0.99));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}
.contact-booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02), transparent 18%, transparent 82%, rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(126, 240, 207, 0.04), transparent 22%, transparent 78%, rgba(108, 194, 255, 0.04));
}
.contact-booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(320px, 1.14fr);
  gap: 18px;
  align-items: stretch;
}
.contact-booking-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 4px 8px;
}
.contact-booking-title {
  margin: 0 0 10px;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #f3f7ff;
  text-shadow: 0 12px 36px rgba(88, 114, 208, 0.18);
}
.contact-booking-lead {
  margin: 0;
  max-width: 34ch;
  color: #cfdbf4;
  line-height: 1.58;
  font-size: 1rem;
}
.contact-booking-points {
  display: grid;
  gap: 10px;
  margin: 0;
}
.contact-booking-point {
  padding: 12px 14px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(12, 20, 36, 0.82), rgba(9, 14, 28, 0.88)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.18), rgba(108, 194, 255, 0.16), rgba(201, 160, 255, 0.18)) border-box;
  color: #dfe8ff;
}
.contact-booking-point strong {
  display: block;
  margin-bottom: 4px;
  color: #f4f8ff;
}
.contact-booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.contact-booking-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.26);
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.94), rgba(13, 18, 32, 0.92));
  color: #edf4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.contact-booking-widget-wrap {
  display: grid;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 54%),
    linear-gradient(160deg, rgba(9, 14, 27, 0.97), rgba(6, 10, 20, 0.99));
}
.contact-booking-widget-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(132, 155, 220, 0.16);
  background: #02040a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.contact-booking-linkline {
  margin: 0 4px;
  color: #a9bcde;
  font-size: 0.95rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-card {
  padding: 18px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(10, 15, 29, 0.95), rgba(8, 12, 23, 0.97));
}
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f2f6ff;
}
.contact-mail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.contact-mail-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background: linear-gradient(145deg, rgba(13, 20, 40, 0.78), rgba(10, 15, 28, 0.72));
  color: #e6f0ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.contact-mail-pill:hover,
.contact-hero-link:hover {
  color: #fff;
  text-decoration: none;
}
.contact-bottom-copy {
  border-right: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(108, 194, 255, 0.08), transparent 52%),
    linear-gradient(160deg, rgba(10, 15, 28, 0.96), rgba(8, 12, 23, 0.99));
}
.contact-bottom-cta {
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(201, 160, 255, 0.1), transparent 56%),
    linear-gradient(160deg, rgba(10, 14, 27, 0.97), rgba(7, 10, 20, 0.99));
  display: grid;
  align-content: center;
  gap: 14px;
}

@media (max-width: 980px) {
  .contact-lead-panel,
  .contact-bottom-panel,
  .contact-booking-grid {
    grid-template-columns: 1fr;
  }
  .contact-visual-card {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.18);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-booking-copy {
    padding: 2px 0 0;
  }
}

@media (max-width: 700px) {
  .contact-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .contact-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-hero-link {
    width: 100%;
  }
  .contact-lead-copy h2,
  .contact-bottom-copy h2 {
    font-size: 28px;
  }
  .contact-booking-title {
    max-width: 14ch;
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }
  .contact-mail-grid {
    grid-template-columns: 1fr;
  }
}

.home-front-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: stretch;
}
.home-front-hero__copy {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 30px 30px 28px;
  border-radius: 24px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(108, 194, 255, 0.12), transparent 52%),
    linear-gradient(155deg, rgba(9, 14, 28, 0.98), rgba(6, 10, 18, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.home-front-hero__copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.home-front-hero__copy .lead {
  max-width: 32ch;
  color: #d7e5ff;
  font-size: 1.02rem;
  line-height: 1.55;
}
.home-front-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.home-front-hero__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(126, 240, 207, 0.24);
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.96), rgba(15, 23, 42, 0.82));
  color: #f1f6ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-front-hero__link.is-secondary {
  border-color: rgba(132, 155, 220, 0.22);
  background: linear-gradient(145deg, rgba(11, 17, 33, 0.84), rgba(8, 12, 24, 0.84));
  color: #dbe8ff;
}
.home-front-hero__link:hover {
  color: #fff;
  text-decoration: none;
}
.home-front-hero__notes {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.home-front-hero__note {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(150deg, rgba(13, 20, 38, 0.88), rgba(8, 12, 23, 0.82));
}
.home-front-hero__note span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9eb8eb;
}
.home-front-hero__note p {
  margin: 0;
  color: #dbe8ff;
  font-size: 14px;
  line-height: 1.5;
}
.home-front-hero__visual {
  position: relative;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background: linear-gradient(160deg, rgba(7, 12, 24, 0.98), rgba(6, 10, 19, 0.98));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.3);
}
.home-front-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 17, 0.08), rgba(5, 8, 17, 0.24)),
    radial-gradient(circle at 78% 24%, rgba(108, 194, 255, 0.16), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(126, 240, 207, 0.12), transparent 24%);
  pointer-events: none;
}
.home-front-hero__visual picture,
.home-front-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
}
.home-front-hero__visual img {
  object-fit: cover;
}
.home-front-hero__metrics {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  z-index: 1;
}
.home-front-metric {
  min-height: 84px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.78), rgba(8, 12, 22, 0.58));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.home-front-metric span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9db8ea;
}
.home-front-metric strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #f1f6ff;
}
.home-front-metric strong.is-text {
  font-size: 0.98rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.home-front-surface-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.home-front-surface {
  display: grid;
  gap: 8px;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 54%),
    linear-gradient(150deg, rgba(10, 15, 28, 0.96), rgba(7, 10, 20, 0.96));
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.home-front-surface:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 240, 207, 0.28);
  text-decoration: none;
}
.home-front-surface__meta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9eb8eb;
}
.home-front-surface strong {
  font-size: 17px;
  line-height: 1.08;
  color: #eff5ff;
}
.home-front-surface p {
  margin: 0;
  font-size: 13px;
  line-height: 1.46;
  color: #c7d7f3;
}
.home-search-shell {
  margin-top: 10px;
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 18px;
}
.home-search-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.home-search-copy {
  display: grid;
  gap: 4px;
  align-content: center;
}
.home-search-copy .kicker {
  margin: 0;
}
.home-search-copy__prompt {
  margin: 0;
  color: #d3e3ff;
  font-size: 13px;
  line-height: 1.32;
}
.home-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.home-search-row input {
  min-width: 0;
  width: 100%;
  height: 40px;
  padding: 0 13px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background: linear-gradient(145deg, rgba(9, 14, 27, 0.92), rgba(7, 11, 22, 0.88));
  color: #eaf2ff;
  font-size: 14px;
}
.home-search-row input::placeholder {
  color: #8ea5d0;
}
.home-search-row button {
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(126, 240, 207, 0.46);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(10, 17, 33, 0.9), rgba(17, 20, 44, 0.82));
  color: #eff5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.home-search-row button:hover {
  background: linear-gradient(145deg, rgba(15, 24, 45, 0.96), rgba(21, 23, 50, 0.9));
}
.search-page-shell,
.search-results-shell {
  margin-top: 12px;
  border-radius: 20px;
}
.search-page-shell {
  padding: 16px 18px 18px;
}
.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.search-page-form input {
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background: linear-gradient(145deg, rgba(9, 14, 27, 0.92), rgba(7, 11, 22, 0.88));
  color: #eaf2ff;
  font-size: 15px;
}
.search-page-form button {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(126, 240, 207, 0.46);
  background: linear-gradient(145deg, rgba(10, 17, 33, 0.9), rgba(17, 20, 44, 0.82));
  color: #eff5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.search-page-form button:hover {
  background: linear-gradient(145deg, rgba(15, 24, 45, 0.96), rgba(21, 23, 50, 0.9));
}
.search-kind-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.search-kind-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  background: rgba(10, 16, 31, 0.76);
  color: #d6e7ff;
  font-size: 12px;
  font-weight: 700;
}
.search-results-shell {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.search-result-card {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(108, 194, 255, 0.08), transparent 48%),
    linear-gradient(155deg, rgba(10, 16, 31, 0.96), rgba(7, 11, 22, 0.92));
}
.search-result-card h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.search-result-card p {
  margin: 0;
  color: #d4e3ff;
  font-size: 14px;
  line-height: 1.55;
}
.search-result-card__meta,
.search-result-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #97add7;
  font-size: 12px;
}
.search-result-card__kind {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(126, 240, 207, 0.3);
  background: rgba(9, 18, 30, 0.76);
  color: #d8fff5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.search-empty {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  border: 1px dashed rgba(132, 155, 220, 0.22);
  background: rgba(8, 12, 23, 0.62);
}
.search-empty p {
  margin: 0;
  color: #d7e7ff;
  font-size: 15px;
}
.search-empty__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-empty__suggestions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background: rgba(11, 17, 33, 0.8);
  color: #dce9ff;
  font-size: 12px;
}
.home-front-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}
.home-front-main {
  display: grid;
  gap: 14px;
  align-content: start;
}
.home-front-feed,
.home-front-panel,
.home-front-report {
  border-radius: 20px;
}
.home-front-feed {
  padding: 20px;
  align-self: start;
}
.home-front-lead {
  margin-bottom: 14px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(108, 194, 255, 0.1), transparent 54%),
    linear-gradient(155deg, rgba(10, 16, 31, 0.96), rgba(7, 11, 22, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.home-front-lead__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.home-front-lead__rank {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(126, 240, 207, 0.34);
  background: rgba(11, 22, 35, 0.8);
  color: #d8fff5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-front-lead__title {
  display: block;
  margin-top: 12px;
  color: #eff5ff;
  text-decoration: none;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-front-lead__title:hover {
  color: #fff;
}
.home-front-lead__source {
  margin: 8px 0 0;
  color: #98afd8;
  font-size: 13px;
}
.home-front-lead__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.home-front-lead__note {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.16);
  background: linear-gradient(145deg, rgba(12, 18, 34, 0.82), rgba(8, 12, 24, 0.78));
}
.home-front-lead__note span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9bb7ea;
}
.home-front-lead__note p {
  margin: 0;
  color: #dbe7ff;
  font-size: 14px;
  line-height: 1.5;
}
.home-front-ranked {
  margin-top: 12px;
}
.home-front-row {
  grid-template-columns: 58px 1fr;
  gap: 10px;
  padding: 10px 14px;
}
.home-front-row .story-link {
  font-size: 14px;
  line-height: 1.28;
}
.home-front-row .story-badges {
  margin-top: 6px;
}
.home-front-rail {
  display: grid;
  gap: 14px;
  align-content: start;
  align-self: start;
}
.home-front-report,
.home-front-panel {
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 0;
}
.home-front-report__body {
  display: grid;
  gap: 12px;
  align-content: start;
}
.home-front-report__body p {
  margin: 0;
  color: #d5e4ff;
  font-size: 14px;
  line-height: 1.55;
}
.home-front-feature-link {
  display: block;
  margin: 2px 0 12px;
  text-decoration: none;
}
.home-front-feature-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(145deg, rgba(12, 18, 34, 0.82), rgba(8, 12, 24, 0.78));
}
.home-front-anchor {
  margin-top: 4px;
}
.home-front-panel .prediction-terminal {
  margin-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-front-panel .panel-list {
  flex: 1;
}
.home-front-panel .prediction-grid {
  flex: 1;
  align-items: start;
}
.home-lower-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  align-items: stretch;
}
.home-lower-card {
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-lower-card--full {
  grid-column: 1 / -1;
}
.home-lower-card .home-section-head {
  margin-bottom: 12px;
}
.home-lower-card .anchor-box,
.home-lower-card .pdoom-box,
.home-lower-card .donate-shell {
  flex: 1;
}
.home-lower-card .anchor-box,
.home-lower-card .donate-shell {
  display: flex;
  flex-direction: column;
}
.home-lower-card .anchor-controls,
.home-lower-card .donate-foot {
  margin-top: auto;
}
.home-lower-grid .dir-table {
  min-width: 0;
  width: 100%;
}
.home-lower-grid .dir-table th,
.home-lower-grid .dir-table td {
  font-size: 12px;
}
.home-lower-grid .donate-shell {
  margin-top: 0;
}
.home-front-panel .anchor-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-front-panel .anchor-controls {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .home-search-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .home-front-hero {
    grid-template-columns: 1fr;
  }
  .home-front-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
    gap: 14px;
  }
  .home-front-main {
    gap: 14px;
  }
  .home-front-rail {
    grid-template-rows: none;
  }
  .home-front-feed {
    padding: 18px;
  }
  .home-front-report,
  .home-front-panel {
    padding: 16px;
  }
  .home-front-feature-media {
    aspect-ratio: 16 / 9;
  }
  .home-front-lead {
    padding: 18px;
  }
  .home-lower-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-lower-card--full {
    grid-column: 1 / -1;
  }
  .home-front-hero__visual {
    min-height: 420px;
  }
}

@media (max-width: 1023px) {
  .home-front-grid {
    grid-template-columns: 1fr;
  }
  .home-front-main {
    gap: 16px;
  }
  .home-front-feed,
  .home-front-report,
  .home-front-panel {
    padding: 18px;
  }
  .home-front-feature-media {
    aspect-ratio: 16 / 8.8;
  }
  .home-front-lead {
    padding: 18px;
  }
  .home-front-row {
    padding: 12px 13px;
  }
  .home-front-lead__notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-front-surface-strip,
  .home-front-hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 939px) {
  .home-search-row {
    grid-template-columns: 1fr;
  }
  .home-search-row button {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .home-search-shell {
    padding: 10px 12px;
  }
  .home-search-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .home-search-row {
    grid-template-columns: 1fr;
  }
  .home-search-row button {
    width: 100%;
  }
  .search-page-form {
    grid-template-columns: 1fr;
  }
  .search-page-form button {
    width: 100%;
  }
  .home-front-hero__copy,
  .home-front-feed,
  .home-front-report,
  .home-front-panel,
  .home-lower-card {
    padding: 16px;
  }
  .home-front-feature-media {
    aspect-ratio: 16 / 9.4;
  }
  .home-front-hero__copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.3rem);
  }
  .home-front-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-front-hero__link {
    width: 100%;
  }
  .home-front-hero__visual {
    min-height: 360px;
  }
  .home-front-hero__metrics {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .home-front-lead,
  .home-front-row {
    padding: 14px;
  }
  .home-front-lead__notes {
    grid-template-columns: 1fr;
  }
  .home-lower-grid {
    grid-template-columns: 1fr;
  }
  .home-lower-card--full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .home-front-surface-strip,
  .home-front-hero__metrics {
    grid-template-columns: 1fr;
  }
  .home-front-hero__visual {
    min-height: 320px;
  }
  .home-front-metric {
    min-height: 72px;
  }
}

.home-brand-hero {
  position: relative;
  overflow: hidden;
  min-height: 308px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-color: rgba(126, 240, 207, 0.22);
  background:
    linear-gradient(90deg, rgba(6, 10, 20, 0.22) 0%, rgba(6, 10, 20, 0.08) 28%, rgba(6, 10, 20, 0.05) 56%, rgba(6, 10, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 14, 28, 0.02), rgba(7, 14, 28, 0.18)),
    var(--home-hero-image, image-set(
      url("aura-hero.webp") type("image/webp"),
      url("aura-hero.png") type("image/png")
    )) var(--home-hero-position, 22% 46%) / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(126, 240, 207, 0.06), 0 18px 48px rgba(2, 5, 12, 0.34);
}
.home-brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 38%, rgba(126, 240, 207, 0.24), transparent 24%),
    radial-gradient(circle at 34% 28%, rgba(108, 194, 255, 0.18), transparent 22%),
    radial-gradient(circle at 76% 18%, rgba(168, 139, 250, 0.14), transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(244, 200, 143, 0.1), transparent 18%);
}
.home-brand-hero__content {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  max-width: 500px;
  margin: auto 0 auto auto;
  padding: 24px 24px 22px;
  display: grid;
  align-content: center;
}
.home-brand-hero .kicker {
  margin: 0 0 10px;
}
.home-brand-hero h1 {
  max-width: 9.4ch;
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.25vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.home-brand-hero__lead {
  max-width: 25ch;
  color: #d5e4ff;
  font-size: 0.96rem;
  line-height: 1.46;
}
.home-brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.home-brand-hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eff5ff;
  background:
    linear-gradient(145deg, rgba(8, 14, 28, 0.88), rgba(10, 16, 31, 0.82)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.58), rgba(108, 194, 255, 0.5), rgba(201, 160, 255, 0.56)) border-box;
  box-shadow: inset 0 0 0 1px rgba(126, 240, 207, 0.08);
}
.home-brand-hero__link:hover {
  color: #fff;
  border-color: transparent;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(14, 21, 41, 0.96), rgba(15, 19, 36, 0.92)) padding-box,
    linear-gradient(120deg, rgba(126, 240, 207, 0.74), rgba(108, 194, 255, 0.68), rgba(201, 160, 255, 0.72)) border-box;
}

@media (max-width: 980px) {
  .home-brand-hero {
    min-height: 360px;
    padding: 14px;
    background:
      linear-gradient(90deg, rgba(6, 10, 20, 0.12) 0%, rgba(6, 10, 20, 0.06) 24%, rgba(6, 10, 20, 0.12) 56%, rgba(6, 10, 20, 0.34) 100%),
      linear-gradient(180deg, rgba(7, 14, 28, 0.03) 0%, rgba(7, 14, 28, 0.16) 46%, rgba(7, 14, 28, 0.44) 100%),
      var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      )) var(--home-hero-position-tablet, var(--home-hero-position, 20% 46%)) / cover no-repeat;
  }
  .home-brand-hero::before {
    top: 14px;
    right: 14px;
    bottom: 14px;
    width: min(320px, calc(100% - 28px));
    border-radius: 24px;
  }
  .home-brand-hero__content {
    width: min(52%, 292px);
    max-width: 292px;
    margin: auto 0 auto auto;
    padding: 18px 18px 18px;
  }
  .home-brand-hero h1 {
    max-width: 6.1ch;
  }
}

@media (max-width: 700px) {
  .home-brand-hero {
    min-height: 360px;
    justify-content: center;
    align-items: stretch;
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(6, 10, 20, 0.06) 0%, rgba(6, 10, 20, 0.16) 34%, rgba(6, 10, 20, 0.46) 100%),
      linear-gradient(90deg, rgba(6, 10, 20, 0.08) 0%, rgba(6, 10, 20, 0.04) 28%, rgba(6, 10, 20, 0.18) 100%),
      var(--home-hero-mobile-image, var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      ))) var(--home-hero-position-mobile, var(--home-hero-position, 18% 48%)) / cover no-repeat;
  }
  .home-brand-hero::before {
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    border-radius: 22px;
  }
  .home-brand-hero__content {
    width: min(100%, 320px);
    max-width: 320px;
    margin: auto auto 8px;
    padding: 18px 18px 18px;
  }
  .home-brand-hero h1 {
    max-width: 6ch;
    font-size: clamp(2.15rem, 9vw, 3rem);
  }
  .home-brand-hero__lead {
    max-width: 18ch;
    font-size: 0.94rem;
  }
  .home-brand-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-brand-hero__link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .home-brand-hero {
    min-height: 336px;
    background:
      linear-gradient(180deg, rgba(6, 10, 20, 0.08) 0%, rgba(6, 10, 20, 0.18) 34%, rgba(6, 10, 20, 0.52) 100%),
      linear-gradient(90deg, rgba(6, 10, 20, 0.1) 0%, rgba(6, 10, 20, 0.04) 28%, rgba(6, 10, 20, 0.18) 100%),
      var(--home-hero-mobile-sm-image, var(--home-hero-mobile-image, var(--home-hero-image, image-set(
        url("aura-hero.webp") type("image/webp"),
        url("aura-hero.png") type("image/png")
      )))) var(--home-hero-position-mobile-sm, var(--home-hero-position-mobile, var(--home-hero-position, 16% 48%))) / cover no-repeat;
  }
  .home-brand-hero__content {
    width: min(100%, 272px);
    max-width: 272px;
  }
}

.blog-front-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 26px;
  border-radius: 24px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(110, 194, 255, 0.14), transparent 48%),
    radial-gradient(120% 120% at 100% 0%, rgba(201, 160, 255, 0.12), transparent 46%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
  box-shadow: 0 30px 70px rgba(3, 6, 16, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.blog-front-hero__copy {
  max-width: 920px;
}
.blog-front-hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.blog-front-hero .lead {
  max-width: 760px;
  color: #d7e6ff;
}
.blog-front-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.blog-front-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.blog-front-metric {
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background: linear-gradient(150deg, rgba(14, 20, 36, 0.88), rgba(9, 13, 24, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.blog-front-metric__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9bb4e8;
}
.blog-front-metric strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.2;
  color: #f3f7ff;
}
.blog-front-atlas {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}
.blog-front-atlas__media {
  min-height: 420px;
  border-right: 1px solid rgba(132, 155, 220, 0.14);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(110, 194, 255, 0.12), transparent 50%),
    linear-gradient(160deg, rgba(8, 12, 22, 0.98), rgba(6, 10, 18, 1));
}
.blog-front-atlas__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-front-atlas__copy {
  padding: 26px 28px 28px;
}
.blog-front-atlas__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.blog-front-chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.blog-front-chip {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.2);
  background: linear-gradient(145deg, rgba(13, 19, 34, 0.84), rgba(9, 13, 24, 0.82));
}
.blog-front-chip strong {
  font-size: 13px;
  color: #f1f6ff;
  text-transform: lowercase;
}
.blog-front-chip span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9db7eb;
}
.blog-front-surface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.blog-front-surface {
  padding: 14px 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.16);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 50%),
    linear-gradient(150deg, rgba(13, 19, 35, 0.88), rgba(8, 12, 22, 0.88));
}
.blog-front-surface__meta {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #96b2e6;
}
.blog-front-surface h3 {
  margin: 0 0 7px;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #f2f6ff;
}
.blog-front-surface p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #cddcf7;
}
.blog-front-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.82fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}
.blog-front-main,
.blog-front-rail {
  display: grid;
  gap: 18px;
}
.blog-lead-report {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 0;
  overflow: hidden;
}
.blog-lead-report__media {
  min-height: 360px;
  border-right: 1px solid rgba(132, 155, 220, 0.14);
  background: linear-gradient(160deg, rgba(8, 12, 22, 0.98), rgba(6, 10, 18, 0.98));
}
.blog-lead-report__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-lead-report__copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 28px 28px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(110, 194, 255, 0.1), transparent 52%),
    linear-gradient(155deg, rgba(10, 15, 27, 0.96), rgba(7, 10, 19, 0.98));
}
.blog-lead-report__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9cb8ec;
}
.blog-lead-report__title {
  color: #f5f8ff;
  text-decoration: none;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.blog-lead-report__title:hover,
.blog-signal-card__title:hover {
  color: #ffffff;
  text-decoration: none;
}
.blog-lead-report__body {
  margin: 0;
  color: #d6e4ff;
  font-size: 15px;
  line-height: 1.6;
}
.blog-lead-report__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.blog-lead-report__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(132, 155, 220, 0.22);
  background: linear-gradient(145deg, rgba(98, 146, 255, 0.18), rgba(11, 17, 33, 0.82));
  color: #edf4ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-lead-report__link.is-secondary {
  background: rgba(10, 15, 28, 0.72);
}
.blog-archive-panel {
  padding: 20px 20px 18px;
}
.blog-archive-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 16px;
  align-items: end;
}
.blog-archive-panel__head h2,
.blog-side-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f2f6ff;
}
.blog-archive-panel__search {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.56fr);
  gap: 10px;
  align-items: end;
}
.blog-archive-panel__search select {
  border: 1px solid rgba(117,130,170,.46);
  border-radius: 12px;
  background: rgba(8,12,22,.94);
  color: var(--text);
  min-width: 0;
  padding: 12px 14px;
}
.blog-archive-list {
  margin-top: 12px;
}
.blog-side-panel {
  padding: 20px 20px 18px;
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(201, 160, 255, 0.08), transparent 52%),
    linear-gradient(155deg, rgba(10, 14, 25, 0.98), rgba(7, 10, 19, 0.98));
}
.blog-side-panel--compact {
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(110, 194, 255, 0.08), transparent 50%),
    linear-gradient(155deg, rgba(10, 14, 26, 0.98), rgba(7, 10, 18, 0.98));
}
.blog-signal-stack {
  display: grid;
  gap: 12px;
}
.blog-signal-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(132, 155, 220, 0.14);
  background: linear-gradient(150deg, rgba(13, 19, 35, 0.82), rgba(8, 12, 22, 0.82));
}
.blog-signal-card__media {
  min-height: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(8, 12, 22, 0.98), rgba(6, 10, 18, 0.98));
}
.blog-signal-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-signal-card__copy {
  display: grid;
  align-content: center;
  gap: 6px;
}
.blog-signal-card__meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #96b2e6;
}
.blog-signal-card__title {
  color: #edf4ff;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.blog-signal-card__copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #c9d8f4;
}
.blog-rail-points {
  display: grid;
  gap: 12px;
}
.blog-rail-point {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.16);
  background: linear-gradient(145deg, rgba(13, 19, 35, 0.8), rgba(9, 13, 23, 0.8));
}
.blog-rail-point strong {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #eef4ff;
}
.blog-rail-point span {
  font-size: 13px;
  line-height: 1.55;
  color: #c9d7f3;
}

@media (max-width: 1120px) {
  .blog-front-atlas,
  .blog-front-grid,
  .blog-lead-report,
  .blog-archive-panel__head {
    grid-template-columns: 1fr;
  }
  .blog-front-atlas__media,
  .blog-lead-report__media {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(132, 155, 220, 0.14);
  }
  .blog-archive-panel__search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-front-hero {
    padding: 24px 20px 22px;
  }
  .blog-front-hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.3rem);
  }
  .blog-front-hero__metrics,
  .blog-front-chip-row,
  .blog-front-surface-grid {
    grid-template-columns: 1fr;
  }
  .blog-signal-card {
    grid-template-columns: 1fr;
  }
  .blog-signal-card__media {
    min-height: 160px;
  }
}

html {
  scroll-behavior: smooth;
}

#bm-table-wrap {
  scroll-margin-top: 14px;
}

.subscribe-layout {
  margin-top: 12px;
}

.page-visual-stage--subscribe .page-visual-stage__copy {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(244, 200, 143, 0.12), transparent 52%),
    radial-gradient(110% 120% at 0% 100%, rgba(125, 231, 212, 0.12), transparent 48%),
    linear-gradient(155deg, rgba(8, 12, 24, 0.98), rgba(5, 9, 18, 0.98));
}

.page-visual-stage--subscribe .page-visual-stage__eyebrow,
.page-visual-stage--subscribe .page-visual-stage__points span {
  color: #9ef0de;
}

.site-up-btn {
  position: fixed;
  right: 18px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.48);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  color: #e3efff;
  background: linear-gradient(145deg, rgba(15, 21, 39, 0.94), rgba(21, 24, 45, 0.94));
  box-shadow: 0 16px 34px rgba(2, 5, 12, 0.42), inset 0 0 0 1px rgba(201, 160, 255, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease;
  z-index: 60;
}

.site-up-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-up-btn:hover {
  border-color: rgba(125, 231, 212, 0.78);
  color: #f1fffb;
}

.home-brand-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(36%, 472px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(6, 11, 24, 0.14), rgba(6, 11, 24, 0.2)),
    linear-gradient(120deg, rgba(126, 240, 207, 0.03), rgba(108, 194, 255, 0.03), rgba(201, 160, 255, 0.04));
  border: 1px solid rgba(136, 167, 239, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}

.home-brand-hero__content {
  width: min(36%, 472px);
  max-width: 472px;
  margin-left: auto;
  padding: 34px 34px 28px;
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-brand-hero h1 {
  max-width: 8.35ch;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.home-brand-hero__lead {
  max-width: 20ch;
  color: #d8e8ff;
  font-size: 1rem;
  line-height: 1.5;
  text-wrap: balance;
}

.home-brand-hero__actions {
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .home-brand-hero {
    min-height: 390px;
  }
  .home-brand-hero::before {
    top: 16px;
    right: 16px;
    bottom: 16px;
    width: min(40%, 344px);
    border-radius: 26px;
  }
  .home-brand-hero__content {
    width: min(40%, 344px);
    max-width: 344px;
    margin: auto 0 auto auto;
    padding: 28px 24px 22px;
  }
  .home-brand-hero h1 {
    max-width: 7.35ch;
    font-size: clamp(2.4rem, 5.4vw, 3.7rem);
  }
  .home-brand-hero__lead {
    max-width: 18ch;
    font-size: 0.96rem;
  }
  .nav-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav-group {
    width: 100%;
    display: grid;
    gap: 8px;
  }
  .nav a,
  .nav .nav-parent {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 13px;
    justify-content: flex-start;
  }
  .nav-group .nav-parent {
    width: 100%;
    justify-content: space-between;
  }
  .nav-socials {
    grid-column: auto;
    width: 100%;
    justify-content: flex-start;
    padding-top: 8px;
  }
  .nav-cascade {
    margin-top: 0;
    padding: 10px;
    gap: 8px;
  }
  .nav-cascade a {
    min-height: 46px;
    padding: 12px 14px;
    font-size: 13px;
    justify-content: flex-start;
    text-align: left;
    text-transform: none;
  }
}

@media (max-width: 700px) {
  .home-brand-hero {
    min-height: 500px;
    padding: 16px;
  }
  .home-brand-hero::before {
    top: auto;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(6, 11, 24, 0.18), rgba(6, 11, 24, 0.28)),
      linear-gradient(120deg, rgba(126, 240, 207, 0.04), rgba(108, 194, 255, 0.04), rgba(201, 160, 255, 0.04));
  }
  .home-brand-hero__content {
    width: min(100%, 320px);
    max-width: 320px;
    margin: auto 0 10px auto;
    padding: 26px 22px 20px;
  }
  .home-brand-hero h1 {
    max-width: 5.9ch;
    font-size: clamp(2.2rem, 9.2vw, 3.35rem);
  }
  .home-brand-hero__lead {
    max-width: 15ch;
    font-size: 0.98rem;
  }
  .site-up-btn {
    right: 16px;
    bottom: 94px;
  }
}

@media (max-width: 560px) {
  .home-brand-hero__content {
    width: min(100%, 308px);
    max-width: 308px;
    padding: 24px 20px 18px;
  }
  .home-brand-hero h1 {
    max-width: 5.7ch;
    font-size: clamp(2.05rem, 9.6vw, 3.1rem);
  }
  .home-brand-hero__lead {
    max-width: 14ch;
  }
  .nav-links {
    gap: 8px;
  }
  .debate-video-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .debate-video-row .yt-rank {
    order: 0;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .debate-video-row .yt-embed {
    order: 1;
    grid-column: auto;
  }
  .debate-video-row .yt-copy {
    order: 2;
    min-width: 0;
  }
  .debate-video-row .yt-copy .story-link {
    display: block;
    font-size: 21px;
    line-height: 1.14;
  }
  .debate-video-row .story-meta,
  .debate-video-row .yt-desc {
    font-size: 14px;
    line-height: 1.48;
  }
}

.guide-hub-hero,
.guide-page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  border-color: rgba(125, 231, 212, 0.22);
  background:
    radial-gradient(circle at 16% 22%, rgba(125, 231, 212, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(201, 160, 255, 0.1), transparent 20%),
    linear-gradient(145deg, rgba(11, 17, 35, 0.94), rgba(8, 13, 25, 0.94));
}

.guide-hub-hero::after,
.guide-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(126, 240, 207, 0.04), transparent 36%),
    linear-gradient(300deg, rgba(108, 194, 255, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%);
}

.guide-hub-hero > *,
.guide-page-hero > * {
  position: relative;
  z-index: 1;
}

.guide-hub-hero h1 {
  max-width: 12ch;
}

.guide-hub-hero .lead {
  max-width: 64ch;
}

.guide-hub-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr);
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.guide-hub-intro__copy {
  min-width: 0;
}

.guide-hub-intro__copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.05;
}

.guide-hub-intro__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

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

.guide-card {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 14px;
  min-height: 100%;
}

.guide-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(132, 155, 220, 0.26);
  background:
    radial-gradient(circle at 20% 20%, rgba(126, 240, 207, 0.18), transparent 24%),
    linear-gradient(140deg, rgba(10, 16, 30, 0.96), rgba(8, 13, 26, 0.94));
}

.guide-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.guide-card__copy {
  min-width: 0;
  display: grid;
  align-content: start;
}

.guide-card__copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.18rem, 1.6vw, 1.46rem);
  line-height: 1.08;
}

.guide-card__copy .story-link {
  font-size: inherit;
  line-height: inherit;
}

.guide-card__takeaways {
  margin-top: 10px;
}

.guide-card__meta,
.guide-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.guide-card__meta span,
.guide-page-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  border-radius: 999px;
  background: rgba(11, 16, 30, 0.7);
  color: #d8e7ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.guide-page-hero .lead {
  max-width: 72ch;
}

.guide-page-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
}

.guide-page-stage__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.24);
  background:
    radial-gradient(circle at 16% 16%, rgba(126, 240, 207, 0.16), transparent 22%),
    linear-gradient(140deg, rgba(10, 16, 30, 0.96), rgba(8, 13, 26, 0.94));
}

.guide-page-stage__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-page-stage__copy {
  min-width: 0;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(132, 155, 220, 0.18);
  background:
    linear-gradient(165deg, rgba(8, 13, 27, 0.88), rgba(10, 16, 31, 0.72)),
    linear-gradient(120deg, rgba(126, 240, 207, 0.05), rgba(108, 194, 255, 0.04), rgba(201, 160, 255, 0.05));
  display: grid;
  align-content: start;
}

.guide-page-stage__copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.24rem, 1.8vw, 1.7rem);
  line-height: 1.06;
}

.guide-breadcrumbs {
  margin: 0 0 12px;
  color: #9fb5de;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.guide-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.68fr);
  gap: 14px;
  align-items: start;
}

.guide-article-shell {
  padding: 18px;
}

.guide-toc {
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(132, 155, 220, 0.18);
}

.guide-toc h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.guide-toc .feature-list {
  columns: 2;
  column-gap: 24px;
}

.guide-toc .feature-list li {
  break-inside: avoid;
}

.guide-article-section + .guide-article-section {
  margin-top: 22px;
}

.guide-article-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.58rem);
  line-height: 1.08;
}

.guide-article-section p {
  margin: 0 0 12px;
  color: #d7e2fb;
  line-height: 1.7;
  font-size: 1rem;
}

.guide-article-section .feature-list {
  margin-top: 10px;
}

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

.guide-faq-item {
  min-height: 100%;
}

.guide-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.guide-faq-item p {
  margin: 0;
  color: #d3e0fb;
  line-height: 1.6;
}

.guide-rail {
  position: sticky;
  top: 14px;
  display: grid;
  gap: 12px;
}

.guide-rail-card {
  padding: 16px;
}

.guide-rail-card h2 {
  margin-bottom: 10px;
}

.guide-spotlight {
  margin-top: 12px;
}

.guide-spotlight__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 14px;
}

.guide-spotlight__head h2 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.06;
}

.guide-spotlight__head .section-desc {
  margin: 0;
}

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

.guide-spotlight__card {
  min-height: 100%;
}

.guide-spotlight__card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.16;
}

@media (max-width: 1080px) {
  .guide-hub-grid {
    grid-template-columns: 1fr;
  }
  .guide-layout {
    grid-template-columns: 1fr;
  }
  .guide-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-spotlight__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .guide-hub-intro,
  .guide-spotlight__head,
  .guide-page-stage,
  .guide-card {
    grid-template-columns: 1fr;
  }
  .guide-card__media img {
    min-height: 260px;
  }
  .guide-toc .feature-list {
    columns: 1;
  }
}

@media (max-width: 700px) {
  .guide-card,
  .guide-article-shell,
  .guide-rail-card {
    padding: 14px;
  }
  .guide-stage-actions,
  .guide-hub-intro__actions {
    display: grid;
  }
  .guide-stage-actions .home-brand-hero__link,
  .guide-hub-intro__actions .home-brand-hero__link {
    width: 100%;
    justify-content: center;
  }
  .guide-faq-grid,
  .guide-rail {
    grid-template-columns: 1fr;
  }
  .guide-card__media img {
    min-height: 220px;
  }
}
