
/* ═══════════════════════════════════════════════════════════════
   COMMON PLANET — BIOLUMINESCENT TIDAL MANDALA EDITION v71
   psychedelic · fractal · earth & water · wave flow · spotlight
═══════════════════════════════════════════════════════════════ */

:root {
  /* VOID — the deep */
  --void:      #020509;
  --abyss:     #04101E;
  --ocean:     #071629;
  --deep:      #0A1F38;

  /* BIOLUMINESCENT SPECTRUM */
  --teal:      #00D4AA;
  --teal-dim:  #00A882;
  --azure:     #00B4FF;
  --azure-dim: #0088CC;
  --jade:      #00FF88;
  --jade-dim:  #00CC6A;
  --violet:    #9B59FE;
  --violet-dim:#7B39DE;
  --magenta:   #E040FB;
  --magenta-dim:#B020CC;
  --amber:     #FFB300;
  --amber-dim: #E09500;
  --crimson:   #FF3366;
  --gold:      #FFD700;
  --rose:      #FF69B4;
  --lime:      #AAFF00;

  /* LIGHT CREAM */
  --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);

  /* TYPOGRAPHY */

  /* ═══════════════════════════════════════════════════════════════
     v36 STANDARDIZATION TOKENS
     Single source of truth for the values that drifted across v1-v35.
  ═══════════════════════════════════════════════════════════════ */

  /* Text brightness scale — replaces ~15 ad-hoc rgba() variants */
  --text-strong:  rgba(240, 250, 255, 0.97); /* card titles (h3 / h4) */
  --text-bright:  rgba(235, 250, 255, 0.98); /* prominent body, list rows */
  --text-body:    rgba(235, 250, 255, 0.96); /* standard paragraphs */
  --text-meta:    rgba(230, 248, 255, 0.90); /* labels, attributions, addresses */
  --text-soft:    rgba(225, 245, 255, 0.80); /* muted / secondary */
  --text-faint:   rgba(210, 238, 255, 0.55); /* dividers, line-through */

  /* Tracking — two flavors only */
  --track-eyebrow: 0.22em;  /* uppercase labels */
  --track-body:    0.04em;  /* paragraphs, list rows */

  /* Line-heights — three modes */
  --lh-tight: 1.2;   /* big serif headings */
  --lh-snug:  1.55;  /* compact body, list rows */
  --lh-body:  1.75;  /* standard paragraphs */

  /* Vertical rhythm */
  --space-section-y: 4rem;
  --space-section-x: 2rem;
  --space-after-eyebrow: 1.1rem;
  --space-after-h: 1rem;

  /* Border-radius scale */
  --r-pill: 999px;
  --r-lg:   22px;
  --r-md:   18px;
  --r-sm:   14px;
  --r-xs:   10px;
}

*, *::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: var(--lh-snug);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* ═══ GRAIN OVERLAY ═══ */
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); }

/* ═══ ACCESSIBILITY: focus rings on dark bg ═══ */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline-color: var(--jade);
}

/* skip-to-content link */
.skip-link {
  position: absolute; left: -9999px; top: 1rem;
  background: var(--jade); color: var(--void);
  padding: 0.5rem 1rem; border-radius: 4px;
  font-weight: 700; z-index: 10000;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.skip-link:focus { left: 1rem; }

/* ═══ REDUCED MOTION ═══
   Surgical: kill heavier/entrance/attention animations AND the flashing gradient
   text shifts on words like "AYU Network", "flow", etc. Keep the gentle wave
   dividers flowing — they are slow, decorative, non-vestibular. */
@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 TEXT UTILITY ═══ */
.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, var(--amber), var(--gold), var(--rose), var(--magenta), var(--amber));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 6rem 2rem 0;
  overflow: hidden;
  background: var(--void);
}

/* ═══ HERO HALO ORB + RINGS (v71) ═══ */
.hero-halo {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-halo svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* ═══ HERO SPOTLIGHT (mouse follow) ═══ */
.hero-spotlight {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle 650px at var(--mx,50%) var(--my,50%),
    rgba(0,212,170,0.09) 0%,
    rgba(0,180,255,0.04) 40%,
    transparent 75%);
  transition: background 0.08s;
}
.hero-headline {
  font-family: var(--serif);
  /* Large: ~82px. Mid: scales down so 3 sentences each fit on 1 line. Mobile: clamp floor keeps it readable. */
  font-size: clamp(20px, 5.4vw, 82px);
  font-weight: 300; font-style: italic;
  line-height: 1.16; letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  animation: riseIn 1s 0.1s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
/* At large sizes we want the headline contained; at smaller sizes let it breathe */
.hero-content {
  position: relative; z-index: 3;
  width: 100%; max-width: 1100px; text-align: center;
}
.hero-headline .hl-line { display: block; text-align: center; line-height: 1.16; }
/* The middle line must never wrap — it sets the width at smaller sizes */
.hero-headline .hl-line-nowrap {
  display: block;
  white-space: nowrap;
  text-align: center;
  line-height: 1.16;
}
.hero-headline .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-body {
  font-size: 1.02rem; font-weight: 300; letter-spacing: var(--track-body);
  color: rgba(225, 245, 255, 0.95);
  line-height: var(--lh-body); max-width: 520px;
  margin: 0 auto 0.4rem;
  padding-top: 1.2rem; padding-bottom: 1.2rem;
  animation: riseIn 1s 0.2s ease both;
}
.hero-body strong { color: var(--azure); font-weight: 400; }
.hero-punch {
  font-family: var(--title);
  font-size: clamp(1.4rem, 2.2vw, 2.3rem); letter-spacing: var(--track-eyebrow);
  color: var(--amber); text-transform: uppercase;
  margin-top: 1.1rem;
  margin-bottom: 1.6rem;
  animation: riseIn 1s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: riseIn 1s 0.4s ease both; margin-bottom: 1.6rem;
}

/* hero countdown badge — pulled up from buried Phase 1 location */
.hero-countdown {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.42rem 0.95rem 0.42rem 0.75rem;
  background: rgba(255,179,0,0.07);
  border: 1px solid rgba(255,179,0,0.32);
  border-radius: 999px;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: riseIn 1s 0.05s ease both;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.25s, transform 0.2s;
}
.hero-countdown:hover {
  border-color: var(--amber);
  transform: translateY(-1px);
}
@keyframes badgeGlow { from {} to {} }
.hcd-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
  box-shadow: 0 0 8px var(--amber);
}
@keyframes hcdPulse { 0%,100%{} }
.hcd-text {
  font-family: var(--sans);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,225,140,0.92);
  white-space: nowrap;
}
.hcd-text strong {
  color: var(--cream);
  font-weight: 700;
}
.hcd-arrow {
  color: var(--amber); font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.2s;
}
.hero-countdown:hover .hcd-arrow { transform: translateX(3px); }
@media (max-width: 480px) {
  .hcd-text { font-size: 0.68rem; letter-spacing: 0.10em; }
  .hero-countdown { padding: 0.38rem 0.8rem 0.38rem 0.65rem; gap: 0.55rem; }
  .hero-headline { font-size: clamp(22px, 7.5vw, 44px); }
  .hero-headline .hl-line-nowrap { white-space: normal; }
  .hero-body { font-size: 0.92rem; padding-top: 0; padding-bottom: 0; }
  .hero-punch { font-size: 0.88rem; margin-top: 0.8rem; margin-bottom: 1.2rem; }
  .btn-primary, .btn-outline { padding: 0.65rem 1.4rem; font-size: 0.7rem; }
  .hero-actions { gap: 0.75rem; margin-bottom: 1.2rem; }
  .scroll-cue span { font-size: 0.6rem; }
}
.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.95);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,212,170,0.15);
}
.btn-text {
  background: transparent; color: var(--cream-mid);
  border: none; padding: 0.75rem 0.4rem;
  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-flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}
