/* ─────────────────────────────────────────────────────────────
   CIDADE BAIXA — sistema visual v2
   palette extraída do logo: navy quase preto + brush violeta + lavanda
   ───────────────────────────────────────────────────────────── */

:root {
  --bg:         #07080f;
  --bg-1:       #0c0e1c;
  --bg-2:       #11142a;
  --surface:    #161a32;
  --surface-2:  #1d2244;
  --line:       #262c54;
  --line-soft:  #1a1f3a;

  --text:       #f3f3ff;
  --text-dim:   #a8a9d0;
  --text-mute:  #6a6d95;

  --violet:     #6e72b8;
  --violet-2:   #8a8ed1;
  --lavender:   #b7b9e8;
  --neon:       #c5c7ff;
  --hot:        #ff4d6d;        /* "RP red light" — used very sparingly */

  --accent:     var(--violet);
  --accent-2:   var(--lavender);
  --accent-ink: #ffffff;

  --font-display: "Black Ops One", "Bowlby One SC", system-ui, sans-serif;
  --font-tag:     "Saira Condensed", "Oswald", "Inter", sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --pad-x: clamp(20px, 4vw, 80px);
  --section-y: clamp(80px, 9vw, 160px);

  color-scheme: dark;
}

[data-density="compact"] { --section-y: clamp(56px, 6vw, 110px); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) #090b16;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }

::selection { background: var(--violet); color: #fff; }

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, #07080f 0%, #0d1020 50%, #07080f 100%);
  border-left: 1px solid rgba(183,185,232,0.08);
}
::-webkit-scrollbar-thumb {
  background:
    linear-gradient(180deg, var(--lavender) 0%, var(--violet) 45%, #484d90 100%);
  border: 3px solid #090b16;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 0 14px rgba(110,114,184,0.35);
}
::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, #d7d8ff 0%, var(--lavender) 42%, var(--violet) 100%);
}
::-webkit-scrollbar-corner {
  background: #07080f;
}

/* ── Grain + noise overlay on body, scroll-driven slight shift ───── */
body::before {
  content: ""; position: fixed; inset: -50px; pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(110,114,184,0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(110,114,184,0.10), transparent 70%);
}

/* ── Top scroll progress bar (CSS scroll-driven, native) ─────────── */
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--lavender), var(--violet));
    transform-origin: 0 50%;
    transform: scaleX(0);
    animation: progress linear;
    animation-timeline: scroll(root);
    z-index: 100;
  }
  @keyframes progress { to { transform: scaleX(1); } }
}

/* ── Typography helpers ──────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 0.86;
}
.tag {
  font-family: var(--font-tag);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.88;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
}

/* ── Layout ──────────────────────────────────────────────────────── */
.page { position: relative; isolation: isolate; z-index: 1; }
.container { padding-inline: var(--pad-x); margin-inline: auto; max-width: 1520px; position: relative; }
.section { padding-block: var(--section-y); position: relative; }

