
/* ═══════════════════════════════════════════════════════════════
   COMMON PLANET — CREDITISM PAGE
   COMMON PLANET — CREDITISM PAGE — v20
═══════════════════════════════════════════════════════════════ */

:root {
  --void:      #020509;
  --abyss:     #04101E;
  --ocean:     #071629;
  --deep:      #0A1F38;
  --teal:      #00D4AA;
  --teal-dim:  #00A882;
  --azure:     #00B4FF;
  --azure-dim: #0088CC;
  --jade:      #00FF88;
  --jade-dim:  #00CC6A;
  --violet:    #9B59FE;
  --violet-dim:#7B39DE;
  --magenta:   #E040FB;
  --amber:     #FFB300;
  --amber-dim: #E09500;
  --crimson:   #FF3366;
  --gold:      #FFD700;
  --rose:      #FF69B4;
  --cream:     rgba(240, 250, 255, 0.97);
  --cream-mid: rgba(235, 250, 255, 0.98);
  --cream-dim: rgba(225, 245, 255, 0.82);
  --cream-ghost: rgba(200, 230, 255, 0.12);

  --numeral: 'Playfair Display', Georgia, serif;
  --text-strong: rgba(240, 250, 255, 0.97);
  --text-bright: rgba(235, 250, 255, 0.98);
  --text-body: rgba(235, 250, 255, 0.96);
  --text-meta: rgba(230, 248, 255, 0.90);
  --text-soft: rgba(225, 245, 255, 0.80);
  --text-faint: rgba(210, 238, 255, 0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 17px; overflow-x: hidden; }
body {
  background: var(--void);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%; max-width: 100vw;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}
::selection { background: var(--teal); color: var(--void); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  /* Kill all animations and transitions */
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Static fallback for animated gradient text */
  .grad-text, .grad-text-warm, .biolum-flow {
    animation: none !important;
    background-position: 0 50% !important;
  }
}

/* ═══ ANIMATED GRADIENT ═══ */
.grad-text {
  background: linear-gradient(90deg, var(--teal), var(--azure), var(--jade), var(--violet), var(--teal));
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradShift 6s linear infinite;
}
.grad-text-warm {
  background: linear-gradient(90deg, #FF6B35, #FFB300, #FFD700, #E040FB, #FF6B35);
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradShift 6s linear infinite;
}
@keyframes gradShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
@keyframes riseIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ═══ LAYOUT ═══ */
section { padding: 4rem 2rem; position: relative; overflow-x: clip; }
.container { max-width: 960px; margin: 0 auto; position: relative; }
.container-wide { max-width: 1180px; margin: 0 auto; position: relative; }
.container-text { max-width: 740px; margin: 0 auto; }

/* ═══ REVEAL ANIMATION ═══ */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ EYEBROW ═══ */
.eyebrow {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.5; }
.eyebrow.teal   { color: var(--teal); }
.eyebrow.azure  { color: var(--azure); }
.eyebrow.jade   { color: var(--jade); }
.eyebrow.amber  { color: var(--amber); }
.eyebrow.violet { color: var(--violet); }

.section-h {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300; font-style: italic; line-height: 1.1; margin-bottom: 1.25rem;
  letter-spacing: -0.01em; color: var(--cream);
}
.section-h em { font-style: normal; font-weight: 400; }
.section-p { font-size: 1rem; letter-spacing: 0.04em; color: var(--cream-mid); line-height: 1.85; font-weight: 300; }

/* Standard section subtext widths.
   Width belongs on the intro paragraph, not scattered parent/override rules. */
.section-subtext-narrow {
  max-width: 600px;
  width: min(600px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.section-subtext-wide {
  max-width: 660px;
  width: min(660px, 100%);
  margin-left: auto;
  margin-right: auto;
}


/* ═══ BUTTONS ═══ */
.btn-primary {
  background: linear-gradient(135deg, var(--teal-dim), var(--azure-dim));
  color: var(--void); border: none; padding: 0.75rem 1.8rem; border-radius: 999px;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.25s; box-shadow: 0 0 30px rgba(0,212,170,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,212,170,0.55); }
.btn-outline {
  background: transparent; color: var(--cream-mid);
  border: 1px solid rgba(0,212,170,0.28); padding: 0.75rem 1.8rem; border-radius: 999px;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s;
}
.btn-outline:hover { border-color: rgba(0,212,170,0.7); color: var(--teal); transform: translateY(-2px); box-shadow: 0 0 20px rgba(0,212,170,0.15); }

/* ═══ WAVE DIVIDERS ═══ */
.wave-divider {
  position: relative; width: 100%; overflow: hidden; pointer-events: none; z-index: 10;
  height: 24px; margin: 0; background: transparent;
}
.wave-divider svg { display: block; width: 100%; height: 100%; overflow: visible; }
.wave-path { filter: drop-shadow(0 0 3px rgba(0,212,170,0.4)) drop-shadow(0 0 8px rgba(155,89,254,0.25)); }
.wave-path-2 { opacity: 0.45; }
@keyframes wavePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.wave-path { animation: wavePulse 4s ease-in-out infinite; }
.wave-path-2 { animation: wavePulse 4s ease-in-out infinite 2s; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh; position: relative;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 6rem 2rem 3rem; overflow: hidden;
  background: radial-gradient(ellipse at 60% 30%, rgba(155,89,254,0.07) 0%, transparent 52%),
              radial-gradient(ellipse at 30% 75%, rgba(0,180,255,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 70%, rgba(0,212,170,0.05) 0%, transparent 45%),
              var(--void);
}
/* ─── CREDITISM HERO ATMOSPHERE ─── */
.hero-pulse-rings {
  position: absolute; top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; pointer-events: none; width: 0; height: 0;
}
/* Center halo: large, azure-violet toned, bright core bleeds through layered fog */
.h-glow {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(0,180,255,0.28) 0%,
    rgba(155,89,254,0.14) 18%,
    rgba(0,212,170,0.07) 36%,
    rgba(155,89,254,0.04) 52%,
    rgba(0,180,255,0.02) 68%,
    transparent 85%
  );
  filter: blur(38px);
}
/* ring bands */
.h-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    transparent var(--in, 78%),
    var(--c, rgba(155,89,254,0.07)) var(--pk, 88%),
    transparent var(--out, 100%)
  );
  filter: blur(var(--blur, 2px));
}
.hero-content { position: relative; z-index: 3; width: 100%; max-width: 900px; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--title); font-size: clamp(1.1rem, 2.8vw, 2rem); font-weight: 500; letter-spacing: 0.22em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 1.4rem;
  text-shadow: 0 0 14px rgba(0,212,170,0.35);
  animation: riseIn 1s 0.05s ease both;
}
.hero-tagline {
  font-family: var(--sans); font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  font-weight: 300; font-style: normal;
  letter-spacing: 0.12em;
  color: var(--cream-mid);
  margin-bottom: 1.2rem; animation: riseIn 1s 0.2s ease both;
}
.hero-headline {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; font-style: italic; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 1.5rem; animation: riseIn 1s 0.15s ease both;
  display: flex; flex-direction: column; align-items: center; width: 100%;
}
.hl-accent {
  font-style: normal; font-weight: 400;
  background: linear-gradient(90deg, var(--teal), var(--azure), var(--jade));
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradShift 4s linear infinite;
}
.hero-sub {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 300; font-style: italic; line-height: 1.55;
  color: rgba(200, 248, 240, 0.82); max-width: 860px; margin: 0 auto 2rem;
  animation: riseIn 1s 0.25s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: riseIn 1s 0.35s ease both; margin-bottom: 3rem;
}
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 7px; opacity: 0.65; animation: riseIn 1.2s 1.4s ease both; }
.scroll-cue span { font-size: 0.725rem; letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-caret { color: var(--teal); animation: bob 2.2s ease-in-out infinite; font-size: 0.9rem; }

/* ═══ OUTCOME / LIFE LIBERTY LOVE ═══ */
.outcome-section {
  background: var(--void);
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.outcome-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.outcome-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(200,230,255,0.5);
  margin-bottom: 1.5rem; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
}
.outcome-label::before, .outcome-label::after { content: ''; width: 40px; height: 1px; background: rgba(200,230,255,0.28); }
.outcome-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; max-width: 960px; margin: 0 auto;
  position: relative; z-index: 2;
}
.outcome-cell {
  padding: 2.8rem 2.2rem; border-radius: 20px;
  position: relative; overflow: hidden;
  transition: transform 0.3s;
  backdrop-filter: blur(12px);
}
.outcome-cell:hover { transform: translateY(-5px); }
.outcome-cell::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--oc1), var(--oc2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.5; transition: opacity 0.3s;
}
.outcome-cell:hover::before { opacity: 0.85; }
.outcome-cell:nth-child(1) {
  background: linear-gradient(145deg, rgba(0,255,136,0.15), rgba(0,160,100,0.08), rgba(2,5,9,0.94));
  --oc1: #00FF88; --oc2: #00D4AA;
}
.outcome-cell:nth-child(2) {
  background: linear-gradient(145deg, rgba(0,180,255,0.18), rgba(0,100,180,0.1), rgba(2,5,9,0.94));
  --oc1: #00B4FF; --oc2: #9B59FE;
}
.outcome-cell:nth-child(3) {
  background: linear-gradient(145deg, rgba(180,0,30,0.22), rgba(140,0,20,0.12), rgba(2,5,9,0.94));
  --oc1: #CC0020; --oc2: #FF3355;
}
.outcome-glyph { width: 48px; height: 48px; margin-bottom: 1.4rem; }
.outcome-cell p {
  font-size: 0.94rem; letter-spacing: 0.04em;
  color: rgba(232,248,255,0.95); line-height: 1.82;
}
@media (max-width: 768px) {
  .outcome-grid { grid-template-columns: 1fr; }
}