.btn-text::after {
  content: '→';
  transition: transform 0.2s;
  display: inline-block;
}
.btn-text:hover {
  color: var(--teal);
  gap: 0.7rem;
}
.btn-text:hover::after { transform: translateX(2px); }

.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0.65; animation: riseIn 1.2s 1.4s ease both;
  margin-top: 2.5rem;
}
.scroll-cue span { font-size: 0.725rem; letter-spacing: var(--track-eyebrow); text-transform: uppercase; }
.scroll-caret { color: var(--teal); animation: bob 2.2s ease-in-out infinite; font-size: 0.9rem; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes riseIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ═══ WAVE DIVIDERS ═══ */
.wave-divider {
  position: relative; width: 100%; overflow: visible;
  pointer-events: none; z-index: 10;
  height: 16px; margin-top: -1px; margin-bottom: -1px;
  background: transparent;
}
.wave-divider svg { display: block; width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 0 5px rgba(0,212,170,0.65)) drop-shadow(0 0 12px rgba(155,89,254,0.45)); }
.wave-path { }
.wave-path-2 { }
.wave-path-3 { }
@keyframes waveFlow {
  0%   { d: path("M0,8 C120,0 240,16 360,8 C480,0 600,16 720,8 C840,0 960,16 1080,8 C1200,0 1320,16 1440,8"); }
  100% { d: path("M0,8 C120,16 240,0 360,8 C480,16 600,0 720,8 C840,16 960,0 1080,8 C1200,16 1320,0 1440,8"); }
}
@keyframes waveFlow2 {
  0%   { d: path("M0,10 C160,2 320,18 480,10 C640,2 800,18 960,10 C1100,2 1280,18 1440,10"); }
  100% { d: path("M0,6 C160,14 320,0 480,8 C640,16 800,2 960,9 C1100,17 1280,3 1440,7"); }
}
@keyframes waveFlow3 {
  0%   { d: path("M0,12 C200,4 400,16 600,6 C800,0 1000,14 1200,8 C1320,4 1400,14 1440,10"); }
  100% { d: path("M0,5 C200,15 400,3 600,13 C800,18 1000,4 1200,11 C1320,15 1400,5 1440,9"); }
}
/* Animated color-shift keyframes for wave accent lines */
@keyframes waveColorShift {
  0%   { stop-color: #00D4AA; }
  20%  { stop-color: #00B4FF; }
  40%  { stop-color: #9B59FE; }
  60%  { stop-color: #E040FB; }
  80%  { stop-color: #FFB300; }
  100% { stop-color: #00D4AA; }
}
.wave-color-mid { }
.wave-color-mid2 { }

/* ═══ SHARED LAYOUT ═══ */
section { padding: var(--space-section-y) var(--space-section-x); position: relative; overflow-x: clip; }

/* Firefox centering fix — prevent any child from creating horizontal scroll */
* { box-sizing: border-box; }
nav, section, footer, .wave-divider, .hero {
  max-width: 100%;
}
.container { max-width: 960px; margin: 0 auto; position: relative; }
.container-wide { max-width: 1180px; margin: 0 auto; position: relative; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: var(--track-eyebrow); 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); }
.eyebrow.magenta{ color: var(--magenta); }
.eyebrow.gold   { color: var(--gold); }

.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: var(--track-body);
  color: var(--cream-mid); line-height: var(--lh-body); 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;
}


/* ═══ TWO GAMES ═══ */
.two-games {
  background: var(--abyss);
  padding: var(--space-section-y) var(--space-section-x);
  overflow: hidden; position: relative;
}
.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 2.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: 2.75rem 3rem 1.75rem;
  position: relative;
  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: var(--r-lg); border-bottom-left-radius: var(--r-lg);
}
.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; animation: blobPulse 4s ease-in-out infinite;
}
.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: var(--r-lg); border-bottom-right-radius: var(--r-lg);
}
.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;
}
@keyframes blobPulse { 0%,100%{opacity:0.65} }
.game-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase;
  margin-bottom: var(--space-after-eyebrow);
  display: flex; align-items: center; gap: 0.75rem;
}
.game-a .game-label { color: rgba(255,51,102, 0.95); }
.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: var(--track-body);
  line-height: var(--lh-body); margin-bottom: 1.75rem; color: var(--cream-mid);
}
.game-list { list-style: none; }
.game-list li {
  font-size: 0.85rem; letter-spacing: var(--track-body);
  line-height: var(--lh-snug); 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: var(--text-bright); }
.game-a .game-list li::before { background: var(--crimson); height: 1.5px; }
.game-b .game-list li { color: var(--text-bright); }
.game-b .game-list li::before { background: var(--jade); height: 1.5px; }

