*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --red:   #BF2318;
  --blue:  #1A6FAD;
  --green: #1E8C4E;
  --white: #F4F0E8;
  --void:  #050505;
  --glass: rgba(244,240,232,0.04);
  --glass-border: rgba(244,240,232,0.09);
  --glass-border-bright: rgba(244,240,232,0.18);
}

body {
  background: var(--void);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: auto;
}

/* ── CURSOR ── */
#cur { display:none !important; }
#cur-o { display:none !important; }

/* ── NOISE TEXTURE ── */
body::after {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028; mix-blend-mode: overlay;
}

/* ── NAV ── */
nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 800;
  width: calc(100% - 48px);
  max-width: 1360px;
  padding: 0;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
nav.scrolled {
  background: none;
}

/* Hamburger button */
.nav-burger {
  width: 36px; height: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  padding: 0; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(244,240,232,0.7);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.nav-burger:hover span { background: var(--white); }
/* Open state */
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dropdown menu */
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: rgba(8,8,7,0.96);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(244,240,232,0.1);
  border-radius: 10px;
  padding: 8px;
  min-width: 200px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.nav-dropdown.open {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,240,232,0.9); text-decoration: none;
  padding: 10px 14px; border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-dropdown a:hover { background: rgba(244,240,232,0.06); color: var(--white); }

/* CTA button — right side */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.nav-cta {
  font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color: var(--white); text-decoration: none;
  background: transparent;
  backdrop-filter: blur(12px);
  padding: 8px 20px; border-radius: 6px; flex-shrink: 0;
  position: relative;
  border: none;
  transition: color .3s;
  isolation: isolate;
  cursor: pointer;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 7px;
  background: conic-gradient(from var(--border-angle),
    #1e1e1e 0%,
    #787878 5%,
    #d8d8d8 10%,
    #ffffff 14%,
    #fff6d0 18%,
    #ffd700 22%,
    #c09820 27%,
    #706838 32%,
    #606060 37%,
    #80aac8 42%,
    #b0ccec 47%,
    #ffffff 51%,
    #d4b8ee 55%,
    #b090dc 59%,
    #d8a0bc 64%,
    #ecc0cc 68%,
    #ffffff 72%,
    #dcdcdc 76%,
    #989898 82%,
    #404040 88%,
    #1e1e1e 93%,
    #404040 97%,
    #1e1e1e 100%
  );
  animation: navBorderSpin 2.5s linear infinite;
  z-index: -1;
}
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(7,7,6,0.94);
  z-index: -1;
}
@keyframes navBorderSpin {
  to { --border-angle: 360deg; }
}
.nav-cta.vault-denied {
  color: #c0392b !important;
  letter-spacing: .18em;
}
.nav-cta:hover { color: rgba(244,240,232,0.9); }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex; align-items: center; gap: 1px;
  position: absolute; left: 50%; transform: translateX(-50%);
  background: rgba(244,240,232,0.07);
  border: 1px solid rgba(244,240,232,0.15);
  border-radius: 5px;
  padding: 2px;
}
.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  background: none; border: none; cursor: pointer;
  padding: 5px 14px; border-radius: 3px;
  transition: color .2s, background .2s;
}
.lang-btn:hover { color: var(--white); background: rgba(244,240,232,0.08); }
.lang-btn.active {
  color: var(--void);
  background: var(--white);
}

/* Language row inside mobile dropdown — hidden on desktop */
.nav-lang-row { display: none; }

/* ── RTL (Arabic) overrides ── */
[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] p, [dir="rtl"] a, [dir="rtl"] button,
[dir="rtl"] span, [dir="rtl"] li, [dir="rtl"] blockquote {
  font-family: 'Cairo', sans-serif;
}
[dir="rtl"] .nav-dropdown { left: auto; right: 0; }
[dir="rtl"] .about-stat { padding-left: 0; padding-right: 36px; border-left: none; border-right: 1px solid rgba(244,240,232,0.1); }
[dir="rtl"] .about-stat:first-child { border-right: none; }
[dir="rtl"] .np-dropcap { float: right; margin: 0 0 4px 10px; }
[dir="rtl"] .g-info-left { text-align: right; }
[dir="rtl"] .foot-links { text-align: right; }

/* Arabic body font */
[dir="rtl"] { font-family: 'Cairo', sans-serif; }

/* ── HERO ── */
#hero {
  position:relative; min-height:100vh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  overflow:hidden; background:#050505;
}

/* ───── PAINT STAGE — multilayered vibrant art explosion ───── */
.hero-mesh {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  overflow:hidden;
}

/* Orbs removed */
.hero-orb { display:none !important; }

/* Hero: particles only — all other added layers removed */
.hero-splash, .hero-brush, .splash-stain, .splash-drip-anim,
.splash-stain-2, .splash-stain-3, .splash-stain-4, .splash-stain-5,
.splash-drip-anim-2, .splash-drip-anim-3, .splash-drip-anim-4 {
  display:none !important;
}

/* ───── FLOATING COLOR PARTICLES ───── */
.hero-particles {
  position:absolute; inset:0; z-index:2; pointer-events:none;
  overflow:hidden;
}
.hero-particle {
  position:absolute;
  width:6px; height:6px;
  border-radius:50%;
  filter:blur(1px);
  opacity:.7;
  will-change:transform;
  animation:floatParticle 10s ease-in-out infinite;
  mix-blend-mode:screen;
}
@keyframes floatParticle {
  0%   { transform:translate(0,0) scale(1); opacity:0; }
  10%  { opacity:.85; }
  50%  { transform:translate(var(--dx,40px),var(--dy,-60px)) scale(1.3); opacity:.7; }
  90%  { opacity:.6; }
  100% { transform:translate(calc(var(--dx,40px)*2),calc(var(--dy,-60px)*2)) scale(.8); opacity:0; }
}

/* Vignette to keep edges slightly darker for readability */
.hero-vignette {
  position:absolute; inset:0; z-index:3; pointer-events:none;
  background:radial-gradient(ellipse 75% 75% at 50% 50%, transparent 35%, rgba(5,5,5,0.55) 100%);
}

/* Fine grain overlay */
.hero-grain {
  position:absolute; inset:0; pointer-events:none; z-index:4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity:0.04; mix-blend-mode:overlay;
}

/* Brush removed */
.hero-brush { display:none !important; }

.hero-content {
  position:relative; z-index:10;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
  animation: heroIn 1.6s cubic-bezier(.16,1,.3,1) forwards; opacity:0;
}
@keyframes heroIn { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

/* Hero logo — real image, black bg removed via mix-blend-mode */
.hero-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
.hero-logo-img {
  width: clamp(280px, 42vw, 640px);
  height: auto;
  
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Typewriter subtitle */
.hero-sub {
  font-family:'Syne',sans-serif;
  font-size:clamp(11px,1.2vw,14px);
  font-weight:500; letter-spacing:.35em; text-transform:uppercase;
  color: rgba(244,240,232,0.9);
  margin-top:12px; margin-bottom:28px;
  height:20px;
}
.tw-word { display:inline; }
.tw-word.red   { color:var(--red); }
.tw-word.blue  { color:var(--blue); }
.tw-word.green { color:var(--green); }
.tw-cursor { display:inline-block; width:2px; height:14px; background:var(--white); vertical-align:middle; margin-left:3px; animation:blink .9s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-pills {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}
.pill {
  font-family:'Syne',sans-serif;
  font-size:10px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  padding:11px 26px; border-radius:999px;
  text-decoration:none; cursor:pointer;
  display:inline-flex; align-items:center; gap:10px;
  transition:all .3s cubic-bezier(.16,1,.3,1);
}
.pill-solid {
  background:var(--white); color:var(--void);
  border:1px solid var(--white);
}
.pill-solid:hover { background:transparent; color:var(--white); transform:translateY(-2px); }
.pill-glass {
  background:var(--glass); color:var(--white);
  border:1px solid var(--glass-border-bright);
  backdrop-filter:blur(16px);
}
.pill-glass:hover { background:rgba(244,240,232,0.09); border-color:rgba(244,240,232,0.3); transform:translateY(-2px); }

/* ── SECTIONS ── */
section { position:relative; }
.wrap { max-width:1280px; margin:0 auto; padding:0 48px; }

/* Reveal */
.reveal { opacity:0; transform:translateY(36px); transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.12s; }
.reveal.d2 { transition-delay:.24s; }
.reveal.d3 { transition-delay:.36s; }

/* ── DIM / HIGHLIGHT SYSTEM ── */
.dim   { color: rgba(244,240,232,0.9); }
.hl-r  { color: var(--red); }
.hl-b  { color: var(--blue); }
.hl-g  { color: var(--green); }
.hl-w  { color: var(--white); }

/* ── about-kicker (preserved — used in #token, #structure, #cta) ── */
.about-kicker {
  font-size:9px; font-weight:700; letter-spacing:.3em; text-transform:uppercase;
  color: rgba(244,240,232,0.9); margin-bottom:18px;
  display:flex; align-items:center; gap:12px;
}
.about-kicker::before { content:''; width:20px; height:1px; background:rgba(244,240,232,0.2); }

/* ══════════════════════════════════════════
   ABOUT LEGXIS
══════════════════════════════════════════ */
#about {
  padding:120px 0 100px;
  background:#050505;
  position:relative;
}

/* Header */
.about-header { margin-bottom:64px; }
.about-eyebrow {
  font-family:'Montserrat',sans-serif;
  font-size:9px; font-weight:700; letter-spacing:.35em; text-transform:uppercase;
  color: rgba(244,240,232,0.9); margin-bottom:24px;
  display:flex; align-items:center; gap:12px;
}
.about-eyebrow::before { content:''; width:20px; height:1px; background:rgba(244,240,232,0.25); }
.about-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(26px,4vw,58px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.02em; line-height:.9;
  color:var(--white);
}

/* Body two columns */
.about-body-row {
  display:grid; grid-template-columns:1fr 1fr; gap:56px;
  margin-bottom:64px;
}
.about-col p {
  font-size:clamp(13px,1.2vw,15px); line-height:1.85;
  color: rgba(244,240,232,0.9);
}

/* Stats */
.about-stats-row {
  display:flex; gap:0;
  border-top:1px solid rgba(244,240,232,0.1);
  border-bottom:1px solid rgba(244,240,232,0.1);
  margin-bottom:0;
}
.about-stat {
  flex:1; padding:32px 0 32px 36px;
  display:flex; flex-direction:column; gap:6px;
  border-right:1px solid rgba(244,240,232,0.1);
}
.about-stat:last-child { border-right:none; }
.about-stat-n {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(26px,3vw,42px); font-weight:900;
  letter-spacing:-.01em; line-height:1; color:var(--white);
}
.about-stat-l {
  font-family:'Montserrat',sans-serif;
  font-size:9px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color: rgba(244,240,232,0.9);
}

/* Philosophy */
/* ── PHILOSOPHY CARDS ── */
.phil-cards {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; padding-bottom:120px;
}
.phil-card {
  position:relative; overflow:hidden;
  border-radius:8px;
  padding:48px 36px 44px;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,0.08);
  cursor:default;
  transition:border-color .4s, transform .4s cubic-bezier(.16,1,.3,1);
}
.phil-card:hover { transform:translateY(-4px); }

/* Per-card gradient colour */
.phil-card-1 { border-top:1px solid rgba(191,35,24,0.4); }
.phil-card-2 { border-top:1px solid rgba(26,111,173,0.5); }
.phil-card-3 { border-top:1px solid rgba(30,140,78,0.4); }
.phil-card-1:hover { border-color:rgba(191,35,24,0.6); }
.phil-card-2:hover { border-color:rgba(26,111,173,0.7); }
.phil-card-3:hover { border-color:rgba(30,140,78,0.6); }

/* Bottom glow */
.phil-card-glow {
  position:absolute; bottom:-60px; left:50%;
  transform:translateX(-50%);
  width:200px; height:120px;
  border-radius:50%;
  filter:blur(40px);
  opacity:.35;
  transition:opacity .4s;
  pointer-events:none;
}
.phil-card:hover .phil-card-glow { opacity:.6; }
.phil-card-1 .phil-card-glow { background:var(--red); }
.phil-card-2 .phil-card-glow { background:var(--blue); }
.phil-card-3 .phil-card-glow { background:var(--green); }

/* Shine sweep on hover */
.phil-card-shine {
  position:absolute; top:0; left:-100%; bottom:0;
  width:60%;
  background:linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  transition:left .6s cubic-bezier(.16,1,.3,1);
  pointer-events:none;
}
.phil-card:hover .phil-card-shine { left:140%; }

/* Large ghosted number */
.phil-card-num {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:120px; font-weight:900; line-height:1;
  color:rgba(255,255,255,0.04);
  position:absolute; top:-10px; right:-8px;
  pointer-events:none; user-select:none;
  transition:color .4s;
}
.phil-card:hover .phil-card-num { color:rgba(255,255,255,0.07); }

/* Content */
.phil-card-inner { position:relative; z-index:2; }
.phil-card-title {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(20px,2vw,26px); font-weight:900;
  text-transform:uppercase; letter-spacing:.01em; line-height:1.05;
  margin-bottom:18px;
}
.phil-card-1 .phil-card-title { color:var(--white); }
.phil-card-2 .phil-card-title { color:var(--white); }
.phil-card-3 .phil-card-title { color:var(--white); }
.phil-card-text {
  font-size:13px; line-height:1.82; color: rgba(244,240,232,0.9);
}

/* Mobile */
@media(max-width:860px) {
  .about-body-row { grid-template-columns:1fr; gap:24px; }
  .about-stats-row { flex-wrap:wrap; }
  .about-stat { flex:0 0 50%; border-right:none; border-bottom:1px solid rgba(244,240,232,0.1); padding:24px 0 24px 24px; }
  .about-stat:nth-child(odd) { border-right:1px solid rgba(244,240,232,0.1); }
  .phil-cards { grid-template-columns:1fr; gap:14px; padding-bottom:72px; }
  #philosophy { padding:72px 0 0; }
  .phil-head { margin-bottom:40px; }
}


/* ══ PHILOSOPHY SECTION ══ */
#philosophy {
  padding:120px 0 0;
  background:#050505;
}
.phil-head {
  margin-bottom:64px;
}
.phil-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(26px,4vw,54px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.02em; line-height:.9;
  color:var(--white); margin-top:18px;
}

