:root {
  --ink: #11110f;
  --night: #020303;
  --paper: #eee8dc;
  --paper-2: #dad0c0;
  --chalk: #f7f4ea;
  --muted: #8c8579;
  --line: rgba(17, 17, 15, 0.18);
  --blue: #62aef2;
  --red: #d54d3f;
  --green: #42c5a6;
  --violet: #9a7aff;
  --gold: #e0a84d;
  --display: "Future Western", "Superclarendon", "Rockwell Extra Bold", Rockwell, "American Typewriter", Georgia, serif;
  --serif: "American Typewriter", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --grotesk: "Avenir Next Condensed", "Gill Sans", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --mono: "SFMono-Regular", "Courier New", Consolas, monospace;
}

@font-face {
  font-family: "Future Western";
  src:
    local("Superclarendon Black"),
    local("Superclarendon Bold"),
    local("Superclarendon"),
    local("Rockwell Extra Bold"),
    local("Rockwell Bold");
  font-weight: 900;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.hero {
  min-height: 100vh;
  padding: clamp(14px, 3vw, 44px);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - clamp(28px, 6vw, 88px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 13%),
    var(--night);
  color: var(--chalk);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

#worldCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.topbar {
  position: absolute;
  z-index: 5;
  top: clamp(28px, 5vw, 72px);
  left: clamp(32px, 6vw, 86px);
  right: clamp(32px, 6vw, 86px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  color: var(--chalk);
}

.brand,
.nav,
.top-actions,
.language-toggle,
.pill-link {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand span:last-child {
  overflow-wrap: normal;
  word-break: normal;
}

.brand-glyph {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-family: var(--display);
}

.nav {
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.top-actions {
  justify-self: end;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(247, 244, 234, 0.16);
  border-radius: 999px;
  background: rgba(2, 3, 3, 0.18);
  backdrop-filter: blur(10px);
}

.nav a,
.language-toggle,
.pill-link {
  min-height: 35px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(247, 244, 234, 0.78);
  font-size: 14px;
  font-family: var(--grotesk);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.language-toggle {
  justify-content: center;
  min-width: 46px;
  padding: 0 11px;
  border: 1px solid rgba(247, 244, 234, 0.28);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pill-link {
  justify-content: center;
  background: var(--chalk);
  color: var(--ink);
  font-weight: 800;
}

body:not(.world-started) .topbar {
  position: fixed;
  inset: 0;
  display: block;
  pointer-events: none;
}

body:not(.world-started) .top-actions {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, calc(-50% + clamp(172px, 21vh, 248px)));
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: auto;
}

body:not(.world-started) .brand,
body:not(.world-started) .nav,
body:not(.world-started) .hero-copy,
body:not(.world-started) .world-card,
body:not(.world-started) .scroll-cue {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

body:not(.world-started) .topbar > .brand,
body:not(.world-started) .topbar > .nav {
  display: none;
}

body:not(.world-started) .pill-link {
  order: 1;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(247, 244, 234, 0.62);
  border-radius: 999px;
  background: rgba(247, 244, 234, 0.92);
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 60px rgba(98, 174, 242, 0.22);
  pointer-events: auto;
}

body:not(.world-started) .language-toggle {
  display: none;
  order: 2;
  min-height: 42px;
  min-width: 50px;
  padding: 0 12px;
  border-color: rgba(247, 244, 234, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 234, 0.82);
  box-shadow: none;
  pointer-events: auto;
}

body.is-zh {
  font-family: "Noto Serif SC", "Songti SC", "STSong", "SimSun", var(--serif);
}

body.is-zh .kicker,
body.is-zh .nav a,
body.is-zh .language-toggle,
body.is-zh button,
body.is-zh .pill-link {
  letter-spacing: 0.04em;
}

body.is-zh h1,
body.is-zh h2,
body.is-zh h3,
body.is-zh .feature-explainer-card strong,
body.is-zh .mechanism-strip strong {
  letter-spacing: 0;
}

body.time-jumping .pill-link {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
}

body.time-jumping .language-toggle {
  opacity: 0;
  pointer-events: none;
}

body.time-jumping .hero {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 0;
  background: var(--night);
}

body.time-jumping .brand,
body.time-jumping .nav,
body.time-jumping .hero-copy,
body.time-jumping .world-card,
body.time-jumping .scroll-cue,
body.time-jumping .ticker,
body.time-jumping .simulator,
body.time-jumping .simulation-stage,
body.time-jumping .archive,
body.time-jumping .idea-lab,
body.time-jumping .company-watchlist,
body.time-jumping .design-system,
body.time-jumping .citations {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  visibility: hidden;
}

body.time-jumping .hero-stage {
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 244, 234, 0.08), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(98, 174, 242, 0.16), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(224, 168, 77, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 20%),
    var(--night);
  box-shadow: none;
}

body.time-jumping .hero-stage::before,
body.time-jumping .hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

body.time-jumping .hero-stage::before {
  background:
    radial-gradient(circle at 24% 22%, rgba(247, 244, 234, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 32%, rgba(98, 174, 242, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 36% 74%, rgba(224, 168, 77, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 78%, rgba(247, 244, 234, 0.18) 0 1px, transparent 2px);
  opacity: 0.42;
  animation: starDrift 10.8s ease-in-out both;
}

body.time-jumping .hero-stage::after {
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgba(247, 244, 234, 0.16) 50%, transparent 50.08%),
    linear-gradient(0deg, transparent 0 49.92%, rgba(247, 244, 234, 0.12) 50%, transparent 50.08%),
    radial-gradient(circle at center, transparent 0 33%, rgba(247, 244, 234, 0.045) 33.3% 33.6%, transparent 34% 47%, rgba(98, 174, 242, 0.045) 47.3% 47.6%, transparent 48%);
  opacity: 0.62;
  mix-blend-mode: screen;
  animation: apertureBreathe 10.8s ease-in-out both;
}

.brand,
.nav,
.hero-copy,
.world-card,
.scroll-cue,
.ticker,
.simulator,
.simulation-stage,
.archive,
.idea-lab,
.company-watchlist,
.design-system,
.citations {
  transition: opacity 700ms ease, transform 700ms ease;
}

body.world-started .brand,
body.world-started .nav,
body.world-started .hero-copy,
body.world-started .world-card,
body.world-started .scroll-cue,
body.world-started .ticker,
body.world-started .simulator,
body.world-started .simulation-stage,
body.world-started .archive,
body.world-started .idea-lab,
body.world-started .company-watchlist,
body.world-started .design-system,
body.world-started .citations {
  opacity: 1;
  transform: none;
}

body.simulation-field-disabled .simulation-stage,
body.world-started.simulation-field-disabled .simulation-stage {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

body:not(.world-started) .ticker,
body:not(.world-started) .simulator,
body:not(.world-started) .simulation-stage,
body:not(.world-started) .archive,
body:not(.world-started) .idea-lab,
body:not(.world-started) .company-watchlist,
body:not(.world-started) .design-system,
body:not(.world-started) .citations {
  display: none;
  opacity: 0;
  transform: translateY(24px);
}

.crosshair {
  position: absolute;
  z-index: 2;
  opacity: 0.38;
  pointer-events: none;
  background: rgba(247, 244, 234, 0.45);
}

.crosshair.horizontal {
  left: 0;
  right: 0;
  top: 52%;
  height: 1px;
}

.crosshair.vertical {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

body.time-jumping .crosshair {
  opacity: 0.14;
}

.scanline {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.035) 9px);
  mix-blend-mode: screen;
}

body.time-jumping .scanline {
  opacity: 0.34;
}

.entry-sequence {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
}

.entry-sequence::before,
.entry-sequence::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(64vmin, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.entry-sequence::before {
  border: 1px solid rgba(247, 244, 234, 0.28);
  background:
    radial-gradient(circle at 34% 28%, rgba(247, 244, 234, 0.12), transparent 10%),
    radial-gradient(circle at 42% 38%, rgba(98, 174, 242, 0.08), transparent 24%),
    radial-gradient(circle at 68% 70%, rgba(0, 0, 0, 0.34), transparent 42%);
  box-shadow:
    inset 0 0 38px rgba(247, 244, 234, 0.08),
    inset 0 0 76px rgba(98, 174, 242, 0.12),
    0 0 68px rgba(98, 174, 242, 0.18),
    0 0 160px rgba(224, 168, 77, 0.1);
}

.entry-sequence::after {
  background:
    conic-gradient(from 0deg, transparent 0 15%, rgba(98, 174, 242, 0.34) 20%, transparent 31%, rgba(247, 244, 234, 0.18) 42%, rgba(224, 168, 77, 0.32) 49%, transparent 62%, rgba(66, 197, 166, 0.22) 82%, transparent 100%),
    radial-gradient(circle, transparent 47%, rgba(247, 244, 234, 0.12) 48%, transparent 50% 57%, rgba(98, 174, 242, 0.08) 58%, transparent 61%);
  filter: blur(0.35px);
  mix-blend-mode: screen;
}

.entry-sequence span {
  position: absolute;
  color: rgba(247, 244, 234, 0);
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(247, 244, 234, 0.32),
    0 0 48px rgba(98, 174, 242, 0.36),
    0 0 96px rgba(224, 168, 77, 0.1);
}

.hero-stage.is-launching .entry-sequence {
  opacity: 1;
}

.hero-stage.is-launching .entry-sequence span {
  animation: yearFlash 1.08s both;
}

.hero-stage.is-launching .entry-sequence::before {
  animation: timeTunnel 10.8s ease-in-out both;
}

.hero-stage.is-launching .entry-sequence::after {
  animation: timeSweep 10.8s linear both;
}

.hero-stage.is-launching .entry-sequence span:nth-child(2) {
  animation-delay: 1.05s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(3) {
  animation-delay: 2s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(4) {
  animation-delay: 2.82s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(5) {
  animation-delay: 3.52s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(6) {
  animation-delay: 4.12s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(7) {
  animation-delay: 4.65s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(8) {
  animation-delay: 5.1s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(9) {
  animation-delay: 5.48s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(10) {
  animation-delay: 5.8s;
}

.hero-stage.is-launching .entry-sequence span:nth-child(11) {
  animation-delay: 6.45s;
  animation-duration: 2.6s;
  font-size: clamp(62px, 12vw, 172px);
  text-shadow:
    0 0 22px rgba(247, 244, 234, 0.72),
    0 0 74px rgba(98, 174, 242, 0.58),
    0 0 120px rgba(224, 168, 77, 0.28);
}

.hero-stage.is-launching .hero-copy {
  animation: launchText 2.4s both;
}

@keyframes yearFlash {
  0% {
    opacity: 0;
    color: rgba(247, 244, 234, 0);
    filter: blur(18px);
    transform: translateY(34px) scale(0.78);
  }
  24%,
  48% {
    opacity: 0.95;
    color: rgba(247, 244, 234, 0.9);
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
  72%,
  100% {
    opacity: 0;
    color: rgba(247, 244, 234, 0);
    filter: blur(18px);
    transform: translateY(-38px) scale(1.16);
  }
}

@keyframes starDrift {
  0% {
    opacity: 0;
    transform: scale(0.96) rotate(0deg);
  }
  18%,
  78% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: scale(1.06) rotate(8deg);
  }
}

@keyframes apertureBreathe {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  16%,
  74% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes timeTunnel {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.74) rotate(0deg);
  }
  12%,
  74% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18) rotate(180deg);
  }
}

@keyframes timeSweep {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82) rotate(0deg);
  }
  16%,
  78% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.12) rotate(900deg);
  }
}

@keyframes launchText {
  0%,
  35% {
    opacity: 1;
  }
  52%,
  100% {
    opacity: 0.26;
  }
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(30px, 6vw, 88px);
  top: clamp(120px, 18vh, 190px);
  width: min(760px, calc(100% - 60px));
}

.kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #f0c572;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.world-card strong,
.set-world span,
.market-item strong,
.social-post strong,
#editionLabel {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(64px, 10.4vw, 150px);
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 0.86;
  overflow-wrap: normal;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(247, 244, 234, 0.12), 0 18px 54px rgba(0, 0, 0, 0.44);
  word-break: normal;
}

h1 span {
  display: block;
}

.hero-copy p:not(.kicker) {
  max-width: 560px;
  color: rgba(247, 244, 234, 0.76);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.36;
}

.world-card {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 5vw, 82px);
  bottom: clamp(80px, 10vh, 128px);
  width: min(390px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(247, 244, 234, 0.32);
  border-radius: 20px;
  background: rgba(2, 3, 3, 0.56);
  backdrop-filter: blur(14px);
}

.world-card span {
  display: block;
  color: rgba(247, 244, 234, 0.56);
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.mini-readouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.mini-readouts b {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 234, 0.7);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-readouts em {
  display: block;
  color: var(--chalk);
  font-style: normal;
  font-size: 22px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 38px;
  border-radius: 16px 16px 0 0;
  background: var(--chalk);
  color: var(--ink);
  font-size: 28px;
  transform: translateX(-50%);
}

.ticker {
  overflow: hidden;
  background: var(--night);
  color: var(--chalk);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 13px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: var(--mono);
  font-size: 13px;
}

@keyframes ticker {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes simRotate {
  from {
    transform: rotate(0deg) scaleY(0.36);
  }
  to {
    transform: rotate(360deg) scaleY(0.36);
  }
}

@keyframes simFieldMotion {
  0% {
    transform: translate3d(var(--field-drift-neg, -3px), 0, 0) rotate(-0.4deg) scale(0.992);
    background-position: 44% 38%, 48% 46%, 62% 68%, 50% 50%;
  }
  45% {
    transform: translate3d(var(--field-drift-pos, 5px), var(--field-drift-up, -4px), 0) rotate(0.65deg) scale(1.008);
    background-position: 38% 33%, 52% 43%, 57% 72%, 52% 48%;
  }
  100% {
    transform: translate3d(var(--field-drift-neg, -3px), 0, 0) rotate(-0.4deg) scale(0.992);
    background-position: 44% 38%, 48% 46%, 62% 68%, 50% 50%;
  }
}

@keyframes simRingOrbit {
  from {
    transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleY(var(--scale-y, 0.34));
  }
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--angle, 0deg) + 360deg)) scaleY(var(--scale-y, 0.34));
  }
}

@keyframes simSignalPulse {
  0%,
  100% {
    filter: brightness(0.82);
    transform: rotate(var(--link-angle, 0deg)) scaleX(0.72);
  }
  45% {
    filter: brightness(1.35);
    transform: rotate(var(--link-angle, 0deg)) scaleX(1.08);
  }
}

.simulator {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) minmax(270px, 360px);
  gap: 18px;
  padding: clamp(22px, 4vw, 54px);
}

.simulator > .controls {
  grid-column: 1;
  grid-row: 1;
}

.simulator > .future-feed {
  grid-column: 2;
  grid-row: 1;
}

.simulator > .side-feed {
  grid-column: 3;
  grid-row: 1;
}

.controls,
.simulation-stage,
.future-feed,
.module,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(250, 247, 239, 0.84);
  box-shadow: 0 24px 70px rgba(35, 31, 24, 0.12);
}

.controls {
  padding: 20px;
}

.simulation-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(300px, 380px);
  column-gap: clamp(16px, 2.6vw, 30px);
  row-gap: 10px;
  align-items: start;
  min-height: 820px;
  margin: 0 clamp(22px, 4vw, 54px) clamp(22px, 4vw, 54px);
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 12, 12, 0.96), rgba(2, 3, 3, 0.98)),
    var(--night);
  color: var(--chalk);
}

.simulation-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.94%, rgba(247, 244, 234, 0.18) 50%, transparent 50.06%),
    linear-gradient(0deg, transparent 0 49.94%, rgba(247, 244, 234, 0.12) 50%, transparent 50.06%),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(247, 244, 234, 0.025) 13px);
  opacity: 0.72;
  pointer-events: none;
}