.intro-section {
  background: var(--abyss);
  padding: 5rem 2rem 4rem;
}
.intro-inner { max-width: 920px; margin: 0 auto; padding: 0 1rem; }
.intro-inner .eyebrow { justify-content: center; }
.intro-inner h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300; font-style: italic; line-height: 1.15;
  margin-bottom: 1.8rem; color: var(--cream); text-align: center;
  letter-spacing: -0.01em;
}
.intro-inner h2 em { font-style: normal; color: var(--teal); }
.intro-inner p {
  font-size: 1rem; letter-spacing: 0.04em; color: var(--cream-mid);
  line-height: 1.9; margin-bottom: 1.2rem; font-weight: 300;
  text-align: left; max-width: 720px; margin-left: auto; margin-right: auto;
}
.intro-inner p strong { color: var(--azure); font-weight: 400; }
.intro-pdf-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); text-decoration: none;
  border-bottom: 1px dashed rgba(255,179,0,0.4); padding-bottom: 2px;
  transition: color 0.2s; margin-top: 1.5rem; margin-right: 1.5rem;
}
.intro-pdf-link:hover { color: var(--gold); }

/* ═══ STORY OF THE WORLD — two panels ═══ */
.story-section {
  background: radial-gradient(ellipse at 20% 30%, rgba(155,89,254,0.09) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 70%, rgba(0,180,255,0.07) 0%, transparent 55%),
              var(--ocean);
  padding: 5rem 2rem;
}
.story-head { text-align: center; max-width: 1100px; margin: 0 auto 4rem; padding: 0 0.5rem; }
.story-head .section-h {
  font-size: clamp(1.9rem, 4.8vw, 3.6rem);
  white-space: nowrap; letter-spacing: -0.015em;
}
@media (max-width: 500px) {
  .story-head .section-h {
    white-space: normal;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.story-panel {
  border-radius: 22px; padding: 3.5rem 3rem;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.story-today {
  background: linear-gradient(145deg, rgba(255,51,102,0.1), rgba(80,20,10,0.08), rgba(7,22,41,0.96));
  border: 1px solid rgba(255,51,102,0.16);
}
.story-new {
  background: linear-gradient(145deg, rgba(0,212,170,0.1), rgba(0,100,200,0.06), rgba(7,22,41,0.96));
  border: 1px solid rgba(0,212,170,0.16);
}
.story-panel::before {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.story-today::before {
  top: -60px; left: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,51,102,0.15) 0%, transparent 70%);
}
.story-new::before {
  bottom: -60px; right: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,170,0.15) 0%, transparent 70%);
}
@keyframes blobPulse { 0%,100%{opacity:0.7} }
.story-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem;
}
.story-today .story-label { color: rgba(255,100,100,0.7); }
.story-new   .story-label { color: var(--teal); }
.story-label-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.story-panel h3 {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300; font-style: italic; line-height: 1.15;
  margin-bottom: 1.2rem; color: var(--cream);
}
.story-today h3 em { font-style: normal; color: var(--crimson); font-weight: 400; }
.story-new h3 em   { font-style: normal; color: var(--jade); font-weight: 400; }
.story-panel p {
  font-size: 0.92rem; letter-spacing: 0.03em; color: rgba(220,242,255,0.85);
  line-height: 1.85; margin-bottom: 1rem;
}
.story-panel p:last-child { margin-bottom: 0; }

