/* ============================================
   eNKapital — Shared Styles
   ============================================ */

/* ----- Tokens ----- */
:root {
  --yellow: #FFD000;
  --red: #FF1A1A;
  --black: #000000;
  --surface-1: #0A0A0A;
  --surface-2: #111111;
  --border: rgba(255, 208, 0, 0.15);
  --border-strong: rgba(255, 208, 0, 0.30);
  --text-primary: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.45);
  --text-dim: rgba(255, 255, 255, 0.20);

  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 48px;
  --sp-xl: 80px;
  --sp-2xl: 120px;

  --r-pill: 40px;
  --r-card: 14px;
  --r-badge: 6px;
  --r-btn: 8px;

  --max-w: 1200px;
  --pad-x: 40px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text-primary);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ----- Type helpers ----- */
.anton { font-family: "Anton", "Impact", sans-serif; font-weight: 400; letter-spacing: 0.01em; }
.mono { font-family: "DM Mono", "Courier New", monospace; font-weight: 500; }

.label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label--yellow { color: var(--yellow); }

h1, h2, h3, h4 {
  font-family: "Anton", "Impact", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0.005em;
}

p { margin: 0; }

/* ----- Layout ----- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--sp-2xl) 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .15s ease-out, filter .15s ease-out, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
}
.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--text-primary);
  transform: translateY(-1px);
}
.btn--danger {
  background: var(--red);
  color: var(--text-primary);
}
.btn--danger:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn--pill { border-radius: var(--r-pill); }
.btn--lg { padding: 18px 36px; font-size: 20px; }

.btn .arrow {
  font-family: "DM Mono", monospace;
  font-size: 1em;
  transition: transform .15s ease-out;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Live dot (pulsing) ----- */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.6);
  animation: livePulse 1.8s ease-out infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 26, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0); }
}

/* Stat as link */
a.stat {
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
a.stat:hover { background: rgba(255, 208, 0, 0.04); }
a.stat:hover .stat__num { text-shadow: 0 0 24px rgba(255, 208, 0, 0.3); }

/* ----- Pill badge ----- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 208, 0, 0.05);
}
.pill--solid {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
}

/* ----- Brand bar (yellow horizontal stripe) ----- */
.brand-bar {
  width: 100%;
  height: 4px;
  background: var(--yellow);
}
.brand-bar--thin { height: 2px; }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-strong);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.nav__logo em { color: var(--yellow); font-style: normal; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .15s;
  position: relative;
  padding: 6px 0;
}
.nav__link:hover { color: var(--text-primary); }
.nav__link.is-active { color: var(--text-primary); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--yellow);
}

.nav__cta { display: inline-flex; }

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform .2s, opacity .2s;
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.nav__overlay {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 99;
  padding: 40px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.menu-open .nav__overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__overlay a {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  color: var(--text-primary);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav__overlay a:last-child { border-bottom: none; }
.nav__overlay .btn { align-self: flex-start; margin-top: 16px; }

/* ============================================
   HERO (Home)
   ============================================ */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--pad-x) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 208, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 26, 26, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  z-index: -2;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 208, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 0, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1;
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}
.hero__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__content {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero__label {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__label::before, .hero__label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.5;
}
.hero__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 11vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.hero__title .yellow { color: var(--yellow); }
.hero__title .red { color: var(--red); text-shadow: 0 0 24px rgba(255, 26, 26, 0.4); }
.hero__title .line { display: block; }

.hero__sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}