/* ── Nav ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,8,15,0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding-inline: var(--pad-x); height: 80px;
  max-width: 1520px; margin-inline: auto;
  transition: height .3s ease;
}
.nav.scrolled .nav-inner { height: 64px; }

.brand {
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.brand-logo {
  height: 48px; width: auto;
  filter: drop-shadow(0 4px 14px rgba(110,114,184,0.35));
  transition: height .3s ease, transform .3s ease;
}
.nav.scrolled .brand-logo { height: 36px; }
.brand:hover .brand-logo { transform: rotate(-2deg) scale(1.03); }

.nav-links {
  display: flex; gap: 28px; margin-left: 8px;
  font-family: var(--font-tag); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--text-dim);
}
.nav-links a { position: relative; padding: 8px 0; transition: color .2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: 2px;
  height: 2px; background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(110,114,184,0.06);
  color: var(--text);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6dd49f;
}
.status-dot.pulse { animation: pulse 1.8s ease-out infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(109,212,159,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(109,212,159,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,212,159,0); }
}
.status-pill .sep { color: var(--text-mute); }
.status-pill .nums { color: var(--lavender); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px;
  border-radius: 2px;
  font-family: var(--font-tag);
  font-weight: 800; font-style: italic;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform .15s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--violet); color: #fff;
  box-shadow: 0 4px 24px -8px var(--violet);
}
.btn-primary:hover { background: var(--lavender); color: #16182f; box-shadow: 0 6px 28px -4px var(--lavender); }
.btn-ghost {
  border-color: var(--line); color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--violet); color: var(--lavender); }
.btn-block { padding: 14px 24px; font-size: 14px; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-stack {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(110,114,184,0.16), transparent 70%),
    linear-gradient(180deg, #0c0e1c 0%, #07080f 100%);
}
/* The diagonal brush strokes from the logo, abstracted */
.hero-brush {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.6;
}
.hero-brush::before, .hero-brush::after {
  content: ""; position: absolute;
  width: 60vw; height: 110vh; left: -20vw; top: -10vh;
  background:
    repeating-linear-gradient(115deg,
      rgba(110,114,184,0.04) 0 14px,
      transparent 14px 36px,
      rgba(110,114,184,0.08) 36px 38px,
      transparent 38px 90px);
  transform: skewX(-12deg);
  filter: blur(1px);
}
.hero-brush::after {
  left: auto; right: -20vw; top: 0;
  background:
    repeating-linear-gradient(-115deg,
      rgba(110,114,184,0.03) 0 18px,
      transparent 18px 44px);
}

/* Parallax SVG city silhouette layers, controlled via JS data-parallax */
.parallax-layer {
  position: absolute; left: 0; right: 0;
  pointer-events: none;
  will-change: transform;
}
.skyline-far  { bottom: 8%;  height: 38%; opacity: 0.35; z-index: 2; }
.skyline-mid  { bottom: 0;   height: 32%; opacity: 0.55; z-index: 3; }
.skyline-near { bottom: -2%; height: 22%; opacity: 0.85; z-index: 4; }

.hero-mouse-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(138,142,209,0.18) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 5;
  mix-blend-mode: screen;
  transition: opacity .4s ease;
}

/* Scanlines */
.hero-scanlines {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 4px);
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative; z-index: 7;
  padding-inline: var(--pad-x);
  max-width: 1520px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
  min-height: calc(100vh - 80px);
  padding-block: 60px 80px;
  align-content: space-between;
}

.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
  padding-top: 30px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(110,114,184,0.06);
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.hero-eyebrow .ver { color: var(--lavender); font-weight: 700; }
.hero-eyebrow .pipe { color: var(--text-mute); }
.hero-coords {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.16em;
  text-align: right; line-height: 1.6;
}
.hero-coords span { color: var(--lavender); }

.hero-headline {
  text-align: left;
  margin-top: 0;
}
.hero-headline .pre {
  display: inline-block;
  font-family: var(--font-tag);
  font-weight: 800; font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 14px;
}
.hero-headline h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 14vw, 230px);
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero-headline h1 .line { display: block; }
.hero-headline h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lavender);
  display: inline-block;
  transform: skewX(-6deg);
}
.hero-headline h1 .solid {
  display: inline-block;
  transform: skewX(-6deg);
  background: linear-gradient(180deg, #fff 0%, #c7c9ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(138,142,209,0.4);
}

.hero-bottom {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: end;
}
@media (max-width: 880px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
}
.hero-lede {
  max-width: 520px;
  color: var(--text-dim);
  font-size: clamp(15px, 1.2vw, 17px);
  margin: 0;
}
.hero-lede strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 28px; }

.hero-feed {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(110,114,184,0.04), rgba(0,0,0,0.4));
  padding: 18px;
  position: relative;
  border-radius: 4px;
}
.hero-feed::before {
  content: ""; position: absolute; left: -1px; top: -1px;
  width: 28px; height: 28px;
  border-top: 2px solid var(--violet); border-left: 2px solid var(--violet);
}
.hero-feed::after {
  content: ""; position: absolute; right: -1px; bottom: -1px;
  width: 28px; height: 28px;
  border-bottom: 2px solid var(--violet); border-right: 2px solid var(--violet);
}
.hero-feed-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.18em;
}
.hero-feed-head .rec {
  width: 8px; height: 8px; border-radius: 50%; background: var(--hot);
  animation: pulse-red 1.4s ease-out infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255,77,109,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,77,109,0); }
}
.hero-feed-head .ttl { margin-left: auto; color: var(--lavender); }
.hero-feed-list { display: grid; gap: 8px; font-family: var(--font-mono); font-size: 11px; }
.hero-feed-row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 10px;
  padding: 8px 10px;
  background: rgba(0,0,0,0.2);
  border-left: 2px solid var(--violet);
  color: var(--text-dim);
}
.hero-feed-row.alert { border-left-color: var(--hot); color: var(--text); }
.hero-feed-row .t { color: var(--lavender); }
.hero-feed-row .where { color: var(--text-mute); text-align: right; }