/* yin-yang divider */
.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; }

/* ═══ CONCEPT / HOW IT WORKS ═══ */
.concept-section {
  background: radial-gradient(ellipse at 20% 30%, rgba(155,89,254,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 75%, rgba(0,180,255,0.09) 0%, transparent 55%),
              var(--ocean);
  padding: var(--space-section-y) var(--space-section-x);
  position: relative;
}
.concept-head { max-width: 780px; margin: 0 auto 3.5rem; text-align: center; }
.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.concept-card {
  border-radius: 22px;
  padding: 3.25rem 2.75rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
}
.concept-card .tags { margin-top: auto; padding-top: 1.5rem; }
.concept-card:hover { transform: translateY(-5px); }
.concept-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--from-color, var(--teal)), var(--to-color, var(--violet)));
  -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;
  pointer-events: none;
}
.concept-creditism {
  background: linear-gradient(145deg, rgba(0,180,255,0.1), rgba(155,89,254,0.08), rgba(7,22,41,0.94));
  --from-color: var(--azure); --to-color: var(--violet);
}
.concept-ayu {
  background: linear-gradient(145deg, rgba(0,255,136,0.1), rgba(0,212,170,0.06), rgba(7,22,41,0.94));
  --from-color: var(--jade); --to-color: var(--teal);
}
.concept-card:hover { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 40px rgba(0,212,170,0.08); }
.concept-eye {
  font-size: 0.7rem; font-weight: 700; letter-spacing: var(--track-eyebrow);
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.concept-creditism .concept-eye { color: var(--azure); }
.concept-ayu      .concept-eye { color: var(--jade); }
.concept-card h3 {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; font-style: italic;
  margin-bottom: 1rem; line-height: 1.15;
  position: relative; z-index: 2;
}
.concept-card h3 a {
  color: var(--cream); text-decoration: none;
  background-image: linear-gradient(rgba(0,180,255,0.45), rgba(0,180,255,0.45));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  position: relative; z-index: 2;
  transition: color 0.25s ease, background-image 0.25s ease;
}
.concept-card h3 a:hover {
  color: var(--azure);
  background-image: linear-gradient(var(--azure), var(--azure));
}
.concept-creditism h3 a:hover { color: var(--azure); }
.concept-meaning {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.85;
  position: relative; z-index: 2;
  display: inline-block;
  vertical-align: super;
  margin-left: 0.5rem;
  line-height: 1;
}
.concept-ayu .concept-meaning { color: rgba(0, 255, 136, 0.92); }
.concept-meaning em {
  font-style: normal;
  font-weight: 400;
  color: var(--cream);
  text-shadow: 0 0 14px rgba(0, 255, 136, 0.55), 0 0 28px rgba(0, 212, 170, 0.3);
  letter-spacing: 0.08em;
}
.concept-card > p {
  font-size: 0.92rem; letter-spacing: var(--track-body);
  color: var(--text-bright); line-height: var(--lh-body); margin-bottom: 0.8rem;
}
.concept-card > p em { font-style: italic; }
.concept-creditism > p em { color: var(--azure); }
.concept-ayu    > p em { color: var(--jade); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 1.5rem; }
.tag {
  font-size: 0.68rem; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 999px;
  font-weight: 400;
}
.concept-creditism .tag {
  background: rgba(0,180,255,0.1); color: var(--azure);
  border: 1px solid rgba(0,180,255,0.25);
}
.concept-ayu .tag {
  background: rgba(0,255,136,0.08); color: var(--jade);
  border: 1px solid rgba(0,255,136,0.22);
}

/* ═══ FLOWS SECTION ═══ */
.flows-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,170,0.08) 0%, transparent 55%),
              var(--abyss);
  padding: var(--space-section-y) var(--space-section-x);
  position: relative; overflow: hidden;
}
.flows-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.5;
}
.flows-head { text-align: center; max-width: 700px; margin: 0 auto 1.8rem; position: relative; z-index: 2; }
.flows-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1100px; margin: 0 auto;
  border-radius: 22px; overflow: hidden;
  position: relative; z-index: 2;
  border: 1px solid transparent;
}
.flows-grid::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 23px;
  background: linear-gradient(120deg, #00FFD0, #00B4FF, #9B59FE, #E040FB, #00D4AA, #00FFD0);
  background-size: 300% 300%;
  animation: gradShift 6s linear infinite;
  z-index: -1;
  /* punch out the interior — only the 1px stroke remains visible */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
.flows-grid-inner {
  display: contents;
}
.flow-col {
  display: flex; flex-direction: column;
  padding: 2rem 2.8rem 3rem;
  position: relative; overflow: hidden;
}
.flow-col p { flex: 0 0 auto; }
.flow-rows{ margin-top:1.6rem; padding-top:0; }
.flow-col + .flow-col { border-left: 1px solid rgba(200,230,255,0.08); }
.universal { background: rgba(7, 18, 34, 0.96); }
.earned    { background: rgba(7, 18, 34, 0.96); }
.flow-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  position: relative; z-index: 2;
}
.flow-title-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
}
.flow-col h3 {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--text-strong); margin-bottom: 0;
}
.flow-col h3 .lw,.flow-col h3 .status-label{
  font-family:var(--sans)!important;font-size:.42em!important;font-style:normal!important;font-weight:700!important;letter-spacing:var(--track-eyebrow);text-transform:uppercase;white-space:nowrap;vertical-align:middle;
}
.flow-col:first-child h3 .lw,.flow-col:first-child h3 .status-label{color:var(--azure)!important}
.flow-col:last-child h3 .lw,.flow-col:last-child h3 .status-label{color:var(--jade)!important}