/* ══════════════════════════════════════════
   SECTION SEPARATOR
══════════════════════════════════════════ */
.section-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 64px 0;
  background: var(--void);
}
.sep-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sep-r {
  background: #BF2318;
  box-shadow: 0 0 18px rgba(191,35,24,0.8), 0 0 6px rgba(191,35,24,1);
}
.sep-b {
  background: #1A6FAD;
  box-shadow: 0 0 18px rgba(26,111,173,0.8), 0 0 6px rgba(26,111,173,1);
}
.sep-g {
  background: #1E8C4E;
  box-shadow: 0 0 18px rgba(30,140,78,0.8), 0 0 6px rgba(30,140,78,1);
}

/* ══════════════════════════════════════════
   SECTION 2: #spvs — THE SPV PORTFOLIO
══════════════════════════════════════════ */
#spvs {
  position:relative;
  padding:0;
  background:#F0EDE6;
  overflow:hidden;
}
.spvs-head {
  margin-bottom:64px;
}
.spvs-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(26px,4vw,58px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.02em; line-height:.9;
  color:#0A0A0A;
}

/* ── ROW LIST ── */
.spvs-list {
  display:flex; flex-direction:column;
  border-top:1px solid rgba(0,0,0,0.12);
}
.spv-tile {
  display:grid;
  grid-template-columns: 52px 3px minmax(160px,1fr) minmax(200px,1.4fr) 160px 44px;
  align-items:center;
  gap:32px;
  padding:32px 0;
  border-bottom:1px solid rgba(0,0,0,0.12);
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
/* Hover sweep — colour shifts left to right */
.spv-tile::before {
  content:'';
  position:absolute; left:0; top:0; bottom:0;
  width:0;
  transition:width .35s cubic-bezier(.16,1,.3,1);
  pointer-events:none;
  z-index:0;
}
.spv-tile[data-color="blue"]::before  { background:linear-gradient(90deg, rgba(26,111,173,0.12) 0%, transparent 100%); }
.spv-tile[data-color="green"]::before { background:linear-gradient(90deg, rgba(30,140,78,0.12) 0%, transparent 100%); }
.spv-tile[data-color="red"]::before   { background:linear-gradient(90deg, rgba(191,35,24,0.12) 0%, transparent 100%); }
.spv-tile[data-color="amber"]::before { background:linear-gradient(90deg, rgba(184,137,42,0.12) 0%, transparent 100%); }
.spv-tile:hover::before { width:100%; }
.spv-tile > * { position:relative; z-index:1; }

/* Index number */
.spv-idx {
  font-family:'Montserrat',sans-serif;
  font-size:11px; font-weight:700; letter-spacing:.18em;
  color:rgba(0,0,0,0.28);
  transition:color .25s;
  text-align:center;
}
.spv-tile:hover .spv-idx { color:#0A0A0A; }

/* Accent bar — always visible, brightens on hover */
.spv-bar {
  width:3px; height:40px; border-radius:2px;
  background:rgba(0,0,0,0.15);
  transition:background .25s, height .3s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.spv-tile:hover .spv-bar { height:56px; }
.spv-tile[data-color="blue"]:hover  .spv-bar { background:#1A6FAD; box-shadow:0 0 12px rgba(26,111,173,0.6); }
.spv-tile[data-color="green"]:hover .spv-bar { background:#1E8C4E; box-shadow:0 0 12px rgba(30,140,78,0.6); }
.spv-tile[data-color="red"]:hover   .spv-bar { background:#BF2318; box-shadow:0 0 12px rgba(191,35,24,0.6); }
.spv-tile[data-color="amber"]:hover .spv-bar { background:#B8892A; box-shadow:0 0 12px rgba(184,137,42,0.6); }

/* Name + liner */
.spv-name-wrap { min-width:0; }
.spv-tile-name {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(24px,2.4vw,36px); font-weight:900;
  text-transform:uppercase; letter-spacing:.01em; line-height:1;
  color:#0A0A0A;
  transition:color .25s;
}
.spv-tile:hover .spv-tile-name { color:#0A0A0A; }
.spv-tile-liner {
  font-size:12px; color:rgba(0,0,0,0.5);
  margin-top:7px; line-height:1.55;
  transition:color .25s;
}
.spv-tile:hover .spv-tile-liner { color:#0A0A0A; }

.spv-tile-liner { display:none; }
.spv-tile-desc {
  font-size:12px; color:rgba(0,0,0,0.5);
  line-height:1.7;
  transition:color .25s;
}
.spv-tile:hover .spv-tile-desc { color:#0A0A0A; }

/* Status */
.spv-status {
  display:inline-flex; align-items:center; gap:6px;
  font-family:'Montserrat',sans-serif;
  font-size:8px; font-weight:700; letter-spacing:.28em; text-transform:uppercase;
  padding:5px 12px; border-radius:999px;
  white-space:nowrap;
}
.spv-status::before { content:''; width:5px; height:5px; border-radius:50%; flex-shrink:0; }
.spv-status.s-active   { background:rgba(30,140,78,0.1); color:#1A7A42; border:1px solid rgba(30,140,78,0.3); }
.spv-status.s-active::before  { background:#1A7A42; box-shadow:0 0 6px rgba(30,140,78,0.5); }
.spv-status.s-dev      { background:rgba(26,111,173,0.1); color:#155FA0; border:1px solid rgba(26,111,173,0.3); }
.spv-status.s-dev::before     { background:#155FA0; box-shadow:0 0 6px rgba(26,111,173,0.5); }
.spv-status.s-planning { background:rgba(184,137,42,0.1); color:#8A6018; border:1px solid rgba(184,137,42,0.3); }
.spv-status.s-planning::before{ background:#8A6018; box-shadow:0 0 6px rgba(184,137,42,0.5); }

/* Arrow */
.spv-arrow {
  width:40px; height:40px; border-radius:50%;
  background:rgba(0,0,0,0.05);
  border:1px solid rgba(0,0,0,0.18);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; overflow:hidden; position:relative;
  transition:border-color .25s, box-shadow .25s, background .25s;
}
.spv-arrow svg {
  width:16px; height:16px;
  stroke:rgba(0,0,0,0.45);
  transition:stroke .25s, transform .25s cubic-bezier(.16,1,.3,1);
}
.spv-tile:hover .spv-arrow {
  border-color:rgba(0,0,0,0.4);
  box-shadow:0 0 16px rgba(0,0,0,0.08);
  background:rgba(0,0,0,0.08);
}
.spv-tile:hover .spv-arrow svg {
  stroke:#0A0A0A;
  transform:translate(3px,-3px);
}

/* ── DETAIL OVERLAY ── */
.spv-overlay {
  position:fixed; inset:0; z-index:2000;
  background:rgba(4,4,4,0.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity .4s ease;
  padding:24px;
}
.spv-overlay.open { opacity:1; pointer-events:all; }
.spv-detail-panel {
  position:relative;
  background:rgba(14,14,12,0.98);
  border:1px solid rgba(244,240,232,0.1);
  border-radius:6px;
  max-width:680px; width:100%;
  max-height:88vh;
  overflow-y:auto;
  transform:translateY(40px);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.spv-overlay.open .spv-detail-panel { transform:translateY(0); }
.spv-detail-panel::-webkit-scrollbar { width:3px; }
.spv-detail-panel::-webkit-scrollbar-thumb { background:rgba(244,240,232,0.1); }
.spv-detail-header {
  padding:36px 36px 28px;
  border-bottom:1px solid rgba(244,240,232,0.08);
  position:relative;
}
.spv-detail-status { margin-bottom:12px; }
.spv-detail-name {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(36px,5vw,58px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.02em; line-height:.88;
  color:var(--white);
}
.spv-detail-tagline {
  font-family:'DM Serif Display',sans-serif; font-style:italic;
  font-size:clamp(13px,1.4vw,16px);
  color: rgba(244,240,232,0.9);
  margin-top:10px; line-height:1.4;
}
.spv-tag-row {
  display:flex; flex-wrap:wrap; gap:8px; padding-top:2px;
}
.spv-tag {
  font-family:'Montserrat',sans-serif;
  font-size:10px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  padding:6px 14px; border-radius:100px;
  border:1px solid rgba(244,240,232,0.18);
  color: rgba(244,240,232,0.9);
  background:rgba(244,240,232,0.04);
}
.spv-detail-body { padding:0 36px 40px; }
.spv-detail-sections { display:flex; flex-direction:column; }
.spv-section {
  padding:24px 0;
  border-bottom:1px solid rgba(244,240,232,0.06);
  display:grid; grid-template-columns:180px 1fr; gap:24px; align-items:start;
}
.spv-section:last-child { border-bottom:none; }
.spv-section-label {
  font-family:'Montserrat',sans-serif;
  font-size:9px; font-weight:700; letter-spacing:.25em; text-transform:uppercase;
  color: rgba(244,240,232,0.9);
  padding-top:2px;
}
.spv-section-text {
  font-size:13px; line-height:1.8; color: rgba(244,240,232,0.9);
}
.spv-detail-close {
  position:absolute; top:16px; right:16px;
  width:36px; height:36px; border-radius:50%;
  background:rgba(244,240,232,0.07); border:1px solid rgba(244,240,232,0.1);
  color: rgba(244,240,232,0.9); font-size:16px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .2s; z-index:10;
}
.spv-detail-close:hover { background:rgba(244,240,232,0.14); color:var(--white); }
.spv-detail-cta {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif;
  font-size:10px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--white); text-decoration:none;
  background:rgba(244,240,232,0.08); border:1px solid rgba(244,240,232,0.15);
  border-radius:4px; padding:12px 24px;
  transition:background .25s, border-color .25s;
  cursor:pointer;
}
.spv-detail-cta:hover { background:rgba(244,240,232,0.14); border-color:rgba(244,240,232,0.28); }

/* ── MOBILE ── */
@media(max-width:860px) {
  .spvs-grid { grid-template-columns:repeat(2,1fr); gap:14px; }
}


/* ── SPV LIVE STATUS BAR ── */
.spv-live-bar {
  display:flex; align-items:center;
  margin-bottom:48px;
  background:rgba(0,0,0,0.05);
  border:1px solid rgba(0,0,0,0.1);
  border-radius:6px;
  overflow:hidden;
  height:44px;
}
.spv-live-badge {
  display:flex; align-items:center; gap:8px;
  padding:0 20px;
  border-right:1px solid rgba(0,0,0,0.1);
  font-family:'Montserrat',sans-serif;
  font-size:9px; font-weight:700; letter-spacing:.25em; text-transform:uppercase;
  color:#1A7A42;
  flex-shrink:0;
  height:100%;
  background:rgba(30,140,78,0.08);
}
.spv-live-dot {
  width:7px; height:7px; border-radius:50%;
  background:#1A7A42;
  box-shadow:0 0 8px rgba(30,140,78,0.6);
  animation:live-pulse 1.8s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes live-pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 8px rgba(30,140,78,0.6); }
  50%      { opacity:.55; transform:scale(.8); box-shadow:0 0 4px rgba(30,140,78,0.3); }
}
.spv-live-track-wrap {
  flex:1; overflow:hidden; position:relative; height:100%;
  display:flex; align-items:center;
  /* fade edges */
  -webkit-mask:linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask:linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.spv-live-track {
  display:flex; align-items:center; gap:16px;
  white-space:nowrap;
  animation:live-scroll 28s linear infinite;
  padding:0 16px;
}
@keyframes live-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
.spv-live-track:hover { animation-play-state:paused; }
.spv-live-item {
  font-family:'Montserrat',sans-serif;
  font-size:10px; font-weight:500; letter-spacing:.06em;
  color:rgba(0,0,0,0.55);
  white-space:nowrap;
}
.spv-live-num {
  font-weight:800; color:#0A0A0A;
}
.spv-live-sep {
  color:rgba(0,0,0,0.25);
  font-size:14px;
}

/* ══════════════════════════════════════════
   SECTION 3: #reveal — THE REVEAL
══════════════════════════════════════════ */
#reveal {
  position:relative;
  background:#050505;
  display:flex; align-items:center; justify-content:center;
  padding:80px 48px;
  overflow:hidden;
}
.reveal-stage {
  position:relative;
  max-width:900px;
  width:100%;
  text-align:center;
  z-index:1;
  height:380px;
}
.reveal-sentences {
  position:relative;
  display:flex; flex-direction:column; gap:14px;
  align-items:center; justify-content:center;
  transition:opacity .8s ease;
}
.reveal-line {
  font-family:'DM Serif Display',serif;
  font-style:italic;
  font-size:clamp(20px,2.5vw,32px);
  color:var(--white);
  line-height:1.6;
  opacity:0;
  transition:opacity .4s ease;
  white-space:pre-wrap;
}
.reveal-line.show { opacity:1; }
.reveal-cursor {
  display:inline-block;
  width:2px; height:0.9em;
  background:var(--white);
  vertical-align:-0.08em;
  margin-left:2px;
  animation:blink 0.9s step-end infinite;
  opacity:1;
}
.reveal-sentences.faded { opacity:0; pointer-events:none; }

.reveal-x-stage {
  position:absolute;
  inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:36px;
  opacity:0;
  pointer-events:none;
  transition:opacity .4s ease;
}
.reveal-x-stage.show { opacity:1; pointer-events:auto; }
.reveal-x-glow { display:none; }
.reveal-x {
  position:relative;
  width:180px; height:180px;
  object-fit:contain;
  transform:scale(0.5);
  opacity:0;
  transition:transform .8s cubic-bezier(.16,1,.3,1), opacity .8s cubic-bezier(.16,1,.3,1);
  z-index:1;
}
.reveal-x-stage.show .reveal-x { transform:scale(1); opacity:1; }
.reveal-kpis {
  display:flex; gap:60px;
  flex-wrap:wrap;
  justify-content:center;
  position:relative;
  z-index:1;
}
.reveal-kpi {
  opacity:0;
  transform:translateY(20px);
  transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  text-align:center;
}
.reveal-kpi.show { opacity:1; transform:none; }
.reveal-kpi-num {
  font-family:'Montserrat',sans-serif;
  font-weight:900;
  font-size:clamp(36px,5vw,64px);
  color:var(--white);
  letter-spacing:-.02em;
  line-height:1;
  margin-bottom:10px;
}
.reveal-kpi-label {
  font-family:'Syne',sans-serif;
  font-size:8px; letter-spacing:.3em; text-transform:uppercase;
  color: rgba(244,240,232,0.9);
}
@media (max-width:680px) {
  .reveal-kpis { gap:36px; }
}

/* ══════════════════════════════════════════
   SECTION 4: #newspaper — THE NEWSPAPER
══════════════════════════════════════════ */
#newspaper {
  padding:64px 32px;
  background:#050505;
  display:flex; align-items:center; justify-content:center;
}

/* Stack of three papers */
.newspaper-stack {
  position:relative;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  max-width:1320px;
  width:100%;
  align-items:start;
  padding:10px 0;
}

.newspaper {
  position:relative;
  max-width:100%;
  width:100%;
  background:#f2edd8;
  color:#1a1a1a;
  color-scheme: light;
  padding:14px 16px 10px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.4),
    0 4px 8px rgba(0,0,0,0.5),
    0 16px 32px rgba(0,0,0,0.6),
    0 40px 80px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(0,0,0,0.12),
    inset 0 0 40px rgba(120,90,50,0.05);
  font-family:'Times New Roman', Georgia, serif;
  opacity:0;
  transition:transform 1.2s cubic-bezier(.16,1,.3,1), opacity 1.2s cubic-bezier(.16,1,.3,1);
}
.newspaper-stack .newspaper::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(90,70,40,0.08) 0%, transparent 4%, transparent 96%, rgba(90,70,40,0.08) 100%),
    linear-gradient(to bottom, rgba(90,70,40,0.06) 0%, transparent 3%, transparent 97%, rgba(90,70,40,0.08) 100%);
  pointer-events:none;
  z-index:1;
}
/* Per-paper rotations and reveal states */
.newspaper.np-left {
  transform:rotate(-2.2deg) translateY(40px);
  transition-delay:0ms;
  z-index:1;
}
.newspaper.np-left.in {
  transform:rotate(-2.2deg) translateY(0);
  opacity:1;
}
.newspaper.np-center {
  transform:rotate(0.6deg) translateY(40px);
  margin-top:-12px;
  transition-delay:150ms;
  z-index:2;
}
.newspaper.np-center.in {
  transform:rotate(0.6deg) translateY(0);
  opacity:1;
}
.newspaper.np-right {
  transform:rotate(1.8deg) translateY(40px);
  transition-delay:300ms;
  z-index:1;
}
.newspaper.np-right.in {
  transform:rotate(1.8deg) translateY(0);
  opacity:1;
}

.newspaper-grain {
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.1'/></svg>");
  mix-blend-mode:multiply;
  pointer-events:none;
  z-index:1;
}
.newspaper > *:not(.newspaper-grain) { position:relative; z-index:2; }

/* Base typography (unscoped — used as defaults) */
.np-masthead {
  border-top:2px solid #1a1a1a;
  border-bottom:2px solid #1a1a1a;
  padding:4px 0;
  margin-bottom:3px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:8px;
}
.np-masthead-l, .np-masthead-r {
  font-family:'Times New Roman', Georgia, serif;
  font-size:6.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#1a1a1a;
}
.np-masthead-r { text-align:right; }
.np-masthead-c {
  font-family:'Times New Roman', Georgia, serif;
  font-weight:bold;
  font-size:12px;
  letter-spacing:.05em;
  text-align:center;
  text-transform:uppercase;
  color:#1a1a1a;
  white-space:nowrap;
}
.np-dateline {
  text-align:center;
  font-size:6.5px;
  letter-spacing:.09em;
  color:#444;
  border-bottom:1px solid #999;
  padding-bottom:3px;
  margin-bottom:7px;
  text-transform:uppercase;
}
.np-headline {
  font-family:'Times New Roman', Georgia, serif;
  font-weight:bold;
  font-size:clamp(13px,1.1vw,17px);
  line-height:.97;
  text-align:center;
  margin-bottom:5px;
  color:#1a1a1a;
  text-transform:uppercase;
  letter-spacing:-.01em;
}
.np-deck {
  font-style:italic;
  font-size:8.5px;
  line-height:1.35;
  text-align:center;
  color:#2a2a2a;
  margin-bottom:4px;
}
.np-byline {
  font-size:6.5px;
  letter-spacing:.07em;
  text-transform:uppercase;
  color:#555;
  text-align:center;
  margin-bottom:3px;
}
.np-rule {
  border-top:1px solid #999;
  margin:7px 0;
}
.np-cols {
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  column-rule:0;
}
.np-col {
  font-size:8.5px;
  line-height:1.45;
  color:#1a1a1a;
}
.np-col p { margin:0 0 5px; }
.np-dropcap {
  float:left;
  font-size:32px;
  line-height:.8;
  margin-right:4px;
  margin-top:2px;
  font-family:Georgia, serif;
  font-weight:bold;
  color:#1a1a1a;
}
.np-photo {
  position:relative;
  aspect-ratio:5/3;
  width:100%;
  margin-bottom:4px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(40,30,15,0.55) 0.7px, transparent 1.2px),
    radial-gradient(ellipse 90% 80% at 50% 50%, #d8cfa8 0%, #c4b88e 40%, #a89a6c 70%, #8a7d52 100%);
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
  box-shadow:
    inset 0 0 0 1px rgba(60,45,25,0.15),
    inset 0 0 12px rgba(90,70,40,0.2);
}
/* Uploaded image overlay */
.np-photo-img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:4;
  filter:grayscale(0.55) contrast(1.08) sepia(0.22) brightness(0.94);
}
.np-photo.has-img svg { display:none; }
/* Horizontal-grain scanline / paper-fiber noise */
.np-photo::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.9 0.05' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23f)' opacity='0.45'/></svg>");
  mix-blend-mode:multiply;
  opacity:0.35;
  pointer-events:none;
  z-index:2;
}
/* Edge vignette — ink spread / paper darkening toward the border */
.np-photo::after {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 105% 100% at 50% 50%, transparent 60%, rgba(60,40,20,0.25) 85%, rgba(40,25,10,0.4) 100%);
  pointer-events:none;
  z-index:3;
}
/* Silhouette rendered in sepia ink with slight bleed, not white vector */
.np-photo svg {
  width:52%; height:auto;
  position:relative;
  z-index:1;
  filter: blur(0.3px) drop-shadow(0 1px 0 rgba(60,40,20,0.3));
}
.np-photo svg g {
  fill: rgba(50,35,18,0.88) !important;
}
.np-photo svg path[stroke] {
  stroke: rgba(50,35,18,0.6) !important;
}
.np-caption {
  font-size:7px;
  font-style:italic;
  color:#555;
  line-height:1.3;
  margin-bottom:5px;
}
.np-brief {
  margin-top:7px;
  padding-top:5px;
  border-top:1px solid #999;
}
.np-brief-h {
  font-family:'Times New Roman', Georgia, serif;
  font-weight:bold;
  font-size:7.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#1a1a1a;
  text-align:center;
  margin-bottom:4px;
  display:flex;
  align-items:center;
  gap:6px;
  justify-content:center;
}
.np-brief-h::before,
.np-brief-h::after {
  content:'';
  flex:1;
  height:1px;
  background:#1a1a1a;
}
.np-brief p {
  font-size:8.5px;
  line-height:1.45;
  color:#1a1a1a;
  margin:0 0 4px;
  text-align:justify;
}
.np-brief p:last-child { margin-bottom:0; }
.np-pull {
  border-top:2px solid #1a1a1a;
  border-bottom:2px solid #1a1a1a;
  padding:7px 10px;
  text-align:center;
  margin:8px 0 7px;
}
.np-pull-q {
  font-family:'Times New Roman', Georgia, serif;
  font-style:italic;
  font-size:clamp(10px,1.1vw,13px);
  color:#1a1a1a;
  line-height:1.3;
  margin-bottom:4px;
}
.np-pull-a {
  font-size:6.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#555;
}
.np-bottom {
  border-top:2px solid #1a1a1a;
  margin-top:8px;
  padding-top:4px;
  display:flex;
  flex-direction:column;
  gap:2px;
  align-items:center;
  text-align:center;
  font-size:6px;
  color:#555;
  letter-spacing:.07em;
  text-transform:uppercase;
}

/* Mobile: collapse to single column, flatten rotations */
@media (max-width:900px) {
  .newspaper-stack {
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:100%;
  }
  .newspaper { padding:20px 16px; }
  .newspaper.np-left,
  .newspaper.np-center,
  .newspaper.np-right {
    transform:rotate(-0.3deg) translateY(40px);
    margin-top:0;
    transition-delay:0ms;
  }
  .newspaper.np-left.in,
  .newspaper.np-center.in,
  .newspaper.np-right.in {
    transform:rotate(-0.3deg) translateY(0);
  }
  .newspaper.np-right {
    grid-column: 1 / -1;
    max-width:calc(50% - 10px);
    justify-self:center;
  }
  .np-masthead { grid-template-columns:1fr; text-align:center; gap:4px; }
  .np-masthead-l, .np-masthead-r { text-align:center; }
}

/* ══════════════════════════════════════════
   THE LEGEND GALLERY
══════════════════════════════════════════ */
#collection {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}

#gallery-bg {
  position: absolute; inset: 0; z-index: 0;
  transition: background 1.6s cubic-bezier(.22,.61,.36,1);
  background: radial-gradient(ellipse 70% 60% at 20% 80%, rgba(191,35,24,0.08) 0%, transparent 65%);
}

/* ── HEADER ── */
.g-header {
  position: relative; z-index: 10; flex-shrink: 0;
  padding: 88px 48px 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.g-eyebrow {
  font-size: 8px; font-weight: 700; letter-spacing: .48em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  display: flex; align-items: center; gap: 10px;
}
.g-eyebrow::before { content:''; display:none; }
.g-section-title {
  font-family:'Montserrat',sans-serif;
  font-size: clamp(14px,1.4vw,18px); font-weight:900; letter-spacing:.04em;
  text-transform:uppercase; color:var(--white);
}
.g-section-title .dim { color: rgba(244,240,232,0.9); }
.g-counter {
  font-family:'Montserrat',sans-serif;
  font-size:9px; font-weight:700; letter-spacing:.2em;
  color: rgba(244,240,232,0.9);
  display:flex; align-items:baseline; gap:4px;
}
.g-counter-n { font-size:14px; font-weight:900; color:var(--white); }
.g-counter-sep { color: rgba(244,240,232,0.9); }

/* ── STAGE — centred column ── */
.g-stage {
  position: relative; z-index: 5; flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 48px 0;
  min-height: 0;
}

/* Main = info-left | portrait | info-right — three-column grid */
.g-main {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  transition: opacity .28s ease, transform .28s ease;
}

/* ── PORTRAIT — centred, fixed 42vh height ── */
.g-portrait {
  display: flex; align-items: center; justify-content: center;
}
.g-frame {
  position: relative;
  background: linear-gradient(145deg, #201e1a 0%, #111009 45%, #201e1a 100%);
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(244,240,232,0.08),
    0 20px 48px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: box-shadow 1s ease;
  height: calc(52vh + 16px);
  width: calc(52vh * 2 / 3 + 16px);
  flex-shrink: 0;
}
.g-frame::before {
  content:''; position:absolute; inset:3px;
  border:1px solid rgba(244,240,232,0.04);
  pointer-events:none; z-index:2;
}
.g-mat { background:#060605; padding:4px; height:100%; display:flex; }
.g-canvas {
  flex: 1;
  position: relative; overflow: hidden;
  background: #080808;
  display: flex; align-items: center; justify-content: center;
}
.g-canvas::before {
  content:''; position:absolute; inset:0; z-index:3;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events:none;
}
.g-silhouette {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.g-silhouette svg { width:42%; height:auto; opacity:.8; }
.g-legend-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  z-index: 1;
  filter: contrast(1.05) brightness(0.9);
}
.g-canvas-wash { position:absolute; inset:0; z-index:0; transition:background 1s ease; }

/* ── GLASS SWOOSH ── */
.g-swoosh { position:absolute; inset:0; z-index:5; pointer-events:none; overflow:hidden; }
.g-swoosh::before {
  content:'';
  position:absolute; top:-50%; left:-120%;
  width:55%; height:200%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.05) 50%, transparent 65%);
  animation: swoosh 6s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes swoosh {
  0%   { left:-120%; opacity:0; }
  5%   { opacity:1; }
  55%  { left:180%; opacity:1; }
  56%  { opacity:0; }
  100% { left:180%; opacity:0; }
}

/* ── INFO — flanking the portrait (left right-aligned, right left-aligned) ── */
.g-info-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  justify-self: center;
  max-width: 320px;
}
.g-info-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  justify-self: center;
}
.g-nation {
  font-size:8px; font-weight:700; letter-spacing:.42em; text-transform:uppercase;
  color: rgba(244,240,232,0.9); margin-bottom:5px;
}
.g-name {
  font-family:'Montserrat',sans-serif;
  font-size:clamp(24px,3vw,40px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.02em; line-height:.88;
  color:var(--white); margin-bottom:5px;
}
.g-title {
  display:none;
}
.g-quote {
  font-family:'DM Serif Display',serif; font-style:italic;
  font-size:clamp(11px,1vw,13px); color: rgba(244,240,232,0.9);
  line-height:1.6;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical;
  overflow:hidden;
}
.g-stats { display:flex; flex-direction:column; gap:0; align-items:flex-start; }
.g-stat {
  display:flex; align-items:baseline; gap:8px;
  padding:4px 0;
  border-bottom:1px solid rgba(244,240,232,0.05);
}
.g-stat:last-child { border-bottom:none; }
.g-stat-n {
  font-family:'Montserrat',sans-serif; font-size:14px; font-weight:900;
  color: rgba(244,240,232,0.9);
}
.g-stat-l {
  font-size:7px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: rgba(244,240,232,0.9); white-space:nowrap;
}

/* ── THUMBNAIL STRIP — centred glass pills ── */
.g-strip {
  position:relative; z-index:10; flex-shrink:0;
  padding:0 0 24px;
  display:flex; align-items:center; justify-content:center;
  gap:7px;
}
.g-thumb {
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid rgba(244,240,232,0.1);
  background:rgba(244,240,232,0.04);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:all .25s cubic-bezier(.16,1,.3,1);
  opacity:.38;
}
.g-thumb:hover:not(.g-active) {
  background:rgba(244,240,232,0.09);
  border-color:rgba(244,240,232,0.22);
  opacity:.7;
}
.g-thumb.g-active {
  background:rgba(244,240,232,0.08);
  border-color:rgba(244,240,232,0.55);
  opacity:1;
  box-shadow:0 0 0 1px rgba(244,240,232,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
}
.g-thumb-n {
  font-family:'Montserrat',sans-serif;
  font-size:9px; font-weight:900; letter-spacing:.04em;
  color: rgba(244,240,232,0.9);
  transition:color .25s;
}
.g-thumb.g-active .g-thumb-n { color:var(--white); }

/* Slide transition */
.g-main.g-out { opacity:0; transform:translateX(24px); }
.g-main.g-in  { opacity:0; transform:translateX(-24px); }


/* ── CHROMATIC TRINITY ── */
#trinity { padding:100px 0; position:relative; overflow:hidden; }
.trinity-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 120% 60% at 50% 50%,
    rgba(191,35,24,0.04) 0%, rgba(26,111,173,0.04) 40%, rgba(30,140,78,0.03) 70%, transparent 100%);
  pointer-events:none;
}

.trinity-head { text-align:center; margin-bottom:56px; }
.trinity-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(36px,5vw,68px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.01em; line-height:.9;
  color:var(--white);
}

.trinity-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; position:relative; z-index:2; }

/* ── CARD BASE ── */
.tp {
  position:relative; overflow:hidden;
  aspect-ratio:4/5;
  border-radius:3px;
  background:rgba(244,240,232,0.025);
  backdrop-filter:blur(14px);
  border:1px solid var(--glass-border);
  display:flex; flex-direction:column;
  cursor:default;
  transition:transform .5s cubic-bezier(.16,1,.3,1), border-color .5s, box-shadow .5s;
}
.tp:hover { transform:translateY(-10px); }
.tp-art-col:hover  { border-color:rgba(191,35,24,0.35); box-shadow:0 24px 60px rgba(191,35,24,0.12); }
.tp-biz-col:hover  { border-color:rgba(26,111,173,0.35); box-shadow:0 24px 60px rgba(26,111,173,0.12); }
.tp-sport-col:hover{ border-color:rgba(30,140,78,0.35); box-shadow:0 24px 60px rgba(30,140,78,0.12); }

/* Stage — icon area fills top 65% */
.tp-stage {
  flex:1; position:relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
/* Huge faint number watermark */
.tp-watermark {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  font-family:'Big Shoulders Display',sans-serif;
  font-size:180px; font-weight:900; line-height:1;
  color: rgba(244,240,232,0.9);
  pointer-events:none; user-select:none;
  z-index:0;
}
/* Bottom text block */
.tp-body {
  padding:24px 22px 26px;
  border-top:1px solid var(--glass-border);
  position:relative; z-index:2;
  flex-shrink:0;
}
.tp-label {
  font-size:9px; font-weight:700; letter-spacing:.35em; text-transform:uppercase;
  color: rgba(244,240,232,0.9); margin-bottom:8px;
  display:flex; align-items:center; gap:8px;
}
.tp-label::before {
  content:''; display:block; width:18px; height:1.5px;
  flex-shrink:0;
}
.tp-art-col  .tp-label::before { background:var(--red); }
.tp-biz-col  .tp-label::before { background:var(--blue); }
.tp-sport-col .tp-label::before { background:var(--green); }
.tp-heading {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(26px,3vw,38px); font-weight:900;
  text-transform:uppercase; letter-spacing:.01em; line-height:.9;
  color:var(--white); margin-bottom:10px;
}
.tp-desc {
  font-size:10.5px; line-height:1.7; color: rgba(244,240,232,0.9);
}

/* ── ART — animated heart ── */
.tp-heart-wrap {
  position:relative; z-index:2;
  width:110px; height:100px;
  display:flex; align-items:center; justify-content:center;
}
.tp-heart-svg {
  width:100%; height:100%;
  animation:heartbeat 1.8s ease-in-out infinite;
  filter:drop-shadow(0 0 18px rgba(191,35,24,0.45));
}
@keyframes heartbeat {
  0%,100% { transform:scale(1); }
  14%     { transform:scale(1.12); }
  28%     { transform:scale(1.05); }
  42%     { transform:scale(1.12); }
  70%     { transform:scale(0.95); }
}
/* radial glow pulse behind the heart */
.tp-heart-glow {
  position:absolute; width:140px; height:140px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(191,35,24,0.18) 0%, transparent 70%);
  animation:heartGlow 1.8s ease-in-out infinite;
  z-index:1;
}
@keyframes heartGlow {
  0%,100% { opacity:0.6; transform:scale(1); }
  14%,42% { opacity:1; transform:scale(1.18); }
}

/* ── BUSINESS — hex vault with rings ── */
.tp-vault-wrap {
  position:relative; z-index:2;
  width:120px; height:120px;
}
.tp-vault-svg { width:100%; height:100%; }
/* Dashed rings rotating */
.tp-ring {
  position:absolute; inset:-24px;
  border-radius:50%; border:1px dashed rgba(26,111,173,0.25);
  animation:ringspin 12s linear infinite;
}
.tp-ring-r {
  position:absolute; inset:-42px;
  border-radius:50%; border:1px dashed rgba(26,111,173,0.13);
  animation:ringspin 20s linear infinite reverse;
}
@keyframes ringspin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
/* Cardinal pulse dots */
.tp-pulse-dot {
  position:absolute; width:5px; height:5px; border-radius:50%;
  background:rgba(26,111,173,0.7);
  animation:pulsedot 2s ease-in-out infinite;
}
@keyframes pulsedot { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.6)} }

/* ── SPORT — flame ── */
.tp-flame-wrap {
  position:relative; z-index:2;
  width:80px; height:120px;
  display:flex; align-items:flex-end; justify-content:center;
}
.tp-flame-body {
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:56px; height:100px;
  background:radial-gradient(ellipse 55% 70% at 50% 80%, rgba(30,140,78,0.9) 0%, rgba(30,140,78,0.5) 45%, transparent 75%);
  border-radius:50% 50% 35% 35%;
  animation:flameflick 2.2s ease-in-out infinite alternate;
  filter:blur(1px);
}
.tp-flame-hot {
  position:absolute; bottom:8px; left:50%; transform:translateX(-50%);
  width:34px; height:64px;
  background:radial-gradient(ellipse 55% 60% at 50% 75%, rgba(100,220,130,0.7) 0%, rgba(30,140,78,0.3) 60%, transparent 80%);
  border-radius:50% 50% 30% 30%;
  animation:flameflick 1.6s ease-in-out infinite alternate-reverse;
  filter:blur(0.5px);
}
.tp-flame-core {
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  width:14px; height:30px;
  background:radial-gradient(ellipse at 50% 80%, rgba(240,255,245,0.9) 0%, transparent 70%);
  border-radius:50%;
  animation:flameflick 1s ease-in-out infinite;
}
@keyframes flameflick {
  from { transform:translateX(-50%) scaleX(1) scaleY(1); }
  to   { transform:translateX(-50%) scaleX(1.08) scaleY(1.04); }
}
/* Rising sparks */
.tp-spark {
  position:absolute; width:3px; height:3px; border-radius:50%;
  background:rgba(30,140,78,0.9);
  animation:sparkrise 2s ease-out infinite;
}
@keyframes sparkrise {
  0%   { transform:translate(0,0) scale(1); opacity:.9; }
  100% { transform:translate(var(--sx,0px),var(--sy,-80px)) scale(0); opacity:0; }
}

/* ── TAOP (legacy guard) ── */
/* ── TOKEN ── */
#token { padding:100px 0; position:relative; overflow:hidden; background:#050505; }

.token-ticker-strip {
  position:relative; z-index:2;
  border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
  background:rgba(244,240,232,0.02);
  display:flex; align-items:stretch;
  overflow:hidden; margin-bottom:72px;
}
.token-ticker-cell {
  flex:1; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:14px 12px;
  border-right:1px solid var(--glass-border);
  position:relative;
}
.token-ticker-cell:last-child { border-right:none; }
.token-ticker-live {
  display:flex; align-items:center; gap:6px;
  font-size:8px; font-weight:700; letter-spacing:.25em; text-transform:uppercase;
  color:rgba(30,140,78,0.8);
}
.token-live-dot {
  width:5px; height:5px; border-radius:50%; background:var(--green);
  animation:liveblink 1.4s ease-in-out infinite;
}
@keyframes liveblink { 0%,100%{opacity:1} 50%{opacity:.3} }
.token-ticker-label {
  font-family:'Montserrat',sans-serif; font-size:8px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color: rgba(244,240,232,0.9);
  margin-bottom:4px;
}
.token-ticker-val {
  font-family:'Big Shoulders Display',sans-serif; font-size:18px; font-weight:900;
  color:var(--white); letter-spacing:.02em;
}

.token-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:2; }

/* Left column */
.token-eyebrow {
  font-family:'Montserrat',sans-serif; font-size:9px; font-weight:700;
  letter-spacing:.3em; text-transform:uppercase;
  color: rgba(244,240,232,0.9); margin-bottom:16px;
  display:flex; align-items:center; gap:10px;
}
.token-eyebrow::before {
  content:''; display:block; width:24px; height:1px; background:rgba(244,240,232,0.2);
}
.token-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(40px,5vw,68px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.01em; line-height:.88;
  color:var(--white); margin-bottom:20px;
}
.token-h2 .tc {
  background:linear-gradient(135deg, var(--red), var(--blue) 50%, var(--green));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.token-lede { font-size:13px; line-height:1.8; color: rgba(244,240,232,0.9); margin-bottom:32px; }

/* Stats grid — Bloomberg terminal style */
.token-stats {
  display:grid; grid-template-columns:1fr 1fr;
  border:1px solid var(--glass-border);
  border-radius:3px; overflow:hidden; margin-bottom:28px;
}
.token-stat, .ts-cell {
  padding:18px 16px;
  border-right:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
  background:rgba(244,240,232,0.015);
}
.token-stat:nth-child(2n), .ts-cell:nth-child(2n) { border-right:none; }
.token-stat:nth-child(3),.token-stat:nth-child(4),.ts-cell:nth-child(3),.ts-cell:nth-child(4) { border-bottom:none; }
.ts-label {
  font-family:'Montserrat',sans-serif; font-size:8px; font-weight:700;
  letter-spacing:.22em; text-transform:uppercase; color: rgba(244,240,232,0.9);
  margin-bottom:8px;
}
.ts-value {
  font-family:'Big Shoulders Display',sans-serif; font-size:28px; font-weight:900;
  color:var(--white); line-height:1; margin-bottom:4px;
}
.ts-value.accent-r { color:var(--red); }
.ts-value.accent-b { color:var(--blue); }
.ts-value.accent-g { color:var(--green); }
.ts-sub {
  font-size:9px; color: rgba(244,240,232,0.9); letter-spacing:.06em;
}

/* Feature lines */
.token-lines { display:flex; flex-direction:column; gap:0; margin-bottom:28px; }
.tl {
  display:flex; align-items:center; gap:12px;
  padding:11px 0; border-bottom:1px solid rgba(244,240,232,0.06);
  font-size:11px; color: rgba(244,240,232,0.9);
}
.tl:first-child { border-top:1px solid rgba(244,240,232,0.06); }
.tl-bullet {
  width:6px; height:6px; border-radius:50%; flex-shrink:0;
}
.tl-h { font-weight:700; color: rgba(244,240,232,0.9); margin-right:4px; }

.token-cta-row { display:flex; gap:10px; flex-wrap:wrap; }

/* COIN — right column */
.coin-stage { display:flex; align-items:center; justify-content:center; }
.coin-wrap { position:relative; width:min(380px,90vw); }
.coin-glow {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:110%; height:110%; border-radius:50%;
  background:conic-gradient(from 0deg,
    rgba(191,35,24,0.15), rgba(26,111,173,0.15),
    rgba(30,140,78,0.15), rgba(191,35,24,0.15));
  animation:glowspin 10s linear infinite;
  filter:blur(46px);
}
@keyframes glowspin { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

.coin-body {
  position:relative; z-index:2;
  width:100%; aspect-ratio:1;
  border-radius:50%;
  background:
    radial-gradient(ellipse 65% 45% at 38% 32%, rgba(244,240,232,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, #111009 0%, #060604 100%);
  box-shadow:
    0 0 0 1.5px rgba(244,240,232,0.14),
    0 0 0 3px rgba(244,240,232,0.05),
    inset 0 1px 0 rgba(244,240,232,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    0 32px 80px rgba(0,0,0,0.7),
    0 8px 24px rgba(0,0,0,0.5);
  animation:coinFloat 7s ease-in-out infinite;
  display:flex; align-items:center; justify-content:center;
}
@keyframes coinFloat {
  0%,100% { transform:translateY(0) rotate(0deg); }
  50%     { transform:translateY(-16px) rotate(1.2deg); }
}
.coin-body::before {
  content:'';
  position:absolute; inset:5px; border-radius:50%;
  border:1px solid rgba(244,240,232,0.08);
  pointer-events:none;
}
.coin-body::after {
  content:'';
  position:absolute; inset:12px; border-radius:50%;
  border:1px dashed rgba(244,240,232,0.04);
  pointer-events:none;
}

/* SVG overlay — rings + textPaths */
.coin-arc {
  position:absolute; inset:0; width:100%; height:100%;
  pointer-events:none; z-index:3;
}

/* The Legxis X logo centered */
.coin-logo-wrap {
  position:relative; z-index:4;
  width:46%; height:46%;
  display:flex; align-items:center; justify-content:center;
}
.coin-logo-img {
  width:100%; height:100%;
  object-fit:contain;
  mix-blend-mode:screen;
  opacity:0.92;
}

/* Full coin PNG — no SVG, no blend mode needed, PNG has transparent bg */
.coin-img {
  position:relative; z-index:2;
  width:min(400px,90vw);
  display:block;
  animation:coinFloat 7s ease-in-out infinite;
  filter:drop-shadow(0 32px 64px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(191,35,24,0.15));
}

.coin-caption {
  text-align:center; margin-top:16px;
  font-size:9px; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color: rgba(244,240,232,0.9);
}

/* ── SPV PORTFOLIO ── */
#spvs { padding:0; background:#F0EDE6; }
#spvs .wrap { position:relative; z-index:3; padding-top:140px; padding-bottom:140px; }
.spv-wave-top, .spv-wave-bottom {
  position:absolute; left:0; right:0;
  height:120px; pointer-events:none; z-index:2; line-height:0;
}
.spv-wave-top { top:0; }
.spv-wave-bottom { bottom:0; }
.spv-wave-top svg, .spv-wave-bottom svg { width:100%; height:100%; display:block; }

.spvs-head {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:52px; gap:32px;
}
.spvs-eyebrow {
  font-family:'Montserrat',sans-serif; font-size:9px; font-weight:700;
  letter-spacing:.28em; text-transform:uppercase; color:rgba(0,0,0,0.4);
  margin-bottom:12px; display:flex; align-items:center; gap:10px;
}
.spvs-eyebrow::before { content:''; width:20px; height:1px; background:rgba(0,0,0,0.2); }
.spvs-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(22px,3.2vw,42px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.01em; line-height:.9;
  color:#0A0A0A;
}
.spvs-h2 em {
  font-family:'DM Serif Display',serif; font-style:italic;
  font-size:.55em; color:rgba(0,0,0,0.4);
  display:block; margin-top:6px; letter-spacing:0; text-transform:none;
}
.spvs-subline {
  font-size:12px; color:rgba(0,0,0,0.45); line-height:1.7;
  max-width:320px; text-align:right;
}

.spvs-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  border:1px solid var(--glass-border); border-radius:3px; overflow:hidden;
  background:var(--glass-border);
}
.spv-card {
  background:#070707;
  padding:28px 24px;
  display:flex; flex-direction:column; gap:16px;
  transition:background .3s;
  cursor:default;
}
.spv-card:hover { background:rgba(244,240,232,0.025); }

.spv-card-top {
  display:flex; align-items:center; justify-content:space-between;
}
.spv-idx {
  font-family:'Montserrat',sans-serif; font-size:9px; font-weight:700;
  letter-spacing:.2em; color: rgba(244,240,232,0.9);
}
.spv-status-dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--green); opacity:0.6;
  box-shadow:0 0 6px rgba(30,140,78,0.5);
}

.spv-icon {
  width:40px; height:40px;
  border:1px solid var(--glass-border);
  border-radius:2px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.spv-icon svg { width:22px; height:22px; }

.spv-name {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:18px; font-weight:900; text-transform:uppercase;
  letter-spacing:.02em; color:var(--white); line-height:1;
  margin-bottom:4px;
}
.spv-desc {
  font-size:10px; color: rgba(244,240,232,0.9); line-height:1.55;
}

.spv-footer {
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid rgba(244,240,232,0.06);
  font-size:8.5px; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color: rgba(244,240,232,0.9);
}

/* ── STRUCTURE ── */
#structure { padding:100px 0; }

.struct-head { margin-bottom:52px; }
.struct-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(36px,4.5vw,64px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.01em; line-height:.9;
  color:var(--white);
}

.vault {
  background:var(--glass); backdrop-filter:blur(16px);
  border:1px solid var(--glass-border); border-radius:4px;
  padding:48px 44px;
}

/* Flow */
.vault-top { display:flex; justify-content:center; margin-bottom:0; }
.vault-node {
  background:rgba(244,240,232,0.06); border:1px solid var(--glass-border-bright);
  border-radius:4px; padding:14px 36px; text-align:center;
  display:inline-block;
}
.vault-node.gold { border-color:rgba(244,240,232,0.25); }
.vault-node-h { font-family:'Big Shoulders Display',sans-serif; font-size:15px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; color:var(--white); margin-bottom:2px; }
.vault-node-s { font-size:9px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color: rgba(244,240,232,0.9); }

.vault-line { display:flex; justify-content:center; margin:0; }
.vl { width:1px; height:32px; background:linear-gradient(to bottom, rgba(244,240,232,0.2), rgba(244,240,232,0.05)); }

.vault-spvs { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:0; }
.vault-spv {
  background:rgba(244,240,232,0.03); border:1px solid var(--glass-border);
  border-radius:4px; padding:20px 16px; text-align:center; position:relative;
}
.vault-spv::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:1px; height:36px; top:-36px; background:rgba(244,240,232,0.08); }
.spv-letter {
  font-family:'Big Shoulders Display',sans-serif; font-size:24px; font-weight:900;
  margin-bottom:6px;
}
.spv-letter.r { color:var(--red); } .spv-letter.g { color:var(--green); } .spv-letter.b { color:var(--blue); }
.spv-name { font-size:11px; font-weight:700; letter-spacing:.08em; color:var(--white); margin-bottom:3px; text-transform:uppercase; }
.spv-desc { font-size:10px; color: rgba(244,240,232,0.9); line-height:1.4; }

.vault-bottom { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--glass-border); border-radius:4px; overflow:hidden; margin-top:0; }
.vb { background:rgba(244,240,232,0.02); padding:18px 14px; text-align:center; border-right:1px solid var(--glass-border); }
.vb:last-child { border-right:none; }
.vb-t { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--white); margin-bottom:4px; }
.vb-d { font-size:10px; color: rgba(244,240,232,0.9); line-height:1.45; }

/* ── MANIFESTO ── */
#manifesto {
  padding: 0;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
#manifesto::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(10,10,8,0) 0%, var(--void) 100%);
  z-index:1; pointer-events:none;
}
.manifesto-inner { max-width:900px; margin:0 auto; text-align:center; padding:80px 48px; position:relative; z-index:2; }
.manifesto-text {
  font-family:'Montserrat',sans-serif;
  font-size:clamp(36px,6vw,82px); font-weight:900; text-transform:uppercase;
  letter-spacing:-.02em; line-height:.92;
  color:var(--white);
}
.manifesto-text .hl-r  { color:var(--red); }
.manifesto-text .hl-b  { color:var(--blue); }
.manifesto-text .hl-g  { color:var(--green); }
.manifesto-text .hl-dim { color: rgba(244,240,232,0.9); }

/* Each word animates in individually */
.mw {
  display:inline-block;
  opacity:0; transform:translateY(40px) skewY(3deg);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.mw.visible { opacity:1; transform:translateY(0) skewY(0deg); }

.manifesto-sub {
  font-family:'DM Serif Display',serif; font-style:italic;
  font-size:clamp(13px,1.5vw,17px); color: rgba(244,240,232,0.9);
  margin-top:36px; line-height:1.6;
  opacity:0; transform:translateY(20px);
  transition: opacity .8s ease .6s, transform .8s ease .6s;
}
.manifesto-sub.visible { opacity:1; transform:none; }

/* ── LEGXIS IMPACT ── */
#impact {
  padding: 110px 0 100px;
  position: relative; overflow: hidden;
}
#impact::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(212,160,23,0.045) 0%, transparent 65%);
}

/* Header */
.impact-head { margin-bottom: 72px; }
.impact-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(212,160,23,0.75);
  margin-bottom: 28px; display: block;
}
.impact-headline { margin-bottom: 28px; }
.impact-hl-static {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 58px); font-weight: 900; text-transform: uppercase;
  letter-spacing: -.02em; line-height: 1.05;
  color: rgba(244,240,232,0.9);
}
.impact-ticker-wrap {
  overflow: hidden;
  height: clamp(26px, 4vw, 58px);
  margin: 2px 0;
}
.impact-ticker {
  display: flex; flex-direction: column;
  transition: transform 0.72s cubic-bezier(.16,1,.3,1);
}
.impact-ticker span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 58px); font-weight: 900; text-transform: uppercase;
  letter-spacing: -.02em; line-height: 1; flex-shrink: 0;
  background: linear-gradient(90deg,
    #ff4444 0%,
    #ff8c00 16%,
    #ffd700 32%,
    #44dd44 48%,
    #44aaff 64%,
    #8844ff 80%,
    #ff44cc 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.impact-desc {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(14px, 1.45vw, 17px); color: rgba(244,240,232,0.9);
  max-width: 580px; line-height: 1.7;
}