.simulation-stage .section-heading {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 560px;
}

.simulation-stage .section-heading h2 {
  color: var(--chalk);
}

.simulation-framework {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(247, 244, 234, 0.68);
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.42;
}

.design-system .simulation-framework {
  color: #625e56;
  font-size: clamp(15px, 1.45vw, 18px);
}

.simulation-sandbox {
  position: relative;
  z-index: 2;
  display: contents;
}

.simulation-graphic {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  width: min(84vmin, 900px);
  aspect-ratio: 1;
  margin: clamp(4px, 1.6vw, 16px) auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 34%, rgba(247, 244, 234, 0.22), transparent 12%),
    radial-gradient(circle at 46% 44%, rgba(98, 174, 242, 0.2), transparent 32%),
    radial-gradient(circle at 62% 68%, rgba(66, 197, 166, 0.12), transparent 34%),
    radial-gradient(circle, rgba(247, 244, 234, 0.05), rgba(98, 174, 242, 0.08) 54%, transparent 70%);
  box-shadow:
    inset 0 0 60px rgba(247, 244, 234, 0.09),
    inset 0 0 110px rgba(98, 174, 242, 0.12),
    0 0 80px rgba(98, 174, 242, 0.12);
  filter: brightness(var(--field-brightness, 1));
  transition: filter 280ms ease, transform 280ms ease;
  background-size: 125% 125%, 118% 118%, 130% 130%, 100% 100%;
  animation: simFieldMotion var(--field-pulse-speed, 9s) ease-in-out infinite;
}

.simulation-links {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.sim-link {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(28% + var(--link-strength, 0.5) * 26%);
  height: calc(2px + var(--link-strength, 0.5) * 7px);
  transform-origin: left center;
  border-radius: 999px;
  opacity: calc(0.26 + var(--link-strength, 0.5) * 0.72);
  background: linear-gradient(90deg, rgba(247, 244, 234, 0), rgba(98, 174, 242, 0.9), rgba(224, 168, 77, 0.5), rgba(247, 244, 234, 0));
  box-shadow:
    0 0 calc(16px + var(--link-strength, 0.5) * 30px) rgba(98, 174, 242, 0.58),
    0 0 calc(7px + var(--link-strength, 0.5) * 18px) rgba(224, 168, 77, 0.24);
  animation: simSignalPulse calc(2.45s - var(--link-strength, 0.5) * 1.05s) ease-in-out infinite;
  animation-delay: var(--link-delay, 0s);
}

.sim-link span {
  position: absolute;
  left: 36%;
  top: -24px;
  width: clamp(58px, 8vw, 112px);
  color: rgba(247, 244, 234, 0.64);
  font-family: var(--mono);
  font-size: clamp(7px, 0.62vw, 9px);
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.sim-link-tech-energy {
  --link-angle: -32deg;
  transform: rotate(var(--link-angle));
}

.sim-link-tech-market {
  --link-angle: -145deg;
  transform: rotate(var(--link-angle));
}

.sim-link-tech-market span {
  top: 10px;
}

.sim-link-energy-policy {
  --link-angle: 36deg;
  transform: rotate(var(--link-angle));
}

.sim-link-policy-market {
  --link-angle: -148deg;
  transform: rotate(var(--link-angle));
}

.sim-link-tech-life {
  --link-angle: 88deg;
  transform: rotate(var(--link-angle));
}

.sim-link-culture-policy {
  --link-angle: -15deg;
  transform: rotate(var(--link-angle));
}

.sim-link-market-life {
  --link-angle: 98deg;
  transform: rotate(var(--link-angle));
}

.sim-core-readout {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 10vw, 122px);
  aspect-ratio: 1;
  border: 1px solid rgba(98, 174, 242, 0.4);
  border-radius: 50%;
  color: var(--chalk);
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(2, 3, 3, 0.5);
  box-shadow: 0 0 calc(24px + var(--core-pressure, 0.5) * 34px) rgba(98, 174, 242, 0.25);
  pointer-events: none;
}

.sim-core-readout strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 0.82;
}

.sim-core-readout span {
  display: block;
  max-width: 78px;
  font-family: var(--grotesk);
  font-size: clamp(8px, 0.72vw, 10px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  color: rgba(247, 244, 234, 0.58);
  overflow-wrap: anywhere;
}

.simulation-graphic::before,
.simulation-graphic::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 234, 0.2);
  animation: simRotate var(--field-speed, 18s) linear infinite;
}

.simulation-graphic::after {
  inset: 17%;
  border-color: rgba(224, 168, 77, 0.18);
  animation-duration: 13s;
  animation-direction: reverse;
}

.sim-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 244, 234, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleY(var(--scale-y, 0.34));
  animation: simRingOrbit var(--field-speed, 18s) linear infinite;
}

.ring-one {
  --angle: 20deg;
  --scale-y: 0.28;
  animation-duration: var(--ring-one-speed, 20s);
}

.ring-two {
  --angle: 82deg;
  --scale-y: 0.38;
  animation-duration: var(--ring-two-speed, 14s);
  animation-direction: reverse;
}

.ring-three {
  --angle: 142deg;
  --scale-y: 0.44;
  animation-duration: var(--ring-three-speed, 25s);
}

.sim-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(66px, 7.6vw, 90px);
  max-width: 18%;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 244, 234, calc(0.18 + var(--node-glow, 0.5) * 0.42));
  border-radius: 50%;
  color: var(--chalk);
  font-family: var(--grotesk);
  font-size: clamp(10px, 0.94vw, 13px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
  background: rgba(2, 3, 3, 0.72);
  box-shadow:
    0 0 calc(18px + var(--node-glow, 0.5) * 42px) rgba(98, 174, 242, calc(0.1 + var(--node-glow, 0.5) * 0.36)),
    inset 0 0 calc(10px + var(--node-glow, 0.5) * 18px) rgba(247, 244, 234, 0.05);
  transform: translate(-50%, -50%);
  transition: left 280ms ease, top 280ms ease, transform 280ms ease, border-color 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
  padding: 6px;
  text-align: center;
  word-break: normal;
}

.sim-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(247, 244, 234, 0.08);
  opacity: var(--node-aura-opacity, 0.5);
  animation: simRotate var(--node-aura-speed, 13s) linear infinite;
  pointer-events: none;
}

.sim-node-tech {
  left: 50%;
  top: 50%;
  width: clamp(70px, 8vw, 94px);
  border-color: rgba(98, 174, 242, 0.7);
  transform: translate(-50%, -50%) scale(var(--tech-node, 1));
  color: transparent;
}

.sim-node-energy {
  left: var(--energy-x, 72%);
  top: var(--energy-y, 34%);
  --node-glow: var(--energy-glow, 0.5);
  transform: translate(-50%, -50%) scale(var(--energy-node, 1));
}

.sim-node-policy {
  left: var(--policy-x, 69%);
  top: var(--policy-y, 70%);
  --node-glow: var(--policy-glow, 0.5);
  transform: translate(-50%, -50%) scale(var(--policy-node, 1));
}

.sim-node-culture {
  left: var(--culture-x, 31%);
  top: var(--culture-y, 70%);
  --node-glow: var(--culture-glow, 0.5);
  transform: translate(-50%, -50%) scale(var(--culture-node, 1));
}

.sim-node-market {
  left: var(--market-x, 29%);
  top: var(--market-y, 35%);
  --node-glow: var(--market-glow, 0.5);
  transform: translate(-50%, -50%) scale(var(--market-node, 1));
}

.sim-node-life {
  left: var(--life-x, 50%);
  top: var(--life-y, 86%);
  --node-glow: var(--life-glow, 0.5);
  transform: translate(-50%, -50%) scale(var(--life-node, 1));
}

.simulation-readouts {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.simulation-inspector {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: clamp(46px, 4vw, 62px);
}

.sandbox-panel {
  border: 1px solid rgba(247, 244, 234, 0.18);
  border-radius: 16px;
  padding: 14px;
  background: rgba(247, 244, 234, 0.06);
  box-shadow: inset 0 0 30px rgba(98, 174, 242, 0.04);
}

.sandbox-panel > span,
.sandbox-meter span {
  display: block;
  margin-bottom: 10px;
  color: rgba(247, 244, 234, 0.58);
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sandbox-panel p,
.sandbox-meter p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  margin: 0 0 9px;
  color: rgba(247, 244, 234, 0.84);
  font-size: clamp(14px, 1.22vw, 15px);
  line-height: 1.28;
}

.sandbox-panel b,
.sandbox-meter b {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.sandbox-panel em,
.sandbox-meter em {
  color: rgba(224, 168, 77, 0.86);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
}

.sandbox-meter {
  margin-bottom: 11px;
}

.sandbox-meter i {
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 244, 234, 0.09);
}

.sandbox-meter i::before {
  content: "";
  display: block;
  width: calc(var(--meter, 0.5) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(66, 197, 166, 0.85), rgba(98, 174, 242, 0.88), rgba(224, 168, 77, 0.9));
  box-shadow: 0 0 18px rgba(98, 174, 242, 0.42);
  transition: width 260ms ease;
}

.simulation-readouts div,
.simulation-flows {
  border: 1px solid rgba(247, 244, 234, 0.18);
  border-radius: 16px;
  background: rgba(247, 244, 234, 0.055);
}

.simulation-readouts div {
  padding: 14px;
}

.simulation-readouts span,
.simulation-flows span {
  display: block;
  color: rgba(247, 244, 234, 0.58);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simulation-readouts strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.simulation-flows {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 1 / -1;
  grid-row: 4;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 0;
  padding: 14px;
}

.simulation-flows p {
  min-width: 0;
  margin: 0;
  padding: 0 10px 0 0;
  border-right: 1px solid rgba(247, 244, 234, 0.12);
  color: rgba(247, 244, 234, 0.82);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.simulation-flows p:last-child {
  border-right: 0;
  padding-right: 0;
}

.section-heading h2,
.feed-top h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.controls .section-heading h2 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.archive .section-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.set-world {
  width: 100%;
  margin: 18px 0 6px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--night);
  color: var(--chalk);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.13), 0 12px 24px rgba(17, 17, 15, 0.16);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.set-world:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.set-world:active {
  transform: translateY(1px);
}

.set-world.is-set {
  animation: setPulse 520ms ease;
}

.set-world.needs-attention {
  animation: setWorldNudge 0.7s ease-in-out 2;
}

@keyframes setWorldNudge {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.13), 0 12px 24px rgba(17, 17, 15, 0.16);
  }
  50% {
    transform: translateY(-2px) scale(1.025);
    box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.13), 0 0 0 8px rgba(213, 77, 63, 0.16), 0 18px 36px rgba(17, 17, 15, 0.18);
  }
}