.hero-stats {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 640px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.hero-stat {
  padding: 24px 18px 24px 0;
  border-right: 1px solid var(--line-soft);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1; color: var(--text);
  display: flex; align-items: baseline; gap: 6px;
}
.hero-stat .num small { font-family: var(--font-mono); font-style: normal; font-size: 13px; color: var(--lavender); font-weight: 500; }
.hero-stat .lbl {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute); margin-top: 10px;
}

.hero-scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 8;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.24em;
}
.hero-scroll-hint .bar {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--lavender), transparent);
  animation: scrollbar 1.8s ease-in-out infinite;
}
@keyframes scrollbar {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Marquee ─────────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px;
  padding: 22px 0;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px; letter-spacing: 0.02em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .star { color: var(--violet); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section head ────────────────────────────────────────────────── */
.section-head {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.section-head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 7.5vw, 124px);
  line-height: 0.9;
  margin: 14px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.section-head h2 .accent { color: var(--lavender); }
.section-head h2 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--violet);
}
.section-head .lede {
  max-width: 400px;
  color: var(--text-dim);
  font-size: 14px;
  text-align: right;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .lede { text-align: left; }
}

/* ── About ───────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } }
.about-body p {
  font-size: 18px; line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 22px;
}
.about-body p strong { color: var(--text); font-weight: 600; }

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
}
.about-image image-slot { width: 100%; height: 100%; --is-radius: 0; }
.about-image .tag-overlay {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--lavender); letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(7,8,15,0.7);
  padding: 6px 10px;
  border-left: 2px solid var(--violet);
  z-index: 2;
}

.pillars {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (max-width: 800px) { .pillars { grid-template-columns: repeat(2,1fr); } }
.pillar {
  background: var(--bg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.pillar:hover { background: var(--bg-1); }
.pillar::before {
  content: "";
  position: absolute; left: 0; top: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, var(--violet), var(--lavender));
  transition: height .4s ease;
}
.pillar:hover::before { height: 100%; }
.pillar .num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--lavender); letter-spacing: 0.18em;
}
.pillar h4 {
  font-family: var(--font-tag); font-weight: 800; font-style: italic;
  font-size: 26px; margin: 14px 0 10px;
  text-transform: uppercase; line-height: 1;
}
.pillar p { font-size: 14px; color: var(--text-dim); margin: 0; line-height: 1.6; }

/* ── Features ────────────────────────────────────────────────────── */
.features-tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab {
  padding: 16px 24px 16px 20px;
  font-family: var(--font-tag); font-weight: 800; font-style: italic;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-mute);
  border-bottom: 2px solid transparent;
  position: relative; top: 1px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: color .25s ease, border-color .25s ease;
}
.tab .idx { font-family: var(--font-mono); font-style: normal; font-weight: 500; color: var(--text-mute); font-size: 11px; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--text); border-bottom-color: var(--violet); }
.tab.active .idx { color: var(--lavender); }