/* ═══ TWO GAMES ═══ */
.two-games {
  background:
    radial-gradient(ellipse at 15% 40%, rgba(0,212,170,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 60%, rgba(224,64,251,0.06) 0%, transparent 50%),
    var(--void);
  padding: 5rem 2rem 5.5rem;
  overflow: hidden; position: relative;
  border-top: 1px solid rgba(0,212,170,0.12);
}
.two-games-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.two-games-intro { text-align: center; max-width: 700px; margin: 0 auto 4.5rem; position: relative; z-index: 3; }
.games-split {
  position: relative; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; z-index: 2;
}
.game-panel { padding: 3.5rem 3rem; position: relative; min-height: 500px; overflow: hidden; }
.game-a {
  background: linear-gradient(145deg, rgba(255,51,102,0.12) 0%, rgba(255,90,0,0.08) 40%, rgba(10,20,40,0.95) 100%);
  border: 1px solid rgba(255,51,102,0.18); border-right: none;
  border-top-left-radius: 24px; border-bottom-left-radius: 24px;
}
.game-a::before {
  content: ''; position: absolute; top: -60px; left: -60px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,51,102,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.game-b {
  background: linear-gradient(145deg, rgba(0,255,136,0.1) 0%, rgba(0,180,255,0.08) 40%, rgba(7,22,41,0.97) 100%);
  border: 1px solid rgba(0,212,170,0.18); border-left: none;
  border-top-right-radius: 24px; border-bottom-right-radius: 24px;
}
.game-b::before {
  content: ''; position: absolute; bottom: -60px; right: -60px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.yinyang-curve { position: absolute; top: 0; bottom: 0; left: 50%; width: 130px; transform: translateX(-50%); z-index: 3; pointer-events: none; }
.yinyang-curve svg { width: 100%; height: 100%; display: block; }
.game-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.75rem; }
.game-a .game-label { color: rgba(255,51,102,0.7); }
.game-b .game-label { color: var(--teal); }
.game-label-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.game-title { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; font-style: italic; line-height: 1.1; margin-bottom: 1.1rem; color: var(--cream); }
.game-a .game-title em { font-style: normal; font-weight: 500; color: var(--crimson); }
.game-b .game-title em { font-style: normal; font-weight: 500; color: var(--jade); }
.game-tagline { font-size: 1rem; font-weight: 300; letter-spacing: 0.04em; line-height: 1.75; margin-bottom: 1.75rem; color: var(--cream-mid); }
.game-list { list-style: none; }
.game-list li { font-size: 0.85rem; letter-spacing: 0.04em; line-height: 1.6; padding: 0.33rem 0 0.33rem 1.6rem; position: relative; border-top: 1px solid rgba(200,230,255,0.05); }
.game-list li:first-child { border-top: none; }
.game-list li::before { content: ''; position: absolute; left: 0; top: 1.15rem; width: 10px; height: 1px; }
.game-a .game-list li { color: rgba(210,235,255,0.85); }
.game-a .game-list li::before { background: rgba(255,80,120,0.85); height: 1.5px; }
.game-b .game-list li { color: rgba(210,240,255,0.90); }
.game-b .game-list li::before { background: var(--jade); height: 1.5px; }
.two-games-after {
  max-width: 820px; margin: 3rem auto 0; padding: 0 1.5rem;
  position: relative; z-index: 3;
}
.two-games-after p {
  font-size: 0.98rem; letter-spacing: 0.04em; color: var(--cream-mid);
  line-height: 1.85; margin-bottom: 1.2rem; font-weight: 300;
}
.two-games-after p:last-child { margin-bottom: 0; }
.two-games-after p strong { color: var(--teal); font-weight: 500; letter-spacing: 0.02em; }

/* ═══ DEMOCRACY & CURRENCY ═══ */
.democracy-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(155,89,254,0.1) 0%, transparent 55%),
              var(--ocean);
  padding: 5rem 2rem;
}
.democracy-inner { max-width: 760px; margin: 0 auto; }
.democracy-inner h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; font-style: italic; margin-bottom: 1.8rem; line-height: 1.1;
  text-align: center;
}
.democracy-inner h2 em { font-style: normal; color: var(--violet); font-weight: 400; }
.democracy-inner p {
  font-size: 1rem; letter-spacing: 0.04em; color: var(--cream-mid); line-height: 1.9;
  margin-bottom: 1.2rem; font-weight: 300;
  text-align: left;
}