.universal h3 em { font-style: normal; font-weight: 500; color: var(--azure); }
.earned   h3 em { font-style: normal; font-weight: 500; color: var(--jade); }
.flow-col p {
  font-size: 1.08rem; letter-spacing: var(--track-body);
  color: var(--text-bright); line-height: var(--lh-body); margin-bottom: 0.7rem;
}
.flow-row {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(200,230,255,0.09);
  font-size: 0.9rem; letter-spacing: var(--track-body); color: var(--text-bright);
}
.flow-row:first-child { border-top: none; padding-top: 0; }
.flow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0; margin-top: 0.42rem;
}
.universal .flow-dot { background: var(--azure); }
.earned   .flow-dot { background: var(--jade); }
/* bioluminescent "flow" word glow */
.biolum-flow {
  background: linear-gradient(90deg, #00FFD0, #00B4FF, #80FFE8, #00D4AA, #00FFD0);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(0,212,200,0.5)) drop-shadow(0 0 16px rgba(0,180,255,0.2));
  font-variant-ligatures: none;
  letter-spacing: 0.045em;
}
@keyframes biolumPulse { from {} to {} }

.plus-line{
  text-align:center;color:var(--azure);font-size:.88rem;
  letter-spacing:var(--track-body);line-height:1.55;margin-top:1.2rem;
margin-bottom:1.55rem;}

.flow-note{
  margin-top:auto;
  font-size: 0.84rem; letter-spacing: 0.06em;
  padding: 0.9rem 1.1rem; border-radius: 12px;
  background: rgba(7, 18, 34, 0.96);
  border: 1px solid transparent;
  color: var(--text-meta);
  position: relative;
  z-index: 0;
}
.flow-note::after {
  content: '';
  position: absolute; inset: -1px; border-radius: 13px;
  background: linear-gradient(120deg, #00FFD0, #00B4FF, #9B59FE, #E040FB, #00D4AA, #00FFD0);
  background-size: 300% 300%;
  animation: gradShift 5s linear infinite;
  z-index: -1;
  /* punch out the interior so only the 1px line shows */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}

/* ═══ 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: var(--space-section-y) var(--space-section-x);
  position: relative; overflow: hidden;
}
.cta-fractal-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.3; pointer-events: none;
}
.cta-head { max-width: 980px; margin: 0 auto 3.5rem; text-align: center; position: relative; z-index: 2; }
.cta-head .section-p { margin-left: auto; margin-right: auto; text-align: center; }
.cta-head .section-h {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  white-space: normal;
}
.path-member  { color: var(--jade);   font-weight: 500; }
.path-partner { color: var(--azure);  font-weight: 500; }
.path-patron  { color: var(--amber);  font-weight: 500; }
.cta-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 2;
}
.cta-card {
  border-radius: 20px; padding: 1.4rem 2.2rem 2.8rem;
  text-decoration: none; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-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.38; transition: opacity 0.3s;
  pointer-events: none;
}
.cta-card:hover { transform: translateY(-6px); }
.cta-card:hover::before { opacity: 0.65; }
.accent-blue {
  background: linear-gradient(145deg, rgba(0,180,255,0.1), rgba(0,100,200,0.04), rgba(4,16,30,0.95));
  --c1: var(--azure); --c2: var(--violet);
}
.accent-green {
  background: linear-gradient(145deg, rgba(0,255,136,0.1), rgba(0,180,120,0.04), rgba(4,16,30,0.95));
  --c1: var(--jade); --c2: var(--teal);
}
.accent-gold {
  background: linear-gradient(145deg, rgba(255,179,0,0.1), rgba(255,100,0,0.04), rgba(4,16,30,0.95));
  --c1: var(--amber); --c2: var(--gold);
}
.cta-card:hover { box-shadow: 0 20px 60px -15px rgba(0,0,0, 0.95); }
.accent-blue:hover  { box-shadow: 0 20px 60px -15px rgba(0,180,255,0.25); }
.accent-green:hover { box-shadow: 0 20px 60px -15px rgba(0,255,136,0.22); }
.accent-gold:hover  { box-shadow: 0 20px 60px -15px rgba(255,179,0,0.22); }
.cta-n {
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 700; font-style: normal;
  line-height: 1; opacity: 0.95;
  flex-shrink: 0;
}
.accent-blue  .cta-n { color: var(--azure); }
.accent-green .cta-n { color: var(--jade); }
.accent-gold  .cta-n { color: var(--amber); }
.cta-card-header {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 0.8rem;
}
.cta-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700; font-style: normal;
  margin-bottom: 0; line-height: 1.25;
}
.accent-blue  .cta-card-header h3 { color: var(--azure); }
.accent-green .cta-card-header h3 { color: var(--jade); }
.accent-gold  .cta-card-header h3 { color: var(--amber); }
.cta-card p {
  font-size: 0.98rem; letter-spacing: var(--track-body);
  color: var(--text-body); line-height: var(--lh-body); margin-bottom: 1.5rem;
  flex: 1;
}
.cta-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem; border-radius: 999px;
  transition: all 0.2s;
  margin-top: auto; align-self: flex-start;
}
.accent-blue  .cta-pill { border: 1px solid var(--azure);  color: var(--azure); }
.accent-green .cta-pill { border: 1px solid var(--jade);   color: var(--jade); }
.accent-gold  .cta-pill { border: 1px solid var(--amber);  color: var(--amber); }
.accent-blue:hover  .cta-pill { border-color: #5dd8ff; color: #fff; background: rgba(0,180,255,0.15); }
.accent-green:hover .cta-pill { border-color: #5fffc8; color: #fff; background: rgba(0,212,170,0.15); }
.accent-gold:hover  .cta-pill { border-color: #ffd060; color: #fff; background: rgba(255,179,0,0.15); }
/* Role-colored Three Ways In badges */
.accent-green .cta-card-badge { border-color: rgba(0,255,136,0.38); background: rgba(0,255,136,0.07); }
.accent-green .cta-card-badge-coin { background: rgba(0,255,136,0.10); border-color: rgba(0,255,136,0.55); }
.accent-green .cta-card-badge-text { color: var(--jade); }
.accent-blue .cta-card-badge { border-color: rgba(0,180,255,0.38); background: rgba(0,180,255,0.07); }
.accent-blue .cta-card-badge-coin { background: rgba(0,180,255,0.10); border-color: rgba(0,180,255,0.60); }
.accent-blue .cta-card-badge-text { color: var(--azure); }
.accent-blue .cta-pill { border-color: rgba(0,180,255,0.72); color: var(--azure); background: rgba(0,180,255,0.06); }
.accent-gold .cta-card-badge { border-color: rgba(255,184,0,0.38); background: rgba(255,184,0,0.07); }
.accent-gold .cta-card-badge-coin { background: rgba(255,184,0,0.10); border-color: rgba(255,184,0,0.60); }
.accent-gold .cta-card-badge-text { color: #FFB800; }


/* Three Ways In badge icon scale */
.cta-card-badge-coin svg {
  width: 1.12rem !important;
  height: 1.12rem !important;
  display: block !important;
}
/* End Three Ways In badge icon scale */

/* Partner badge icon extra scale */
.accent-blue .cta-card-badge-coin svg {
  width: 1.28rem !important;
  height: 1.28rem !important;
}
/* End Partner badge icon extra scale */

.cta-card-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  align-self: flex-start;
  margin-bottom: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(255,215,0,0.38);
  border-radius: 999px;
  padding: 0.36rem 0.9rem 0.36rem 0.36rem;
  background: rgba(255,179,0,0.07);
}
.cta-card-badge-coin {
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  background: rgba(255,179,0,0.14);
  border: 1.5px solid rgba(255,215,0,0.60);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-card-badge-text {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #FFD700;
}
/* Genesis Member badge — jade+violet gradient border with inner pulse */
.cta-card-badge.is-genesis {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(7,18,34,0.85), rgba(7,18,34,0.85)) padding-box,
    linear-gradient(135deg, #00FF88 0%, #00D4AA 50%, #9B59FE 100%) border-box;
  
}
.cta-card-badge.is-genesis .cta-card-badge-coin {
  background: rgba(0,255,136,0.10);
  border: 1.5px solid rgba(0,255,136,0.55);
  position: relative;
}
.cta-card-badge.is-genesis .cta-card-badge-coin::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--jade);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4px var(--jade);
}
.cta-card-badge.is-genesis .cta-card-badge-text {
  color: var(--jade);
}
@keyframes genesisPulse {
  from { box-shadow: 0 0 0 0 rgba(0,255,136,0.05), 0 0 14px rgba(155,89,254,0.10); }
  to   { box-shadow: 0 0 0 2px rgba(0,255,136,0.04), 0 0 22px rgba(0,255,136,0.22), 0 0 30px rgba(155,89,254,0.18); }
}

/* ═══ PHASES ═══ */
.phases-section {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255,179,0,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255,100,0,0.06) 0%, transparent 50%),
    var(--ocean);
  padding: var(--space-section-y) var(--space-section-x); position: relative;
}
.phases-top {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; margin-bottom: 3.5rem; text-align: center;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.phases-top > *:last-child {
  text-align: center;
}
.phases-river { position: relative; max-width: 1080px; margin: 0 auto 3rem; }
.phases-river-svg {
  position: absolute; top: 28px; left: 0; right: 0;
  height: 40px; z-index: 0; pointer-events: none;
}
.phases-river-svg svg { width: 100%; height: 100%; display: block; }
.phases-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  position: relative; z-index: 2;
}
.phase {
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(200,230,255,0.09);
  border-radius: 16px; padding: 1.75rem 1.4rem 1.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
}
.phase p { flex: 1; }
.phase:hover { transform: translateY(-3px); box-shadow: 0 12px 40px -12px rgba(0,0,0,0.5); }
.phase.now {
  background: linear-gradient(145deg, rgba(255,179,0,0.15), rgba(255,100,0,0.08), rgba(7,22,41,0.95));
  border-color: rgba(255,179,0,0.28);
}
.phase.now:hover { box-shadow: 0 16px 50px -16px rgba(255,179,0,0.3); }
.phase-node {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ocean); border: 2px solid rgba(200,230,255,0.2);
  z-index: 3;
}
.phase.now .phase-node {
  background: var(--amber); border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(255,179,0,0.18);
  
}
@keyframes nodePulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(255,179,0,0.18); }
  50%     { box-shadow: 0 0 0 14px rgba(255,179,0,0.04); }
}
.phase-eye {
  font-size: 0.7rem; font-weight: 700; letter-spacing: var(--track-eyebrow);
  text-transform: uppercase; color: var(--text-body);
  margin-bottom: 0.75rem; padding-top: 0.3rem;
}
.phase.now .phase-eye { color: var(--amber); }
.phase h4 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 300; font-style: italic;
  color: var(--text-strong); margin-bottom: 0.55rem; line-height: 1.22;
}
.phase p {
  font-size: 0.82rem; letter-spacing: var(--track-body);
  color: var(--text-meta); line-height: var(--lh-snug); margin-bottom: 0.9rem;
}
.phase-bonus {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.69rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(255,179,0,0.12); color: var(--amber);
  border: 1px solid rgba(255,179,0,0.28);
  min-height: 26px;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 0.6rem;
}
.phase-bonus-neutral {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.69rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 11px; border-radius: 999px;
  background: transparent; color: var(--text-meta);
  border: 1px solid rgba(200,230,255,0.18);
  min-height: 26px;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 0.6rem;
}
.phase-note {
  font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--text-body); margin-top: 0.3rem; opacity: 1;
}
.phase.now .phase-note { color: rgba(255,179,0, 0.95); opacity: 1; }
.pts-head {
  font-size: 0.7rem; font-weight: 700; letter-spacing: var(--track-eyebrow);
  text-transform: uppercase; color: var(--cream-dim);
  margin: 3rem auto 1rem; max-width: 1080px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; max-width: 1080px; margin: 0 auto; }