.set-world span {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.set-world small {
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.72;
  white-space: nowrap;
}

.storage-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 10px 0 18px;
}

.storage-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.66);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.storage-actions button:hover {
  background: var(--gold);
}

@keyframes setPulse {
  0% {
    box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.13), 0 0 0 rgba(224, 168, 77, 0);
  }
  50% {
    box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.13), 0 0 0 8px rgba(224, 168, 77, 0.34);
  }
  100% {
    box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.13), 0 0 0 18px rgba(224, 168, 77, 0);
  }
}

.slider-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.slider-row span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--grotesk);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  min-width: 0;
}

.slider-row b {
  min-width: 0;
  overflow-wrap: anywhere;
}

.slider-row output {
  color: var(--red);
  font-family: var(--mono);
}

.slider-row small {
  color: #6d675f;
  font-size: 12px;
  line-height: 1.35;
}

.causal-trace {
  margin-top: 20px;
  padding: 14px;
  border: 1px dashed rgba(17, 17, 15, 0.28);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.62);
}

.causal-trace strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.causal-trace p {
  margin: 0;
  color: #625e56;
  font-size: 13px;
  line-height: 1.36;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--ink);
}

.future-feed {
  position: relative;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 8%, rgba(98, 174, 242, 0.13), transparent 22%),
    radial-gradient(circle at 18% 90%, rgba(213, 77, 63, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(180deg, #fffaf0 0%, #f5efe2 100%);
  align-self: stretch;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(17, 17, 15, 0.08);
}

.future-feed::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgba(17, 17, 15, 0.13) 49.8% 50.2%, transparent 50.3%),
    repeating-linear-gradient(180deg, rgba(17, 17, 15, 0.025) 0 1px, transparent 1px 8px);
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.future-feed > * {
  position: relative;
  z-index: 1;
}

.feed-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.feed-top .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feed-top .kicker::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(213, 77, 63, 0.35);
  animation: ledgerPulse 1.8s ease-out infinite;
  content: "";
}

#editionLabel {
  max-width: 145px;
  color: var(--muted);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

#leadSummary {
  margin: 22px 0;
  max-width: 780px;
  color: #54504a;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.38;
}

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

.ledger-console div,
.ledger-pressure-pill {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.72);
}

.ledger-console div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 13px;
}

.ledger-console span,
.ledger-pressure-pill span,
.story-receipt span {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ledger-console strong {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.ledger-pressure-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.ledger-pressure-pill {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  min-width: 0;
  padding: 11px 12px 12px;
  color: var(--ink);
  cursor: default;
  text-align: left;
}

.ledger-pressure-pill b {
  font-family: var(--mono);
  font-size: 12px;
}

.ledger-pressure-pill i {
  grid-column: 1 / -1;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.1);
}

.ledger-pressure-pill i::before {
  display: block;
  width: calc(var(--pressure, 0.5) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5e9b8d, #d7aa45, #cf5b49);
  content: "";
  transition: width 260ms ease;
}

.ledger-pressure-pill.is-high {
  background: rgba(213, 77, 63, 0.09);
}

.ledger-pressure-pill.is-low {
  background: rgba(94, 155, 141, 0.08);
}

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

.article-reader {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  margin-top: 14px;
}

.article-detail {
  position: relative;
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.92), rgba(245, 239, 226, 0.82)),
    rgba(255, 250, 240, 0.78);
  overflow-wrap: anywhere;
  box-shadow: 0 14px 32px rgba(17, 17, 15, 0.06);
}

.article-detail:first-child {
  grid-row: span 2;
}

.article-detail::before {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: rgba(17, 17, 15, 0.055);
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.85;
  content: "FN";
  pointer-events: none;
}

.article-detail h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  word-break: break-word;
}

.article-lens {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-detail p {
  margin-bottom: 10px;
  color: #625e56;
  line-height: 1.38;
}

.article-detail small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.why-panel {
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(213, 77, 63, 0.08), transparent 42%),
    rgba(238, 232, 220, 0.72);
}

.why-panel summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-panel dl {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.why-panel dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 17, 15, 0.1);
}

.why-panel dt,
.why-panel dd,
.why-panel p {
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.why-panel dt {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.why-panel dd,
.why-panel p {
  color: #4f4a43;
  font-size: 13px;
}

.why-panel.compact {
  margin: 10px 0 0;
  padding: 12px;
  border-radius: 10px;
}

.why-panel.compact p {
  margin-top: 8px;
  font-size: 12px;
}

.story-card {
  position: relative;
  min-width: 0;
  min-height: 226px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(238, 232, 220, 0.82)),
    #fffaf0;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.story-card::before {
  position: absolute;
  right: 14px;
  top: 12px;
  color: rgba(17, 17, 15, 0.09);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  content: var(--story-index, "00");
}

.story-card:hover {
  border-color: rgba(213, 77, 63, 0.36);
  box-shadow: 0 18px 36px rgba(17, 17, 15, 0.1);
  transform: translateY(-3px);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  word-break: break-word;
}

.story-meta b {
  max-width: 100%;
  border: 1px solid rgba(213, 77, 63, 0.18);
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(213, 77, 63, 0.07);
  color: #5f5a52;
  font-size: 9px;
  overflow-wrap: anywhere;
}

.story-card h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  word-break: break-word;
}

.story-card p,
.social-post p,
.timeline-item p {
  color: #625e56;
  line-height: 1.36;
  overflow-wrap: anywhere;
}

.story-card p {
  font-size: 14px;
}

.story-receipt {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(17, 17, 15, 0.18);
}

.story-receipt b {
  color: #6b655c;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* Future Ledger V2: make the issue feel like a moving editorial board. */
.future-feed {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: clamp(14px, 2vw, 22px);
  background:
    radial-gradient(circle at var(--ledger-glow-x, 82%) 12%, rgba(98, 174, 242, 0.14), transparent 26%),
    radial-gradient(circle at 18% var(--ledger-glow-y, 86%), rgba(213, 77, 63, 0.11), transparent 30%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(180deg, #fffaf0 0%, #f5efe2 100%);
  animation: ledgerGlowDrift 16s ease-in-out infinite alternate;
}

.future-feed::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(17, 17, 15, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(255, 250, 240, 0.42) 48%, transparent 58%),
    radial-gradient(circle at 50% 50%, transparent 0 36%, rgba(17, 17, 15, 0.045) 36.5% 37%, transparent 37.5%);
  content: "";
  opacity: 0.78;
  pointer-events: none;
  transform-origin: 50% 42%;
  animation: ledgerSweep 11s ease-in-out infinite;
}

.feed-top {
  grid-column: 1;
  align-self: end;
  border-bottom: 0;
  padding-bottom: 0;
}

.feed-top h2 {
  max-width: 12ch;
  text-wrap: balance;
}

#leadSummary {
  grid-column: 1;
  margin: -8px 0 0;
  max-width: 660px;
}

.ledger-console {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(17, 17, 15, 0.88), rgba(17, 17, 15, 0.72)),
    var(--ink);
  box-shadow: 0 24px 42px rgba(17, 17, 15, 0.16);
  overflow: hidden;
}

.ledger-console div {
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 0;
  background: transparent;
  padding: clamp(14px, 2vw, 20px);
}

.ledger-console div:last-child {
  border-bottom: 0;
}

.ledger-console span {
  color: #e6b44f;
}

.ledger-console strong {
  color: #fffaf0;
  font-size: clamp(20px, 2.4vw, 34px);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.ledger-pressure-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(132px, 1fr));
  gap: 10px;
  margin: 4px 0 0;
}

.ledger-pressure-pill {
  min-height: 96px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(238, 232, 220, 0.78)),
    rgba(255, 250, 240, 0.76);
  box-shadow: 0 12px 28px rgba(17, 17, 15, 0.07);
  transform: translateY(var(--ledger-pill-shift, 0));
  animation: ledgerCardFloat 7s ease-in-out infinite;
}

.ledger-pressure-pill:nth-child(2n) {
  --ledger-pill-shift: 8px;
  animation-delay: -1.5s;
}

.ledger-pressure-pill:nth-child(3n) {
  --ledger-pill-shift: -5px;
  animation-delay: -3s;
}

.ledger-pressure-pill:hover {
  border-color: rgba(17, 17, 15, 0.28);
  transform: translateY(-5px);
}

.ledger-pressure-pill.is-active {
  border-color: rgba(17, 17, 15, 0.42);
  box-shadow: 0 0 0 2px rgba(213, 77, 63, 0.16), 0 20px 38px rgba(17, 17, 15, 0.12);
}

.ledger-pressure-pill i::before {
  background: linear-gradient(90deg, #4f9b92, #e6b44f, #d54d3f);
  animation: ledgerPressureBreath 2.8s ease-in-out infinite;
}

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

.story-card {
  min-height: 248px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(241, 234, 220, 0.76)),
    #fffaf0;
  box-shadow: 0 16px 32px rgba(17, 17, 15, 0.06);
}

.story-card:nth-child(4n + 2),
.story-card:nth-child(4n + 3) {
  transform: translateY(12px);
}

.story-card:nth-child(4n + 2):hover,
.story-card:nth-child(4n + 3):hover {
  transform: translateY(5px);
}

.story-card::after {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 13px;
  height: 1px;
  background: linear-gradient(90deg, rgba(213, 77, 63, 0.55), transparent);
  content: "";
  opacity: 0.7;
}

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

.article-detail:first-child {
  grid-row: auto;
}

.article-detail {
  border-radius: 26px;
  background:
    linear-gradient(130deg, rgba(255, 250, 240, 0.95), rgba(238, 232, 220, 0.86)),
    #fffaf0;
  color: var(--ink);
  min-height: 310px;
}

.article-detail h3,
.article-detail p,
.article-detail small {
  color: var(--ink);
}

.article-detail p {
  color: #625e56;
}

.article-detail::before {
  color: rgba(17, 17, 15, 0.055);
}

.article-detail-2,
.article-detail-4 {
  background:
    linear-gradient(130deg, rgba(255, 250, 240, 0.95), rgba(238, 232, 220, 0.86)),
    #fffaf0;
  color: var(--ink);
}

.article-detail-2 h3,
.article-detail-4 h3 {
  color: var(--ink);
}

.article-detail-2 p,
.article-detail-4 p {
  color: #625e56;
}

.article-detail-2 small,
.article-detail-4 small {
  color: var(--muted);
}

/* Future Ledger V3: flexible newspaper board with draggable pieces. */
.future-feed {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  grid-auto-rows: max-content;
  background:
    radial-gradient(circle at 84% 8%, rgba(94, 155, 141, 0.11), transparent 24%),
    radial-gradient(circle at 20% 90%, rgba(213, 77, 63, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.03) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(180deg, #fffaf0 0%, #f3ecdc 100%);
  animation: none;
}

.future-feed::after {
  inset: 18px;
  border-color: rgba(17, 17, 15, 0.055);
  background:
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(17, 17, 15, 0.025) 23px 24px),
    linear-gradient(120deg, transparent, rgba(255, 250, 240, 0.5), transparent);
  opacity: 0.45;
  animation: ledgerSoftSweep 18s ease-in-out infinite;
}

.feed-top {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
  border-bottom: 2px solid rgba(17, 17, 15, 0.12);
  padding-bottom: 18px;
}

.feed-top h2 {
  max-width: 100%;
  font-size: clamp(28px, 3.35vw, 48px);
  line-height: 1;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

#leadSummary {
  grid-column: 1;
  max-width: 980px;
  margin: 0;
  padding: 0 0 2px;
}

.ledger-console {
  grid-column: 1;
  grid-row: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ledger-console div {
  border: 1px solid rgba(17, 17, 15, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 250, 240, 0.9), rgba(238, 232, 220, 0.76)),
    #fffaf0;
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(17, 17, 15, 0.055);
}

.ledger-console div:nth-child(2) {
  background:
    linear-gradient(140deg, rgba(17, 17, 15, 0.9), rgba(17, 17, 15, 0.74)),
    var(--ink);
}

.ledger-console div:nth-child(2) span {
  color: #e6b44f;
}

.ledger-console div:nth-child(2) strong {
  color: #fffaf0;
}

.ledger-console span {
  color: var(--red);
}

.ledger-console strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 30px);
  text-shadow: none;
}

.ledger-pressure-strip {
  grid-column: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: -2px 0 0;
}