/* ═══ THREE RECLAIMS ═══ */
.reclaims-section {
  background: var(--abyss); padding: 5rem 2rem;
}
.reclaims-head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.reclaims-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1080px; margin: 0 auto 3rem; }
.reclaim-card {
  border-radius: 22px; padding: 3rem 2.4rem;
  position: relative; overflow: hidden; backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.reclaim-card:hover { transform: translateY(-5px); }
.reclaim-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude; opacity: 0.45;
}
.reclaim-1 { background: linear-gradient(145deg, rgba(0,255,136,0.12), rgba(0,212,170,0.06), rgba(7,22,41,0.95)); --c1: var(--jade); --c2: var(--teal); }
.reclaim-2 { background: linear-gradient(145deg, rgba(0,180,255,0.12), rgba(0,100,200,0.06), rgba(7,22,41,0.95)); --c1: var(--azure); --c2: var(--teal); }
.reclaim-3 { background: linear-gradient(145deg, rgba(255,179,0,0.1), rgba(224,64,251,0.06), rgba(7,22,41,0.95)); --c1: var(--amber); --c2: var(--magenta); }
.reclaim-n {
  font-family: var(--numeral); font-size: 3.8rem; font-weight: 700;
  line-height: 1; opacity: 0.85; flex-shrink: 0;
  font-style: normal; font-variant-numeric: oldstyle-nums;
}
.reclaim-card .reclaim-header {
  display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1rem;
}
.reclaim-1 .reclaim-n { color: var(--jade); }
.reclaim-2 .reclaim-n { color: var(--azure); }
.reclaim-3 .reclaim-n { color: var(--amber); }
.reclaim-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 300; font-style: italic;
  margin-bottom: 0; line-height: 1.2;
}
.reclaim-1 h3 em { font-style: normal; color: var(--jade); }
.reclaim-2 h3 em { font-style: normal; color: var(--azure); }
.reclaim-3 h3 em { font-style: normal; color: var(--amber); }
.reclaim-card p { font-size: 0.9rem; letter-spacing: 0.04em; color: rgba(220,242,255,0.85); line-height: 1.8; }
.reclaims-note {
  max-width: 740px; margin: 0 auto;
  font-size: 1rem; letter-spacing: 0.04em; color: var(--cream-mid);
  line-height: 1.75; text-align: center; font-weight: 300;
  font-family: var(--sans);
}