.features-panel {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 64px; align-items: start;
}
@media (max-width: 980px) { .features-panel { grid-template-columns: 1fr; } }
.features-panel h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.94; margin: 0 0 22px;
  text-transform: uppercase;
}
.features-panel .desc {
  color: var(--text-dim); font-size: 17px; margin: 0 0 30px;
  line-height: 1.6;
}
.feature-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.feature-list li {
  background: var(--bg);
  padding: 18px 20px;
  display: grid; grid-template-columns: 32px 1fr auto; gap: 16px;
  align-items: center;
  font-size: 14px;
  transition: background .2s ease, padding-left .25s ease;
}
.feature-list li:hover { background: var(--bg-1); padding-left: 28px; }
.feature-list .ic {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(110,114,184,0.1);
  border: 1px solid var(--line);
  color: var(--lavender);
  border-radius: 2px;
}
.feature-list .tag {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-art {
  border: 1px solid var(--line);
  background: var(--bg-1);
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}
.feature-art image-slot { width: 100%; height: 100%; --is-radius: 0; }

/* ── Factions — horizontal scroll pinned ─────────────────────────── */
.factions-pin {
  position: relative;
  height: 380vh;  /* total scroll length */
}
.factions-track-wrap {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding-block: 90px 32px;
}
.factions-head-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: end;
  padding-inline: var(--pad-x);
  margin-bottom: 28px;
}
.factions-head { pointer-events: none; }
.factions-head .eyebrow { margin-bottom: 12px; }
.factions-head h2 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(40px, 5vw, 82px);
  line-height: 0.92; margin: 0;
  text-transform: uppercase;
}
.factions-hint {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.18em;
  text-align: right;
}
.factions-hint span { color: var(--lavender); }

.factions-track-scroll {
  flex: 1;
  min-height: 0;
  display: flex; align-items: center;
  overflow: hidden;
}
.factions-track {
  display: flex; gap: 24px;
  padding-inline: var(--pad-x);
  will-change: transform;
}
.faction-card {
  flex: 0 0 440px;
  height: min(540px, 100%);
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.faction-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(110,114,184,0.12), transparent 70%);
  pointer-events: none;
}
.faction-card .image-area {
  position: relative;
  height: 220px;
  margin: -28px -28px 22px;
  overflow: hidden;
  flex: 0 0 220px;
}
.faction-card .image-area image-slot { width: 100%; height: 100%; --is-radius: 0; }
.faction-card .image-area::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-1) 100%);
  pointer-events: none;
}
.faction-card .badge {
  position: absolute; left: 20px; top: 20px;
  z-index: 3;
  font-family: var(--font-display); font-style: italic;
  font-size: 26px; color: #fff;
  background: var(--violet);
  padding: 6px 12px;
  letter-spacing: 0.04em;
  border-left: 3px solid var(--lavender);
}
.faction-card h4 {
  font-family: var(--font-display); font-style: italic;
  font-size: 32px; margin: 0 0 8px;
  text-transform: uppercase; line-height: 1;
}
.faction-card .sub {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--lavender); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 14px;
}
.faction-card p {
  color: var(--text-dim); font-size: 13.5px; margin: 0 0 20px;
  line-height: 1.55;
}
.faction-card .stats {
  margin-top: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.faction-card .stats .k {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.14em;
  text-transform: uppercase;
}
.faction-card .stats .v {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--text); margin-top: 4px;
}
.faction-card .stats .v.small { font-family: var(--font-mono); font-style: normal; font-size: 13px; }

.factions-progress {
  margin-inline: var(--pad-x);
  margin-top: 24px;
  height: 2px; background: var(--line-soft);
}
.factions-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--lavender));
  width: 0%;
  transition: width .1s linear;
}

@media (max-width: 800px) {
  .factions-pin { height: auto; }
  .factions-track-wrap { position: relative; height: auto; padding: 60px 0; }
  .factions-head-row { grid-template-columns: 1fr; }
  .factions-hint { text-align: left; }
  .factions-track-scroll { overflow: visible; }
  .factions-track { flex-direction: column; padding: 0 var(--pad-x); }
  .faction-card { flex: none; width: 100%; height: auto; }
  .factions-progress { display: none; }
}

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px;
  grid-auto-rows: 150px;
}
.gallery .tile {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  transition: transform .4s ease, border-color .3s ease;
}
.gallery .tile image-slot { width: 100%; height: 100%; --is-radius: 0; }
.gallery .tile:hover { border-color: var(--violet); transform: scale(1.01); z-index: 2; }
.gallery .tile .ph-label {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--lavender); letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(7,8,15,0.65);
  padding: 4px 8px;
  border-left: 2px solid var(--violet);
  z-index: 3;
}
.gallery .tile .ph-num {
  position: absolute; right: 12px; top: 12px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text); letter-spacing: 0.16em;
  background: var(--violet); padding: 3px 7px;
  z-index: 3;
}
.gallery .t1 { grid-column: span 7; grid-row: span 3; }
.gallery .t2 { grid-column: span 5; grid-row: span 2; }
.gallery .t3 { grid-column: span 5; grid-row: span 1; }
.gallery .t4 { grid-column: span 4; grid-row: span 2; }
.gallery .t5 { grid-column: span 4; grid-row: span 2; }
.gallery .t6 { grid-column: span 4; grid-row: span 1; }
.gallery .t7 { grid-column: span 4; grid-row: span 1; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(6,1fr); grid-auto-rows: 120px; }
  .gallery .t1, .gallery .t2 { grid-column: span 6; }
  .gallery .t3, .gallery .t4, .gallery .t5, .gallery .t6, .gallery .t7 { grid-column: span 3; }
}