.ledger-pressure-pill {
  min-height: 74px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(238, 232, 220, 0.74)),
    #fffaf0;
  box-shadow: none;
  transform: none;
  animation: none;
}

.ledger-pressure-pill:nth-child(2n),
.ledger-pressure-pill:nth-child(3n),
.ledger-pressure-pill:nth-child(2n):hover,
.ledger-pressure-pill:nth-child(3n):hover,
.ledger-pressure-pill:hover {
  transform: none;
}

.ledger-pressure-pill:hover {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(238, 232, 220, 0.86)),
    #fffaf0;
}

.ledger-pressure-pill i::before {
  animation: ledgerPressureBreath 4.5s ease-in-out infinite;
}

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

.story-card {
  min-height: 238px;
  cursor: grab;
  user-select: none;
}

.story-card:active,
.article-detail:active {
  cursor: grabbing;
}

.story-card:nth-child(4n + 2),
.story-card:nth-child(4n + 3),
.story-card:nth-child(4n + 2):hover,
.story-card:nth-child(4n + 3):hover {
  transform: none;
}

.story-card-1 {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(244, 238, 226, 0.84)),
    #fffaf0;
}

.story-card-2 {
  background:
    linear-gradient(145deg, rgba(247, 242, 231, 0.96), rgba(230, 225, 213, 0.86)),
    #f7f2e7;
}

.story-card-3 {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(223, 238, 233, 0.62)),
    #fffaf0;
}

.story-card-4 {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.95), rgba(245, 224, 218, 0.56)),
    #fffaf0;
}

.story-card.is-dragging,
.article-detail.is-dragging {
  opacity: 0.48;
  transform: scale(0.985);
}

.story-card.is-drop-target,
.article-detail.is-drop-target {
  border-color: rgba(213, 77, 63, 0.58);
  box-shadow: 0 0 0 3px rgba(213, 77, 63, 0.14), 0 18px 38px rgba(17, 17, 15, 0.11);
}

.story-drag-cue {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(255, 250, 240, 0.82);
  color: #7a7266;
  font-family: var(--grotesk);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 160ms ease, transform 160ms ease;
}

.story-card:hover .story-drag-cue,
.article-detail:hover .story-drag-cue,
.is-reordering .story-drag-cue {
  opacity: 1;
  transform: translateY(-2px);
}

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

.article-detail {
  min-height: 270px;
  cursor: grab;
}

.article-drag-cue {
  background: rgba(255, 250, 240, 0.92);
}

.article-detail-1,
.article-detail-3 {
  background:
    linear-gradient(130deg, rgba(255, 250, 240, 0.96), rgba(232, 241, 236, 0.72)),
    #fffaf0;
}

.article-detail-2,
.article-detail-4 {
  background:
    linear-gradient(130deg, rgba(255, 250, 240, 0.96), rgba(238, 232, 220, 0.88)),
    #fffaf0;
}

.ledger-console strong {
  font-size: clamp(16px, 1.45vw, 23px);
  line-height: 1.02;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 236px;
}

.story-card h3 {
  display: -webkit-box;
  margin-bottom: 8px;
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.05;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
}

.story-summary-short {
  display: -webkit-box;
  margin-bottom: 10px;
  font-size: 12.5px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.story-expand,
.article-expand {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 10px;
}

.story-expand summary,
.article-expand summary {
  display: inline-flex;
  order: 2;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 250, 240, 0.74);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-expand summary:hover,
.article-expand summary:hover {
  border-color: rgba(213, 77, 63, 0.36);
  background: rgba(255, 250, 240, 0.95);
}

.story-expand p {
  order: 1;
  margin: 0 0 10px;
  font-size: 12.5px;
  line-height: 1.34;
}

.article-detail {
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.article-detail h3 {
  display: -webkit-box;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.04;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
}

.article-teaser {
  display: -webkit-box;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.article-full-text {
  order: 1;
  max-height: 360px;
  margin: 0 0 12px;
  padding-right: 8px;
  overflow: auto;
}

.article-full-text p {
  font-size: 14px;
  line-height: 1.42;
}

.article-detail .why-panel {
  margin-top: 12px;
}

.article-detail h3,
.article-detail p,
.article-detail small {
  color: var(--ink);
}

.article-detail p,
.article-detail small,
.article-teaser {
  color: #625e56;
}

.article-detail::before {
  color: rgba(17, 17, 15, 0.055);
}

.thread-list article,
.social-post {
  overflow: hidden;
}

.thread-list article p,
.social-post p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@keyframes ledgerSoftSweep {
  0%, 100% {
    opacity: 0.28;
    transform: translateX(-0.75%);
  }
  50% {
    opacity: 0.56;
    transform: translateX(0.75%);
  }
}

@keyframes ledgerGlowDrift {
  from {
    --ledger-glow-x: 78%;
    --ledger-glow-y: 78%;
  }
  to {
    --ledger-glow-x: 56%;
    --ledger-glow-y: 92%;
  }
}

@keyframes ledgerSweep {
  0%, 100% {
    opacity: 0.36;
    transform: translateX(-1%) rotate(-0.8deg);
  }
  50% {
    opacity: 0.78;
    transform: translateX(1.5%) rotate(0.7deg);
  }
}

@keyframes ledgerCardFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@keyframes ledgerPressureBreath {
  0%, 100% {
    filter: saturate(0.9);
  }
  50% {
    filter: saturate(1.35) brightness(1.04);
  }
}

@keyframes ledgerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(213, 77, 63, 0.35);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(213, 77, 63, 0);
  }
}

.side-feed {
  display: grid;
  align-content: start;
  gap: 18px;
}

.module {
  min-width: 0;
  padding: 18px;
  overflow-wrap: anywhere;
}

.controls .world-state-module {
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.68);
  box-shadow: none;
}

.market-list,
.social-list,
.state-list,
.thread-list {
  display: grid;
  gap: 12px;
}

.market-item,
.social-post,
.state-item,
.thread-item {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.market-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
}

.market-item strong,
.social-post strong {
  font-family: var(--grotesk);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  min-width: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.market-item span {
  color: #1c8167;
  font-family: var(--mono);
}

.market-item span.down {
  color: var(--red);
}

.market-item small {
  color: var(--muted);
}

.social-post p {
  margin: 5px 0 0;
  font-size: 14px;
}

.state-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: baseline;
}

.controls .world-state-module .state-item {
  grid-template-columns: 1fr;
  gap: 4px;
}

.state-item strong {
  font-family: var(--grotesk);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: normal;
}

.state-item span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red);
  min-width: 0;
  overflow-wrap: normal;
  text-align: left;
  white-space: normal;
  word-break: normal;
}

.controls .world-state-module .state-item span {
  display: block;
  max-width: 100%;
  line-height: 1.25;
}

.thread-item strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.06;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  word-break: break-word;
}

.thread-item span {
  display: inline-block;
  margin-top: 6px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
}

.thread-item p {
  margin: 5px 0 0;
  color: #625e56;
  font-size: 13px;
  line-height: 1.32;
}

.archive,
.idea-lab,
.design-system,
.citations {
  padding: 0 clamp(22px, 4vw, 54px) 64px;
}

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

.timeline-item {
  min-height: 190px;
  padding: 16px;
}

.timeline-item span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 900;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  word-break: break-word;
}

.timeline-item small {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.idea-lab .section-heading {
  max-width: 860px;
}

.idea-lab .section-heading p:not(.kicker) {
  max-width: 760px;
  color: #625e56;
  line-height: 1.42;
}

.idea-lab {
  position: relative;
  padding-top: clamp(18px, 3vw, 42px);
}

.idea-lab.is-profile-focus {
  display: grid;
  align-content: start;
  min-height: 100svh;
  padding-top: clamp(24px, 5vw, 70px);
}

.idea-lab.is-opportunity-locked {
  min-height: auto;
  padding-top: 0;
}

.idea-lab.is-opportunity-locked .profile-reveal-header,
.idea-lab.is-opportunity-locked .idea-poster,
.idea-lab.is-opportunity-locked .opportunity-workbench,
.idea-lab.is-opportunity-locked .opportunity-detail-drawer {
  display: none;
}

.idea-lab.is-opportunity-locked .section-heading {
  text-align: left;
  margin: 0;
}

.idea-lab.is-opportunity-locked .idea-lab-grid {
  min-height: auto;
  margin-top: 14px;
}

.idea-lab.is-profile-focus .section-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.idea-lab.is-profile-focus .section-heading h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.idea-lab.is-profile-focus .section-heading p:not(.kicker) {
  margin-right: auto;
  margin-left: auto;
}

.idea-lab.is-profile-focus .idea-poster,
.idea-lab.is-profile-focus .opportunity-workbench,
.idea-lab.is-profile-focus .opportunity-detail-drawer {
  display: none;
}

.idea-lab.is-profile-focus .idea-lab-grid {
  grid-template-columns: minmax(0, 1040px);
  justify-content: center;
  min-height: calc(100svh - 260px);
}

.idea-lab.is-profile-focus .personal-profile {
  grid-template-columns: 1fr;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(131, 191, 183, 0.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(238, 216, 137, 0.46), transparent 24%),
    rgba(255, 250, 240, 0.92);
  padding: clamp(20px, 3.4vw, 38px);
}

.idea-lab.is-quiz-active .opportunity-workbench,
.idea-lab.is-quiz-active .studio-collection-strip,
.idea-lab.is-quiz-active .studio-toolbar {
  display: none;
}

.idea-lab.has-profile-snapshot:not(.is-profile-editing) .idea-lab-grid {
  grid-template-columns: minmax(0, 1fr);
}

.idea-lab.has-profile-snapshot:not(.is-profile-editing) .personal-profile {
  display: none;
}

.personal-profile:not(.is-advanced-open) > label,
.personal-profile:not(.is-advanced-open) > .profile-field,
.personal-profile:not(.is-advanced-open) > .profile-advanced,
.personal-profile:not(.is-advanced-open) > .idea-actions {
  display: none;
}

.personal-profile.is-advanced-open > .profile-quiz-shell {
  border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  padding-bottom: 14px;
}

.personal-profile.is-advanced-open > label,
.personal-profile.is-advanced-open > .profile-field,
.personal-profile.is-advanced-open > .profile-advanced,
.personal-profile.is-advanced-open > .idea-actions {
  display: grid;
}

.idea-lab.is-revealing {
  display: grid;
  min-height: min(720px, calc(100svh - 80px));
  overflow: hidden;
  place-items: center;
}

.idea-lab.is-revealing > * {
  opacity: 0;
  pointer-events: none;
}

.idea-lab.is-revealing::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 50%;
  width: clamp(150px, 20vw, 230px);
  aspect-ratio: 1;
  border: 10px solid rgba(17, 17, 15, 0.08);
  border-top-color: var(--red);
  border-right-color: #83bfb7;
  border-bottom-color: var(--gold);
  border-radius: 50%;
  animation: spinPress 0.95s linear infinite;
  box-shadow: 0 0 0 34px rgba(255, 250, 240, 0.68), 0 24px 70px rgba(35, 31, 24, 0.14);
  transform: translate(-50%, -50%);
}

.idea-lab.is-revealing::after {
  content: "Generating your future paths...";
  position: absolute;
  top: calc(44% + clamp(108px, 14vw, 148px));
  left: 50%;
  width: min(84vw, 460px);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 3.8vw, 44px);
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.idea-poster {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 18px;
  min-height: 250px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 46%, rgba(131, 191, 183, 0.26), transparent 24%),
    radial-gradient(circle at 36% 105%, rgba(238, 216, 137, 0.5), transparent 26%),
    linear-gradient(135deg, rgba(17, 17, 15, 0.96), rgba(31, 38, 37, 0.9));
  color: var(--paper);
  box-shadow: 0 22px 70px rgba(35, 31, 24, 0.18);
}

.idea-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  pointer-events: none;
}

.idea-poster-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
}

.idea-poster-copy .kicker {
  color: #e66a58;
}

.idea-poster-copy h3 {
  max-width: 720px;
  margin: 0;
  color: var(--paper);
  font-family: var(--headline);
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.idea-poster-copy p:not(.kicker) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.35;
}

.idea-poster-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.idea-poster-stats span {
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.78);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.idea-poster-stats b {
  color: var(--gold);
}

.idea-poster-machine {
  position: relative;
  z-index: 1;
  min-height: 250px;
  overflow: hidden;
}

.press-orbit {
  position: absolute;
  right: clamp(38px, 6vw, 80px);
  top: 50%;
  width: 190px;
  aspect-ratio: 1;
  translate: 0 -50%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 50%;
  animation: pressPulse 3s ease-in-out infinite;
}

.press-orbit::before,
.press-orbit::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(238, 216, 137, 0.38);
  border-radius: 50%;
  animation: spinPress 9s linear infinite;
}

.press-orbit::after {
  inset: 52px;
  border-color: rgba(131, 191, 183, 0.46);
  animation-duration: 5.5s;
  animation-direction: reverse;
}