/* ═══ LIFE LIBERTY LOVE ═══ */
.life-section {
  background: radial-gradient(ellipse at 30% 50%, rgba(0,255,136,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(0,180,255,0.07) 0%, transparent 55%),
              var(--ocean);
  padding: 5rem 2rem;
}
.life-head { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.life-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1080px; margin: 0 auto; }
.life-card {
  border-radius: 22px; padding: 2.8rem 2.4rem;
  position: relative; overflow: hidden; backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.life-card:hover { transform: translateY(-5px); }
.life-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude; opacity: 0.4;
}
.life-life   { background: linear-gradient(145deg, rgba(0,180,255,0.1), rgba(7,22,41,0.96)); --c1: var(--azure); --c2: var(--teal); }
.life-liberty{ background: linear-gradient(145deg, rgba(155,89,254,0.1), rgba(7,22,41,0.96)); --c1: var(--violet); --c2: var(--azure); }
.life-love   { background: linear-gradient(145deg, rgba(224,64,251,0.1), rgba(7,22,41,0.96)); --c1: var(--magenta); --c2: var(--violet); }
.life-glyph {
  font-size: 1.8rem; margin-bottom: 0.8rem; display: block; line-height: 1;
  opacity: 0.7;
}
.life-life   .life-glyph { color: var(--azure); }
.life-liberty.life-glyph { color: var(--violet); }
.life-love   .life-glyph { color: var(--magenta); }
.life-card h3 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300; font-style: italic;
  margin-bottom: 0.9rem; line-height: 1.1;
}
.life-life    h3 { color: var(--azure); }
.life-liberty h3 { color: var(--violet); }
.life-love    h3 { color: var(--magenta); }
.life-card p { font-size: 0.9rem; letter-spacing: 0.04em; color: rgba(220,242,255,0.85); line-height: 1.82; margin-bottom: 0.9rem; }
.life-list { list-style: none; margin-top: 0.5rem; }
.life-list li { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(232,248,255,0.95); padding: 0.28rem 0 0.28rem 1.4rem; position: relative; border-top: 1px solid rgba(220,240,255,0.14); }
.life-list li:first-child { border-top: none; }
.life-list li::before { content: '\2014'; position: absolute; left: 0; top: 0.28rem; font-size: 0.7rem; line-height: 1.65; }
.outcome-cell:nth-child(1) .life-list li::before { color: #00FF88; }
.outcome-cell:nth-child(2) .life-list li::before { color: #00B4FF; }
.outcome-cell:nth-child(3) .life-list li::before { color: #FF3355; }

/* ═══ STEP BY STEP / JUXTAPOSE ═══ */
.compare-section {
  background: radial-gradient(ellipse at 70% 40%, rgba(0,180,255,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 70%, rgba(155,89,254,0.06) 0%, transparent 55%),
              var(--ocean); padding: 5rem 2rem 3.5rem;
}
.compare-head { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1100px; margin: 0 auto; }
.compare-col { padding: 2rem 2.8rem; }
.compare-col-a { border-right: 1px solid rgba(255,51,102,0.12); }
.compare-col-b {}
.compare-col-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }
.compare-col-a .compare-col-label { color: rgba(255,51,102,0.7); }
.compare-col-b .compare-col-label { color: var(--teal); }
.compare-col-label-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.compare-col h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; font-style: italic; margin-bottom: 1.5rem; }
.compare-col-a h3 em { font-style: normal; color: var(--crimson); }
.compare-col-b h3 em { font-style: normal; color: var(--jade); }
.compare-steps { list-style: none; counter-reset: step; }
.compare-steps li {
  counter-increment: step; font-size: 0.88rem; letter-spacing: 0.03em;
  color: rgba(218,240,255,0.85); line-height: 1.65;
  padding: 0.6rem 0 0.6rem 2.2rem; position: relative;
  border-top: 1px solid rgba(200,230,255,0.06);
}
.compare-steps li:first-child { border-top: none; }
.compare-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0.65rem;
  font-family: var(--serif); font-size: 0.72rem;
  opacity: 0.85;
}
.compare-col-a .compare-steps li::before { color: #FF6685; }
.compare-col-b .compare-steps li::before { color: var(--jade); }
.compare-repeat {
  font-family: var(--title); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.5em; opacity: 1;
}
.compare-repeat .loop-glyph {
  display: inline-block; font-size: 1.05rem; letter-spacing: 0;
  transform: translateY(-1px);
  opacity: 0.85;
}
.compare-col-a .compare-repeat { color: #FF6685; }
.compare-col-b .compare-repeat { color: var(--jade); }

/* ═══ CAPITALISM / CREDITISM BIOLUMINESCENT TITLE WORDS ═══ */
@keyframes capitalismPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(180,0,20,0.7), 0 0 20px rgba(140,0,15,0.45), 0 0 40px rgba(100,0,10,0.25); }
  50%       { text-shadow: 0 0 12px rgba(210,0,30,0.9), 0 0 30px rgba(160,0,20,0.6), 0 0 55px rgba(120,0,15,0.35); }
}
@keyframes creditismPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(0,212,170,0.6), 0 0 20px rgba(0,180,140,0.4), 0 0 40px rgba(0,255,136,0.2); }
  50%       { text-shadow: 0 0 14px rgba(0,255,136,0.85), 0 0 30px rgba(0,212,170,0.55), 0 0 55px rgba(0,180,255,0.3); }
}
.capitalism-text {
  font-style: normal;
  background: linear-gradient(135deg, #CC0018, #8B0000, #B22222, #CC0018);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: capitalismPulse 3s ease-in-out infinite, gradShift 5s linear infinite;
  filter: drop-shadow(0 0 6px rgba(180,0,20,0.5));
}
.creditism-text {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal), var(--jade), var(--azure), var(--teal));
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: creditismPulse 3s ease-in-out infinite 1.5s, gradShift 4s linear infinite;
}

/* ═══ DIGITAL INFRASTRUCTURE ═══ */
.infra-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,180,255,0.1) 0%, transparent 55%),
              var(--ocean);
  padding: 5rem 2rem;
}
.infra-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.infra-quote {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic; font-weight: 300;
  color: var(--cream-mid); line-height: 1.75; margin-top: 1.2rem;
  border-left: 2px solid rgba(0,212,170,0.3); padding-left: 1.2rem;
  text-align: left;
}
.infra-quote cite { display: block; font-style: normal; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--teal); margin-top: 0.6rem; }
.infra-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; max-width: 1100px; margin: 3rem auto 0;
}
.infra-card {
  border-radius: 18px; padding: 1.8rem 1.8rem 2rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,230,255,0.08);
  backdrop-filter: blur(8px); transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.infra-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -12px rgba(0,180,255,0.2); }
.infra-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(0,180,255,0.3), rgba(0,212,170,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
}
.infra-icon { font-size: 1.4rem; display: block; opacity: 0.85; flex-shrink: 0; }
.infra-card-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.infra-card h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; font-style: italic; margin-bottom: 0; color: rgba(200,240,255,1); }
.infra-card p { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(220,245,255,0.92); line-height: 1.8; }