/* ── Join ────────────────────────────────────────────────────────── */
.join {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .join { grid-template-columns: 1fr; } }
.join-steps {
  display: grid; gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.step {
  background: var(--bg);
  padding: 24px 26px;
  display: grid; grid-template-columns: 64px 1fr auto; gap: 22px;
  align-items: center;
  transition: background .25s ease;
}
.step:hover { background: var(--bg-1); }
.step .n {
  font-family: var(--font-display); font-style: italic;
  font-size: 52px; color: var(--lavender);
  line-height: 1;
  -webkit-text-stroke: 1px var(--violet);
}
.step h5 { margin: 0 0 6px; font-size: 17px; font-weight: 600; font-family: var(--font-body); }
.step p { margin: 0; color: var(--text-dim); font-size: 14px; }
.step .meta {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-mute);
  letter-spacing: 0.14em; text-transform: uppercase;
}

.join-card {
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.join-card::before {
  content: ""; position: absolute; inset: -2px;
  background: radial-gradient(ellipse 60% 50% at 80% 0%, rgba(138,142,209,0.18), transparent 70%);
  pointer-events: none;
}
.join-card-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--lavender); letter-spacing: 0.2em;
  text-transform: uppercase;
}
.join-card h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(44px, 5vw, 72px); line-height: 0.9;
  margin: 10px 0 22px;
  text-transform: uppercase;
}
.join-card p { color: var(--text-dim); margin: 0 0 28px; }
.connect-row {
  display: flex; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 6px;
  margin-bottom: 18px;
  align-items: center;
}
.connect-row .ip {
  font-family: var(--font-mono); font-size: 13px;
  padding: 11px 14px; flex: 1; color: var(--text);
  letter-spacing: 0.04em;
}
.connect-row .ip span { color: var(--text-mute); }
.copy-btn {
  padding: 11px 16px;
  background: var(--violet); color: #fff;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  transition: background .2s ease;
}
.copy-btn:hover { background: var(--lavender); color: #16182f; }
.connect-meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-wrap {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .faq-wrap { grid-template-columns: 1fr; } }
.faq-side h2 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(56px, 7vw, 110px); line-height: 0.9; margin: 0;
  text-transform: uppercase;
}
.faq-side h2 .accent { color: var(--lavender); }
.faq-side .lede { color: var(--text-dim); margin-top: 22px; font-size: 14px; }
.faq { border-top: 1px solid var(--line-soft); }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  transition: padding .25s ease;
}
.faq-item:hover { padding-left: 10px; }
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: grid; grid-template-columns: 48px 1fr 32px; gap: 18px;
  align-items: center;
  text-align: left;
  font-size: 18px; font-weight: 500;
  color: var(--text);
}
.faq-q .qn {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--lavender); letter-spacing: 0.16em;
}
.faq-q .ic {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  color: var(--lavender);
  transition: transform .3s ease, background .2s ease;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--violet); color: #fff; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 0 26px 66px;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 740px;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 360px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-1);
  padding: 80px var(--pad-x) 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; left: 50%; bottom: -60%; transform: translateX(-50%);
  width: 120%; aspect-ratio: 1;
  background: radial-gradient(ellipse 50% 50%, rgba(110,114,184,0.12), transparent 70%);
  pointer-events: none;
}
.footer-inner {
  max-width: 1520px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-col h6 {
  font-family: var(--font-tag); font-weight: 800; font-style: italic;
  font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); margin: 0 0 18px;
}
.footer-col a {
  display: block; color: var(--text-dim); padding: 7px 0;
  font-size: 14px; transition: color .15s ease, padding-left .2s ease;
}
.footer-col a:hover { color: var(--lavender); padding-left: 6px; }
.footer-brand img { height: 76px; margin-bottom: 18px; }
.footer-brand p {
  color: var(--text-dim); font-size: 14px; max-width: 320px; margin: 0;
}
.footer-bottom {
  max-width: 1520px; margin: 28px auto 0;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-wrap: wrap; gap: 12px;
  position: relative;
}