.press-orbit span {
  position: absolute;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(238, 216, 137, 0.7);
}

.press-orbit span:nth-child(1) {
  left: 14px;
  top: 82px;
}

.press-orbit span:nth-child(2) {
  right: 36px;
  top: 28px;
  background: #83bfb7;
}

.press-orbit span:nth-child(3) {
  right: 34px;
  bottom: 28px;
  background: #e66a58;
}

.ticket-stack {
  position: absolute;
  right: 38px;
  bottom: 24px;
  width: 160px;
  height: 110px;
}

.ticket-stack i {
  position: absolute;
  display: grid;
  place-items: center;
  width: 128px;
  height: 72px;
  border: 1px solid rgba(17, 17, 15, 0.22);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  transform-origin: center;
  animation: ticketShuffle 4.8s ease-in-out infinite;
}

.ticket-stack i:nth-child(1) {
  rotate: -8deg;
  left: 0;
  top: 16px;
}

.ticket-stack i:nth-child(2) {
  rotate: 5deg;
  left: 18px;
  top: 4px;
  animation-delay: -1.4s;
}

.ticket-stack i:nth-child(3) {
  rotate: -1deg;
  left: 34px;
  top: 28px;
  animation-delay: -2.8s;
}

.scanner-strip {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(238, 216, 137, 0.22), transparent);
  translate: -80% 0;
  animation: scanPoster 3.2s linear infinite;
}

.idea-lab.is-thinking .idea-poster {
  border-color: rgba(238, 216, 137, 0.65);
}

.idea-lab.is-thinking .scanner-strip {
  animation-duration: 0.95s;
}

.idea-lab.is-thinking .press-orbit {
  animation-duration: 1.2s;
}

.idea-lab-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.personal-profile,
.idea-card,
.idea-ticket {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 48px rgba(35, 31, 24, 0.08);
}

.personal-profile {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.profile-reveal-header {
  display: grid;
  grid-column: 1 / -1;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(17, 17, 15, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.76);
  padding: clamp(14px, 2vw, 20px);
}

.profile-reveal-header h3 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 0.98;
  text-transform: uppercase;
}

.profile-reveal-header p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  color: #5d574d;
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 800;
  line-height: 1.25;
}

.profile-reveal-header button {
  justify-self: start;
  min-height: 36px;
  border: 1px solid rgba(17, 17, 15, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0 14px;
  text-transform: uppercase;
}

.profile-reveal-header button:hover {
  background: var(--gold);
}

.profile-quiz-shell {
  display: grid;
  grid-column: 1 / -1;
  min-width: 0;
}

.profile-quiz-screen {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  min-height: min(760px, calc(100svh - 260px));
  align-content: start;
}

.quiz-start-screen,
.quiz-loading-screen {
  place-items: center;
  text-align: center;
}

.opportunity-lock-card {
  display: grid;
  gap: 16px;
  min-height: 340px;
  align-content: center;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(213, 77, 63, 0.14), transparent 24%),
    radial-gradient(circle at 14% 88%, rgba(98, 174, 242, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 22px 22px,
    rgba(255, 250, 240, 0.92);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 22px 62px rgba(35, 31, 24, 0.1);
}

.opportunity-lock-card h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.94;
  text-transform: uppercase;
}

.opportunity-lock-card p:not(.kicker) {
  max-width: 680px;
  margin: 0;
  color: #5d574d;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.35;
}

.opportunity-lock-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.opportunity-lock-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0 12px;
  text-transform: uppercase;
}

.opportunity-lock-card button {
  justify-self: start;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0 20px;
  text-transform: uppercase;
}

.opportunity-lock-card button:hover {
  background: var(--red);
}

.quiz-start-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  width: min(1040px, 100%);
}

.quiz-start-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  min-height: 390px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 14%, rgba(238, 216, 137, 0.48), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(131, 191, 183, 0.25), transparent 30%),
    rgba(255, 250, 240, 0.86);
  padding: clamp(22px, 4vw, 46px);
  text-align: left;
}

.quiz-start-card {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 390px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(180deg, #12110f, #2d2a24);
  padding: 22px;
}

.quiz-start-card span {
  display: block;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--paper);
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 13px;
  text-align: left;
  text-transform: uppercase;
}

.quiz-screen-heading {
  display: grid;
  gap: 8px;
  max-width: 820px;
}

.quiz-start-screen .quiz-screen-heading,
.quiz-loading-screen .quiz-screen-heading {
  justify-items: center;
}

.quiz-screen-heading h3,
.quiz-start-copy h3,
.creator-signal-poster h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.quiz-screen-heading p:not(.kicker),
.quiz-start-copy p:not(.kicker),
.creator-signal-poster p {
  max-width: 760px;
  margin: 0;
  color: #514b43;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.18;
}

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

.profile-quiz-progress span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
  color: rgba(17, 17, 15, 0.56);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  overflow: hidden;
  padding: 6px 8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-quiz-progress i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.1);
  color: var(--ink);
  font-style: normal;
  flex: 0 0 auto;
}

.profile-quiz-progress span.is-active {
  border-color: rgba(196, 56, 44, 0.48);
  background: rgba(238, 216, 137, 0.72);
  color: var(--ink);
}

.quiz-preview-row,
.quiz-nav-row,
.activity-choice-row,
.quiz-scale-picker div,
.creator-signal-poster .creator-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.quiz-preview-row {
  justify-content: center;
}

.quiz-preview-row span {
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.74);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.quiz-nav-row {
  justify-content: space-between;
}

.quiz-nav-row button,
.activity-choice-row button,
.artifact-pick-grid button,
.quiz-chip-grid button,
.quiz-scale-picker button,
.capability-pulse-row button,
.stakes-row button {
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  min-height: 36px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.quiz-nav-row button.primary,
.quiz-nav-row button:hover,
.activity-choice-row button.is-selected,
.artifact-pick-grid button.is-selected,
.quiz-chip-grid button.is-selected,
.quiz-scale-picker button.is-selected,
.capability-pulse-row button.is-selected,
.stakes-row button.is-selected {
  border-color: rgba(17, 17, 15, 0.72);
  background: var(--ink);
  color: var(--paper);
}

.quiz-profile-grid,
.quiz-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quiz-select-card,
.quiz-chip-group,
.activity-card,
.quiz-scale-picker,
.creator-signal-poster {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.76);
  padding: clamp(14px, 2vw, 20px);
}

.quiz-select-card {
  align-content: start;
}

.quiz-select-card span,
.quiz-mini-heading b,
.activity-card h4,
.capability-pulse-row b,
.stakes-row b,
.quiz-scale-picker b,
.signal-poster-grid b {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quiz-select-card small,
.quiz-mini-heading span,
.activity-card p,
.artifact-pick-grid span,
.signal-poster-grid span {
  color: #625e56;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.28;
}

.quiz-chip-grid,
.activity-card-grid,
.artifact-pick-grid,
.capability-pulse-grid,
.stakes-grid {
  display: grid;
  gap: 10px;
}

.activity-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.activity-card {
  align-content: space-between;
  min-height: 190px;
}

.activity-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.08;
}

.activity-card-label {
  width: fit-content;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  padding: 6px 9px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.activity-choice-row {
  justify-content: flex-start;
}

.artifact-pick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domain-expertise-selector {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.72);
  padding: clamp(14px, 2vw, 20px);
}

.domain-expertise-help {
  max-width: 760px;
  margin: 0;
  color: #625e56;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
}

.domain-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.domain-expertise-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.72);
  padding: 12px;
}

.domain-expertise-card.is-selected {
  border-color: rgba(207, 91, 73, 0.5);
  box-shadow: inset 0 0 0 1px rgba(207, 91, 73, 0.16);
}

.domain-expertise-card h4 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.05;
}

.domain-expertise-card p {
  margin: 0;
  color: #6f695f;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.domain-level-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.domain-level-row button {
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 9px;
}

.domain-level-row button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.artifact-pick-grid button {
  display: grid;
  gap: 8px;
  justify-items: start;
  min-height: 136px;
  border-radius: 16px;
  text-align: left;
  white-space: normal;
}

.artifact-pick-grid b {
  font-size: 13px;
  line-height: 1.08;
}

.artifact-pick-grid em {
  color: #5f5a52;
  font-family: var(--body);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.24;
}

.quiz-chip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 330px;
  overflow: auto;
}

.quiz-mini-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.capability-pulse-row,
.stakes-row {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.1);
  padding-bottom: 10px;
}

.capability-pulse-row:last-child,
.stakes-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.capability-pulse-row div,
.stakes-row div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quiz-orbit-loader {
  position: relative;
  width: 138px;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(17, 17, 15, 0.9) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, rgba(238, 216, 137, 0.5), transparent 54%);
  animation: quizPulse 1.8s ease-in-out infinite;
}

.quiz-orbit-loader i {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 50%;
  animation: quizOrbit 2.4s linear infinite;
}

.quiz-orbit-loader i:nth-child(2) {
  inset: 28px;
  animation-duration: 1.8s;
  animation-direction: reverse;
}

.quiz-orbit-loader i:nth-child(3) {
  inset: 44px;
  border-color: rgba(196, 56, 44, 0.34);
  animation-duration: 1.2s;
}

.quiz-scan-lines {
  display: grid;
  width: min(520px, 82vw);
  gap: 8px;
}

.quiz-scan-lines span {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.12);
}

.quiz-scan-lines span::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, #83bfb7, var(--gold), var(--red));
  animation: quizScan 1.15s ease-in-out infinite;
}

.quiz-scan-lines span:nth-child(2)::before { animation-delay: 0.12s; }
.quiz-scan-lines span:nth-child(3)::before { animation-delay: 0.24s; }
.quiz-scan-lines span:nth-child(4)::before { animation-delay: 0.36s; }

.creator-signal-poster {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(196, 56, 44, 0.18), transparent 24%),
    radial-gradient(circle at 10% 88%, rgba(131, 191, 183, 0.3), transparent 28%),
    rgba(255, 250, 240, 0.9);
  padding: clamp(22px, 4vw, 48px);
}

.creator-signal-poster::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px dashed rgba(17, 17, 15, 0.12);
}

.creator-signal-poster > * {
  position: relative;
  z-index: 1;
}

.signal-poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.signal-poster-grid span {
  display: grid;
  gap: 7px;
  min-height: 100px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(255, 250, 240, 0.72);
  padding: 12px;
}

@keyframes quizOrbit {
  from { rotate: 0deg; transform: translateX(0); }
  50% { transform: translateX(7px); }
  to { rotate: 360deg; transform: translateX(0); }
}

@keyframes quizPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(196, 56, 44, 0); }
  50% { box-shadow: 0 0 42px rgba(196, 56, 44, 0.22); }
}

@keyframes quizScan {
  0% { translate: -120% 0; }
  100% { translate: 260% 0; }
}

.personal-profile label,
.profile-field {
  display: grid;
  gap: 6px;
}

.personal-profile span,
.profile-field > span {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.personal-profile input,
.personal-profile select,
.personal-profile textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.86);
  color: var(--ink);
  font: inherit;
  line-height: 1.3;
  padding: 9px 10px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 190px;
  overflow: auto;
  padding: 2px;
}

.check-grid.compact {
  max-height: none;
}

.check-grid details {
  display: grid;
  grid-column: 1 / -1;
  gap: 7px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.54);
  padding: 8px;
}

.check-grid details summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.check-grid details label {
  margin-top: 7px;
}

.check-grid label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.64);
  color: rgba(17, 17, 15, 0.76);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  padding: 8px 10px;
  text-transform: uppercase;
}

.check-grid label:has(input:checked) {
  border-color: rgba(196, 56, 44, 0.72);
  background: rgba(238, 216, 137, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.08);
}

.check-grid input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--red);
  flex: 0 0 auto;
}

.profile-advanced {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.48);
  padding: 10px;
}