.chip {
  background: rgba(200,230,255,0.04);
  border: 1px solid rgba(200,230,255,0.1);
  border-radius: 10px; padding: 0.5rem 0.9rem;
  font-size: 0.78rem; letter-spacing: 0.06em; color: var(--cream-mid);
  display: flex; align-items: center; gap: 7px;
  transition: border-color 0.2s;
}
.chip:hover { border-color: rgba(200,230,255,0.24); }
.chip strong { font-weight: 600; color: var(--cream); }
.chip.gold {
  background: rgba(255,179,0,0.06);
  border-color: rgba(255,179,0,0.22);
  color: var(--amber);
}
.chip.gold strong { color: var(--amber); }
.chip.gold:hover { border-color: var(--amber); }

/* ═══ ARTICLES ═══ */
.articles-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(155,89,254,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 20%, rgba(180,130,60,0.06) 0%, transparent 45%),
    linear-gradient(180deg, #0d0a07 0%, #100c08 40%, #0d0a07 100%);
  padding: var(--space-section-y) var(--space-section-x); position: relative;
}
.articles-head { text-align: center; max-width: 980px; margin: 0 auto 3rem; }
.articles-head .section-p { margin: 0 auto; }
.articles-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
  margin-top: 3rem; max-width: 920px; margin-left: auto; margin-right: auto;
}
.article {
  background:
    /* subtle vignette darkening at edges */
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(60,40,15,0.08) 100%),
    /* aged parchment — warmer and richer */
    linear-gradient(180deg, #ede0c0 0%, #e5d5a8 60%, #ddc99a 100%);
  border: 1px solid rgba(80,55,25,0.26);
  border-radius: 4px;
  padding: 2.4rem 2rem 2rem;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; display: block;
  color: #1a1208;
  position: relative; overflow: hidden;
  box-shadow:
    0 2px 0 rgba(60,40,15,0.12),
    0 16px 30px -10px rgba(0,0,0,0.55),
    0 30px 50px -25px rgba(0,0,0,0.40);
}
/* paper grain — visible on cream */
.article::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paperNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0 0.10 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paperNoise)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.18;
  pointer-events: none;
  border-radius: inherit;
  mix-blend-mode: multiply;
}
/* warm bottom underline animates on hover (newspaper-style) */
.article::after {
  content: '';
  position: absolute; bottom: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, #8a4a1a, #6b3a14);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.article:hover {
  transform: translateY(-4px) rotate(-0.25deg);
  box-shadow:
    0 2px 0 rgba(60,40,15,0.10),
    0 24px 40px -10px rgba(0,0,0,0.55),
    0 40px 60px -25px rgba(0,0,0,0.45);
}
.article:hover::after { width: 100%; }
.art-n {
  font-family: var(--title);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #6b3a14;
  margin-bottom: 1.4rem;
  padding-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}