/* Pillar rows */
.impact-pillars { display: flex; flex-direction: column; margin-bottom: 64px; }
.impact-row {
  display: grid; grid-template-columns: 52px 1fr 110px;
  align-items: center; gap: 0 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(244,240,232,0.07);
  opacity: 0; transform: translateX(-48px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.impact-row:last-child { border-bottom: 1px solid rgba(244,240,232,0.07); }
.impact-row.row-in { opacity: 1; transform: translateX(0); }
.impact-row:nth-child(1) { transition-delay: .00s; }
.impact-row:nth-child(2) { transition-delay: .10s; }
.impact-row:nth-child(3) { transition-delay: .20s; }
.impact-row:nth-child(4) { transition-delay: .30s; }
.impact-row-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  color: rgba(244,240,232,0.9);
}
.impact-row.row-in .impact-row-num {
  animation: numFlare .9s ease forwards;
}
.impact-row:nth-child(1).row-in .impact-row-num { animation-delay: .0s; }
.impact-row:nth-child(2).row-in .impact-row-num { animation-delay: .1s; }
.impact-row:nth-child(3).row-in .impact-row-num { animation-delay: .2s; }
.impact-row:nth-child(4).row-in .impact-row-num { animation-delay: .3s; }
@keyframes numFlare {
  0%   { color: rgba(244,240,232,0.9); }
  40%  { color: rgba(244,240,232,0.9); text-shadow: 0 0 8px rgba(244,240,232,0.25); }
  100% { color: rgba(244,240,232,0.9); text-shadow: none; }
}
.impact-row-info { min-width: 0; }
.impact-row-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(17px, 1.8vw, 24px); font-weight: 700;
  color: var(--white); margin-bottom: 5px;
}
.impact-row-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 400; letter-spacing: .03em;
  color: rgba(244,240,232,0.9); line-height: 1.55;
}