.profile-advanced summary {
  cursor: pointer;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.profile-advanced[open] {
  display: grid;
  gap: 12px;
}

.profile-model-note {
  margin: 0;
  color: rgba(17, 17, 15, 0.64);
  font-size: 12px;
  line-height: 1.35;
}

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

.mini-slider-grid label {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: rgba(17, 17, 15, 0.76);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mini-slider-grid input[type="range"] {
  width: 100%;
  min-width: 0;
  accent-color: var(--red);
}

.personal-profile select[multiple] {
  min-height: 120px;
}

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

.idea-lab.is-profile-focus .profile-advanced,
.idea-lab.is-profile-focus .idea-actions {
  grid-column: 1 / -1;
}

.idea-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.66);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.idea-actions button.is-active,
.idea-actions button:hover {
  background: var(--gold);
}

.idea-lab.is-profile-focus .idea-actions button:first-child {
  min-height: 52px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
}

.idea-lab.is-profile-focus .idea-actions button:first-child:hover {
  background: var(--red);
}

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

.idea-list.is-loading {
  min-height: 360px;
}

.idea-loading-card {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(238, 216, 137, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(232, 222, 199, 0.74));
}

.idea-loading-card::before {
  content: "";
  position: absolute;
  width: 170px;
  aspect-ratio: 1;
  border: 10px solid rgba(17, 17, 15, 0.1);
  border-top-color: var(--red);
  border-right-color: #83bfb7;
  border-radius: 50%;
  animation: spinPress 1s linear infinite;
}

.idea-loading-card::after {
  content: "BUILDING PROJECT SET";
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(26px, 5vw, 58px);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

@keyframes spinPress {
  to {
    rotate: 360deg;
  }
}

@keyframes pressPulse {
  0%, 100% {
    scale: 1;
    opacity: 0.9;
  }
  50% {
    scale: 1.06;
    opacity: 1;
  }
}

@keyframes ticketShuffle {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes scanPoster {
  to {
    translate: 120% 0;
  }
}

.idea-card {
  min-width: 0;
  padding: 16px;
  overflow-wrap: anywhere;
}

.idea-card-top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.idea-card-top b {
  color: #1c8167;
  font-family: var(--mono);
  letter-spacing: 0;
}

.idea-card h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.04;
  text-transform: uppercase;
}

.idea-card p {
  color: #625e56;
  font-size: 14px;
  line-height: 1.38;
}

.idea-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #4f4a43;
  font-size: 12px;
  line-height: 1.35;
}

.idea-ticket {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.07) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(244, 234, 210, 0.86));
}

.idea-ticket::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--red), var(--gold), #83bfb7);
}

.idea-ticket::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 54px;
  aspect-ratio: 1;
  border: 1px dashed rgba(17, 17, 15, 0.22);
  border-radius: 50%;
  opacity: 0.55;
}

.idea-ticket-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  align-content: center;
}

.idea-ticket-stamp {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(196, 56, 44, 0.42);
  border-radius: 999px;
  background: rgba(196, 56, 44, 0.08);
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.idea-ticket-top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 17, 15, 0.56);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding-right: 54px;
  text-transform: uppercase;
}

.idea-ticket-top b {
  border: 1px solid rgba(28, 129, 103, 0.32);
  border-radius: 999px;
  background: rgba(28, 129, 103, 0.1);
  color: #1c8167;
  font-family: var(--mono);
  letter-spacing: 0;
  padding: 4px 7px;
}

.idea-ticket h3 {
  max-width: 92%;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.idea-ticket-summary {
  margin: 0;
  color: #4d473f;
  font-size: 15px;
  line-height: 1.35;
}

.idea-project-spec {
  display: grid;
  gap: 8px;
}

.idea-project-spec div,
.idea-entry-path {
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.72);
  padding: 10px;
}

.idea-project-spec span,
.idea-entry-path span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idea-project-spec p,
.idea-entry-path p {
  margin: 0;
  color: #4f4a43;
  font-size: 13px;
  line-height: 1.35;
}

.idea-entry-path {
  background: rgba(238, 216, 137, 0.24);
}

.idea-fit-bars {
  display: grid;
  gap: 7px;
}

.idea-fit-bars span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.09);
}

.idea-fit-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: linear-gradient(90deg, #83bfb7, var(--gold));
}

.idea-fit-bars b {
  position: relative;
  z-index: 1;
  padding-left: 9px;
  color: rgba(17, 17, 15, 0.72);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.idea-logic-panel {
  margin-top: 2px;
  border-style: dashed;
}

.opportunity-workbench {
  display: grid;
  gap: 12px;
  max-width: 100%;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 2%, rgba(131, 191, 183, 0.2), transparent 28%),
    rgba(255, 250, 240, 0.58);
  padding: clamp(12px, 2vw, 18px);
}

.studio-toolbar,
.studio-collection-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.72);
  padding: 10px;
}

.studio-view-switcher,
.studio-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.opportunity-workbench button {
  appearance: none;
  -webkit-appearance: none;
}

.studio-view-switcher button,
.studio-export-actions button,
.studio-collection-strip button,
.studio-card-actions button,
.drawer-actions button,
.drawer-header button {
  min-height: 34px;
  border: 1px solid rgba(17, 17, 15, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.86);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0 11px;
  text-transform: uppercase;
}

.studio-view-switcher button.is-active,
.studio-view-switcher button:hover,
.studio-export-actions button:hover,
.studio-collection-strip button:hover,
.studio-card-actions button:hover,
.drawer-actions button:hover,
.drawer-header button:hover {
  border-color: rgba(17, 17, 15, 0.72);
  background: var(--ink);
  color: var(--paper);
}

.studio-view-switcher button:disabled,
.studio-export-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.studio-view-switcher button:disabled:hover,
.studio-export-actions button:disabled:hover {
  background: rgba(255, 250, 240, 0.86);
}

.studio-collection-strip {
  color: #5b554c;
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.studio-view {
  min-height: 260px;
}

.studio-view-map,
.studio-view-matrix,
.studio-view-portfolio,
.studio-view-timeline,
.studio-view-creator,
.studio-view-selves,
.studio-view-saved,
.studio-view-compare {
  grid-template-columns: 1fr;
}

.future-self-simulator {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.future-self-hero {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.15);
  background:
    radial-gradient(circle at 18% 20%, rgba(131, 191, 183, 0.28), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(196, 56, 44, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(238, 216, 137, 0.24));
  padding: clamp(24px, 4vw, 44px);
}

.future-self-hero.compact {
  min-height: 0;
}

.path-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.path-stepper span {
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.68);
  color: rgba(17, 17, 15, 0.52);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.path-stepper span.is-active {
  background: var(--ink);
  color: var(--paper);
}

.future-self-hero h3 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.88;
  text-transform: uppercase;
}

.future-self-hero p:not(.kicker) {
  max-width: 740px;
  margin: 0;
  color: #3f3a34;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.15;
}

.future-self-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.future-self-card {
  position: relative;
  display: grid;
  gap: 13px;
  min-width: 0;
  min-height: 420px;
  border: 1px solid rgba(17, 17, 15, 0.15);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.05) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(232, 222, 199, 0.74));
  padding: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.future-self-card::after {
  content: "Hover signal: compare the gain against the cost, then enter the path that makes you curious.";
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  pointer-events: none;
  opacity: 0;
  border: 1px dashed rgba(17, 17, 15, 0.18);
  background: rgba(17, 17, 15, 0.88);
  color: var(--paper);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 10px;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.future-self-card:hover {
  box-shadow: 0 18px 44px rgba(17, 17, 15, 0.16);
  transform: translateY(-4px);
}

.future-self-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.future-self-topline {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 17, 15, 0.58);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.future-self-topline b {
  color: var(--red);
}

.future-self-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.93;
  text-transform: uppercase;
}

.future-self-card p {
  margin: 0;
  color: #4f4a43;
  font-size: 15px;
  line-height: 1.35;
}

.future-self-reward-cost {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.future-self-reward-cost div,
.future-self-experiment,
.future-self-texture,
.future-self-projects {
  border: 1px solid rgba(17, 17, 15, 0.12);
  background: rgba(255, 250, 240, 0.7);
  padding: 10px;
}

.future-self-reward-cost span,
.future-self-experiment span,
.future-self-texture span,
.future-self-projects span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-self-texture p {
  font-size: 13px;
}

.future-self-projects ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 16px;
}

.future-self-projects li {
  color: #4f4a43;
  font-size: 12px;
  line-height: 1.2;
}

.future-self-reward-cost b {
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
}

.future-self-panel,
.future-self-comparison {
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(255, 250, 240, 0.78);
  padding: 18px;
}

.future-self-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.future-self-card-grid.compact .future-self-card {
  min-height: 0;
}

.path-experiment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.path-project-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 16px 16px,
    rgba(255, 250, 240, 0.72);
  padding: 12px;
}

.path-project-card h5 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 0.95;
  text-transform: uppercase;
}

.path-project-card p {
  margin: 0;
  color: #4f4a43;
  font-size: 13px;
  line-height: 1.32;
}

.path-project-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.path-project-card dl div {
  border-top: 1px solid rgba(17, 17, 15, 0.1);
  padding-top: 7px;
}

.path-project-card dt {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-project-card dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.path-project-card summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-experiment-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(255, 250, 240, 0.78);
  padding: 18px;
}

.path-experiment-card.is-selected {
  border-color: rgba(28, 129, 103, 0.52);
  background: rgba(131, 191, 183, 0.18);
}

.path-experiment-card h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 0.96;
  text-transform: uppercase;
}

.path-experiment-card p,
.path-experiment-card li {
  color: #4f4a43;
  line-height: 1.36;
}

.future-self-panel h4 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 0.95;
  text-transform: uppercase;
}

.future-self-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #4f4a43;
  line-height: 1.38;
}

.future-self-comparison {
  overflow-x: auto;
  padding: 0;
}

.future-self-comparison table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.future-self-comparison th,
.future-self-comparison td {
  border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  padding: 11px;
  text-align: left;
  vertical-align: top;
}

.future-self-comparison th {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.path-meter-grid {
  display: grid;
  gap: 8px;
}

.path-meter {
  display: grid;
  grid-template-columns: 140px 1fr 42px;
  gap: 8px;
  align-items: center;
}

.path-meter span,
.path-meter em {
  color: rgba(17, 17, 15, 0.62);
  font-family: var(--grotesk);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-meter i {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.1);
}

.path-meter b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #83bfb7, var(--gold), var(--red));
}

.scenario-choice-grid {
  display: grid;
  gap: 8px;
}

.scenario-choice-grid button,
.experiment-pick-button {
  display: grid;
  gap: 6px;
  width: 100%;
  border: 1px solid rgba(17, 17, 15, 0.16);
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  cursor: pointer;
  padding: 10px;
  text-align: left;
}

.scenario-choice-grid button:hover,
.scenario-choice-grid button.is-selected,
.experiment-pick-button:hover {
  background: rgba(238, 216, 137, 0.45);
  border-color: rgba(196, 56, 44, 0.35);
}

.scenario-choice-grid b,
.scenario-choice-grid span,
.scenario-choice-grid em {
  display: block;
}

.scenario-choice-grid b {
  color: var(--red);
  font-family: var(--display);
  font-size: 22px;
}

.scenario-choice-grid span {
  font-weight: 800;
}

.scenario-choice-grid em {
  color: #625e56;
  font-size: 13px;
  font-style: normal;
}

.path-insight {
  border-left: 5px solid var(--red);
  background: rgba(238, 216, 137, 0.18);
  margin-top: 10px;
  padding: 10px;
}

.path-insight b {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.experiment-pick-button {
  margin-top: 10px;
  border-radius: 999px;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.creator-profile-shell {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.creator-type-hero {
  position: relative;
  display: grid;
  gap: 15px;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.15);
  background:
    radial-gradient(circle at 78% 20%, rgba(238, 216, 137, 0.45), transparent 22%),
    radial-gradient(circle at 14% 88%, rgba(131, 191, 183, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(232, 222, 199, 0.7));
  padding: clamp(24px, 4vw, 44px);
}

.creator-type-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px dashed rgba(17, 17, 15, 0.13);
}

.creator-profile-completeness {
  position: absolute;
  right: 24px;
  top: 24px;
  display: grid;
  width: min(220px, 34vw);
  gap: 6px;
  z-index: 1;
  color: rgba(17, 17, 15, 0.58);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.creator-profile-completeness b {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
}

.creator-profile-completeness i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.12);
}

.creator-profile-completeness i::before {
  content: "";
  display: block;
  width: var(--complete);
  height: 100%;
  background: linear-gradient(90deg, #83bfb7, var(--gold), var(--red));
}

.creator-type-hero .kicker,
.creator-type-hero h3,
.creator-type-hero p,
.creator-type-hero div {
  position: relative;
  z-index: 1;
}

.creator-type-hero h3 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.creator-hero-subtitle {
  max-width: 760px;
  margin: 0;
  color: #3f3a34;
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 800;
  line-height: 1.13;
}

.creator-badge-row,
.creator-cta-row,
.creator-empty-preview div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.creator-badge-row span,
.creator-empty-preview span {
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.creator-signal-line {
  max-width: 780px;
  color: #625e56;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
}

.creator-cta-row button {
  min-height: 42px;
  border: 1px solid rgba(17, 17, 15, 0.24);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0 16px;
  text-transform: uppercase;
}

.creator-cta-row button:nth-child(n + 2) {
  background: rgba(255, 250, 240, 0.8);
  color: var(--ink);
}

.creator-cta-row button:hover {
  background: var(--gold);
  color: var(--ink);
}

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

.creator-type-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creator-panel,
.creator-compass-panel,
.creator-empty-preview,
.studio-saved-empty {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.78);
  padding: 16px;
}

.creator-panel h4,
.creator-empty-preview h4,
.studio-saved-empty h3,
.creator-panel-heading h4 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 0.95;
  text-transform: uppercase;
}

.creator-panel p,
.creator-empty-preview p,
.studio-saved-empty p,
.creator-panel li,
.creator-compass-axis p {
  color: #4f4a43;
  font-size: 14px;
  line-height: 1.34;
}

.creator-panel ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.creator-snapshot-grid {
  align-items: stretch;
}

.creator-snapshot-grid .creator-panel {
  min-height: 190px;
  box-shadow: 0 14px 32px rgba(35, 31, 24, 0.06);
}

.creator-format-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.creator-format-chip-list span {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.86);
  color: #4b4740;
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.creator-first-move-card {
  background:
    radial-gradient(circle at 88% 16%, rgba(238, 216, 137, 0.44), transparent 28%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.84);
}

.creator-first-move-card h4 {
  max-width: 520px;
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.05;
  text-transform: none;
}

.creator-watchout-card li {
  margin-bottom: 2px;
}

.creator-compass-panel {
  display: grid;
  gap: 16px;
}

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

.creator-compass-axis {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(17, 17, 15, 0.11);
  background: rgba(255, 250, 240, 0.62);
  padding: 12px;
}

.creator-axis-top,
.creator-axis-labels {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 17, 15, 0.58);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creator-axis-top b {
  color: var(--ink);
}

.creator-axis-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #83bfb7, rgba(238, 216, 137, 0.9), var(--red));
}