/* ═══ STRATEGIC PUZZLE ═══ */
/* ═══ TRANSITION STRATEGIES ═══ */
.transition-section { background: var(--abyss); padding: 5rem 2rem; }
.transition-head { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.transition-head .section-p { margin: 0 auto; }
.transition-head .tap-cue {
  font-size: 1rem; letter-spacing: 0.04em; color: var(--teal); line-height: 1.85;
  text-align: center; margin-top: 0.85rem; font-weight: 300; font-style: italic;
}
.transition-list { display: flex; flex-direction: column; gap: 8px; max-width: 920px; margin: 0 auto; }
.transition-item {
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,230,255,0.07);
  transition: border-color 0.25s, background 0.25s;
  overflow: hidden;
}
.transition-item[open] {
  background: rgba(0,212,170,0.04);
  border-color: rgba(0,212,170,0.22);
}
.transition-item:hover { border-color: rgba(0,212,170,0.18); }
.transition-item summary {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem 1.4rem; cursor: pointer;
  list-style: none; user-select: none;
}
.transition-item summary::-webkit-details-marker { display: none; }
.transition-item summary::marker { content: ''; }
.transition-n {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 300;
  color: var(--teal); opacity: 0.85; flex-shrink: 0; line-height: 1.1;
  min-width: 2.2rem;
}
.transition-title {
  flex: 1; font-size: 0.98rem; letter-spacing: 0.02em;
  color: rgba(232,248,255,0.95); line-height: 1.5; font-weight: 400;
}
.transition-chev {
  flex-shrink: 0; width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 300; color: var(--teal);
  border: 1px solid rgba(0,212,170,0.3); border-radius: 50%;
  transition: transform 0.25s, background 0.25s;
  line-height: 1;
}
.transition-item[open] .transition-chev {
  transform: rotate(45deg);
  background: rgba(0,212,170,0.15);
}
.transition-body {
  padding: 0 1.4rem 1.4rem 4.55rem;
  border-top: 1px solid rgba(0,212,170,0.1);
  margin-top: -1px;
  animation: transitionBodyIn 0.3s ease both;
}
.transition-body p {
  font-size: 0.92rem; letter-spacing: 0.03em;
  color: rgba(220,238,255,0.85); line-height: 1.78;
  margin: 1rem 0 0; font-weight: 300;
}
.transition-body p em { color: rgba(220,238,255,0.95); font-style: italic; }
@keyframes transitionBodyIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .transition-item summary { padding: 0.85rem 1rem; gap: 0.8rem; }
  .transition-n { font-size: 1.2rem; min-width: 1.8rem; }
  .transition-title { font-size: 0.9rem; }
  .transition-body { padding: 0 1rem 1.1rem 3.7rem; }
}

/* ═══ FORBIDDEN P'S ═══ */
.forbidden-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(224,64,251,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(155,89,254,0.07) 0%, transparent 45%),
    var(--void);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(224,64,251,0.12);
}
.forbidden-head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.forbidden-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.forbidden-card {
  border-radius: 20px; padding: 2.5rem 2.2rem;
  background: rgba(224,64,251,0.05); border: 1px solid rgba(224,64,251,0.12);
  backdrop-filter: blur(8px); transition: transform 0.25s, box-shadow 0.25s;
}
.forbidden-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -12px rgba(224,64,251,0.2); }
.forbidden-p { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--magenta); opacity: 0.75; line-height: 1; margin-bottom: 0.8rem; }
.forbidden-card h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; font-style: italic; margin-bottom: 0.8rem; color: rgba(240,180,255,0.9); }
.forbidden-card p { font-size: 0.88rem; letter-spacing: 0.04em; color: rgba(230,248,255,0.95); line-height: 1.82; }
.forbidden-note { max-width: 780px; margin: 3rem auto 0; font-size: 1rem; letter-spacing: 0.04em; color: var(--cream-mid); line-height: 1.75; text-align: center; font-weight: 300; font-family: var(--sans); }

/* ═══ RULES & GAMES / PHILOSOPHY ═══ */
.philosophy-section {
  background: radial-gradient(ellipse at 30% 30%, rgba(155,89,254,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(0,212,170,0.06) 0%, transparent 55%),
              var(--ocean); padding: 5rem 2rem; }
.philosophy-inner { max-width: 780px; margin: 0 auto; }
.philosophy-inner .eyebrow { justify-content: center; text-align: center; display: flex; }
.philosophy-inner h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; font-style: italic; margin-bottom: 2rem; text-align: center; }
.philosophy-inner h2 em { font-style: normal; color: var(--teal); }
.pullquote {
  border-left: 2px solid var(--teal); padding: 1.2rem 0 1.2rem 2rem;
  margin: 2.5rem 0; position: relative;
}
.pullquote::before { content: '"'; position: absolute; top: -0.5rem; left: 1.5rem; font-family: var(--serif); font-size: 4rem; color: var(--teal); opacity: 0.2; line-height: 1; }
.pullquote p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; font-weight: 300; color: var(--cream-mid); line-height: 1.75; }
.pullquote cite { display: block; font-style: normal; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-top: 0.8rem; }
.philosophy-body p { font-size: 0.95rem; letter-spacing: 0.04em; color: var(--cream-mid); line-height: 1.95; margin-bottom: 1.4rem; }
.philosophy-body p em { font-style: italic; color: var(--azure); }
.philosophy-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; font-style: italic; margin: 2.5rem 0 1rem; color: var(--cream); }

/* ═══ CTA SECTION ═══ */
.cta-section {
  background: radial-gradient(ellipse at 25% 55%, rgba(0,255,136,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 30%, rgba(0,180,255,0.07) 0%, transparent 50%),
              linear-gradient(180deg, var(--ocean) 0%, #061A2A 100%);
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 300; font-style: italic; margin-bottom: 1.2rem; }
.cta-inner p { font-size: 1rem; letter-spacing: 0.04em; color: var(--cream-mid); line-height: 1.85; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══ QUOTE SECTION ═══ */
.quote-section { padding: 5rem 2rem; background: var(--void); position: relative; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.qtext {
  font-family: var(--serif); font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300; font-style: italic; line-height: 1.45; letter-spacing: -0.01em;
  color: var(--cream); text-align: center; max-width: 860px; margin: 0 auto 1.5rem;
  position: relative; z-index: 2;
}
.qattr { font-size: 0.8rem; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); text-align: center; position: relative; z-index: 2; }
.qattr em { color: var(--teal); font-style: normal; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--void);
  padding: 5rem 3rem 2.5rem;
  position: relative;
  border-top: 1px solid rgba(0,212,170,0.1);
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--violet), var(--azure), transparent);
  opacity: 0.35;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200,230,255,0.06);
  margin-bottom: 1.5rem;
}
.f-brand h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 300; font-style: italic;
  color: var(--cream); margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.f-brand h3 em { font-style: normal; color: var(--teal); font-weight: 400; }