/* ── IMPACT CANVAS ANIMATIONS ── */
.impact-canvas {
  width: 100%; height: 88px;
  border-radius: 8px; position: relative; overflow: hidden;
  border: 1px solid rgba(244,240,232,0.18);
  background: rgba(0,0,0,0.35);
}

/* ── 1. YOUTH — particle rising ── */
.ic-youth {
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(191,35,24,0.55) 0%, rgba(191,35,24,0.08) 60%, transparent 100%);
  border-color: rgba(191,35,24,0.35);
}
.ic-youth .ic-particle {
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 16px #ff4444, 0 0 36px rgba(191,35,24,0.9), 0 0 60px rgba(191,35,24,0.4), 0 0 4px #fff;
  bottom: 12px; left: calc(50% - 5px);
  animation: particleRise 3s ease-in infinite;
}
.ic-youth .ic-particle::after {
  content: '';
  position: absolute;
  width: 10px; left: 0;
  top: 100%;
  background: linear-gradient(to bottom, rgba(191,35,24,0.7), transparent);
  height: 36px; border-radius: 4px;
}
@keyframes particleRise {
  0%   { transform: translateY(0);     opacity: 0; }
  8%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(-65px); opacity: 0; }
}

/* ── 2. EDUCATION — lines writing ── */
.ic-education {
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(26,111,173,0.45) 0%, rgba(26,111,173,0.05) 70%, transparent 100%);
  border-color: rgba(26,111,173,0.35);
}
.ic-line {
  position: absolute;
  left: 14px; height: 2px;
  background: linear-gradient(90deg, #4a9edd, rgba(26,111,173,0.25));
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: lineWrite 4.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(26,111,173,0.8);
}
.ic-l1 { top: 16px; width: 66px; animation-delay: 0s; }
.ic-l2 { top: 28px; width: 55px; animation-delay: 0.55s; }
.ic-l3 { top: 40px; width: 70px; animation-delay: 1.1s; }
.ic-l4 { top: 52px; width: 52px; animation-delay: 1.65s; }
.ic-l5 { top: 64px; width: 62px; animation-delay: 2.2s; }
@keyframes lineWrite {
  0%        { transform: scaleX(0); opacity: 0; }
  8%        { opacity: 1; }
  45%       { transform: scaleX(1); opacity: 0.9; }
  82%, 100% { transform: scaleX(1); opacity: 0; }
}

/* ── 3. SPORTS — ball arcing ── */
.ic-sports {
  background: radial-gradient(ellipse 100% 50% at 50% 100%, rgba(30,140,78,0.5) 0%, rgba(30,140,78,0.06) 60%, transparent 100%);
  border-color: rgba(30,140,78,0.35);
}
.ic-ball {
  position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5de89e, #1E8C4E);
  border: 1.5px solid rgba(93,232,158,0.9);
  box-shadow: 0 0 16px #1E8C4E, 0 0 36px rgba(30,140,78,0.7), 0 0 60px rgba(30,140,78,0.3);
  left: 10px; top: 60px;
  animation: ballArc 2.8s ease-in-out infinite;
}
@keyframes ballArc {
  0%   { transform: translate(0, 0);        opacity: 0; }
  6%   { opacity: 1; }
  20%  { transform: translate(14px, -40px); }
  50%  { transform: translate(33px, -52px); }
  80%  { transform: translate(52px, -40px); }
  94%  { opacity: 1; }
  100% { transform: translate(66px, 0);     opacity: 0; }
}

/* ── 4. GROWTH — expanding rings ── */
.ic-growth {
  background: radial-gradient(circle at center, rgba(212,160,23,0.35) 0%, rgba(212,160,23,0.05) 60%, transparent 100%);
  border-color: rgba(212,160,23,0.35);
}
.ic-growth::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px; border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 16px #ffd700, 0 0 32px rgba(212,160,23,0.9), 0 0 56px rgba(212,160,23,0.4);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
}
.ic-ring {
  position: absolute;
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid rgba(212,160,23,0.9);
  box-shadow: 0 0 8px rgba(212,160,23,0.5);
  top: 50%; left: 50%; margin: -36px 0 0 -36px;
  animation: ringExpand 3s ease-out infinite;
}
.ic-ring:nth-child(2) { animation-delay: 1s; }
.ic-ring:nth-child(3) { animation-delay: 2s; }
@keyframes ringExpand {
  0%   { transform: scale(0.06); opacity: 1; }
  20%  { opacity: 0.85; }
  100% { transform: scale(1.2);  opacity: 0; }
}