.creator-axis-track i {
  position: absolute;
  top: 50%;
  width: 18px;
  aspect-ratio: 1;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 6px 16px rgba(17, 17, 15, 0.22);
  translate: -50% -50%;
}

.creator-axis-labels {
  font-size: 9px;
}

.creator-trace-panel {
  background: rgba(238, 216, 137, 0.18);
}

.creator-ready-note {
  margin: 0;
  border: 1px solid rgba(28, 129, 103, 0.22);
  background: rgba(131, 191, 183, 0.16);
  color: #315d55;
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 12px;
  text-transform: uppercase;
}

.idea-studio-shell,
.single-creator-profile {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.single-profile-hero.compact,
.single-creator-profile.compact .single-profile-hero {
  min-height: 0;
  padding: clamp(18px, 3vw, 28px);
}

.single-creator-profile.compact .creator-type-hero h3 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 0.98;
}

.single-profile-hero {
  border-color: color-mix(in srgb, var(--creator-accent, var(--red)) 58%, rgba(17, 17, 15, 0.18));
  box-shadow: inset 9px 0 0 var(--creator-accent, var(--red)), 0 18px 48px rgba(35, 31, 24, 0.08);
}

.creator-mode-blue { --creator-accent: #5f92d1; }
.creator-mode-cyan { --creator-accent: #2faeb5; }
.creator-mode-violet { --creator-accent: #8f75d7; }
.creator-mode-green { --creator-accent: #3f9f73; }
.creator-mode-amber { --creator-accent: #d6a340; }
.creator-mode-coral { --creator-accent: #d06b58; }
.creator-mode-orange { --creator-accent: #d58636; }
.creator-mode-rose { --creator-accent: #d87182; }
.creator-mode-indigo { --creator-accent: #6876d9; }
.creator-mode-slate { --creator-accent: #66717f; }
.creator-mode-magenta { --creator-accent: #c05aa0; }
.creator-mode-lime { --creator-accent: #7f9f3f; }

.creator-mode-badge-row,
.opportunity-mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.creator-mode-badge,
.creator-mode-chip,
.opportunity-mode-row span,
.idea-quality-note {
  width: fit-content;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.15;
  padding: 6px 8px;
  text-transform: uppercase;
}

.creator-mode-badge {
  border-color: color-mix(in srgb, var(--creator-accent, var(--red)) 64%, rgba(17, 17, 15, 0.16));
  color: var(--creator-accent, var(--red));
}

.creator-mode-why {
  max-width: 780px;
  border: 1px solid rgba(17, 17, 15, 0.13);
  background: rgba(255, 250, 240, 0.58);
  padding: 10px 12px;
}

.creator-mode-differentiator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(980px, 100%);
}

.creator-mode-differentiator-grid span {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-left: 4px solid var(--creator-accent, var(--red));
  background: rgba(255, 250, 240, 0.68);
  color: #332f2a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.22;
  padding: 10px;
}

.creator-mode-differentiator-grid b {
  color: var(--creator-accent, var(--red));
  font-family: var(--grotesk);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-mode-why summary {
  cursor: pointer;
  color: var(--creator-accent, var(--red));
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creator-mode-why p {
  margin: 8px 0 0;
  color: #4f4a43;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.opportunity-mode-row span:first-child {
  color: var(--red);
}

.idea-quality-note {
  margin: 4px 0 0;
  border-color: rgba(213, 77, 63, 0.22);
  color: var(--red);
}

.idea-studio-header,
.idea-studio-section,
.adjacent-mode-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.82);
  padding: 18px;
}

.idea-studio-header {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(238, 216, 137, 0.45), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(131, 191, 183, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.9);
  padding: clamp(18px, 3vw, 30px);
}

.idea-studio-header h3 {
  max-width: 900px;
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.idea-studio-header p:not(.kicker) {
  max-width: 720px;
  color: #4f4a43;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 1.25;
}

.idea-studio-retry {
  border-color: rgba(213, 77, 63, 0.28);
  background:
    radial-gradient(circle at 82% 14%, rgba(213, 77, 63, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.94);
}

.idea-studio-retry h3 {
  max-width: 820px;
  font-size: clamp(30px, 4.1vw, 58px);
}

.idea-studio-section {
  display: grid;
  gap: 12px;
}

.adjacent-mode-panel {
  gap: 16px;
  padding: clamp(16px, 2.4vw, 24px);
  background:
    radial-gradient(circle at 92% 12%, rgba(131, 191, 183, 0.2), transparent 25%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.86);
}

.adjacent-mode-heading {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.adjacent-mode-heading h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

.adjacent-mode-heading p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: #625e56;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

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

.adjacent-mode-grid button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num label"
    "num copy";
  gap: 5px 12px;
  min-height: 136px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(244, 232, 205, 0.72));
  color: var(--ink);
  cursor: pointer;
  padding: 14px;
  text-align: left;
  box-shadow: 0 12px 24px rgba(35, 31, 24, 0.06);
}

.adjacent-mode-grid button.is-active,
.adjacent-mode-grid button:hover {
  border-color: rgba(213, 77, 63, 0.58);
  background: rgba(238, 216, 137, 0.42);
  box-shadow: 0 16px 30px rgba(35, 31, 24, 0.1);
}

.adjacent-mode-grid i {
  grid-area: num;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.06);
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.adjacent-mode-grid b {
  grid-area: title;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.adjacent-mode-grid span {
  grid-area: label;
  width: fit-content;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  padding: 5px 7px;
  text-transform: uppercase;
}

.adjacent-mode-grid em {
  grid-area: copy;
  color: #4f4a43;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.28;
}

.creator-empty-preview,
.studio-saved-empty {
  display: grid;
  gap: 12px;
}

.opportunity-card {
  position: relative;
  display: grid;
  gap: 13px;
  min-width: 0;
  min-height: 300px;
  padding: 18px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 15, 0.15);
  background:
    radial-gradient(circle at 100% 100%, rgba(131, 191, 183, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(238, 216, 137, 0.2));
}

.opportunity-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(180deg, var(--gold), #83bfb7);
}

.opportunity-card[data-color="red"]::before,
.opportunity-card[data-color="rose"]::before {
  background: linear-gradient(180deg, var(--red), #d87182);
}

.opportunity-card[data-color="blue"]::before,
.opportunity-card[data-color="violet"]::before {
  background: linear-gradient(180deg, #86b7e8, #9b7cff);
}

.opportunity-card[data-color="green"]::before,
.opportunity-card[data-color="mint"]::before {
  background: linear-gradient(180deg, #83bfb7, #1c8167);
}

.opportunity-card[data-color="cyan"]::before {
  background: linear-gradient(180deg, #69d4d8, #2faeb5);
}

.opportunity-card[data-color="amber"]::before,
.opportunity-card[data-color="orange"]::before {
  background: linear-gradient(180deg, #e5bd5b, #d58636);
}

.opportunity-card[data-color="coral"]::before {
  background: linear-gradient(180deg, #df8a73, #d06b58);
}

.opportunity-card-top,
.studio-score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 17, 15, 0.56);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.opportunity-card h3 {
  max-width: 96%;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.opportunity-hook {
  margin: 0;
  color: #4f4a43;
  font-size: 14px;
  line-height: 1.35;
}

.opportunity-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.opportunity-spec-list div {
  border: 1px solid rgba(17, 17, 15, 0.12);
  background: rgba(255, 250, 240, 0.7);
  padding: 10px;
}

.opportunity-spec-list dt {
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opportunity-spec-list dd {
  margin: 0;
  color: #4f4a43;
  font-size: 13px;
  line-height: 1.32;
}

.studio-score-row span {
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.68);
  padding: 6px 8px;
}

.studio-card-actions,
.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-self: end;
}

.opportunity-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(232, 222, 199, 0.72));
}

.map-axis {
  position: absolute;
  z-index: 1;
  color: rgba(17, 17, 15, 0.52);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-axis.x {
  left: 20px;
  bottom: 16px;
}

.map-axis.y {
  top: 18px;
  left: 18px;
  writing-mode: vertical-rl;
}

.opportunity-node {
  position: absolute;
  display: grid;
  width: clamp(126px, 14vw, 190px);
  min-height: 104px;
  gap: 7px;
  translate: -50% -50%;
  border: 1px solid rgba(17, 17, 15, 0.2);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 18px 38px rgba(17, 17, 15, 0.12);
  color: var(--ink);
  cursor: pointer;
  padding: 12px;
  text-align: left;
}

.opportunity-node b {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  font-family: var(--display);
}

.opportunity-node span {
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.opportunity-timeline-view,
.opportunity-portfolio-view,
.opportunity-compare {
  display: grid;
  gap: 12px;
}

.opportunity-timeline-item,
.portfolio-brief-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(255, 250, 240, 0.76);
  padding: 18px;
}

.opportunity-timeline-item h3,
.portfolio-brief-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 0.98;
  text-transform: uppercase;
}

.opportunity-timeline-item div,
.portfolio-brief-card section {
  border-left: 4px solid rgba(196, 56, 44, 0.42);
  padding-left: 12px;
}

.opportunity-timeline-item b,
.portfolio-brief-card b {
  display: block;
  margin-bottom: 5px;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.opportunity-timeline-item p,
.portfolio-brief-card p {
  margin: 0;
  color: #4f4a43;
  line-height: 1.35;
}

.opportunity-matrix-wrap {
  overflow-x: auto;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(255, 250, 240, 0.78);
}

.opportunity-matrix {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 13px;
}

.opportunity-matrix th,
.opportunity-matrix td {
  border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.opportunity-matrix th {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.opportunity-matrix button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--grotesk);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.opportunity-detail-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  align-content: start;
  width: min(520px, 94vw);
  gap: 16px;
  padding: 22px;
  overflow-y: auto;
  border-left: 1px solid rgba(17, 17, 15, 0.24);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.05) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--paper);
  box-shadow: -24px 0 60px rgba(17, 17, 15, 0.24);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.opportunity-detail-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
}

.drawer-header h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.94;
  text-transform: uppercase;
}

.drawer-header p:not(.kicker),
.opportunity-detail-drawer section p,
.opportunity-detail-drawer li {
  color: #4f4a43;
  line-height: 1.4;
}

.drawer-score-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-score-strip span {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(238, 216, 137, 0.36);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.opportunity-detail-drawer section {
  border-top: 1px solid rgba(17, 17, 15, 0.12);
  padding-top: 12px;
}

.opportunity-detail-drawer h4 {
  margin: 0 0 8px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-plan-grid {
  display: grid;
  gap: 12px;
}

.dependency-trace-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dependency-trace-list li {
  border: 1px dashed rgba(17, 17, 15, 0.18);
  background: rgba(255, 250, 240, 0.56);
  padding: 10px;
}

.dependency-trace-list b,
.dependency-trace-list span {
  display: block;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dependency-trace-list b {
  color: var(--red);
}

.reality-pattern-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin: 10px 0 0;
}

.reality-pattern-list div {
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(255, 250, 240, 0.72);
  padding: 10px;
}

.reality-pattern-list dt {
  margin: 0 0 4px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.reality-pattern-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.32;
}

.drawer-muted {
  color: #756f66;
  font-size: 13px;
}

.company-watchlist {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.company-watchlist-shell {
  display: grid;
  gap: 18px;
}

.company-add-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.76);
  padding: clamp(14px, 2vw, 20px);
}

.company-add-panel label {
  display: grid;
  gap: 8px;
}

.company-add-panel span,
.company-detail-panel h4,
.company-comparison-panel h3 {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.company-add-panel input {
  min-height: 48px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  color: var(--ink);
  font: inherit;
  padding: 0 16px;
}

.company-add-panel button,
.company-watchlist-actions button,
.company-card-actions button {
  min-height: 38px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.company-add-panel button,
.company-card-actions button:first-child {
  background: var(--ink);
  color: var(--paper);
}

.company-add-panel p {
  grid-column: 1 / -1;
  margin: 0;
  color: #756f66;
  font-size: 13px;
  font-weight: 800;
}

.company-watchlist-actions,
.company-watchlist-diagnostics,
.company-score-row,
.company-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-watchlist-diagnostics span,
.company-score-row span {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  padding: 7px 10px;
  color: #625e56;
  font-size: 12px;
  font-weight: 900;
}

.company-watchlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.company-card,
.company-detail-panel,
.company-comparison-panel,
.company-empty-state {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.78);
  padding: clamp(14px, 2vw, 20px);
}

.company-card {
  display: grid;
  gap: 12px;
}

.company-card.is-selected {
  border-color: rgba(98, 174, 242, 0.5);
  box-shadow: inset 0 0 0 2px rgba(98, 174, 242, 0.16);
}

.company-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.company-card-top span,
.company-card-top b,
.company-detail-header span {
  width: fit-content;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.company-card-top b,
.company-detail-header span {
  background: rgba(207, 91, 73, 0.14);
  color: var(--red);
}

.company-card h3,
.company-detail-header h3,
.company-empty-state h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
}

.company-card p,
.company-detail-panel p,
.company-empty-state p {
  margin: 0;
  color: #514d46;
  font-size: 14px;
  line-height: 1.36;
}

.company-position-score {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 14px;
  background: rgba(17, 17, 15, 0.04);
  padding: 12px;
}

.company-position-score > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.company-position-score span,
.company-position-score em {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-position-score b {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 0.9;
}

.company-position-score i,
.company-subscore i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.12);
}

.company-position-score i::before,
.company-subscore i::before {
  display: block;
  width: var(--position-score, var(--subscore, 50%));
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #cf5b49, #d7aa45, #62a27f);
  content: "";
}

.company-position-score.is-compact b {
  font-size: 40px;
}

.company-driver-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.company-driver-pair span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.66);
  padding: 10px;
  color: #514d46;
  font-size: 12px;
  line-height: 1.28;
}

.company-driver-pair b {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-world-impact {
  display: grid;
  gap: 5px;
  border-left: 4px solid rgba(94, 155, 141, 0.85);
  background: rgba(94, 155, 141, 0.08);
  padding: 9px 11px;
}

.company-world-impact b {
  color: #45887b;
  font-family: var(--grotesk);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-world-impact span {
  color: #4f4a42;
  font-size: 12px;
  line-height: 1.35;
}

.company-thread-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.company-thread-chips span {
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  color: #625e56;
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.company-detail-panel {
  display: grid;
  gap: 18px;
}

.company-detail-header {
  display: grid;
  gap: 10px;
}

.company-result-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 250, 240, 0.82);
  padding: clamp(14px, 2vw, 20px);
}

.company-result-cases,
.company-subscore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.company-result-cases article,
.company-result-summary {
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.66);
  padding: 12px;
}

.company-result-cases b,
.company-subscore span {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-result-summary {
  display: grid;
  gap: 8px;
}

.company-subscore {
  display: grid;
  gap: 6px;
}

.company-subscore b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  line-height: 0.95;
}

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

.company-detail-grid section,
.company-headline-panel article {
  border: 1px solid rgba(17, 17, 15, 0.1);
  background: rgba(255, 250, 240, 0.66);
  padding: 14px;
}

.company-detail-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 16px;
}

.company-detail-grid li span {
  display: block;
  color: #625e56;
  font-size: 13px;
  line-height: 1.3;
}

.company-mini-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.company-mini-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px;
}

.company-mini-list dt {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-mini-list dd {
  margin: 0;
  color: var(--ink);
}

.company-headline-panel {
  display: grid;
  gap: 10px;
}

.company-headline-panel > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.company-headline-panel article {
  display: grid;
  gap: 7px;
}

.company-headline-panel span {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-headline-panel b {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.02;
  text-transform: uppercase;
}

.company-disclaimer {
  border-top: 1px solid rgba(17, 17, 15, 0.14);
  padding-top: 12px;
  color: #756f66;
}

.company-comparison-panel {
  display: grid;
  gap: 12px;
}

.company-comparison-table {
  display: grid;
  gap: 1px;
  overflow-x: auto;
}

.company-comparison-table > div {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1fr 1fr 0.7fr 1.2fr;
  min-width: 980px;
}

.company-comparison-table span {
  border: 1px solid rgba(17, 17, 15, 0.08);
  background: rgba(255, 250, 240, 0.66);
  padding: 10px;
  font-size: 12px;
  font-weight: 800;
}

.company-comparison-head span {
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.opportunity-detail-drawer textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 15, 0.2);
  background: rgba(255, 250, 240, 0.84);
  color: var(--ink);
  font: inherit;
  padding: 10px;
  resize: vertical;
}

.mechanism-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mechanism-strip article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(244, 237, 218, 0.72)),
    var(--paper);
  box-shadow: 0 18px 34px rgba(17, 17, 15, 0.08);
  padding: 18px;
}

.mechanism-strip article::after {
  content: "";
  position: absolute;
  inset: auto -22px -38px auto;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(90, 164, 165, 0.14);
  border-radius: 50%;
}

.mechanism-strip span {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: 0.78;
}

.mechanism-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.mechanism-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #625e56;
  font-size: 14px;
  line-height: 1.42;
}

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

.feature-explainer-card {
  min-height: 188px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.82), rgba(255, 250, 240, 0.58)),
    repeating-linear-gradient(90deg, rgba(17, 17, 15, 0.035) 0 1px, transparent 1px 24px);
  padding: 18px;
}

.feature-explainer-card.wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(18, 18, 16, 0.94), rgba(31, 38, 35, 0.92)),
    var(--night);
  color: var(--paper);
}

.feature-explainer-card h3,
.feature-explainer-card strong {
  display: block;
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 0.98;
  text-transform: uppercase;
}

.feature-explainer-card.wide h3 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 62px);
}

.feature-explainer-card p {
  margin: 0;
  color: #625e56;
  font-size: 15px;
  line-height: 1.42;
}

.feature-explainer-card.wide p {
  max-width: 760px;
  color: rgba(255, 250, 240, 0.78);
}

.feature-explainer-card .kicker {
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.research-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 16px;
  background: rgba(90, 164, 165, 0.1);
  padding: 18px;
}

.research-note strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.research-note p {
  max-width: 760px;
  margin: 0;
  color: #625e56;
  font-size: 14px;
  line-height: 1.38;
}

@media (max-width: 1120px) {
  .simulator {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  }

  .simulation-stage {
    grid-template-columns: 1fr;
  }

  .simulation-stage .section-heading,
  .simulation-graphic,
  .simulation-inspector {
    grid-column: 1;
  }

  .simulation-stage .section-heading {
    grid-row: 1;
  }

  .simulation-graphic {
    grid-row: 2;
  }

  .simulation-inspector {
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

  .simulation-readouts {
    grid-row: 4;
  }

  .simulation-flows {
    grid-row: 5;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-feed {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-detail:first-child {
    grid-row: auto;
  }

  .timeline,
  .mechanism-strip,
  .feature-explainer-grid,
  .citation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idea-poster {
    grid-template-columns: 1fr;
  }

  .idea-poster-machine {
    min-height: 190px;
  }

  .press-orbit {
    left: 50%;
    right: auto;
    width: 160px;
    translate: -50% -50%;
  }

  .ticket-stack {
    right: max(18px, 8vw);
  }

  .creator-type-grid,
  .creator-type-grid.three,
  .creator-mode-differentiator-grid,
  .creator-compass-grid,
  .profile-quiz-progress,
  .quiz-start-layout,
  .quiz-profile-grid,
  .quiz-two-column,
  .domain-expertise-grid,
  .activity-card-grid,
  .artifact-pick-grid,
  .signal-poster-grid,
  .company-add-panel,
  .company-watchlist-grid,
  .company-detail-grid,
  .company-driver-pair,
  .company-result-cases,
  .company-subscore-grid,
  .company-headline-panel > div,
  .article-reader,
  .future-self-card-grid,
  .future-self-panel-grid,
  .path-experiment-grid {
    grid-template-columns: 1fr;
  }

  .future-feed {
    grid-template-columns: 1fr;
  }

  .ledger-console {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ledger-console div {
    border-right: 1px solid rgba(255, 250, 240, 0.12);
    border-bottom: 0;
  }

  .ledger-console div:last-child {
    border-right: 0;
  }

  .ledger-pressure-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .adjacent-mode-heading {
    align-items: start;
    flex-direction: column;
  }

  .creator-profile-completeness {
    position: relative;
    right: auto;
    top: auto;
    width: min(320px, 100%);
    order: -1;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 0;
  }

  .hero-stage {
    min-height: 100vh;
    border-radius: 0 0 34px 34px;
  }

  .topbar {
    left: 18px;
    right: 18px;
    top: 18px;
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .pill-link {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .language-toggle {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  body:not(.world-started) .top-actions {
    gap: 0;
    transform: translate(-50%, calc(-50% + 136px));
  }

  body:not(.world-started) .pill-link {
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }

  body:not(.world-started) .language-toggle {
    display: none;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    top: 104px;
    width: auto;
  }

  h1 {
    font-size: clamp(48px, 16vw, 78px);
  }

  .world-card {
    left: 18px;
    right: 18px;
    bottom: 68px;
    width: auto;
  }

  .simulation-inspector,
  .simulation-readouts {
    grid-template-columns: 1fr;
  }

  .simulation-graphic {
    width: min(92vw, 520px);
  }

  .sim-node {
    width: clamp(48px, 13vw, 64px);
    font-size: 8px;
    padding: 5px;
  }

  .sim-link span {
    display: none;
  }

  .simulator,
  .side-feed,
  .signal-grid,
  .simulation-readouts,
  .simulation-flows,
  .timeline,
  .mechanism-strip,
  .feature-explainer-grid,
  .idea-lab-grid,
  .idea-list,
  .citation-grid {
    grid-template-columns: 1fr;
  }

  .feature-explainer-card.wide {
    grid-column: span 1;
  }

  .research-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .simulator > .controls,
  .simulator > .future-feed,
  .simulator > .side-feed {
    grid-column: 1;
    grid-row: auto;
  }

  .studio-toolbar,
  .studio-collection-strip,
  .drawer-header {
    align-items: stretch;
    flex-direction: column;
  }

  .idea-lab.is-profile-focus .personal-profile {
    grid-template-columns: 1fr;
  }

  .idea-lab.is-profile-focus {
    min-height: auto;
  }

  .profile-quiz-screen {
    min-height: auto;
  }

  .quiz-chip-grid {
    grid-template-columns: 1fr;
    max-height: 420px;
  }

  .quiz-screen-heading h3,
  .quiz-start-copy h3,
  .creator-signal-poster h3 {
    font-size: clamp(36px, 13vw, 62px);
  }

  .quiz-start-copy,
  .quiz-start-card {
    min-height: 0;
  }

  .adjacent-mode-grid {
    grid-template-columns: 1fr;
  }

  .path-project-grid {
    grid-template-columns: 1fr;
  }

  .studio-view-switcher button,
  .studio-export-actions button,
  .studio-collection-strip button,
  .studio-card-actions button,
  .drawer-actions button {
    flex: 1 1 130px;
  }

  .opportunity-card {
    min-height: 0;
  }

  .creator-type-hero {
    min-height: 0;
    padding: 24px;
  }

  .creator-type-hero h3 {
    font-size: clamp(40px, 13vw, 66px);
  }

  .future-self-hero h3 {
    font-size: clamp(40px, 13vw, 66px);
  }

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

  .opportunity-map {
    min-height: 720px;
  }

  .opportunity-node {
    width: min(170px, 42vw);
  }

  .idea-poster-copy {
    padding: 22px;
  }

  .idea-poster-copy h3 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .idea-poster-stats span {
    width: 100%;
  }

  .idea-poster-machine {
    min-height: 160px;
  }

  .ticket-stack {
    display: none;
  }

  .simulation-flows p {
    padding-right: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 244, 234, 0.12);
  }

  .simulation-flows p:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .simulation-stage {
    min-height: 620px;
  }

  .feed-top {
    grid-template-columns: 1fr;
  }

  #editionLabel {
    max-width: none;
    text-align: left;
  }

  .ledger-console,
  .ledger-pressure-strip,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .ledger-console div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  }

  .ledger-console div:last-child {
    border-bottom: 0;
  }

  .story-card:nth-child(4n + 2),
  .story-card:nth-child(4n + 3),
  .story-card:nth-child(4n + 2):hover,
  .story-card:nth-child(4n + 3):hover {
    transform: none;
  }

  .section-heading h2,
  .feed-top h2 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .story-card h3 {
    font-size: 18px;
  }

  .why-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .set-world {
    align-items: flex-start;
    flex-direction: column;
  }

  .set-world small {
    white-space: normal;
  }

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