/* Reveal-on-scroll (IO-based for now, also using CSS scroll-driven below) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-x { opacity: 0; transform: translateX(-40px); transition: opacity .9s ease, transform .9s ease; }
.reveal-x.in { opacity: 1; transform: none; }

/* ── CSS scroll-driven animations (native, enhances IO) ──────────── */
@supports (animation-timeline: view()) {
  .anim-fade-up {
    animation: fade-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(60px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .anim-rise-text {
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 35%;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(120px) skewY(3deg); }
    to   { opacity: 1; transform: translateY(0) skewY(0); }
  }
  .anim-pin-zoom {
    animation: pin-zoom linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes pin-zoom {
    0%   { transform: scale(1.08); filter: brightness(0.7); }
    50%  { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1.04); filter: brightness(0.9); }
  }
}

/* ── Streamers — pinned horizontal with center focus ────────────── */
.streamers-pin {
  position: relative;
  min-height: 100vh;
  overflow: visible;
  z-index: 2;
}
.streamers-stage {
  position: relative;
  height: 100vh;
  display: flex; flex-direction: column;
  padding-block: 80px 32px;
  overflow: hidden;
}
.streamers-head-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: end;
  margin-bottom: 28px;
}
.streamers-head .eyebrow { margin-bottom: 12px; }
.streamers-head h2 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(40px, 5vw, 82px);
  line-height: 0.92; margin: 0;
  text-transform: uppercase;
}
.streamers-hint {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.18em;
  text-align: right;
}
.streamers-hint > div { line-height: 1.7; }
.streamers-hint span { color: var(--lavender); font-family: var(--font-display); font-style: italic; font-size: 20px; letter-spacing: 0.02em; }

.streamers-track-wrap {
  flex: 1; min-height: 0;
  display: flex; align-items: center;
  overflow: hidden;
  position: relative;
}
.streamers-track-wrap::before,
.streamers-track-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 18vw;
  z-index: 4;
  pointer-events: none;
}
.streamers-track-wrap::before {
  left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.streamers-track-wrap::after {
  right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
.streamers-track {
  display: flex; gap: 28px;
  will-change: transform;
  align-items: center;
  padding: 24px 0;
}
.streamers-spacer { flex: 0 0 30vw; }

.streamer-card {
  flex: 0 0 360px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  transition: filter .35s ease, opacity .35s ease, border-color .35s ease, box-shadow .35s ease;
  height: 540px;
}
.streamer-card[data-active="1"] {
  border-color: var(--violet);
  box-shadow: 0 30px 80px -20px rgba(110,114,184,0.45);
  z-index: 2;
}
.streamer-card[data-active="1"]::after {
  content: "EM DESTAQUE";
  position: absolute; left: 14px; bottom: 14px;
  z-index: 5;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lavender);
  background: rgba(7,8,15,0.7);
  padding: 4px 8px;
  border-left: 2px solid var(--violet);
}
.streamer-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex: 0 0 280px;
}
.streamer-photo image-slot { width: 100%; height: 100%; --is-radius: 0; }
.streamer-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-1) 100%);
  pointer-events: none;
}
.streamer-platform {
  position: absolute; right: 14px; top: 14px;
  z-index: 3;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--violet); color: #fff;
  padding: 4px 10px;
}
.streamer-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.streamer-followers {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lavender);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.streamer-followers .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lavender);
  box-shadow: 0 0 8px var(--violet);
}
.streamer-card h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: 30px; line-height: 1;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.streamer-handle {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim); letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.streamer-role {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--line);
  align-self: flex-start;
  margin-bottom: 14px;
}
.streamer-card blockquote {
  font-size: 13.5px; color: var(--text-dim);
  margin: 0 0 16px; line-height: 1.55;
  border-left: 2px solid var(--violet);
  padding-left: 12px;
}
.streamer-char {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.16em;
  text-transform: uppercase;
}
.streamer-char strong {
  font-family: var(--font-display); font-style: italic;
  font-weight: 400; font-size: 18px;
  color: var(--text); letter-spacing: 0.02em;
  margin-top: 4px;
}