/* Principle bar */
.impact-principles {
  display: flex; flex-direction: row;
  border: 1px solid rgba(244,240,232,0.18);
  border-radius: 10px;
  background: rgba(244,240,232,0.04);
  overflow: hidden;
}
.impact-principle {
  flex: 1; display: flex; flex-direction: column; gap: 8px;
  padding: 26px 28px;
  border-right: 1px solid rgba(244,240,232,0.12);
}
.impact-principle:last-child { border-right: none; }
.impact-p-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  margin-bottom: 2px;
}
.impact-p-icon-r { stroke: var(--red); filter: drop-shadow(0 0 6px rgba(191,35,24,0.5)); }
.impact-p-icon-g { stroke: var(--green); filter: drop-shadow(0 0 6px rgba(30,140,78,0.5)); }
.impact-p-icon-b { stroke: var(--blue); filter: drop-shadow(0 0 6px rgba(26,111,173,0.5)); }
.impact-p-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
}
.impact-p-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(244,240,232,0.9); line-height: 1.55;
}

@media (max-width: 768px) {
  .impact-row { grid-template-columns: 36px 1fr; }
  .impact-canvas { grid-column: 1/-1; height: 72px; }
  .impact-principles { flex-direction: column; }
  .impact-principle { border-right: none; border-bottom: 1px solid rgba(244,240,232,0.08); }
  .impact-principle:last-child { border-bottom: none; }
}