/* Small ticker under bar */
.hero__ticker {
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 32px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 48px;
}
.hero__ticker-track .y { color: var(--yellow); }
.hero__ticker-track .r { color: var(--red); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PAGE HEROES (smaller)
   ============================================ */
.page-hero {
  position: relative;
  padding: 200px var(--pad-x) 100px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 208, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #080808 0%, #000 100%);
  z-index: -2;
}
.page-hero__bg--red {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255, 26, 26, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 20%, rgba(255, 208, 0, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #060606 0%, #000 100%);
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.page-hero__label {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-hero__label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--yellow);
}
.page-hero__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  text-transform: uppercase;
  max-width: 1000px;
}
.page-hero__title .yellow { color: var(--yellow); }
.page-hero__title .red { color: var(--red); }
.page-hero__sub {
  font-family: "DM Sans", sans-serif;
  color: var(--text-muted);
  max-width: 640px;
  font-size: 18px;
}
.page-hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.page-hero__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ============================================
   WHO IS NAG (Home section)
   ============================================ */
.who {
  padding: var(--sp-2xl) 0;
}
.who__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.who__card {
  background: var(--surface-1);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.who__avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  background: linear-gradient(135deg, #1a1a1a, #050505);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Anton", sans-serif;
  font-size: 80px;
  color: var(--yellow);
  letter-spacing: -0.04em;
  position: relative;
}
.who__avatar::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.who__name {
  font-family: "Anton", sans-serif;
  font-size: 48px;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}
.who__tagline {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.who__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.who__heading {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}
.who__heading .yellow { color: var(--yellow); }
.who__text {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.who__signature {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.who__signature::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--yellow);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
}
.section-head__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}
.section-head__title .yellow { color: var(--yellow); }
.section-head__link {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--yellow);
  transition: gap .15s;
}
.section-head__link:hover { gap: 14px; }

/* ============================================
   RULE CARDS
   ============================================ */
.rules-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rule {
  background: var(--surface-1);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease-out, background .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.rule:hover {
  transform: translateY(-3px);
  background: var(--surface-2);
}
.rule::before {
  content: "";
  position: absolute;
  left: -4px; top: 0; bottom: 0;
  width: 4px;
  background: var(--yellow);
  box-shadow: 0 0 0 transparent;
  transition: box-shadow .2s;
}
.rule:hover::before { box-shadow: 0 0 16px var(--yellow); }

.rule__num {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rule__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.rule__title {
  font-family: "Anton", sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-primary);
}
.rule__hook {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
.rule__tag {
  align-self: flex-start;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-badge);
  margin-top: 6px;
}
.rule__tag--psy {
  background: var(--red);
  color: var(--text-primary);
}
.rule__tag--risk {
  background: var(--yellow);
  color: var(--black);
}
.rule__tag--dis {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ============================================
   POOL SECTION (Home + dedicated)
   ============================================ */
.pool {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}
.pool::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 208, 0, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.pool__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.pool__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pool__platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  align-self: flex-start;
  background: rgba(255, 208, 0, 0.04);
}
.pool__platform .pp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: "Anton", sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.pool__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}
.pool__title .yellow { color: var(--yellow); }
.pool__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
}
.pool__note {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pool__how {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  position: relative;
}
.pool__how-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.pool__how-title {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pool__how-id {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.pool__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 8px 0;
}
.pool__step-num {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
}
.pool__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pool__step-title {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.pool__step-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pool__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .pool__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   CHALLENGE STRIP (Home)
   ============================================ */
.cstrip {
  background: var(--surface-1);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cstrip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 208, 0, 0.02) 18px 19px);
  pointer-events: none;
}
.cstrip__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.cstrip__big {
  font-family: "Anton", sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.86;
  display: flex;
  align-items: center;
  gap: 18px;
  letter-spacing: -0.01em;
}
.cstrip__big .arrow {
  color: var(--yellow);
  font-family: "DM Mono", monospace;
  font-size: 0.5em;
}
.cstrip__big .to { color: var(--yellow); }
.cstrip__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cstrip__copy h3 {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}
.cstrip__copy p {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   DASHBOARD PREVIEW (Home)
   ============================================ */
.dashprev {
  padding: var(--sp-2xl) 0;
  background: linear-gradient(180deg, transparent 0%, var(--surface-1) 100%);
  border-top: 1px solid var(--border);
}
.dashprev__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.dashprev__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}
.dashprev__title .yellow { color: var(--yellow); }

/* Browser window frame */
.bwin {
  background: var(--black);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 208, 0, 0.06);
}
.bwin__bar {
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bwin__dots {
  display: flex;
  gap: 7px;
}
.bwin__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #2a2a2a;
}
.bwin__dot--y { background: var(--yellow); }
.bwin__dot--r { background: var(--red); }
.bwin__url {
  flex: 1;
  background: #050505;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bwin__url .lock {
  color: var(--yellow);
  font-size: 11px;
}
.bwin__pill {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Dashboard body */
.dash {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dash__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.dash__logo {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.dash__logo em { color: var(--yellow); font-style: normal; }
.dash__status {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kpi__label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.kpi__val {
  font-family: "Anton", sans-serif;
  font-size: 30px;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 0;
}
.kpi__val--up { color: var(--yellow); }
.kpi__val--down { color: var(--red); }
.kpi__sub {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.kpi__sub--up { color: var(--yellow); }
.kpi__sub--down { color: var(--red); }

/* Positions table */
.dash__table-wrap {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-1);
}
.dash__table-head {
  background: #0d0d0d;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr 1fr 1fr 0.8fr 0.7fr;
  padding: 12px 18px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.dash__row {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr 1fr 1fr 0.8fr 0.7fr;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-family: "DM Mono", monospace;
  font-size: 13px;
  color: var(--text-primary);
  align-items: center;
}
.dash__row:last-child { border-bottom: none; }
.dash__row:hover { background: rgba(255, 208, 0, 0.02); }
.dash__sym {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.dash__side {
  display: inline-flex;
  align-items: center;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  width: max-content;
}
.dash__side--long { background: rgba(255, 208, 0, 0.15); color: var(--yellow); border: 1px solid rgba(255, 208, 0, 0.3); }
.dash__side--short { background: rgba(255, 26, 26, 0.15); color: var(--red); border: 1px solid rgba(255, 26, 26, 0.3); }
.dash__pnl--up { color: var(--yellow); font-weight: 600; }
.dash__pnl--down { color: var(--red); font-weight: 600; }
.dash__time {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.dash__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dash__pulse-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dashprev__note {
  margin-top: 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.dashprev__cta {
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 900px) {
  .dash__kpis { grid-template-columns: repeat(2, 1fr); }
  .dash__table-head, .dash__row {
    grid-template-columns: 1fr 0.5fr 1fr 0.8fr;
    font-size: 11px;
  }
  .dash__table-head > *:nth-child(n+5), .dash__row > *:nth-child(n+5) { display: none; }
  .bwin__url { font-size: 10px; }
  .dash { padding: 18px 16px 22px; }
  .bwin__pill { display: none; }
}

/* ============================================
   FOLLOW MY TRADES (Home — 3 ways)
   ============================================ */
.follow {
  padding: var(--sp-2xl) 0;
}
.follow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fcard {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.fcard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--yellow);
  transform-origin: left;
  transform: scaleX(0.18);
  transition: transform .3s ease-out;
}
.fcard:hover {
  background: var(--surface-2);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.fcard:hover::before { transform: scaleX(1); }

.fcard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fcard__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 5px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
}
.fcard__arrow {
  font-family: "DM Mono", monospace;
  color: var(--yellow);
  font-size: 20px;
  transition: transform .2s;
}
.fcard:hover .fcard__arrow { transform: translate(3px, -3px); }

.fcard__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid var(--border);
  color: var(--yellow);
}
.fcard__icon svg { width: 28px; height: 28px; }
.fcard__icon--lighter {
  background: var(--yellow);
  color: var(--black);
  font-family: "Anton", sans-serif;
  font-size: 32px;
  border: none;
}

.fcard__title {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}
.fcard__body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: auto;
}
.fcard__cta {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .follow__grid { grid-template-columns: 1fr; }
}

/* ============================================
   STATS ROW
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  color: var(--yellow);
  letter-spacing: -0.01em;
}
.stat__num--sm { font-size: clamp(40px, 5vw, 64px); }
.stat__label {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 2px solid var(--yellow);
  background: #030303;
  padding: 80px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
}
.footer__logo {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
}
.footer__logo em { color: var(--yellow); font-style: normal; }
.footer__tag {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--text-muted);
}
.footer__col h4 {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  opacity: 0.75;
  transition: opacity .15s, color .15s;
}
.footer__col a:hover { opacity: 1; color: var(--yellow); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  gap: 16px;
}

/* ============================================
   GENERIC CTA SECTION
   ============================================ */
.cta-band {
  background: var(--surface-1);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 100px 0;
  text-align: center;
}
.cta-band__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.cta-band__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
}
.cta-band__title .yellow { color: var(--yellow); }
.cta-band__sub {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
}
.cta-band__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================
   CHALLENGE PAGE
   ============================================ */
.challenge-hero {
  min-height: 100dvh;
  position: relative;
  padding: 120px var(--pad-x) 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.challenge-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255, 26, 26, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(255, 208, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}
.challenge-hero__inner {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.challenge-hero__display {
  font-family: "Anton", sans-serif;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.85;
  display: flex;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.challenge-hero__display .arrow {
  color: var(--yellow);
  font-family: "DM Mono", monospace;
  font-size: 0.45em;
  font-weight: 500;
}
.challenge-hero__display .to {
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(255, 208, 0, 0.3);
}
.challenge-hero__sub {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 680px;
  line-height: 1.4;
}
.challenge-hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--surface-1);
  border-top: 4px solid var(--yellow);
  border-radius: 0 0 var(--r-card) var(--r-card);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background .2s, transform .2s;
}
.step:hover { background: var(--surface-2); transform: translateY(-2px); }
.step__num {
  font-family: "Anton", sans-serif;
  font-size: 72px;
  color: var(--yellow);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.step__label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.step__title {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
}
.step__body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

/* Value cards */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value {
  background: var(--surface-1);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s, transform .2s;
}
.value:hover { background: var(--surface-2); transform: translateY(-2px); }
.value__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}
.value__icon svg { width: 26px; height: 26px; }
.value__title {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
}
.value__body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

/* Join block */
.join {
  text-align: center;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.join::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 208, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.join__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  max-width: 700px;
  position: relative;
}
.join__url {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  text-transform: uppercase;
  position: relative;
}
.join__note {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}

/* Risk disclaimer */
.disclaimer {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
  padding: 60px var(--pad-x);
}

/* ============================================
   POOL PAGE (dedicated)
   ============================================ */
.pool-hero {
  position: relative;
  padding: 200px var(--pad-x) 100px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.pool-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(255, 208, 0, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 208, 0, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060606 0%, #000 100%);
}
.pool-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.pool-hero__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 1100px;
}
.pool-hero__title .yellow { color: var(--yellow); }
.pool-hero__sub {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  line-height: 1.45;
}
.pool-hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}

/* TL;DR card */
.tldr {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface-1);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 40px 40px;
}
.tldr__kicker {
  font-family: "Anton", sans-serif;
  font-size: 64px;
  color: var(--yellow);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.tldr__sub {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.tldr__body {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.tldr__body strong { color: var(--yellow); font-weight: 700; }

/* Big steps (vertical, numbered) */
.bsteps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bstep {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.bstep:last-child { border-bottom: 1px solid var(--border); }
.bstep__num {
  font-family: "Anton", sans-serif;
  font-size: 96px;
  color: var(--yellow);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.bstep__title {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.bstep__body {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: 720px;
}
.bstep__body strong { color: var(--text-primary); font-weight: 700; }

/* Facts table */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface-1);
}
.fact {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fact:nth-child(2n) { border-right: none; }
.fact:nth-last-child(-n+2) { border-bottom: none; }
.fact__label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
}
.fact__value {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.1;
}
.fact__note {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* Big final CTA */
.pool-cta {
  background: var(--surface-1);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 120px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pool-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 208, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pool-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  position: relative;
}
.pool-cta__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
}
.pool-cta__title .yellow { color: var(--yellow); }
.pool-cta__btn {
  font-size: 24px !important;
  padding: 24px 48px !important;
}
.pool-cta__id {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .tldr { grid-template-columns: 1fr; gap: 16px; padding: 32px 28px; }
  .bstep { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .bstep__num { font-size: 64px; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: none; }
  .fact:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  position: relative;
  padding: 200px var(--pad-x) 120px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.about-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(255, 208, 0, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #060606 0%, #000 100%);
}
.about-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 60px;
}
.about-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-hero__avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  background: linear-gradient(135deg, #1a1a1a, #050505);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Anton", sans-serif;
  font-size: 120px;
  color: var(--yellow);
  justify-self: end;
  position: relative;
}
.about-hero__avatar::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.about-hero__bar {
  position: absolute;
  left: 0; top: 96px; bottom: 0;
  width: 4px;
  background: var(--yellow);
}

.story {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface-1);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.story p {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.story p strong { color: var(--yellow); font-weight: 700; }
.story__kicker {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.mission {
  text-align: center;
  padding: var(--sp-2xl) var(--pad-x);
  max-width: 1000px;
  margin: 0 auto;
}
.mission__mark {
  font-family: "Anton", sans-serif;
  font-size: 200px;
  line-height: 0.7;
  color: var(--yellow);
  display: block;
  margin-bottom: -40px;
}
.mission__quote {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto 32px;
}
.mission__attr {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.series {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.series__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.series__copy h3 {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  line-height: 1;
}
.series__copy p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.series__stats {
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-card) var(--r-card) 0;
}
.series__stats .ss-row {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.series__stats .ss-row:last-child { border-bottom: none; }
.series__stats .ss-num {
  font-family: "Anton", sans-serif;
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
}
.series__stats .ss-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   Scroll fade-in
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 24px; }
  .who__grid { grid-template-columns: 1fr; gap: 32px; }
  .who__card { max-width: 460px; margin: 0 auto; }
  .rules-row { grid-template-columns: 1fr; }
  .cstrip__grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero__avatar { justify-self: center; width: 200px; height: 200px; font-size: 100px; }
  .series { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; --sp-2xl: 80px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero { padding-top: 100px; }
  .hero__label { font-size: 10px; }
  .hero__label::before, .hero__label::after { width: 20px; }
  .rules-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .story { padding: 36px 28px; }
  .section { padding: 80px 0; }
  .page-hero { padding: 140px var(--pad-x) 70px; }
  .about-hero { padding: 140px var(--pad-x) 70px; }
}