.f-brand p {
  font-size: 0.87rem; letter-spacing: 0.04em;
  color: var(--text-body); line-height: 1.78;
  max-width: 440px; margin-bottom: 1.25rem;
}
.address {
  font-size: 0.77rem; letter-spacing: 0.06em;
  color: rgba(220,245,255,0.75); line-height: 1.75;
}
.f-col h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.f-col a {
  display: block; font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--text-body); text-decoration: none;
  margin-bottom: 0.55rem; transition: color 0.15s;
}
.f-col a:hover { color: var(--teal); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  padding-top: 0.5rem;
  align-items: start;
}
.f-legal, .f-disc {
  font-size: 0.74rem; letter-spacing: 0.04em;
  color: var(--text-soft); line-height: 1.7;
  max-width: 100%;
}
.f-disc { text-align: left; }
@media (max-width: 700px) {
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .story-grid, .games-split, .compare-grid { grid-template-columns: 1fr; }
  .game-a { border-right: 1px solid rgba(255,51,102,0.18); border-bottom: none; border-top-right-radius: 24px; border-bottom-left-radius: 0; }
  .game-b { border-left: 1px solid rgba(0,212,170,0.18); border-top-right-radius: 0; border-bottom-left-radius: 24px; }
  .yinyang-curve { display: none; }
  .compare-col-a { border-right: none; border-bottom: 1px solid rgba(255,51,102,0.12); }
  .reclaims-grid, .life-grid, .forbidden-grid { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .infra-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
}

/* ═══ MOBILE PADDING REDUCTIONS ═══ */
@media (max-width: 600px) {
  section { padding: 3rem 1rem; }
  .intro-section { padding: 3rem 1rem; }
  .intro-inner { padding: 0 0.25rem; }
  .two-games { padding: 3rem 1rem; }
  .compare-section { padding: 3rem 1rem; }
  .compare-col { padding: 1.5rem 1.2rem; }
  .democracy-section { padding: 3rem 1rem; }
  .reclaims-section { padding: 3rem 1rem; }
  .reclaim-card { padding: 2rem 1.4rem; }
  .life-section { padding: 3rem 1rem; }
  .outcome-section { padding: 3rem 1rem; }
  .outcome-cell { padding: 2rem 1.4rem; }
  .forbidden-section { padding: 3rem 1rem; }
  .forbidden-card { padding: 1.8rem 1.4rem; }
  .infra-section { padding: 3rem 1rem; }
  .infra-card { padding: 1.4rem 1.2rem 1.6rem; }
  .transition-section { padding: 3rem 1rem; }
  .philosophy-section { padding: 3rem 1rem; }
  .cta-section { padding: 3rem 1rem; }
  .story-section { padding: 3rem 1rem; }
  .story-panel { padding: 2rem 1.5rem; }
  .game-panel { padding: 2.2rem 1.5rem; }
  footer { padding: 3rem 1rem 2rem; }
}

.flow-accent {
  font-style: italic;
  color: var(--teal);
}

/* ═══ SCROLL FLICKER / REPAINT STABILITY ═══

   ROOT CAUSES ADDRESSED:
   1. body::before grain overlay — fixed + z-index:9999 + SVG filter causes a
      full-page repaint layer on every scroll tick in Chrome. Promoted to its
      own GPU layer via will-change so Chrome composites it separately.
   2. backdrop-filter elements — every card that uses backdrop-filter:blur()
      triggers a repaint of everything behind it during scroll. Containment
      (contain:paint) limits each blur to its own stacking context.
   3. Infinite looping animations (gradShift, wavePulse, bob,
      capitalismPulse, creditismPulse) — if the animated element shares a
      layer with scrolled content, Chrome repaints on every animation frame.
      translateZ(0) forces each onto its own composited layer.
   4. will-change: opacity,transform on ALL 13 .reveal elements simultaneously
      — that's 13 composited layers sitting in GPU memory at once even for
      sections already visible. Fixed: only set will-change while transitioning;
      cleared immediately after (handled in JS below via classList timing).
   5. The wave-path drop-shadow filter — CSS filter on an SVG path inside a
      scrolled element forces a repaint subtree. Isolated with contain:paint.
   6. .h-glow filter:blur on a large element — already inside .hero which has
      overflow:hidden, but without isolation Chrome may repaint it during scroll
      as it leaves the viewport. Added isolation:isolate to .hero.
*/

/* 1 — Grain overlay: own composited layer, no repaint on scroll */
body::before {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 2 — Nav: already has contain:paint; add explicit layer promotion */
nav { contain: paint layout; }
nav::after { pointer-events: none; transform: translateZ(0); }

/* 3 — Hero halo: isolate the blur + large radial gradient from scroll */
.hero {
  isolation: isolate;
  contain: layout;
}
.hero-pulse-rings { isolation: isolate; }
.h-glow, .h-ring {
  will-change: transform;
  transform: translateZ(0) translate(-50%, -50%);
  backface-visibility: hidden;
}

/* 4 — Scroll reveal: only promote while animating, not globally */
.reveal { scroll-margin-top: 96px; }
/* NOTE: will-change is set/cleared in JS at transition time, not via CSS class */
.js-ready .reveal { }
.js-ready .reveal.visible { }

/* 5 — Gradient text animations: own composited layer */
.grad-text, .grad-text-warm, .biolum-flow, .hl-accent,
.capitalism-text, .creditism-text {
  will-change: background-position;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 6 — Wave dividers: contain paint to limit repaint subtree */
.wave-divider {
  contain: paint layout;
  isolation: isolate;
  transform: translateZ(0);
}
.wave-divider svg { transform: translateZ(0); backface-visibility: hidden; }
.wave-path,
.wave-path-2,
.wave-path-3 {
  /* Remove will-change:transform on paths — they don't transform, only opacity.
     Using will-change:opacity gives Chrome a cheaper hint. */
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 7 — Looping pulse animations on section titles */
.scroll-caret {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 8 — backdrop-filter cards: contain each blur to its own stacking context
        so Chrome doesn't repaint everything behind ALL cards on every scroll frame */
.outcome-cell,
.story-panel,
.reclaim-card,
.life-card,
.infra-card,
.forbidden-card,
.game-panel {
  contain: paint;
  isolation: isolate;
}

/* 9 — Decorative before/after pseudo blobs inside cards */
.game-a::before,
.game-b::before,
.story-today::before,
.story-new::before {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}



.transition-section .transition-puzzle-note {
  max-width: 620px;
  color: var(--jade) !important;
  font-style: normal;
  line-height: 1.32;
  text-align: center !important;
  letter-spacing: var(--track-body);
  margin: 1.15rem auto 0 !important;
}

.transition-section .transition-tactic-hint-copy {
  max-width: 620px;
  color: var(--jade) !important;
  font-style: italic;
  line-height: 1.28;
  text-align: center !important;
  letter-spacing: var(--track-body);
  margin: 2.2rem auto -2.25rem !important;
}

blockquote:has(.visible-hand-quote-text) {
  width: fit-content;
  max-width: min(760px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

.visible-hand-quote-text {
  display: inline;
  text-align: left !important;
}

.visible-hand-elements-note {
  max-width: 760px;
  color: var(--jade) !important;
  font-style: normal;
  line-height: 1.32;
  text-align: center !important;
  letter-spacing: var(--track-body);
  margin: 1.4rem auto 2.2rem !important;
}

.transition-section .transition-quote,
.rules-quote {
  margin: 1rem 0 1rem 1.35rem;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(0, 255, 136, 0.28);
  font-style: italic;
}

.transition-section .transition-challenge-list {
  margin: 0.75rem 0 1rem 1.75rem;
  padding-left: 1.35rem;
}

.transition-section .transition-challenge-list li {
  margin-bottom: 0.7rem;
  color: rgba(220, 242, 255, 0.85);
  line-height: 1.8;
  letter-spacing: 0.03em;
}


.reclaim-card .reclaim-header-stacked {
  display: block;
  margin-bottom: 1.2rem;
}

.reclaim-title-row {
  display: flex;
  align-items: baseline;
  gap: 0.82rem;
}

.reclaim-card .reclaim-n {
  display: inline-block;
  flex: 0 0 auto;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem) !important;
  line-height: 0.9 !important;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.reclaim-card h3.reclaim-prefix {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.reclaim-card h3.reclaim-keyword {
  font-size: clamp(2.15rem, 3.4vw, 3rem);
  line-height: 0.95;
  margin: 0;
}

.reclaim-card h3.reclaim-keyword em {
  display: inline-block;
}

@media (min-width: 900px) {
  .reclaims-closing-copy {
    display: block;
    width: calc(100% + 5ch);
    max-width: calc(100% + 5ch);
    margin-left: -2.5ch;
    margin-right: -2.5ch;
  }
}

@media (max-width: 760px) {
  .reclaim-title-row {
    gap: 0.62rem;
  }

  .reclaim-card .reclaim-n {
    font-size: clamp(1.45rem, 8vw, 2.15rem) !important;
  }
}




.visible-hand-bridge-copy {
  margin: 3.6rem auto 0 !important;
  text-align: center !important;
  color: var(--jade) !important;
}


.visible-hand-bridge-box {
  display: block;
  margin: 2.5rem auto 3rem;
  padding: clamp(1.15rem, 3vw, 1.65rem) clamp(1.25rem, 4vw, 2.35rem);
  border: 1px solid var(--azure);
  border-radius: 22px;
  background: rgba(0, 180, 255, 0.035);
  box-shadow: 0 0 34px rgba(0, 180, 255, 0.10), inset 0 0 28px rgba(0, 212, 170, 0.025);
  color: var(--azure) !important;
  -webkit-text-fill-color: var(--azure) !important;
  text-align: left;
}
@media (max-width: 720px) {
  .visible-hand-bridge-box {
    margin: 2rem auto 2.4rem;
    border-radius: 18px;
  }
}


/* Creditism page width and spacing tune */
.creditism-rules-title-tight,
.rules-and-games-title-tight {
  line-height: 1.02 !important;
  margin-bottom: 1rem !important;
}
.creditism-rules-title-tight span,
.creditism-rules-title-tight em,
.rules-and-games-title-tight span,
.rules-and-games-title-tight em {
  line-height: 1.02 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* CP creditism mobile callout inset */
@media (max-width: 760px) {
  .cp-creditism-callout-inset {
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 22px !important;
  }
}
/* end CP creditism mobile callout inset */