/* ── CTA ── */
#cta { padding:100px 0; text-align:center; position:relative; overflow:hidden; }

.cta-glow {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:800px; height:400px; pointer-events:none;
  background:conic-gradient(from 90deg, rgba(191,35,24,0.06), rgba(26,111,173,0.06), rgba(30,140,78,0.06), rgba(191,35,24,0.06));
  filter:blur(60px);
  animation:glowspin 20s linear infinite;
}

.cta-h2 {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(36px,5.5vw,78px); font-weight:900;
  text-transform:uppercase; letter-spacing:-.02em; line-height:.88;
  color:var(--white); margin-bottom:20px; position:relative; z-index:2;
}
.cta-sub { font-family:'DM Serif Display',serif; font-style:italic; font-size:clamp(15px,1.8vw,20px); color: rgba(244,240,232,0.9); margin-bottom:44px; position:relative; z-index:2; }
.cta-pills { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:32px; position:relative; z-index:2; }
.cta-legal { font-size:10px; color: rgba(244,240,232,0.9); max-width:480px; margin:0 auto; line-height:1.7; font-style:italic; position:relative; z-index:2; }

/* ── FOOTER ── */
footer { border-top:1px solid var(--glass-border); padding:48px 48px 32px; }
.foot-inner { max-width:1280px; margin:0 auto; }
.foot-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:40px; padding-bottom:40px; border-bottom:1px solid var(--glass-border); }
.foot-logo { font-family:'Montserrat',sans-serif; font-size:24px; font-weight:900; letter-spacing:.14em; color:var(--white); margin-bottom:16px; display:block; text-decoration:none; text-transform:uppercase; }
.foot-logo .lx { background:linear-gradient(135deg,var(--red),var(--blue) 50%,var(--green)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.foot-tagline { font-family:'DM Serif Display',serif; font-style:italic; font-size:15px; color: rgba(244,240,232,0.9); margin-bottom:20px; line-height:1.7; }
.foot-col-h { font-size:9px; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color: rgba(244,240,232,0.9); margin-bottom:20px; }
.foot-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.foot-links a { font-size:13px; color: rgba(244,240,232,0.9); text-decoration:none; transition:color .3s; }
.foot-links a:hover { color:var(--white); }
.foot-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.foot-copy { font-size:10px; letter-spacing:.12em; color: rgba(244,240,232,0.9); text-transform:uppercase; }
.foot-socials { display:flex; align-items:center; gap:6px; flex-wrap:wrap; width:162px; }
.foot-social {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none;
  text-decoration: none;
  transition: filter .2s, transform .2s;
}
.foot-social:hover { filter: brightness(1.18); transform: translateY(-2px); }
.foot-social svg { width: 16px; height: 16px; }

/* Brand colours — order: Instagram, X, Telegram, LinkedIn, Facebook, WhatsApp, TikTok */
.foot-social:nth-child(1) { background: linear-gradient(45deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%); }
.foot-social:nth-child(2) { background: #000000; outline: 1px solid #2a2a2a; }
.foot-social:nth-child(3) { background: #0088CC; }
.foot-social:nth-child(4) { background: #0077B5; }
.foot-social:nth-child(5) { background: #1877F2; }
.foot-social:nth-child(6) { background: #25D366; }
.foot-social:nth-child(7) { background: #010101; outline: 1px solid #2a2a2a; }
.foot-x {
  font-family:'Montserrat',sans-serif; font-size:56px; font-weight:900;
  background:linear-gradient(135deg,var(--red),var(--blue) 50%,var(--green));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1;
}


/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .wrap{padding:0 36px}
  nav{padding:24px 36px}
  nav.scrolled{padding:16px 36px}
  .token-layout{grid-template-columns:1fr; gap:60px}
  .spvs-grid{grid-template-columns:repeat(2,1fr)}
  .spvs-head{flex-direction:column; align-items:flex-start}
  .spvs-subline{text-align:left}
  .trinity-grid{grid-template-columns:1fr; gap:12px}
  .vault-spvs{grid-template-columns:1fr}
  .vault-spv::before{display:none}
  .vault-bottom{grid-template-columns:1fr 1fr}
  .foot-top{grid-template-columns:1fr 1fr; gap:40px}
}

/* ── MOBILE ── */
@media(max-width:720px){
  /* Kill cursor on touch */
  #cur, #cur-o { display:none !important; }

  /* Global */
  .wrap{padding:0 16px}
  nav{padding:16px 16px}
  nav.scrolled{padding:12px 16px}
  footer{padding:48px 16px 32px}

  /* ── NAV LANGUAGE ── */
  /* Hide the floating center lang switcher on mobile */
  .lang-switcher { display:none !important; }

  /* Show language switcher inside the hamburger dropdown */
  .nav-lang-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 10px 14px 6px;
    border-top: 1px solid rgba(244,240,232,0.1);
  }
  .nav-lang-row .lang-btn {
    flex: 1;
    padding: 9px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    border-radius: 5px;
    border: 1px solid rgba(244,240,232,0.12);
    background: rgba(244,240,232,0.04);
    color: rgba(244,240,232,0.9);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
  }
  .nav-lang-row .lang-btn:hover { background: rgba(244,240,232,0.08); color: var(--white); border-color: rgba(244,240,232,0.22); }
  .nav-lang-row .lang-btn.active { background: var(--white); color: var(--void); border-color: var(--white); }

  /* ── HERO ── */
  #hero { padding-top:40px; padding-bottom:30px; }
  .hero-strip{padding:12px 16px}

  /* ── MANIFESTO (Greatest Athletes of All Time) ── */
  #manifesto { min-height:72vh; display:flex; align-items:center; }
  .manifesto-inner { padding:64px 24px 80px; }
  .manifesto-text { font-size:clamp(46px,12.5vw,82px); line-height:.9; }

  /* ── NEWSPAPERS ── 2 side by side, 1 centred below, straight ── */
  #newspaper { padding:44px 14px; }
  .newspaper-stack {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    max-width:100%;
    align-items:start;
  }
  .newspaper {
    width:100%;
    padding:10px 10px 8px;
    margin-top:0 !important;
    z-index:1 !important;
  }
  /* Ensure "From Icon to Institution" (np-center) aligns with np-left */
  .newspaper.np-center { margin-top:0 !important; }
  .newspaper.np-right {
    grid-column:1 / -1;
    width:calc(50% - 5px);
    justify-self:center;
  }
  .newspaper.np-left,
  .newspaper.np-center,
  .newspaper.np-right {
    transform:rotate(0deg) translateY(30px);
    margin-top:0;
  }
  .newspaper.np-left.in,
  .newspaper.np-center.in,
  .newspaper.np-right.in {
    transform:rotate(0deg) translateY(0);
  }
  /* Show photo, compact aspect ratio */
  .np-photo { display:flex; aspect-ratio:3/2; }
  .np-caption { display:block; font-size:5px; }
  /* Hide verbose bottom content — keep paper look without the bulk */
  .np-pull { display:none; }
  .np-brief { display:none; }
  .np-bottom { display:none; }
  /* Compact type */
  .np-masthead { grid-template-columns:1fr; gap:2px; text-align:center; }
  .np-masthead-c { font-size:9px; }
  .np-masthead-l,.np-masthead-r { text-align:center; font-size:5px; }
  .np-headline { font-size:clamp(8px,2.8vw,11px); margin-bottom:3px; }
  .np-deck { font-size:6.5px; margin-bottom:3px; }
  .np-byline { font-size:5.5px; }
  .np-col { font-size:6.5px; line-height:1.35; }
  .np-dropcap { font-size:22px; }
  .np-pull { padding:4px 6px; margin:4px 0; }
  .np-pull-q { font-size:8px; }
  .np-brief p { font-size:6.5px; }
  .np-rule { margin:4px 0; }
  .np-brief { margin-top:4px; padding-top:3px; }
  .np-dateline { margin-bottom:4px; padding-bottom:2px; font-size:5.5px; }

  /* ── REVEAL ── */
  #reveal { padding:52px 18px; }
  .reveal-stage { height:auto; min-height:260px; }
  .reveal-kpis { gap:20px; }
  .reveal-kpi-num { font-size:clamp(28px,8vw,48px); }

  /* ── LEGENDS HALL ── */
  #collection { min-height:auto; height:auto; }
  .g-header { padding:60px 16px 10px; display:flex; align-items:center; }
  .g-stage { padding:0 16px 8px; flex:0 0 auto; }
  /* Portrait first, then left info, then right info */
  .g-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    max-width: 100%;
  }
  .g-portrait { order: -1; justify-content:center; padding-bottom:16px; }
  .g-info-left {
    order: 0;
    align-items: center;
    text-align: center;
    max-width: 100%;
    justify-self: stretch;
    gap: 6px;
    padding-bottom: 12px;
  }
  .g-info-right {
    order: 1;
    align-items: center;
    justify-self: stretch;
  }
  .g-name { font-size:clamp(22px,7.5vw,36px); text-align:center; }
  .g-nation { text-align:center; }
  .g-quote { text-align:center; max-width:280px; }
  .g-frame { height:72vw; width:calc(72vw * 2/3); }
  .g-stats { flex-direction:row; flex-wrap:wrap; gap:0 24px; justify-content:center; width:100%; }
  .g-stat { padding:6px 0; border-bottom:none; border-right:1px solid rgba(244,240,232,0.08); padding-right:24px; }
  .g-stat:last-child { border-right:none; padding-right:0; }
  .g-strip { padding:16px 16px 32px; gap:6px; flex-wrap:wrap; justify-content:center; }
  .g-thumb { width:34px; height:34px; }

  /* ── TRINITY ── */
  #trinity { padding:28px 0 52px; }
  .trinity-head { margin-bottom:28px; }
  .trinity-grid { grid-template-columns:1fr; gap:16px; }
  .tp { aspect-ratio:unset; min-height:320px; flex-direction:column; }
  .tp-stage { flex:0 0 200px; }
  .tp-body { padding:16px 18px 22px; }

  /* ── TOKEN ── */
  #token { padding:48px 0; }
  .token-ticker-strip { margin-bottom:32px; overflow-x:auto; flex-wrap:nowrap; }
  .token-ticker-cell { min-width:74px; padding:10px 8px; }
  .token-ticker-val { font-size:14px; }
  .token-layout { grid-template-columns:1fr; gap:36px; }
  .coin-img { width:min(260px,78vw); }
  .token-stats { margin-bottom:16px; }
  .token-lines { margin-bottom:16px; }
  .ts-value { font-size:22px; }

  /* ── VAULT / STRUCTURE ── */
  .vault { padding:40px 16px; }
  .vault-spvs { grid-template-columns:1fr; }
  .vault-bottom { grid-template-columns:1fr; }
  .vb { border-right:none; border-bottom:1px solid var(--glass-border); }
  .vb:last-child { border-bottom:none; }

  /* ── FOOTER ── */
  .foot-top { grid-template-columns:1fr; }

  /* ── CTA ── */
  #cta { padding:56px 0; }

  /* ── ABOUT ── */
  #about { padding:72px 0 0; }
  .about-h2 { line-height:.94; }
  .about-header { margin-bottom:40px; }
  .about-body-row { margin-bottom:0; }

  /* ── MANIFESTO INNER ── */
  .manifesto-sub { font-size:14px; margin-top:24px; }

  /* ── SPV PORTFOLIO ── */
  /* Fix status pill placement: explicit grid areas */
  .spv-tile {
    grid-template-columns: 4px 1fr 44px;
    grid-template-rows: auto auto auto;
    align-items: start;
    gap: 0 14px;
    padding: 22px 0;
  }
  .spv-idx { display:none; }
  .spv-bar {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: stretch;
    width: 4px;
    height: auto;
    border-radius: 0;
    min-height: 60px;
  }
  .spv-tile:hover .spv-bar { height: auto; }
  .spv-name-wrap { grid-column: 2; grid-row: 1; }
  .spv-tile-desc {
    grid-column: 2;
    grid-row: 2;
    margin-top: 7px;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    line-height: 1.65;
    transition: color .25s;
  }
  .spv-tile:hover .spv-tile-desc { color:#0A0A0A; }
  .spv-status {
    grid-column: 2;
    grid-row: 3;
    margin-top: 11px;
    align-self: start;
    justify-self: start;
  }
  .spv-arrow { grid-column: 3; grid-row: 1; }
  .spv-tile-liner { display:none; }
  .spv-tile-name { font-size:20px; }
  .spv-detail-header { padding:24px 20px 20px; }
  .spv-detail-body { padding:0 20px 32px; }
  .spv-section { grid-template-columns:1fr; gap:6px; padding:18px 0; }

  /* ── LEGXIS IMPACT ── */
  #impact { padding:80px 0; }
  .impact-head { margin-bottom:52px; }
  .impact-pillars { margin-bottom:48px; }
  .impact-row {
    grid-template-columns: 40px 1fr;
    padding: 26px 0;
    gap: 0 16px;
    align-items: start;
  }
  .impact-row-num { padding-top:3px; font-size:10px; }
  .impact-canvas {
    grid-column: 1/-1;
    height: 78px;
    margin-top: 14px;
  }
  .impact-row-title { font-size:clamp(17px,5vw,22px); margin-bottom:6px; }
  .impact-row-desc { font-size:13px; line-height:1.65; }
  .impact-principles { flex-direction:column; }
  .impact-principle {
    border-right: none;
    border-bottom: 1px solid rgba(244,240,232,0.08);
    padding: 22px 18px;
  }
  .impact-principle:last-child { border-bottom:none; }
  .impact-p-label { font-size:9px; margin-bottom:6px; }
  .impact-p-text { font-size:13px; line-height:1.6; }
  .impact-desc { font-size:14px; line-height:1.75; }
  .impact-hl-static { font-size:clamp(22px,7vw,40px); }
  .impact-ticker-wrap { height:clamp(34px,9vw,52px); }
  .impact-ticker span { font-size:clamp(22px,7vw,40px); }
}

/* ═══════════════════════════════════════════
   LEGXIS FOUNDATION
═══════════════════════════════════════════ */
#foundation {
  position: relative;
  background: #000;
  overflow: hidden;
  cursor: crosshair;
}
#fnd-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.fnd-content {
  position: relative; z-index: 1;
  pointer-events: none;
  padding: 120px 0 0;
}
.fnd-content a, .fnd-content button { pointer-events: auto; }

/* Kicker */
.fnd-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .38em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 48px;
}
.fnd-kicker::before { content: ''; width: 20px; height: 1px; background: rgba(244,240,232,0.2); }

/* Big slam headline */
.fnd-slam {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -.02em; line-height: .88;
  color: var(--white);
  margin-bottom: 64px;
  max-width: 900px;
}

/* Emotional paragraph */
.fnd-emotion {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.7;
  color: rgba(244,240,232,0.9);
  max-width: 720px;
  margin-bottom: 40px;
}

/* Always line */
.fnd-always {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  margin-bottom: 80px;
}

/* Click hint */
.fnd-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  margin-bottom: 120px;
  animation: fndHintPulse 3s ease-in-out infinite;
}
@keyframes fndHintPulse {
  0%,100% { opacity: .5; }
  50%      { opacity: 1; }
}

/* Strips */
.fnd-strips {
  border-top: 1px solid rgba(244,240,232,0.06);
  display: flex; flex-direction: column;
}
.fnd-strip {
  display: grid; grid-template-columns: 96px 1fr;
  align-items: start; gap: 0;
  padding: 40px 48px;
  border-bottom: 1px solid rgba(244,240,232,0.06);
  transition: background .3s;
}
.fnd-strip:hover { background: rgba(244,240,232,0.02); }
.fnd-strip-n {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 56px; font-weight: 900; line-height: 1;
  color: rgba(244,240,232,0.9); letter-spacing: -.02em;
  user-select: none;
}
.fnd-strip-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(18px, 2vw, 24px); font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--white); margin-bottom: 10px;
}
.fnd-strip-text {
  font-size: 13px; line-height: 1.85;
  color: rgba(244,240,232,0.9);
  max-width: 680px;
}