.streamers-progress { margin-top: 18px; }
.streamers-progress-bar {
  height: 2px; background: var(--line-soft);
  position: relative; overflow: hidden;
}
.streamers-progress-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--lavender));
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.streamers-progress-meta {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.18em;
  text-transform: uppercase;
}
.streamers-progress-meta a { color: var(--lavender); transition: color .2s ease; }
.streamers-progress-meta a:hover { color: var(--text); }

@media (max-width: 800px) {
  .streamers-pin { height: auto; }
  .streamers-stage { height: auto; padding-block: 60px 32px; }
  .streamers-head-row { grid-template-columns: 1fr; }
  .streamers-hint { text-align: left; }
  .streamers-track-wrap { overflow: visible; }
  .streamers-track-wrap::before, .streamers-track-wrap::after { display: none; }
  .streamers-track { flex-direction: column; padding: 0 var(--pad-x); }
  .streamers-spacer { display: none; }
  .streamer-card { flex: none; width: 100%; transform: none !important; opacity: 1 !important; filter: none !important; }
  .streamers-progress-bar { display: none; }
}

/* ── Boot splash ─────────────────────────────────────────────────── */
#splash {
  position: fixed; inset: 0;
  z-index: 9999;
  background: #07080f;
  display: grid; place-items: center;
  overflow: hidden;
  will-change: transform;
}
#splash .splash-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(110,114,184,0.18), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(110,114,184,0.08), transparent 70%);
}
#splash .splash-brush {
  position: absolute; inset: 0; opacity: 0.5;
  background:
    repeating-linear-gradient(115deg,
      rgba(110,114,184,0.05) 0 14px,
      transparent 14px 36px),
    repeating-linear-gradient(-115deg,
      rgba(110,114,184,0.03) 0 18px,
      transparent 18px 44px);
  transform: skewX(-8deg);
  filter: blur(1px);
}
.splash-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  width: min(360px, 72vw);
  text-align: center;
}
.splash-logo {
  width: clamp(180px, 24vw, 280px); height: auto;
  filter: drop-shadow(0 12px 50px rgba(110,114,184,0.45));
  animation: splash-breathe 2.4s ease-in-out infinite;
}
@keyframes splash-breathe {
  0%, 100% { transform: scale(1) rotate(-1.5deg); }
  50%      { transform: scale(1.04) rotate(0deg); }
}

/* Initial hidden state for hero so the zoom-in entrance has somewhere to land.
   GSAP intro takes it from this to scale 1 / blur 0. If JS fails to run, fade in. */
.hero-inner {
  opacity: 1;
  will-change: transform, filter;
}

/* ── Countdown ───────────────────────────────────────────────────── */
.countdown {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(110,114,184,0.06), rgba(0,0,0,0.4));
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}
.countdown::before, .countdown::after {
  content: ""; position: absolute;
  width: 28px; height: 28px;
}
.countdown::before { left: -1px; top: -1px;  border-top: 2px solid var(--violet); border-left: 2px solid var(--violet); }
.countdown::after  { right: -1px; bottom: -1px; border-bottom: 2px solid var(--violet); border-right: 2px solid var(--violet); }

.countdown .t-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.countdown .t-head .rec {
  width: 8px; height: 8px; border-radius: 50%; background: var(--hot);
  animation: pulse-red 1.4s ease-out infinite;
}
.countdown .t-head .t-target { margin-left: auto; color: var(--lavender); }