/* Editorial double-rule — high contrast on cream */
.art-n::after {
  content: '';
  position: absolute; left: 0; bottom: 0; width: 100%; height: 4px;
  background:
    linear-gradient(to bottom,
      rgba(60,40,15,0.85) 0,
      rgba(60,40,15,0.85) 1px,
      transparent 1px,
      transparent 3px,
      rgba(60,40,15,0.55) 3px,
      rgba(60,40,15,0.55) 4px);
  pointer-events: none;
}
.article h4 {
  font-family: var(--serif);
  font-size: 1.55rem; font-weight: 600; font-style: italic;
  color: #130e06; margin-bottom: 1rem; line-height: 1.22;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.article p {
  font-size: 0.92rem; letter-spacing: 0.005em;
  color: rgba(15,8,2,0.97); line-height: 1.58; margin-bottom: 1.6rem;
  position: relative; z-index: 1;
}
.art-link {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #6b3a14;
  display: flex; align-items: center; gap: 6px;
  position: relative; z-index: 1;
}
.art-link::after { content:'→'; transition: transform 0.2s; }
.article:hover .art-link::after { transform: translateX(5px); }
.article:hover .art-link { color: #4a2509; }

/* ═══ OUTCOMES — Life / Liberty / Love ═══ */
.outcome-section {
  background: var(--void);
  padding: var(--space-section-y) var(--space-section-x); 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: var(--track-eyebrow);
  text-transform: uppercase; color: var(--text-meta);
  margin-bottom: 3rem; 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;
  pointer-events: none;
}
.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: var(--jade); --oc2: var(--teal);
}
.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: var(--azure); --oc2: var(--teal);
}
.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 h3 {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: var(--cream); margin-bottom: 0.65rem; line-height: 1.1;
}
.outcome-cell p {
  font-size: 0.94rem; letter-spacing: var(--track-body);
  color: var(--text-bright); line-height: var(--lh-body);
}

/* ═══ QUOTE ═══ */
.quote-section {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,215,0,0.07) 0%, transparent 60%),
    var(--abyss);
  text-align: center; padding: var(--space-section-y) var(--space-section-x);
  position: relative; overflow: hidden;
}
.quote-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05; }
.qm {
  color: var(--amber);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3em;
  line-height: 0;
  margin: 0 0.06em;
  vertical-align: -0.12em;
  opacity: 0.85;
}
.qtext {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  color: var(--text-strong);
  line-height: var(--lh-snug); max-width: 820px;
  margin: 0 auto 1.8rem; letter-spacing: 0.01em;
  position: relative; z-index: 2;
}
.qattr {
  font-size: 0.7rem; letter-spacing: var(--track-eyebrow); text-transform: uppercase;
  color: var(--text-meta); position: relative; z-index: 2;
}
.qattr em { color: var(--amber); font-style: normal; font-weight: 600; }