/* Footer */
.fnd-foot {
  padding: 80px 0 120px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 32px;
}
.fnd-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.7; color: rgba(244,240,232,0.9);
  max-width: 640px;
  border-left: 1px solid rgba(244,240,232,0.12);
  padding-left: 24px;
}
.fnd-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,240,232,0.9); text-decoration: none;
  border: 1px solid rgba(244,240,232,0.18); border-radius: 4px;
  padding: 13px 32px; background: transparent;
  transition: background .25s, border-color .25s, color .25s;
}
.fnd-btn:hover {
  background: rgba(244,240,232,0.06);
  border-color: rgba(244,240,232,0.35);
  color: var(--white);
}

.fnd-float-lbl {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  pointer-events: none; z-index: 2;
  transform: translateX(-50%);
  animation: fndLblRise 1.6s ease-out forwards;
}
@keyframes fndLblRise {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-48px); }
}
@media (max-width: 768px) {
  .fnd-slam { font-size: clamp(42px,13vw,72px); margin-bottom: 40px; }
  .fnd-strip { grid-template-columns: 64px 1fr; padding: 32px 24px; }
  .fnd-strip-n { font-size: 40px; }
  .fnd-foot { padding: 60px 0 80px; }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
#how-it-works {
  padding: 120px 0 140px;
  background: var(--void);
}
.hiw-head { margin-bottom: 80px; }
.hiw-h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
  color: var(--white);
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hiw-step {
  border: none;
  padding: 36px 32px 40px;
  position: relative;
  isolation: isolate;
}
.hiw-step::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(from var(--border-angle),
    #1e1e1e  0%,
    #787878  5%,
    #d8d8d8 10%,
    #ffffff  14%,
    #fff6d0 18%,
    #ffd700 22%,
    #c09820 27%,
    #706838 32%,
    #606060 37%,
    #80aac8 42%,
    #b0ccec 47%,
    #ffffff  51%,
    #d4b8ee 55%,
    #b090dc 59%,
    #d8a0bc 64%,
    #ecc0cc 68%,
    #ffffff  72%,
    #dcdcdc 76%,
    #989898 82%,
    #404040 88%,
    #1e1e1e 93%,
    #404040 97%,
    #1e1e1e 100%
  );
  animation: navBorderSpin 5s linear infinite;
  z-index: -1;
}
.hiw-step:nth-child(2)::before { animation-delay: -1.6s; }
.hiw-step:nth-child(3)::before { animation-delay: -3.2s; }
.hiw-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--void);
  z-index: -1;
}
.hiw-num {
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 900;
  line-height: 1;
  color: rgba(244,240,232,0.9);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hiw-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 16px;
}
.hiw-text {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(244,240,232,0.9);
}
@media (max-width: 768px) {
  #how-it-works { padding: 80px 0 100px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 36px; }
  .hiw-head { margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════
   FOUNDER SIGNAL SECTION
═══════════════════════════════════════════ */
#founder {
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#founder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #000 0%, transparent 28%, transparent 72%, #000 100%);
  z-index: 2;
  pointer-events: none;
}
.founder-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: founderFloat 14s ease-in-out infinite alternate;
}
.founder-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(90,10,200,0.55) 0%, transparent 70%);
  top: -180px; left: -120px;
  animation-delay: 0s;
}
.founder-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,50,200,0.5) 0%, transparent 70%);
  top: 20%; right: -100px;
  animation-delay: -5s;
}
.founder-orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,160,120,0.4) 0%, transparent 70%);
  bottom: 10%; left: 25%;
  animation-delay: -9s;
}
.founder-orb-4 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(180,60,10,0.45) 0%, transparent 70%);
  bottom: -100px; right: 15%;
  animation-delay: -3s;
}
.founder-orb-5 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,20,80,0.4) 0%, transparent 70%);
  top: 35%; left: 40%;
  animation-delay: -7s;
}
@keyframes founderFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}
#signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.18;
  image-rendering: pixelated;
  transition: opacity .12s;
  z-index: 1;
}
.signal-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0,0,0,0.08) 3px, rgba(0,0,0,0.08) 4px);
  pointer-events: none;
  z-index: 2;
}
.signal-wrap {
  position: relative;
  z-index: 3;
  max-width: 1020px;
  width: 100%;
  padding: 80px 48px;
  margin: 0 auto;
}
.signal-label {
  font-family: 'Cormorant Garamond', 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 52px;
  opacity: 0;
}
.signal-label.sig-on { animation: sigLabel .6s ease forwards; }
@keyframes sigLabel {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.signal-line {
  font-family: 'Cormorant Garamond', 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2px;
  opacity: 0;
  display: block;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "dlig" 1;
}
.signal-line.sig-on { animation: sigLine .5s ease forwards; }
@keyframes sigLine {
  0%   { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}
.signal-pause { margin-top: 36px; }
.signal-statement { color: #fff; }
.signal-para {
  font-family: 'Cormorant Garamond', 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.85vw, 24px);
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  opacity: 0;
  display: block;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "dlig" 1;
}
.signal-para + .signal-para { margin-top: 40px; }
.signal-para.sig-on { animation: sigPara 1.1s cubic-bezier(.22,.61,.36,1) forwards; }
@keyframes sigPara {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .signal-wrap { padding: 60px 24px; }
  .signal-line { font-size: clamp(16px, 4.5vw, 22px); }
  .spv-wave-top, .spv-wave-bottom { height: 70px; }
  #spvs .wrap { padding-top: 88px; padding-bottom: 88px; }
}
/* ── WHATSAPP BUTTON ── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-btn::before, .wa-btn::after {
  content: ""; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2.2s ease-out infinite;
}
.wa-btn::after { animation-delay: .8s; }
.wa-btn svg { width: 30px; height: 30px; position: relative; z-index: 1; }
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(2.1); opacity: 0; }
}

/* ═══════════════════════════════════════════
   THE TEAM
═══════════════════════════════════════════ */
#team {
  padding: 120px 0 100px;
  background: var(--void);
  position: relative;
  overflow: hidden;
}
#team::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26,111,173,0.05) 0%, transparent 65%);
}