.countdown .t-grid {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 8px;
  padding: 8px 0 14px;
}
.t-cell { display: flex; flex-direction: column; align-items: center; flex: 1; }
.t-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 0.9;
  color: var(--text);
  display: flex; gap: 4px;
  text-shadow: 0 4px 24px rgba(138,142,209,0.35);
}
.t-digit {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, #b7b9e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 0.55em;
  text-align: center;
}
.t-lbl {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 8px;
}
.t-sep {
  font-family: var(--font-display); font-style: italic;
  color: var(--violet);
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1;
  padding-bottom: 22px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.t-reserve {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.t-reserve-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.t-reserve-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: var(--text); letter-spacing: 0.02em;
}
.t-reserve-bar {
  height: 6px; background: var(--bg);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.t-reserve-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--lavender));
  position: relative;
  box-shadow: 0 0 12px var(--violet);
}
.t-reserve-bar span::after {
  content: ""; position: absolute; right: 0; top: -3px; bottom: -3px; width: 2px;
  background: var(--neon);
  animation: tip-pulse 1.6s ease-in-out infinite;
}
@keyframes tip-pulse { 50% { opacity: 0.3; transform: scaleY(0.6); } }
.t-reserve-note {
  margin-top: 12px;
  font-size: 12px; color: var(--text-mute); line-height: 1.5;
}
.t-reserve-note strong { color: var(--lavender); font-weight: 600; }

/* ── Roadmap ─────────────────────────────────────────────────────── */
.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 40px;
}
@media (max-width: 900px) { .roadmap { grid-template-columns: 1fr; } }

.roadmap::before {
  content: ""; position: absolute;
  left: 0; right: 0;
  top: 60px; height: 2px;
  background: var(--line);
}
.roadmap::after {
  content: ""; position: absolute;
  left: 0; top: 60px; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--lavender));
  width: var(--rm-progress, 20%);
  transition: width 1.4s ease;
}
@media (max-width: 900px) { .roadmap::before, .roadmap::after { display: none; } }

.roadmap-step {
  padding: 0 24px 0 0;
  position: relative;
}
.roadmap-step .dot {
  width: 14px; height: 14px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 50%;
  margin: 53px 0 28px;
  position: relative; z-index: 2;
}
.roadmap-step.done .dot { background: var(--violet); border-color: var(--lavender); box-shadow: 0 0 12px var(--violet); }
.roadmap-step.now  .dot {
  background: var(--lavender); border-color: var(--neon);
  animation: pulse-violet 1.4s ease-out infinite;
}
@keyframes pulse-violet {
  0%   { box-shadow: 0 0 0 0 rgba(183,185,232,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(183,185,232,0); }
}
.roadmap-step .date {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.roadmap-step .stage {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(26px, 2.4vw, 34px);
  margin: 8px 0 10px;
  line-height: 0.95;
  text-transform: uppercase;
}
.roadmap-step.now  .stage { color: var(--lavender); }
.roadmap-step.done .stage { color: var(--text-mute); text-decoration: line-through; text-decoration-color: var(--violet); text-decoration-thickness: 2px; }
.roadmap-step p {
  font-size: 13px; color: var(--text-dim); margin: 0; line-height: 1.55;
}
.roadmap-step .tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--line);
  color: var(--text-mute);
}
.roadmap-step.done .tag { color: #6dd49f; border-color: #2b5944; }
.roadmap-step.now  .tag { color: var(--lavender); border-color: var(--violet); background: rgba(110,114,184,0.1); }

@media (max-width: 900px) {
  .roadmap-step { padding: 24px 0; border-bottom: 1px solid var(--line-soft); display: grid; grid-template-columns: 24px 1fr; gap: 18px; align-items: start; }
  .roadmap-step .dot { margin: 6px 0 0; }
}

/* Magnetic button — small extra polish */
.magnetic { display: inline-flex; transition: transform .3s cubic-bezier(.2,.8,.2,1); }

/* Hero countdown — let it breathe */
.hero-countdown { min-height: 100%; }

/* Placeholder fallback (for image_slot empty state styling) */
image-slot {
  --is-bg: var(--bg-1);
  --is-bg-2: var(--surface);
  --is-stroke: var(--line);
  --is-radius: 0;
}