/* ═══ 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-label { display: none; }
.f-col a:hover { color: var(--teal); }
.f-col a:hover .f-label { 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; }
}

/* ═══ PHASE COUNTDOWN ═══ */
.phase-countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; margin: 1.5rem auto 0;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.pcd-card {
  background: rgba(40, 20, 0, 0.75);
  border: 1px solid rgba(255,179,0,0.3);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  text-align: center;
  min-width: 90px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pcd-card:hover {
  border-color: rgba(255,179,0,0.45);
  box-shadow: 0 8px 32px -8px rgba(255,179,0,0.18);
}
.pcd-num {
  font-family: var(--serif);
  font-size: 42px; font-weight: 600;
  line-height: 1; margin-bottom: 0.3rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}
/* date variant: the "Aug 31" card reads as a date, not a counter — keep size diff to fit "Aug 31", but match background/border with the other cards */
.pcd-card.is-date .pcd-num {
  font-size: 22px;
  margin-top: 9px;
  margin-bottom: 9px;
  color: var(--amber);
}
.pcd-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase;
  color: var(--amber);
}
.pcd-sep {
  color: rgba(200,230,255,0.18);
  font-size: 1.2rem; line-height: 1;
  align-self: center;
}
.pcd-eyebrow {
  text-align: center; font-size: 0.7rem; font-weight: 700;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase;
  color: rgba(255,179,0,0.55);
  margin-bottom: 0.4rem;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.pcd-eyebrow::before, .pcd-eyebrow::after {
  content: ''; width: 32px; height: 1px;
  background: rgba(255,179,0,0.25);
}

@media (max-width: 600px) {
  .phase-countdown {
    gap: 0.4rem;
  }
  .pcd-card {
    min-width: 70px;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
  }
  .pcd-num {
    font-size: 28px;
    margin-bottom: 0.2rem;
  }
  .pcd-card.is-date .pcd-num {
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .pcd-label {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .pcd-sep {
    font-size: 0.9rem;
  }
}

/* ═══ SCROLL REVEAL ═══ */
/* Default: fully visible — works in WhatsApp, iMessage, any JS-blocked environment */
.reveal { opacity: 1; transform: none; }
/* JS adds .js-ready to <html> before observing — only then do sections animate in */
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal,
  .js-ready .reveal.visible { opacity: 1; transform: none; transition: none; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .articles-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  section { padding: 5rem 1.25rem; }
  .games-split, .concept-grid, .flows-grid-inner, .cta-cards,
  .outcome-grid, .phases-top, .phases-grid,
  .footer-top { grid-template-columns: 1fr; gap: 12px; }
  .articles-grid { grid-template-columns: 1fr; }
  .flows-grid { grid-template-columns: 1fr; border-radius: 16px; }
  .flow-col + .flow-col { border-left: none; border-top: 1px solid rgba(0,212,170,0.1); }
  .game-a { border-radius: 20px; border: 1px solid rgba(255,51,102,0.18); }
  .yinyang-curve { display: none; }
  .flows-grid { padding: 1.5px; }
  .flows-grid-inner { grid-template-columns: 1fr; }
  .phases-river-svg { display: none; }
  .phase-node { display: none; }
  .f-brand h3 { flex-wrap: wrap; }
  .wave-divider { height: 14px; }

  /* ── Mobile card padding: match roadmap (1.75rem 1.4rem) ── */
  .flow-col { padding: 1.6rem 1.25rem 2rem; }
  .game-panel { padding: 1.75rem 1.4rem 1rem; }
  .game-a { padding-bottom: 1rem; }
  .game-b { padding-bottom: 1.6rem; border-radius: 20px; border: 1px solid rgba(0,212,170,0.18); }
  .concept-card { padding: 1.75rem 1.4rem; }
}
/* ═══ NAV / REPAINT STABILITY PATCH ═══
   Prevent section reveal animations and looping decorative animations from visually refreshing through the fixed nav. */
nav::after { pointer-events: none; transform: translateZ(0); }
.reveal { scroll-margin-top: 96px; }
.js-ready .reveal { will-change: opacity, transform; }
.js-ready .reveal.visible { will-change: auto; }
.grad-text, .grad-text-warm, .biolum-flow {
  will-change: background-position;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.wave-divider {
  contain: paint;
  isolation: isolate;
  transform: translateZ(0);
}
.wave-divider svg,
.wave-path,
.wave-path-2,
.wave-path-3,
.wave-color-mid,
.wave-color-mid2 {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.game-a::before,
.game-b::before,
.story-today::before,
.story-new::before,
.hero-countdown,
.hcd-pulse,
.scroll-caret {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}



.hero { isolation: isolate; }
.hero-content { z-index: 4; }

/* Homepage-only wave seam repair.
   The top hero divider and footer seam are intentionally left alone by only
   tightening standalone mid-page transition elements. */
main > [class*="wave"]:not(:first-child):not(:last-child),
main > [class*="divider"]:not(:first-child):not(:last-child),
main > [class*="transition"]:not(:first-child):not(:last-child) {
  background: transparent !important;
  line-height: 0 !important;
  overflow: hidden !important;
  margin-top: -1px !important;
  margin-bottom: -1px !important;
}

main > [class*="wave"]:not(:first-child):not(:last-child) svg,
main > [class*="divider"]:not(:first-child):not(:last-child) svg,
main > [class*="transition"]:not(:first-child):not(:last-child) svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  transform: translateY(-1px) scaleY(1.035) !important;
  transform-origin: center !important;
}

@keyframes home-firefly-drift-a { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(18vw,-24vh) scale(.9);} 100%{transform:translate(38vw,-42vh) scale(1);} }
@keyframes home-firefly-drift-b { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(-20vw,18vh) scale(1.1);} 100%{transform:translate(-44vw,32vh) scale(1);} }
@keyframes home-firefly-drift-c { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(12vw,-36vh) scale(1.08);} 100%{transform:translate(-16vw,-54vh) scale(1);} }
@keyframes home-firefly-blink { 0%,100%{opacity:.1;} 25%{opacity:.85;} 50%{opacity:.28;} 75%{opacity:.72;} }

.firefly-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(.2px);
  animation: home-firefly-drift-a 42s ease-in-out infinite, home-firefly-blink 6s ease-in-out infinite;
}

.ff-gold { background: radial-gradient(circle, rgba(255,215,0,.95) 0%, rgba(255,215,0,0) 70%); box-shadow: 0 0 8px rgba(255,215,0,.6), 0 0 16px rgba(255,215,0,.3); }
.ff-jade { background: radial-gradient(circle, rgba(0,255,136,.95) 0%, rgba(0,255,136,0) 70%); box-shadow: 0 0 8px rgba(0,255,136,.5), 0 0 16px rgba(0,255,136,.25); }
.ff-azure { background: radial-gradient(circle, rgba(0,180,255,.95) 0%, rgba(0,180,255,0) 70%); box-shadow: 0 0 8px rgba(0,180,255,.5), 0 0 16px rgba(0,180,255,.25); }
.ff-violet { background: radial-gradient(circle, rgba(155,89,254,.95) 0%, rgba(155,89,254,0) 70%); box-shadow: 0 0 8px rgba(155,89,254,.55), 0 0 16px rgba(155,89,254,.28); }
.ff-teal { background: radial-gradient(circle, rgba(0,212,170,.95) 0%, rgba(0,212,170,0) 70%); box-shadow: 0 0 8px rgba(0,212,170,.55), 0 0 16px rgba(0,212,170,.28); }
.ff-magenta { background: radial-gradient(circle, rgba(224,64,251,.95) 0%, rgba(224,64,251,0) 70%); box-shadow: 0 0 8px rgba(224,64,251,.5), 0 0 16px rgba(224,64,251,.25); }
.ff-amber { background: radial-gradient(circle, rgba(255,179,0,.95) 0%, rgba(255,179,0,0) 70%); box-shadow: 0 0 8px rgba(255,179,0,.55), 0 0 16px rgba(255,179,0,.28); }
.ff-rose { background: radial-gradient(circle, rgba(255,105,180,.95) 0%, rgba(255,105,180,0) 70%); box-shadow: 0 0 8px rgba(255,105,180,.5), 0 0 16px rgba(255,105,180,.25); }