.team-head { margin-bottom: 64px; }
.team-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .38em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  margin-bottom: 20px;
}
.team-h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(26px, 4vw, 58px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em; line-height: .9;
  color: var(--white);
  margin-bottom: 24px;
}
.team-intro {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.75;
  color: rgba(244,240,232,0.9);
  max-width: 640px;
}

/* Stats row */
.team-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}
.team-stat-item {
  display: flex; flex-direction: column;
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
}
.team-stat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
}
.team-stat-item:nth-child(1)::before { background: var(--blue); box-shadow: 0 0 10px rgba(26,111,173,0.6); }
.team-stat-item:nth-child(2)::before { background: var(--red); box-shadow: 0 0 10px rgba(191,35,24,0.6); }
.team-stat-item:nth-child(3)::before { background: var(--green); box-shadow: 0 0 10px rgba(30,140,78,0.6); }
.team-stat-item:nth-child(4)::before { background: rgba(244,240,232,0.3); }
.team-stat-n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2vw, 26px); font-weight: 900;
  letter-spacing: -.01em; line-height: 1.1;
  color: var(--white);
  margin-bottom: 7px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.team-stat-l {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  line-height: 1.45;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.team-stat-divider { display: none; }

/* Body text */
.team-body-text {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(244,240,232,0.9);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 64px;
}

/* Pillar cards */
.team-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.team-pillar {
  position: relative;
  padding: 36px 32px 40px;
  border: 1px solid rgba(244,240,232,0.08);
  border-radius: 4px;
  background: rgba(244,240,232,0.025);
  transition: border-color .35s, background .35s;
  isolation: isolate;
}
.team-pillar::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 5px;
  background: conic-gradient(from var(--border-angle),
    #1e1e1e 0%, #787878 5%, #d8d8d8 10%, #ffffff 14%,
    #fff6d0 18%, #ffd700 22%, #c09820 27%, #706838 32%,
    #606060 37%, #80aac8 42%, #b0ccec 47%, #ffffff 51%,
    #d4b8ee 55%, #b090dc 59%, #d8a0bc 64%, #ecc0cc 68%,
    #ffffff 72%, #dcdcdc 76%, #989898 82%, #404040 88%,
    #1e1e1e 93%, #404040 97%, #1e1e1e 100%
  );
  animation: navBorderSpin 6s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity .35s;
}
.team-pillar::after {
  content: '';
  position: absolute; inset: 0; border-radius: 4px;
  background: var(--void);
  z-index: -1;
}
.team-pillar:hover { border-color: transparent; background: rgba(244,240,232,0.04); }
.team-pillar:hover::before { opacity: 1; }

.team-pillar:nth-child(2)::before { animation-delay: -2s; }
.team-pillar:nth-child(3)::before { animation-delay: -4s; }

.team-pillar-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,240,232,0.9);
  margin-bottom: 20px;
}
.team-pillar:nth-child(1) .team-pillar-icon { color: var(--blue); }
.team-pillar:nth-child(2) .team-pillar-icon { color: var(--red); }
.team-pillar:nth-child(3) .team-pillar-icon { color: var(--green); }
.team-pillar-icon svg { width: 28px; height: 28px; }

.team-pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px); font-weight: 700;
  color: var(--white);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em;
}
.team-pillar-text {
  font-size: 13px; line-height: 1.82;
  color: rgba(244,240,232,0.9);
}

/* Closing lines */
.team-close {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid rgba(244,240,232,0.07);
  padding-top: 40px;
}
.team-close-line {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(22px, 3vw, 42px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1.05;
  color: rgba(244,240,232,0.9);
}
.team-close-accent { color: var(--white); }

@media (max-width: 860px) {
  .team-pillars { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 720px) {
  #team { padding: 80px 0 72px; }
  .team-head { margin-bottom: 40px; }
  .team-stats-row { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .team-stat-item { padding: 22px 18px 20px; }
  .team-body-text { margin-bottom: 40px; }
  .team-pillars { grid-template-columns: 1fr; gap: 12px; margin-bottom: 48px; }
  .team-pillar { padding: 28px 24px 32px; }
  .team-close-line { font-size: clamp(20px, 6.5vw, 36px); }
}

/* ── NEWSPAPER: force light mode regardless of OS dark mode setting ── */
@media (prefers-color-scheme: dark) {
  .newspaper {
    background: #f2edd8 !important;
    color: #1a1a1a !important;
    color-scheme: light;
  }
  .newspaper .np-headline,
  .newspaper .np-deck,
  .newspaper .np-byline,
  .newspaper .np-col,
  .newspaper .np-col p,
  .newspaper .np-masthead-c,
  .newspaper .np-masthead-l,
  .newspaper .np-masthead-r,
  .newspaper .np-dateline,
  .newspaper .np-dropcap,
  .newspaper .np-brief p,
  .newspaper .np-brief-h,
  .newspaper .np-pull-q,
  .newspaper .np-pull-a,
  .newspaper .np-bottom,
  .newspaper .np-caption { color: #1a1a1a !important; }
  .newspaper .np-rule,
  .newspaper .np-masthead,
  .newspaper .np-pull,
  .newspaper .np-bottom,
  .newspaper .np-brief { border-color: #999 !important; }
}

/* ══════════════════════════════════════════
   ROADMAP
══════════════════════════════════════════ */
#roadmap { padding: 100px 0; }

.rdm-head { margin-bottom: 64px; }
.rdm-h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(26px, 4vw, 58px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.9; letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.rdm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.rdm-col {
  padding-right: 56px;
  border-right: 1px solid rgba(244,240,232,0.07);
}
.rdm-col:nth-child(2) { padding-left: 56px; }
.rdm-col:last-child   { padding-left: 56px; padding-right: 0; border-right: none; }

.rdm-col-yr {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 6px;
  color: rgba(244,240,232,0.9);
}

.rdm-col-phase {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,240,232,0.9);
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(244,240,232,0.07);
}

.rdm-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.rdm-list li {
  font-family: 'Syne', sans-serif;
  font-size: 13px; color: rgba(244,240,232,0.9); line-height: 1.5;
  padding-left: 14px; position: relative;
}
.rdm-list li::before {
  content: '—'; position: absolute; left: 0;
  color: rgba(244,240,232,0.9); font-size: 10px;
}

@media (max-width: 900px) {
  .rdm-grid { grid-template-columns: 1fr; gap: 0; }
  .rdm-col { padding: 0 0 48px; border-right: none; border-bottom: 1px solid rgba(244,240,232,0.07); }
  .rdm-col:nth-child(2) { padding-left: 0; padding-top: 48px; }
  .rdm-col:last-child   { padding-left: 0; padding-top: 48px; border-bottom: none; }
}
@media (max-width: 560px) {
  .rdm-h2 { font-size: clamp(22px, 7vw, 40px); }
}