.f-1{left:15%;top:60%;}.f-2{left:75%;top:25%;animation-name:home-firefly-drift-b,home-firefly-blink;animation-delay:-12s,-2s;}.f-3{left:50%;top:80%;animation-name:home-firefly-drift-c,home-firefly-blink;animation-delay:-28s,-4s;}.f-4{left:30%;top:35%;animation-delay:-7s,-1s;}.f-5{left:62%;top:55%;animation-name:home-firefly-drift-b,home-firefly-blink;animation-delay:-34s,-3s;}.f-6{left:88%;top:72%;animation-name:home-firefly-drift-c,home-firefly-blink;animation-delay:-5s,-1.5s;}.f-7{left:8%;top:18%;animation-delay:-19s,-3.5s;}.f-8{left:44%;top:42%;animation-name:home-firefly-drift-b,home-firefly-blink;animation-delay:-9s,-.8s;}.f-9{left:22%;top:88%;animation-name:home-firefly-drift-c,home-firefly-blink;animation-delay:-40s,-2.2s;}.f-10{left:68%;top:10%;animation-delay:-15s,-4.5s;}.f-11{left:5%;top:50%;animation-name:home-firefly-drift-b,home-firefly-blink;animation-delay:-48s,-1.2s;}.f-12{left:82%;top:45%;animation-name:home-firefly-drift-c,home-firefly-blink;animation-delay:-22s,-3.8s;}.f-13{left:38%;top:15%;animation-delay:-31s,-.5s;}.f-14{left:56%;top:68%;animation-name:home-firefly-drift-b,home-firefly-blink;animation-delay:-17s,-2.8s;}.f-15{left:92%;top:32%;animation-name:home-firefly-drift-c,home-firefly-blink;animation-delay:-3s,-1.8s;}

/* Restore homepage layers section proportions after copy rewrite */
.flows-section > .container {
  max-width: 1360px !important;
}

.flows-section .flows-head {
  max-width: 840px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.flows-section .flows-head .section-p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.flows-section .flows-grid {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.flows-section .flows-grid-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

.flows-section .flow-col {
  min-width: 0 !important;
}

/* Tighten Flow & Credit title spacing in homepage layers section */
.flows-section .flow-col.universal .flow-title-row {
  gap: 0.85rem !important;
}

.flows-section .flow-col.universal .flow-icon {
  margin-right: 0 !important;
}

/* Make only the active Points layer bioluminescent in the AYU layers heading */
.flows-section .layers-active-word {
  background: linear-gradient(90deg, var(--teal), var(--jade), var(--azure));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s linear infinite;
}

/* Tighten icon-to-title spacing in homepage layers cards */
.flows-section .flow-title-row {
  gap: 0.55rem !important;
}

.flows-section .flow-col .flow-icon {
  margin-right: -0.08rem !important;
  flex-shrink: 0 !important;
}

.flows-section .flow-col.universal .flow-icon {
  margin-right: -0.18rem !important;
}

/* Pull homepage layers card titles closer to their icons */
.flows-section .flow-title-row h3 {
  margin-left: -0.35rem !important;
}

.flows-section .flow-col.universal .flow-title-row h3 {
  margin-left: -0.65rem !important;
}

/* AYU panel status label override */
.flows-section .flow-col h3,
.flows .flow-col h3 {
  line-height: 1.08 !important;
}

.flows-section .flow-col h3 .lw,
.flows-section .flow-col h3 .status-label,
.flows .flow-col h3 .lw,
.flows .flow-col h3 .status-label {
  display: inline !important;
  font-family: var(--sans) !important;
  font-size: 0.7rem !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: var(--track-eyebrow) !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  vertical-align: baseline !important;
}

.flows-section .flow-col:first-child h3 .lw,
.flows-section .flow-col:first-child h3 .status-label,
.flows .flow-col:first-child h3 .lw,
.flows .flow-col:first-child h3 .status-label {
  color: var(--jade) !important;
}

.flows-section .flow-col:last-child h3 .lw,
.flows-section .flow-col:last-child h3 .status-label,
.flows .flow-col:last-child h3 .lw,
.flows .flow-col:last-child h3 .status-label {
  color: var(--azure) !important;
}
@media (max-width: 760px) {
}
/* End Roadmap intro width override */

/* Three Ways In countdown spacing */
.cta-head + .pcd-eyebrow {
  margin-top: 1.25rem !important;
  margin-bottom: 1.05rem !important;
}
.cta-head + .pcd-eyebrow + .phase-countdown {
  margin-bottom: 3.1rem !important;
}
@media (max-width: 760px) {
  .cta-head + .pcd-eyebrow + .phase-countdown {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 760px) {
}
/* End Force Roadmap subtext width */

/* BEGIN HOMEPAGE AYU PIN AND INTRO WIDTHS */
.homepage-ayu-creditism-pin-blue {
  color: #00B4FF !important;
}

.homepage-ayu-creditism-pin-blue::before {
  background: rgba(0,180,255,.72) !important;
  border-color: rgba(0,180,255,.35) !important;
}
@media (max-width: 768px) {
}
/* END HOMEPAGE ROADMAP FINAL WIDTH */

/* CP home substack series panel v2026-06-26 */
.articles-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(155,89,254,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 20%, rgba(180,130,60,0.06) 0%, transparent 45%),
    linear-gradient(180deg, #0d0a07 0%, #100c08 40%, #0d0a07 100%);
  padding: var(--space-section-y) var(--space-section-x);
  position: relative;
}

.articles-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.articles-head .eyebrow {
  justify-content: center;
  margin-bottom: var(--space-after-eyebrow);
}

.articles-head .section-h {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.articles-head .section-p.section-subtext-wide {
  max-width: 660px;
  width: min(660px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.articles-cta {
  margin-top: 2.35rem;
}

@media (max-width: 720px) {
  .articles-section {
    padding: 5rem 1.25rem;
  }

  .articles-head .section-h {
    max-width: 100%;
  }

  .articles-cta {
    margin-top: 2rem;
  }
}
/* end CP home substack series panel */


