:root {
  --bg: #FFFFFF;
  --bg-soft: #F1F3EF;
  --bg-tinted: #EDF0EA;
  --ink: #0F2419;
  --ink-2: #2B3A2F;
  --ink-3: #5C6B5F;
  --moss: #1F4A30;
  --moss-dark: #133021;
  --lime: #66FF00;
  --lime-dark: #52CC00;
  --line: rgba(15, 36, 25, 0.12);
  --line-strong: rgba(15, 36, 25, 0.22);
  --card: #FBF9F2;
  --leaf: #D6E8C9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
  touch-action: pan-y;
}

.display, h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter Tight', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === NAV === */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 200ms ease;
}
.nav-wrap.scrolled { border-bottom-color: var(--line); }
.nav-wrap.over-dark { background: rgba(8, 16, 10, 0.82); }
.nav-wrap.over-dark.scrolled { border-bottom-color: rgba(255, 255, 255, 0.12); }
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color 300ms ease;
}
.nav-wrap.over-dark .brand { color: #fff; }
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 9px;
  position: relative;
}
.brand-mark::before, .brand-mark::after {
  content: '';
  position: absolute;
  background: var(--lime);
  border-radius: 50% 0 50% 50%;
}
.brand-mark::before {
  width: 16px; height: 16px;
  transform: rotate(-30deg);
  left: 4px; top: 4px;
}
.brand-mark::after {
  width: 10px; height: 10px;
  transform: rotate(140deg);
  right: 5px; bottom: 5px;
  background: var(--leaf);
  opacity: 0.7;
}
.nav-links { display: flex; gap: 8px; }
.nav-link {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-link:hover { background: rgba(15, 36, 25, 0.06); color: var(--ink); }
.nav-link svg { transition: transform 160ms ease; }
.nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-right .nav-link { color: var(--ink); }
.nav-wrap.over-dark .nav-link { color: rgba(232, 242, 234, 0.72); }
.nav-wrap.over-dark .nav-link:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nav-wrap.over-dark .nav-right .nav-link { color: rgba(232, 242, 234, 0.85); }
.nav-wrap.over-dark .btn-primary { background: #fff; color: var(--ink); }
.nav-wrap.over-dark .btn-primary:hover { color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  left: var(--mx, 50%); top: var(--my, 50%);
  width: 760px; height: 760px;
  margin-left: -380px; margin-top: -380px;
  background: var(--lime);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .52s cubic-bezier(.4,0,.2,1);
  z-index: -1;
  pointer-events: none;
}
.btn-primary:hover::before { transform: scale(1); }
.btn-primary:hover { color: var(--ink); transform: translateY(-1px); box-shadow: 0 10px 26px -10px rgba(102,255,0,0.55); }
.btn-lime {
  background: var(--lime);
  color: var(--ink);
}
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-1px); box-shadow: 0 8px 24px -10px rgba(102, 255, 0, 0.55); }
.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 24px 60px -20px rgba(15,36,25,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-link[aria-expanded="true"] + .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  align-items: flex-start;
  transition: background 140ms ease;
  cursor: pointer;
}
.dropdown-item:hover { background: var(--bg-soft); }
.nav-wrap.over-dark .dropdown { background: #111813; border-color: rgba(255,255,255,0.1); box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6); }
.nav-wrap.over-dark .dropdown-item:hover { background: rgba(255,255,255,0.06); }
.nav-wrap.over-dark .dropdown-title { color: #fff; }
.nav-wrap.over-dark .dropdown-sub { color: rgba(232,242,234,0.55); }
.nav-wrap.over-dark .dropdown-icon { background: rgba(255,255,255,0.06); color: var(--lime); }
.dropdown-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--moss);
}
.dropdown-title { font-weight: 600; font-size: 14px; color: var(--ink); }
.dropdown-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* === HERO === */
.hero {
  position: relative;
  margin-top: -76px;
  padding: 136px 0 80px;
  overflow: hidden;
  background: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 32%, rgba(255,255,255,0.5) 52%, rgba(255,255,255,0.16) 76%, rgba(255,255,255,0) 100%),
    url('../img/hero-jungle.png');
  background-image:
    linear-gradient(100deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 32%, rgba(255,255,255,0.5) 52%, rgba(255,255,255,0.16) 76%, rgba(255,255,255,0) 100%),
    image-set(
      url('../img/hero-jungle.webp') type('image/webp'),
      url('../img/hero-jungle.png') type('image/png')
    );
  background-size: cover, cover;
  background-position: center, center top;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
}

/* Monkey glow cluster — sits behind everything, centered on the monkey */
.monkey-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -42%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, filter;
}
.monkey-glow.active {
  opacity: 1;
}
.monkey-glow .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: multiply;
}
.monkey-glow .blob.b-green {
  inset: 8% 8% 8% 8%;
  background: radial-gradient(circle at 50% 50%,
    rgba(102, 255, 0, 0.85) 0%,
    rgba(102, 255, 0, 0.45) 30%,
    rgba(102, 255, 0, 0) 70%);
}
.monkey-glow .blob.b-pink {
  width: 50%;
  height: 50%;
  top: 8%;
  right: 4%;
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 90, 180, 0.75) 0%,
    rgba(255, 90, 180, 0.3) 40%,
    rgba(255, 90, 180, 0) 75%);
}
.monkey-glow .blob.b-cyan {
  width: 45%;
  height: 45%;
  bottom: 8%;
  left: 4%;
  background: radial-gradient(circle at 50% 50%,
    rgba(60, 210, 255, 0.75) 0%,
    rgba(60, 210, 255, 0.3) 40%,
    rgba(60, 210, 255, 0) 75%);
}
.monkey-glow .blob.b-orange {
  width: 38%;
  height: 38%;
  top: 12%;
  left: 10%;
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 170, 60, 0.7) 0%,
    rgba(255, 170, 60, 0.28) 40%,
    rgba(255, 170, 60, 0) 75%);
}
.hero-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
/* Hero text reveal on load */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-grid > div:first-child > * {
  opacity: 0;
  animation: hero-rise 900ms cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-grid > div:first-child > *:nth-child(1) { animation-delay: 60ms; }
.hero-grid > div:first-child > *:nth-child(2) { animation-delay: 180ms; }
.hero-grid > div:first-child > *:nth-child(3) { animation-delay: 320ms; }
.hero-grid > div:first-child > *:nth-child(4) { animation-delay: 460ms; }
.hero-grid > div:first-child > *:nth-child(5) { animation-delay: 600ms; }

.hero-visual {
  opacity: 0;
  animation: hero-rise 1100ms cubic-bezier(.2, .7, .2, 1) 200ms forwards;
}

.eyebrow {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(102, 255, 0, 0.45);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 28px;
}
.eyebrow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  animation: eyebrow-glow 2.8s ease-in-out infinite;
}
.eyebrow-text { position: relative; z-index: 1; }
@keyframes eyebrow-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(102, 255, 0, 0.0); }
  50% { box-shadow: 0 0 16px 1px rgba(102, 255, 0, 0.4); }
}
.eyebrow-shine {
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewX(-18deg) translateX(-180%);
  animation: eyebrow-shine 3.6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes eyebrow-shine {
  0%, 62% { transform: skewX(-18deg) translateX(-180%); }
  80%, 100% { transform: skewX(-18deg) translateX(420%); }
}
.eyebrow-dot {
  position: relative; z-index: 1;
  width: 22px; height: 22px;
  background: var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  animation: eyebrow-dot 2.8s ease-in-out infinite;
}
@keyframes eyebrow-dot {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.18) rotate(20deg); }
}
.h1 {
  font-size: clamp(40px, 4.8vw, 68px);
  letter-spacing: -0.03em;
}
.h1 em {
  font-style: normal;
  position: relative;
  z-index: 0;
  white-space: nowrap;
  isolation: isolate;
}
.h1 em::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 28%;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  margin-top: 24px;
  max-width: 520px;
  line-height: 1.45;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-meta .stars { color: var(--ink); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hero-meta .avatars { display: flex; }
.hero-meta .avatars > div {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}
.hero-meta .avatars > div:first-child { margin-left: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 420px;
}

/* 2D orbit */
.orbit-rail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 3;
  transform: rotate(calc(var(--orbit-angle, 0deg) + var(--offset, 0deg)));
}
.orbit-rail > .ig-card {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: auto;
  transform:
    translate(-50%, -50%)
    translateY(calc(-1 * var(--radius, 220px)))
    rotate(calc(-1 * (var(--orbit-angle, 0deg) + var(--offset, 0deg))))
    rotate(var(--tilt, 0deg));
}
.ig-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 30px 60px -25px rgba(15, 36, 25, 0.25),
    0 8px 16px -8px rgba(15, 36, 25, 0.1);
  overflow: hidden;
}
.ig-card-body {
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 21px 21px 0 0;
  transform: translateZ(0);
  background: repeating-linear-gradient(
    135deg,
    var(--leaf) 0,
    var(--leaf) 12px,
    #c4dcb6 12px,
    #c4dcb6 24px
  );
  position: relative;
}
.ig-card-body.warm {
  background: repeating-linear-gradient(
    135deg,
    #f4d4a8 0,
    #f4d4a8 12px,
    #ecc899 12px,
    #ecc899 24px
  );
}
.ig-card-body.cool {
  background: repeating-linear-gradient(
    135deg,
    #c5d9e8 0,
    #c5d9e8 12px,
    #b5cce0 12px,
    #b5cce0 24px
  );
}
.ig-card-foot {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-2);
  background: var(--card);
}
.ig-card-foot .like { display: flex; align-items: center; gap: 4px; font-weight: 600; color: var(--ink); }
.ig-card-tag {
  position: absolute;
  top: 9px; left: 9px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #6B7770;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(15, 36, 25, 0.08);
  box-shadow: 0 3px 10px -5px rgba(15, 36, 25, 0.25);
  z-index: 2;
  animation: earn-emerald 5s ease-in-out infinite;
}
@keyframes earn-emerald {
  0%, 78% { color: #6B7770; text-shadow: none; }
  86% { color: #0EA86A; }
  88% { color: #10B981; text-shadow: 0 0 9px rgba(16, 185, 129, 0.55); }
  96%, 100% { color: #6B7770; text-shadow: none; }
}
.ig-card-plats {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-3);
}
.ig-card-plats svg { width: 13px; height: 13px; }
.ig-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.ig-card.c1 { width: 200px; top: 0; left: 8%; transform: rotate(-8deg); }
.ig-card.c2 { width: 240px; top: 80px; right: 4%; transform: rotate(6deg); z-index: 2; }
.ig-card.c3 { width: 180px; bottom: 30px; left: 18%; transform: rotate(10deg); }
.ig-card.c4 { width: 170px; bottom: 80px; right: 14%; transform: rotate(-4deg); }

@keyframes float {
  0%, 100% { transform: var(--rot, rotate(0)) translateY(0); }
  50% { transform: var(--rot, rotate(0)) translateY(-12px); }
}
.cta-visual .ig-card { animation: float 6s ease-in-out infinite; }
.cta-visual .ig-card.c1 { --rot: rotate(8deg); }
.cta-visual .ig-card.c2 { --rot: rotate(-6deg); }
.cta-visual .ig-card.c3 { --rot: rotate(2deg); }

.center-orb {
  position: absolute;
  width: 360px;
  height: auto;
  top: 50%; left: 50%;
  transform: translate(-50%, -16%);
  display: block;
  z-index: 1;
  cursor: pointer;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.center-orb:hover { transform: translate(-50%, -16%); box-shadow: none; }
.orb-monkey {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(15, 36, 25, 0.25));
  pointer-events: none;
  user-select: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* === MARQUEE === */
.trusted {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.trusted-row {
  display: flex;
  align-items: center;
  gap: 48px;
}
.trusted-label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.marquee-track .logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink-3);
  opacity: 0.55;
  white-space: nowrap;
  font-style: italic;
}
.marquee-track .logo.script { font-family: 'Caveat', cursive; font-size: 36px; font-style: normal; }
.marquee-track .logo.mono { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-style: normal; letter-spacing: -0.05em; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* === SECTIONS === */
section { position: relative; }
.section { padding: 120px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}
.section-head .title { flex: 1; max-width: 720px; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
}
.h2 { font-size: clamp(36px, 4.4vw, 60px); }
.section-sub { font-size: 17px; color: var(--ink-2); max-width: 440px; }

/* === STATS === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(15,36,25,0.15); }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.stat-visual {
  flex: 1;
  position: relative;
  margin-top: 12px;
}

/* Stat: creator bubbles */
.bubbles { position: absolute; inset: 0; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--leaf);
  border: 2px solid var(--card);
  overflow: hidden;
  background-size: cover;
}
.bubble::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.3) 0 2px, transparent 2px 6px);
}
.bubble.b1 { width: 60px; height: 60px; bottom: 20px; left: 10px; background: #d4a574; }
.bubble.b2 { width: 48px; height: 48px; bottom: 60px; left: 70px; background: #8fa68e; }
.bubble.b3 { width: 70px; height: 70px; top: 0; right: 20px; background: #c6916f; }
.bubble.b4 { width: 42px; height: 42px; bottom: 10px; right: 50px; background: #9c7c63; }
.bubble.b5 { width: 52px; height: 52px; top: 60px; left: 90px; background: #b8956d; }

/* Stat: brand pills */
.brand-pills { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.brand-pill {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
}
.brand-pill.alt { background: var(--card); }

/* Stat: big number */
.big-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, var(--ink) 30%, var(--moss) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: absolute;
  bottom: -20px;
  right: -8px;
  line-height: 0.85;
}

/* Stat: payment flow */
.pay-flow {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.pay-flow svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.pay-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card);
  position: absolute;
  background-size: cover;
}
.pay-dot.d1 { top: 20%; right: 16px; background: #b89478; }
.pay-dot.d2 { top: 50%; right: 16px; transform: translateY(-50%); background: #a07f5f; width: 44px; height: 44px; }
.pay-dot.d3 { bottom: 18%; right: 16px; background: #c4a888; }
.pay-source {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--lime);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 700;
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.feature.dark {
  background: var(--moss-dark);
  color: #E8F2EA;
  border-color: transparent;
}
.feature.dark .feature-title { color: #fff; }
.feature.dark .feature-desc { color: rgba(232, 242, 234, 0.7); }
.feature-tag {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(31, 74, 48, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
}
.feature.dark .feature-tag { color: var(--lime); background: rgba(102, 255, 0, 0.14); }
.feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 16px;
  max-width: 380px;
}
.feature-desc {
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 10px;
  max-width: 420px;
}
.feature-stage {
  flex: 1;
  margin-top: 28px;
  position: relative;
}

/* Source feature: creator cards */
.creator-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 12px;
  box-shadow: 0 8px 24px -16px rgba(15,36,25,0.2);
  position: absolute;
  width: 280px;
}
.creator-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #c4a888;
  flex-shrink: 0;
  background-size: cover;
}
.creator-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.creator-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.creator-chips { display: flex; gap: 6px; margin-top: 8px; }
.chip {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 500;
}
.chip.green { background: #d8efd0; color: #1f5b32; }
.chip.lime { background: #ebf9c8; color: #4d6a14; }
.chip.cream { background: var(--bg); color: var(--ink-2); border: 1px solid var(--line); }
.creator-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-3);
}
.creator-card.cc1 { top: 0; left: 0; transform: rotate(-2deg); }
.creator-card.cc2 { top: 80px; left: 80px; transform: rotate(2deg); z-index: 2; }
.creator-card.cc3 { top: 180px; left: 20px; transform: rotate(-1deg); z-index: 3; }

/* Track feature: dashboard */
.dash {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(102, 255, 0, 0.18);
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dash-title { font-size: 13px; color: rgba(232, 242, 234, 0.7); }
.dash-pill {
  font-size: 11px;
  background: rgba(102, 255, 0, 0.14);
  color: var(--lime);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.dash-stat-label { font-size: 11px; color: rgba(232, 242, 234, 0.5); }
.dash-stat-num { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 22px; color: #fff; letter-spacing: -0.02em; margin-top: 2px; }
.dash-stat-change { font-size: 10px; color: var(--lime); margin-top: 2px; }
.dash-chart {
  flex: 1;
  position: relative;
  min-height: 100px;
}
.dash-chart svg { width: 100%; height: 100%; display: block; }

/* Pay feature: invoice */
.invoice-stage {
  position: relative;
  height: 100%;
}
.invoice {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  width: 220px;
  box-shadow: 0 16px 40px -20px rgba(15,36,25,0.25);
}
.invoice.i1 { top: 0; left: 10%; transform: rotate(-4deg); z-index: 2; }
.invoice.i2 { top: 50px; left: 38%; transform: rotate(3deg); z-index: 1; opacity: 0.85; }
.invoice-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.invoice-label { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.invoice-status {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
  background: #d8efd0; color: #1f5b32;
}
.invoice-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 12px; }
.invoice-row .l { color: var(--ink-3); }
.invoice-row .v { color: var(--ink); font-weight: 600; }
.invoice-total { display: flex; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 6px; }
.invoice-total .l { font-size: 12px; color: var(--ink-2); font-weight: 600; }
.invoice-total .v { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 20px; color: var(--ink); }
.pay-success {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(102, 255, 0, 0.95);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(168, 226, 48, 0.6);
}

/* Manage feature: roster */
.roster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  height: 100%;
}
.roster-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.roster-cell.featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.roster-row { display: flex; gap: 10px; align-items: center; }
.r-avatar {
  width: 32px; height: 32px;
  border-radius: 10px;
  background-size: cover;
  flex-shrink: 0;
}
.r-name { font-size: 13px; font-weight: 600; }
.roster-cell.featured .r-name { color: #fff; }
.r-handle { font-size: 11px; color: var(--ink-3); }
.roster-cell.featured .r-handle { color: rgba(255,255,255,0.5); }
.r-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--bg);
  overflow: hidden;
  margin-top: auto;
}
.roster-cell.featured .r-bar { background: rgba(255,255,255,0.1); }
.r-bar-fill { height: 100%; background: var(--moss); border-radius: 999px; }
.roster-cell.featured .r-bar-fill { background: var(--lime); }
.r-foot { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-3); }
.roster-cell.featured .r-foot { color: rgba(255,255,255,0.55); }

/* === ABOUT (black) === */
.about {
  background: #0A0F0C;
  color: #E8F2EA;
  padding: 52px 0 96px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102, 255, 0, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 255, 0, 0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, rgba(0,0,0,0.45) 44%, rgba(0,0,0,0.45) 56%, transparent 90%);
  mask-image: linear-gradient(180deg, transparent 2%, rgba(0,0,0,0.45) 44%, rgba(0,0,0,0.45) 56%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}
/* static grid; certain areas softly brighten/dim in place (no movement) */
.about-glows { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.about-glows span {
  position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(102,255,0,0.14), rgba(102,255,0,0) 68%);
  opacity: 0;
  animation: about-glow 9s ease-in-out infinite;
}
.about-glows span:nth-child(2) { animation-delay: 2.4s; }
.about-glows span:nth-child(3) { animation-delay: 4.8s; }
.about-glows span:nth-child(4) { animation-delay: 7s; }
@keyframes about-glow { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }
.about > .container { position: relative; z-index: 1; }
.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 56px;
  margin-bottom: 0;
  position: relative;
}
/* animated neon crown behind the headline */
.crown-neon {
  display: block;
  width: 58px;
  margin: 0 auto 16px;
  opacity: 0;
  animation: crown-flicker 7s linear infinite;
}
.crown-neon svg {
  width: 100%; height: auto; display: block;
  filter:
    drop-shadow(0 0 1.5px #ffffff)
    drop-shadow(0 0 4px rgba(255,255,255,0.9))
    drop-shadow(0 0 10px #66FF00)
    drop-shadow(0 0 20px rgba(102,255,0,0.85));
}
.crown-path, .crown-base { fill: none; stroke: #D6FFB0; stroke-width: 2.6; stroke-linejoin: round; stroke-linecap: round; }
.crown-path { fill: rgba(102, 255, 0, 0.06); }
.crown-jewel { fill: #EAFFD2; }
@keyframes crown-flicker {
  0%, 57% { opacity: 0; }
  58% { opacity: 0.85; }
  59% { opacity: 0.1; }
  60.5% { opacity: 1; }
  61.5% { opacity: 0.25; }
  62.5% { opacity: 0.95; }
  63.5% { opacity: 0.12; }
  65% { opacity: 1; }
  71% { opacity: 0.9; }
  72.5% { opacity: 0.3; }
  73.5% { opacity: 0.88; }
  75% { opacity: 0; }
  100% { opacity: 0; }
}
/* rope-hanging spy monkeys flanking the headline */
.rope-monkeys { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.rope-monkey {
  position: absolute;
  top: -150px;
  width: 150px;
  opacity: 0;
  transform: translateY(-440px);
  transition: transform 1.25s cubic-bezier(.34, 1.2, .5, 1), opacity .5s ease;
  transform-origin: top center;
}
.rope-monkey img { display: block; width: 100%; height: auto; transform-origin: top center; animation: rope-sway 4.5s ease-in-out infinite; }
.rope-l { left: -36px; }
.rope-r { right: -36px; }
.rope-monkeys.drop .rope-monkey { opacity: 1; transform: translateY(0); }
.rope-monkeys.drop .rope-r { transition-delay: .18s; }
@keyframes rope-sway {
  0%, 100% { transform: rotate(-2.5deg); }
  50% { transform: rotate(2.5deg); }
}
.rope-r img { animation-delay: -2.2s; }
@media (max-width: 980px) { .rope-monkeys { display: none; } }
.about-step {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #66FF00;
  margin-bottom: 16px;
}
.about-eyebrow { color: #66FF00; }
.about-title {
  font-size: clamp(36px, 4.2vw, 56px);
  color: #fff;
  letter-spacing: -0.025em;
}

/* 4-step grid */
.about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.astep {
  position: relative;
  text-align: left;
  padding: 0 0 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}
.astep.active {
  transform: translateY(-5px);
  border-color: rgba(102, 255, 0, 0.45);
  background: rgba(102, 255, 0, 0.045);
  box-shadow: 0 28px 64px -28px rgba(102, 255, 0, 0.4);
}

/* visual stage */
.astep-stage {
  position: relative;
  height: 132px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(220px 120px at 50% 0%, rgba(102, 255, 0, 0.05), transparent 70%),
    rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.astep.active .astep-stage {
  background:
    radial-gradient(220px 130px at 50% 0%, rgba(102, 255, 0, 0.12), transparent 70%),
    rgba(0, 0, 0, 0.3);
}
.sv { position: absolute; inset: 0; }

/* --- V1 signup --- */
.sv-signup { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.sv-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  transform: scale(0.82); opacity: 0.25;
  transition: transform .5s cubic-bezier(.2,1.4,.5,1) .1s, opacity .5s ease .1s;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.45);
}
.sv-avatar img {
  width: 30px; height: 30px; object-fit: contain;
  transform: scale(0.35) rotate(-30deg); opacity: 0;
  transition: transform .6s cubic-bezier(.2,1.5,.5,1) .35s, opacity .4s ease .35s;
}
.astep.active .sv-signup .sv-avatar img { transform: scale(1) rotate(0); opacity: 1; }
.astep.active .sv-signup .sv-avatar { transform: scale(1); opacity: 1; }
.sv-lines { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.sv-line { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.18); transform: scaleX(0.12); transform-origin: left; opacity: 0.3; transition: transform .5s cubic-bezier(.2,.8,.3,1), opacity .5s ease; }
.sv-line.l1 { width: 88px; transition-delay: .34s; }
.sv-line.l2 { width: 56px; transition-delay: .48s; }
.astep.active .sv-line { transform: scaleX(1); opacity: 1; }
.sv-check {
  position: absolute; top: 30px; right: calc(50% - 46px);
  width: 22px; height: 22px; border-radius: 50%;
  background: #66FF00; color: #062a00;
  display: grid; place-items: center;
  transform: scale(0); opacity: 0;
  transition: transform .45s cubic-bezier(.2,1.5,.5,1) .8s, opacity .3s ease .8s;
}
.sv-check svg { width: 13px; height: 13px; }
.astep.active .sv-signup .sv-check { transform: scale(1); opacity: 1; }

/* --- V2 deals --- */
.sv-deals { padding: 16px 18px; display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.sv-deal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(232,242,234,0.8);
  padding: 7px 11px; border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}
.sv-amt { color: #fff; font-weight: 600; }
/* highlighted brief (PicSart) — green border sits exactly on the panel edge */
.sv-deal.d2 {
  transition: border-color .5s ease .3s, background .5s ease .3s, box-shadow .5s ease .3s;
}
.astep.active .sv-deal.d2 {
  border-color: #66FF00;
  background: rgba(102,255,0,0.1);
  box-shadow: 0 0 18px rgba(102,255,0,0.3);
}

/* --- V3 post --- */
.sv-post { display: flex; flex-direction: column; }
.sv-views { display: flex; align-items: baseline; gap: 8px; padding: 16px 18px 0; }
.sv-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .06em;
  color: #66FF00; align-self: center;
}
.sv-live i { width: 5px; height: 5px; border-radius: 50%; background: #66FF00; box-shadow: 0 0 7px #66FF00; animation: sv-blink 1.2s ease-in-out infinite; }
@keyframes sv-blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.sv-viewnum { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.sv-viewlbl { font-size: 11px; color: rgba(232,242,234,0.5); }
.sv-bars { flex: 1; display: flex; align-items: flex-end; gap: 6px; padding: 10px 18px 16px; }
.sv-bars span {
  flex: 1; height: 16%; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #66FF00, rgba(102,255,0,0.25));
  transition: height .7s cubic-bezier(.2,.9,.3,1);
}
.astep.active .sv-bars span { height: var(--h); }
.astep.active .sv-bars span:nth-child(1){transition-delay:.1s}
.astep.active .sv-bars span:nth-child(2){transition-delay:.18s}
.astep.active .sv-bars span:nth-child(3){transition-delay:.26s}
.astep.active .sv-bars span:nth-child(4){transition-delay:.34s}
.astep.active .sv-bars span:nth-child(5){transition-delay:.42s}
.astep.active .sv-bars span:nth-child(6){transition-delay:.5s}

/* --- V4 game --- */
.sv-game { padding: 14px 16px; display: flex; align-items: center; }
.sv-lb { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.sv-lbrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(232,242,234,0.7);
  padding: 5px 8px; border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: all .5s ease;
}
.sv-lbrow.you {
  background: rgba(102,255,0,0.1);
  border: 1px solid rgba(102,255,0,0.3);
  color: #fff;
  transform: translateY(22px); opacity: 0;
  transition: transform .65s cubic-bezier(.3,1.2,.4,1) .2s, opacity .5s ease .2s;
}
.astep.active .sv-lbrow.you { transform: translateY(0); opacity: 1; }
.sv-rk { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: #66FF00; width: 14px; }
.sv-lbrow:not(.you) .sv-rk { color: rgba(255,255,255,0.4); }
.sv-nm { flex: 1; }
.sv-pts { font-size: 11px; color: #66FF00; font-weight: 600; }
.sv-trophy {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(102,255,0,0.12); color: #66FF00;
  display: grid; place-items: center; margin-left: 10px;
  transform: scale(0.7); opacity: .4;
  transition: transform .5s cubic-bezier(.2,1.4,.5,1) .35s, opacity .4s ease .35s;
}
.astep.active .sv-trophy { transform: scale(1); opacity: 1; }

/* card meta */
.astep-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 24px;
}
.astep-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.18);
  transition: color 300ms ease;
}
.astep.active .astep-num { color: rgba(102, 255, 0, 0.75); }
.astep-ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(102, 255, 0, 0.12);
  color: #66FF00;
  display: grid;
  place-items: center;
  transition: background 300ms ease, transform 300ms ease;
}
.astep.active .astep-ic { background: rgba(102, 255, 0, 0.22); transform: scale(1.06); }
.astep-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  padding: 0 24px;
}
.astep-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(232, 242, 234, 0.6);
  margin-top: 8px;
  padding: 0 24px;
}

/* auto-play progress bar */
.astep-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}
.astep-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #66FF00, #9bff5e);
  box-shadow: 0 0 10px rgba(102, 255, 0, 0.6);
}
.astep.active .astep-bar span {
  animation-name: astep-fill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes astep-fill { from { width: 0; } to { width: 100%; } }

@media (max-width: 980px) {
  .about-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .about-steps { grid-template-columns: 1fr; }
}

/* === HEADLINE FLANKS + REWARDING ACCENT === */
.headline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.flank {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102,255,0,0.7));
  position: relative;
  flex-shrink: 0;
}
.flank::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #66FF00;
  box-shadow: 0 0 12px rgba(102,255,0,0.8);
  transform: translateY(-50%);
}
.flank-l { background: linear-gradient(90deg, transparent, rgba(102,255,0,0.7)); }
.flank-l::after { right: 0; animation: flank-pulse-r 2.4s ease-in-out infinite; }
.flank-r { background: linear-gradient(90deg, rgba(102,255,0,0.7), transparent); }
.flank-r::after { left: 0; animation: flank-pulse-l 2.4s ease-in-out infinite; }
@keyframes flank-pulse-r { 0%,100%{ transform: translateY(-50%) translateX(0); opacity:1;} 50%{ transform: translateY(-50%) translateX(-6px); opacity:.55;} }
@keyframes flank-pulse-l { 0%,100%{ transform: translateY(-50%) translateX(0); opacity:1;} 50%{ transform: translateY(-50%) translateX(6px); opacity:.55;} }

.rewarding {
  position: relative;
  color: #66FF00;
  display: inline-block;
}
.rewarding::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: #66FF00;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: rewarding-underline 2.8s cubic-bezier(.5,0,.2,1) infinite;
  box-shadow: 0 0 12px rgba(102,255,0,0.7);
}
@keyframes rewarding-underline {
  0% { transform: scaleX(0); transform-origin: left; }
  35% { transform: scaleX(1); transform-origin: left; }
  65% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@media (max-width: 700px) {
  .flank { width: 24px; }
  .headline-wrap { gap: 14px; }
}

/* === DOUBLE ARROW under steps === */
.steps-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 40px;
  height: 38px;
}
.steps-down span {
  width: 16px;
  height: 16px;
  border-right: 2.5px solid #66FF00;
  border-bottom: 2.5px solid #66FF00;
  transform: rotate(45deg);
  opacity: 0.35;
  animation: chev-fall 1.8s ease-in-out infinite;
}
.steps-down span:nth-child(2) { animation-delay: 0.22s; }
@keyframes chev-fall {
  0% { opacity: 0.15; transform: rotate(45deg) translate(-3px,-3px); }
  50% { opacity: 1; }
  100% { opacity: 0.15; transform: rotate(45deg) translate(3px,3px); }
}

/* === CENTRAL TIMELINE === */
.tl {
  margin-top: 36px;
}
.tl-track {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 0;
}
.tl-rows {
  position: relative;
}
.tl-rail {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.tl-rail-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(180deg, #66FF00, #9bff5e);
  box-shadow: 0 0 16px rgba(102,255,0,0.7);
  border-radius: 2px;
  transition: height 120ms linear;
}
.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 16px 0;
}
.tl-row .tl-text { grid-column: 1; text-align: right; padding-right: 40px; }
.tl-row .tl-media { grid-column: 2; padding-left: 40px; }
.tl-row.rev .tl-text { grid-column: 2; text-align: left; padding-right: 0; padding-left: 40px; order: 2; }
.tl-row.rev .tl-media { grid-column: 1; padding-left: 0; padding-right: 40px; order: 1; }

.tl-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #060d08;
  border: 2px solid rgba(255,255,255,0.2);
  z-index: 2;
  transition: transform .5s cubic-bezier(.2,1.4,.5,1), border-color .5s ease, box-shadow .5s ease;
}
.tl-row.in .tl-node {
  transform: translate(-50%, -50%) scale(1);
  border-color: #66FF00;
  box-shadow: 0 0 0 5px rgba(102,255,0,0.14), 0 0 18px rgba(102,255,0,0.6);
}

/* reveal */
.tl-media {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.tl-row.in .tl-media { opacity: 1; transform: translateY(0); transition-delay: .2s; }

.tl-step {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #66FF00;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.tl-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.06;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.2,.7,.2,1) .08s, transform .65s cubic-bezier(.2,.7,.2,1) .08s;
}
.tl-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(232, 242, 234, 0.78);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1) .18s, transform .7s cubic-bezier(.2,.7,.2,1) .18s;
}
.tl-row.in .tl-step,
.tl-row.in .tl-title,
.tl-row.in .tl-desc { opacity: 1; transform: translateY(0); }

/* media column */
.tl-media { display: flex; justify-content: center; }
.w {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,0.8);
}
.tl-row.in .w { box-shadow: 0 30px 70px -30px rgba(102,255,0,0.18), 0 30px 70px -40px rgba(0,0,0,0.8); }

/* W1 — profile setup */
.w1-head { display: flex; align-items: center; gap: 12px; }
.w1-avatar { width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg,#c4a888,#7a5a3c); flex-shrink: 0; }
.w1-name { font-weight: 700; font-size: 15px; color: #fff; }
.w1-niche { font-size: 12px; color: rgba(232,242,234,0.55); margin-top: 2px; }
.w1-badge { margin-left: auto; width: 24px; height: 24px; border-radius: 50%; background: #66FF00; color: #062a00; display: grid; place-items: center; }
.w1-badge svg { width: 13px; height: 13px; }
.w1-socials { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.w1-soc {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(232,242,234,0.8);
  padding: 9px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.07);
}
.w1-soc span { flex: 1; }
.w1-soc em { font-style: normal; font-size: 11px; color: #66FF00; font-weight: 600; }
.w1-soc i { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: rgba(102,255,0,0.18); color: #66FF00; }
.w1-soc i svg { width: 11px; height: 11px; }
.w1-soc.on { border-color: rgba(102,255,0,0.22); }
.w1-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 11px 18px;
  margin-top: 14px; text-align: center;
  font-weight: 600; font-size: 14px; color: #062a00;
  background: #66FF00; border-radius: 10px;
  cursor: pointer; transition: filter 140ms ease, transform 120ms ease;
}
.w1-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* W2 — deals + recording */
.w2-list { display: flex; flex-direction: column; gap: 8px; }
.w2-deal {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(232,242,234,0.82); font-weight: 500;
  padding: 11px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.07);
}
.w2-deal span { color: #fff; font-weight: 600; }
.w2-deal.sel { border-color: rgba(102,255,0,0.45); background: rgba(102,255,0,0.08); box-shadow: 0 0 18px rgba(102,255,0,0.15); }
.w2-rec { margin-top: 14px; }
.w2-recframe {
  position: relative;
  height: 80px; border-radius: 12px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 10px, rgba(255,255,255,0.02) 10px 20px);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 7px;
  padding: 0 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.05em; color: #ff5a5a;
}
.w2-recdot { width: 8px; height: 8px; border-radius: 50%; background: #ff5a5a; box-shadow: 0 0 8px #ff5a5a; animation: sv-blink 1.2s ease-in-out infinite; }
.w2-time { margin-left: auto; color: rgba(255,255,255,0.7); }
.w2-reclabel { font-size: 12px; color: rgba(232,242,234,0.55); margin-top: 8px; text-align: center; }

/* W3 — community */
.w3-chal { border-radius: 12px; padding: 13px 14px; background: rgba(102,255,0,0.06); border: 1px solid rgba(102,255,0,0.22); }
.w3-chal-top { display: flex; justify-content: space-between; align-items: center; }
.w3-chal-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #66FF00; font-weight: 600; }
.w3-chal-tag svg { width: 12px; height: 12px; }
.w3-prize { font-size: 12px; font-weight: 700; color: #fff; }
.w3-chal-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-top: 6px; }
.w3-members { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.w3-avs { display: flex; }
.w3-avs span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #0a0f0c; margin-left: -8px; }
.w3-avs span:first-child { margin-left: 0; }
.w3-count { font-size: 12px; color: rgba(232,242,234,0.6); }
.w3-chat { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.w3-bub { font-size: 12.5px; color: rgba(232,242,234,0.82); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 8px 11px; border-radius: 12px 12px 12px 4px; align-self: flex-start; max-width: 86%; }
.w3-bub.me { align-self: flex-end; border-radius: 12px 12px 4px 12px; background: rgba(102,255,0,0.1); border-color: rgba(102,255,0,0.25); color: #fff; }

/* W4 — leaderboard + portfolio */
.w4-lb { display: flex; flex-direction: column; gap: 6px; }
.w4-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(232,242,234,0.72); padding: 8px 11px; border-radius: 9px; background: rgba(255,255,255,0.03); }
.w4-row.you { background: rgba(102,255,0,0.1); border: 1px solid rgba(102,255,0,0.3); color: #fff; }
.w4-rk { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: #66FF00; width: 14px; }
.w4-row:not(.you) .w4-rk { color: rgba(255,255,255,0.4); }
.w4-nm { flex: 1; }
.w4-pt { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.85); }
.w4-port { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 14px; }
.w4-port span { aspect-ratio: 9/16; border-radius: 7px; background: repeating-linear-gradient(135deg, rgba(102,255,0,0.14) 0 6px, rgba(102,255,0,0.04) 6px 12px); border: 1px solid rgba(102,255,0,0.12); }
.w4-portlabel { font-size: 11.5px; color: rgba(232,242,234,0.5); margin-top: 10px; text-align: center; }

/* === FINISH LINE (Step 5) === */
.tl-finish-wrap {
  position: relative;
  max-width: 620px;
  margin: 14px auto 0;
}
.tl-finish {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 44px 36px 40px;
  border-radius: 26px;
  border: 1px solid rgba(102,255,0,0.3);
  background:
    radial-gradient(420px 260px at 50% 0%, rgba(102,255,0,0.14), transparent 70%),
    #0b120e;
  box-shadow: 0 40px 90px -40px rgba(102,255,0,0.4);
  opacity: 0;
  transform: translateY(46px) scale(0.97);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.tl-finish.revealed { opacity: 1; transform: translateY(0) scale(1); }
.tl-finish-node {
  position: absolute; left: 50%; top: -10px; transform: translateX(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: #66FF00; border: 3px solid #0a0f0c;
  box-shadow: 0 0 0 5px rgba(102,255,0,0.18), 0 0 26px rgba(102,255,0,0.8);
}
.tl-finish-node::before, .tl-finish-node::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; border: 2px solid rgba(102,255,0,0.5);
  animation: finish-ring 2.4s ease-out infinite;
}
.tl-finish-node::after { animation-delay: 1.2s; }
@keyframes finish-ring { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(2.6); opacity: 0; } }
.tl-finish-step { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #66FF00; }
.tl-finish-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800; letter-spacing: -0.03em; color: #fff;
  margin-top: 12px; line-height: 1.02;
}
.tl-finish-desc { font-size: 16px; line-height: 1.6; color: rgba(232,242,234,0.7); margin-top: 16px; }
.tl-finish-cta { margin-top: 28px; }
.tl-finish-hint {
  display: block;
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 242, 234, 0.4);
  transition: opacity .4s ease;
}
.tl-finish:hover { border-color: rgba(102,255,0,0.55); }

/* income side panels — sit BEHIND the big block, slide out from behind on hover (both at once) */
.tl-side {
  position: absolute;
  top: 50%;
  width: 230px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(102, 255, 0, 0.22);
  background: rgba(10, 18, 12, 0.98);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.85);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.tl-side-l { right: 100%; margin-right: -34px; transform: translate(64px, -50%) scale(0.95); transform-origin: right center; }
.tl-side-r { left: 100%; margin-left: -34px; transform: translate(-64px, -50%) scale(0.95); transform-origin: left center; }
.tl-finish-wrap:hover .tl-side-l,
.tl-finish-wrap:hover .tl-side-r { opacity: 1; transform: translate(0, -50%) scale(1); transition-delay: 0s; }

.tl-side-h {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: #66FF00;
  margin-bottom: 12px;
}
.tl-side-h svg { width: 14px; height: 14px; }
.tl-side-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(232,242,234,0.72);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tl-side-row span { flex: 1; text-align: left; }
.tl-side-row b { color: #fff; font-weight: 600; }
.tl-side-row i { width: 18px; height: 18px; border-radius: 50%; background: rgba(102,255,0,0.18); color: #66FF00; display: grid; place-items: center; }
.tl-side-row i svg { width: 11px; height: 11px; }
.tl-side-row.next { color: rgba(232,242,234,0.55); }
.tl-side-row.next em { font-style: normal; font-size: 10px; color: #66FF00; font-family: 'JetBrains Mono', monospace; }

.tl-contract {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 11px; border-radius: 9px;
  background: rgba(102,255,0,0.06); border: 1px solid rgba(102,255,0,0.18);
  margin-bottom: 7px;
}
.tl-c-name { font-weight: 600; font-size: 13px; color: #fff; }
.tl-c-term { font-size: 11px; color: #66FF00; }
.tl-trend { margin-top: 10px; }
.tl-trend svg { width: 100%; height: 40px; display: block; }
.tl-trend-lbl { display: block; font-size: 11px; color: rgba(232,242,234,0.55); margin-top: 6px; text-align: center; }

@media (max-width: 980px) {
  .tl-side { display: none; }
}

@media (max-width: 820px) {
  .tl-rail { left: 18px; }
  .tl-row { grid-template-columns: 1fr; gap: 18px; padding: 26px 0 26px 48px; }
  .tl-row .tl-text,
  .tl-row.rev .tl-text { grid-column: 1; text-align: left; padding: 0; order: 1; }
  .tl-row .tl-media,
  .tl-row.rev .tl-media { grid-column: 1; padding: 0; order: 2; justify-content: flex-start; }
  .tl-node { left: 18px; }
  .w { max-width: 100%; }
  .tl-finish { margin-left: 0; }
}

.about-copy {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(232, 242, 234, 0.7);
  max-width: 460px;
}
.about-copy strong {
  color: #fff;
  font-weight: 600;
}

.about-brands {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about-brands-top {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-brands-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}
.about-marquee {
  width: 100%;
}
.about-marquee .marquee-track .logo {
  color: rgba(232, 242, 234, 0.55);
}
.about-marquee .marquee-track { align-items: center; gap: 72px; }
.brand-logo-img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 200ms ease;
}
.brand-logo-img:hover { opacity: 0.85; }
.about-label {
  color: rgba(232, 242, 234, 0.55) !important;
}
.about .marquee {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.about .marquee-track .logo {
  color: rgba(232, 242, 234, 0.5);
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-brands { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* === COMMUNITY / EVENTS === */
.community {
  background: #fff;
  padding: 110px 0 56px;
  position: relative;
  z-index: 2;
}
.comm-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.comm-head-mid { margin-top: 120px; }
.comm-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 14px;
}
.comm-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; color: var(--ink);
}
.comm-accent { position: relative; color: var(--ink); white-space: nowrap; }
.comm-accent::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 4px; height: 32%;
  background: var(--lime); z-index: -1; border-radius: 4px;
}
.comm-accent-live::after {
  background: #e0392b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s cubic-bezier(.45,0,.2,1);
  will-change: transform;
}
.comm-accent-live.drawn::after { transform: scaleX(1); }
.comm-sub { font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 600px; margin: 18px auto 0; }

/* --- event split layout --- */
.comm-event {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}
.comm-event-left { max-width: 460px; }
.comm-event-left .comm-eyebrow { margin-bottom: 16px; }
.comm-event-left .comm-title { font-size: clamp(36px, 4.2vw, 54px); line-height: 1.06; }
.comm-event-left .comm-sub { margin: 22px 0 0; font-size: 18px; line-height: 1.6; }
.comm-event-left .comm-cta-row { align-items: flex-start; margin-top: 30px; }
.comm-cta-row { display: flex; flex-direction: column; gap: 12px; }
.comm-cta-note { font-size: 13px; color: var(--ink-3); }

/* --- vertical symmetrical bracket --- */
.brkv {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.brkv-round { display: flex; align-items: stretch; }
.r-qf { justify-content: space-around; }
.r-sf { justify-content: space-around; }
.r-f { justify-content: center; }
.brkv-link { position: relative; height: 26px; }
.brkv-link-straight { height: 18px; }
.seg { position: absolute; background: var(--line-strong); transition: background .5s ease, box-shadow .5s ease; }
.seg.v { width: 2px; transform: translateX(-1px); }
.seg.h { height: 2px; transform: translateY(-1px); }
.seg.lit { background: var(--lime-dark); box-shadow: 0 0 8px rgba(102,255,0,0.6); }

.brkv .brk-match {
  width: 120px;
  border: 1px solid var(--line); border-radius: 11px; overflow: hidden;
  background: var(--card); box-shadow: 0 8px 22px -16px rgba(15,36,25,0.3);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease;
  will-change: opacity, transform;
}
.r-sf .brk-match, .r-f .brk-match { width: 150px; }
.brk-seed {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 7px 9px; font-size: 11px;
  transition: background .5s cubic-bezier(.4,0,.2,1), opacity .5s cubic-bezier(.4,0,.2,1);
}
/* placeholder slot (shown before a seed is populated) */
.brk-ph {
  position: absolute; left: 28px; top: 50%; transform: translateY(-50%);
  width: 52px; height: 6px; border-radius: 999px;
  background: var(--line-strong); opacity: 0.5;
  transition: opacity .5s ease;
}
.brk-seed.pop .brk-ph { opacity: 0; }
.brk-seed .brk-av { transition: filter .55s ease, opacity .55s ease; }
.brk-seed:not(.pop) .brk-av { filter: grayscale(1); opacity: 0.3; }
.brk-seed .brk-h, .brk-seed .brk-v { transition: opacity .55s ease, color .5s ease; }
.brk-seed:not(.pop) .brk-h, .brk-seed:not(.pop) .brk-v { opacity: 0; }
/* staggered cascade so wins resolve in a flowing sequence */
.r-qf .brk-match:nth-child(1) .brk-seed { transition-delay: 0s; }
.r-qf .brk-match:nth-child(2) .brk-seed { transition-delay: .16s; }
.r-qf .brk-match:nth-child(3) .brk-seed { transition-delay: .32s; }
.r-qf .brk-match:nth-child(4) .brk-seed { transition-delay: .48s; }
.r-sf .brk-match:nth-child(2) .brk-seed { transition-delay: .16s; }
.brk-seed + .brk-seed { border-top: 1px solid var(--line); }
.brk-av { width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(135deg,#c4a888,#7a5a3c); flex-shrink: 0; }
.brk-seed:nth-child(2) .brk-av { background: linear-gradient(135deg,#8fa68e,#5a7060); }
.brk-h { flex: 1; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brk-v { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-3); transition: color .5s ease; }
.brk-match:has(.brk-seed.win) { box-shadow: 0 10px 26px -14px rgba(102,255,0,0.5); }
.brk-seed.win { background: rgba(102,255,0,0.18); }
.brk-seed.win .brk-v { color: var(--moss); font-weight: 700; }
.brk-seed.win .brk-h::after { content: ' ✓'; color: var(--lime-dark); }
.brk-seed.lose { opacity: 0.38; }

/* connector lines draw with a gentle delay after cells settle */
.seg.lit { transition-delay: .25s; }

/* champion (centered, bottom of vertical bracket) */
.brkv-champ { display: flex; justify-content: center; position: relative; }
.champ-monkey {
  position: absolute;
  bottom: 6px;
  width: 152px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.champ-monkey-l { right: calc(50% + 138px); animation: monkey-bob 3.4s ease-in-out infinite; }
.champ-monkey-r { left: calc(50% + 116px); animation: monkey-bob 3.4s ease-in-out infinite 0.6s; }
@keyframes monkey-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 600px) { .champ-monkey { display: none; } }
.champ-card {
  position: relative;
  width: 230px;
  min-height: 132px;
  border: 1.5px solid var(--lime-dark); border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f4ffe4);
  padding: 16px 16px 18px; text-align: center;
  box-shadow: 0 24px 60px -24px rgba(102,255,0,0.4);
}
.champ-wait {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.05em; color: var(--ink-3);
  opacity: 1; transition: opacity .5s ease;
}
.brkv-champ.on .champ-wait { opacity: 0; }
.champ-fill { opacity: 0; transform: translateY(8px); transition: opacity .6s cubic-bezier(.2,.7,.2,1) .15s, transform .6s cubic-bezier(.2,.7,.2,1) .15s; }
.brkv-champ.on .champ-fill { opacity: 1; transform: translateY(0); }
.champ-crown {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%; background: var(--lime);
  display: grid; place-items: center; color: var(--ink);
  box-shadow: 0 0 0 4px rgba(102,255,0,0.25);
  transition: transform .4s ease;
}
.brkv-champ.on .champ-crown { transform: translateX(-50%) scale(1.08); }
.champ-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#a07f5f,#6e5238); display: inline-block; margin-top: 2px; }
.champ-h { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 16px; color: var(--ink); margin-top: 5px; letter-spacing: -0.02em; }
.champ-v { font-size: 10.5px; color: var(--ink-3); }
.champ-cash { margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line-strong); display: flex; align-items: baseline; justify-content: center; gap: 7px; }
.champ-cash-lbl { display: inline; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-3); }
.champ-cash-num { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 22px; color: var(--moss); letter-spacing: -0.03em; }
.champ-coins { position: absolute; inset: 0; pointer-events: none; overflow: visible; }
.champ-coins i {
  position: absolute; top: 40%; left: 50%; width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime); opacity: 0;
}
.brkv-champ.on .champ-coins i { animation: coin-burst 1.5s ease-out forwards; }
.brkv-champ.on .champ-coins i:nth-child(1) { animation-delay: .2s; --dx: -70px; --dy: -60px; }
.brkv-champ.on .champ-coins i:nth-child(2) { animation-delay: .3s; --dx: 70px; --dy: -50px; }
.brkv-champ.on .champ-coins i:nth-child(3) { animation-delay: .4s; --dx: -50px; --dy: 50px; }
.brkv-champ.on .champ-coins i:nth-child(4) { animation-delay: .5s; --dx: 60px; --dy: 60px; }
.brkv-champ.on .champ-coins i:nth-child(5) { animation-delay: .25s; --dx: -90px; --dy: 10px; }
.brkv-champ.on .champ-coins i:nth-child(6) { animation-delay: .45s; --dx: 90px; --dy: 0px; }
@keyframes coin-burst {
  0% { opacity: 0; transform: translate(0,0) scale(0.4); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1); }
}

@media (max-width: 880px) {
  .comm-event { grid-template-columns: 1fr; gap: 32px; }
  .comm-event-left { max-width: none; text-align: center; margin: 0 auto; }
  .comm-event-left .comm-cta-row { align-items: center; }
}

/* --- confetti --- */
.paid-section { position: relative; }
.confetti {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  pointer-events: none;
  z-index: 4;
}
.confetti i {
  position: absolute;
  top: -16px;
  left: var(--x);
  border-radius: 2px;
  background: var(--col);
  opacity: 0;
  will-change: transform, opacity;
}
.confetti.go i {
  animation: confetti-fall 2.6s cubic-bezier(.3,.55,.5,1) var(--d) forwards;
}
@keyframes confetti-fall {
  0% { opacity: 0; transform: translateY(0) rotate(0deg); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translateY(var(--fall)) rotate(var(--rot)); }
}

/* --- founders / build in public --- */
.founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.founder {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--card); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.founder:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 26px 60px -28px rgba(15,36,25,0.25); }
.founder-thumb {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden;
  background:
    radial-gradient(300px 160px at 50% 40%, rgba(31,74,48,0.12), transparent 70%),
    repeating-linear-gradient(135deg, #e7e3d4 0 12px, #ded9c8 12px 24px);
  display: grid; place-items: center;
}
.founder-live {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: #fff; background: #e0392b; padding: 4px 9px; border-radius: 999px;
}
.founder-live i { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: sv-blink 1.3s ease-in-out infinite; }
.founder-play {
  width: 48px; height: 48px; border-radius: 50%;
  z-index: 2; position: relative;
  background: rgba(255,255,255,0.9); color: #e0392b; display: grid; place-items: center;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3); transition: transform .25s ease;
}
.founder-play svg { width: 22px; height: 22px; }
.founder-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  z-index: 0;
}
.founder:hover .founder-play { transform: scale(1.1); }
.founder-meta { display: flex; align-items: center; gap: 11px; padding: 14px 16px; }
.founder-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#8fa68e,#5a7060); flex-shrink: 0; }
.founder-name { font-weight: 700; font-size: 15px; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; }
.founder-name svg { color: var(--ink-3); }
.founder-tag { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* --- paid creators carousel --- */
.paid-marquee {
  margin-top: 44px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.paid-track { display: flex; gap: 18px; width: max-content; animation: paid-scroll 40s linear infinite; }
@keyframes paid-scroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.paid-card { width: 170px; flex-shrink: 0; }
.paid-vid {
  position: relative; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  transform: translateZ(0);
  background: repeating-linear-gradient(135deg, #e7e3d4 0 14px, #ded9c8 14px 28px);
}
.paid-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.video-fallback video { display: none !important; }
.paid-money {
  position: absolute; top: 9px; left: 9px;
  display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #6B7770; font-size: 12px; padding: 3px 10px; border-radius: 999px;
  font-weight: 800; letter-spacing: -0.01em;
  border: 1px solid rgba(15, 36, 25, 0.08);
  box-shadow: 0 3px 10px -5px rgba(15, 36, 25, 0.25);
  z-index: 2; animation: earn-emerald 5s ease-in-out infinite;
}
.paid-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 4px 0;
}
.paid-views { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.paid-plats { display: inline-flex; gap: 5px; color: var(--ink-3); }
.paid-plats svg { width: 13px; height: 13px; }
.paid-handle {
  position: absolute; bottom: 9px; left: 9px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #fff;
  background: rgba(15,36,25,0.7); padding: 3px 8px; border-radius: 999px; z-index: 2;
}

@media (max-width: 880px) {
  .founders { grid-template-columns: 1fr; }
  .comm-head-mid { margin-top: 72px; }
}

/* === HOW (white) === */
.how-section {
  background: #fff;
  position: relative;
  z-index: 2;
}
.how-head {
  margin-bottom: 56px;
  max-width: 820px;
}
.how-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
.how-step-light {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.how-step-light:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px -20px rgba(15, 36, 25, 0.15);
}
.how-num-light {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--moss);
  background: linear-gradient(135deg, var(--moss) 0%, #66FF00 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.how-title-light {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}
.how-desc-light {
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 10px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .how-grid-light { grid-template-columns: 1fr; }
}

/* === HOW (original — keep for legacy if needed) ===*/
.how {
  background: var(--moss-dark);
  color: #E8F2EA;
  border-radius: 32px;
  padding: 72px;
  position: relative;
  overflow: hidden;
}
.how h2 { color: #fff; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.how-step {
  padding: 24px;
  border: 1px solid rgba(102, 255, 0, 0.22);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
}
.how-num {
  font-family: 'Bricolage Grotesque';
  font-size: 36px;
  color: var(--lime);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.how-title { font-family: 'Bricolage Grotesque'; font-size: 22px; color: #fff; font-weight: 700; margin-top: 12px; letter-spacing: -0.02em; }
.how-desc { font-size: 14px; color: rgba(232,242,234,0.65); margin-top: 8px; line-height: 1.5; }

/* === TESTIMONIALS === */
.tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.test {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease;
}
.test:hover { transform: translateY(-4px); }
.test-quote {
  font-family: 'Bricolage Grotesque';
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
  flex: 1;
}
.test-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.test-av { width: 40px; height: 40px; border-radius: 50%; background-size: cover; }
.test-name { font-weight: 600; font-size: 14px; }
.test-role { font-size: 12px; color: var(--ink-3); }

/* === REVIEWS === */
.reviews { padding-top: 64px; padding-bottom: 64px; }
.faq { padding-top: 56px; padding-bottom: 48px; }
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.reviews-score { text-align: right; flex-shrink: 0; }
.rv-stars { display: inline-flex; gap: 3px; color: #E8B53C; }
.rv-stars svg { width: 16px; height: 16px; }
.reviews-score .rv-stars svg { width: 20px; height: 20px; }
.reviews-score-row { margin-top: 6px; display: flex; align-items: baseline; gap: 6px; justify-content: flex-end; }
.reviews-score-num { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 32px; color: var(--ink); letter-spacing: -0.03em; }
.reviews-score-sub { font-size: 13px; color: var(--ink-3); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rv {
  background: linear-gradient(162deg, #ffffff 0%, #ecf6e2 100%);
  border: 1px solid rgba(15, 36, 25, 0.10);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.rv:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 24px 50px -28px rgba(15,36,25,0.2); }
.rv .rv-stars { margin-bottom: 14px; }
.rv-quote {
  font-family: 'Bricolage Grotesque';
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.rv-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.rv-author { display: flex; align-items: center; gap: 11px; }
.rv-av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.rv-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.rv-role { font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.rv-metric {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--moss);
  background: rgba(31,74,48,0.08);
  padding: 5px 9px;
  border-radius: 8px;
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-score { text-align: left; }
  .reviews-score-row { justify-content: flex-start; }
}

/* === FAQ === */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  overflow: hidden;
  transition: border-color 200ms ease, background 200ms ease;
}
.faq-item.open { border-color: var(--line-strong); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.faq-q > span:first-child { flex: 1; }
.faq-ic {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-ic::before, .faq-ic::after {
  content: '';
  position: absolute;
  background: var(--moss);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 280ms ease;
}
.faq-ic::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-ic::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-ic::before { background: var(--lime-dark); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 24px;
  padding: 0;
  transition: padding 320ms ease;
}
.faq-item.open .faq-a > p { padding: 0 0 24px; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.price {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price.featured {
  background: var(--moss-dark);
  color: #E8F2EA;
  border-color: transparent;
  transform: scale(1.02);
}
.price.featured:hover { transform: scale(1.02) translateY(-4px); }
.price:hover { box-shadow: 0 20px 50px -20px rgba(15,36,25,0.18); }
.price-tier { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.price.featured .price-tier { color: var(--lime); }
.price-amount {
  font-family: 'Bricolage Grotesque';
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.price.featured .price-amount { color: #fff; }
.price-cycle { font-size: 14px; color: var(--ink-3); font-weight: 500; font-family: 'Inter Tight'; letter-spacing: 0; }
.price.featured .price-cycle { color: rgba(232,242,234,0.6); }
.price-desc { font-size: 14px; color: var(--ink-2); margin-top: 12px; }
.price.featured .price-desc { color: rgba(232,242,234,0.7); }
.price-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-features li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.price-check { color: var(--moss); flex-shrink: 0; margin-top: 3px; }
.price.featured .price-check { color: var(--lime); }
.price .btn { margin-top: 24px; width: 100%; }
.toggle {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  transition: background 150ms ease, color 150ms ease;
}
.toggle button.on { background: var(--ink); color: #fff; }
.toggle .save {
  font-size: 11px;
  background: var(--lime);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 700;
}
.toggle button.on .save { background: var(--lime); color: var(--ink); }

/* === CTA === */
.cta {
  position: relative;
  background: var(--lime);
  border-radius: 32px;
  padding: 96px 72px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}
.cta h2 { font-size: clamp(40px, 5vw, 64px); color: var(--ink); }
.cta p { font-size: 18px; color: var(--ink-2); margin-top: 16px; max-width: 480px; }
.cta-visual {
  position: relative;
  height: 220px;
}
.cta-visual .ig-card { animation-duration: 6s; }
.cta-visual .ig-card.c1 { width: 140px; top: 0; right: 0; transform: rotate(8deg); }
.cta-visual .ig-card.c2 { width: 160px; bottom: 0; left: 10%; transform: rotate(-6deg); }
.cta-visual .ig-card.c3 { width: 130px; top: 20%; left: 50%; transform: rotate(2deg); }
.cta-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* === FOOTER === */
footer {
  padding: 24px 0 40px;
  margin-top: 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.foot-brand { max-width: 360px; }
.foot-blurb { font-size: 14px; color: var(--ink-3); margin-top: 16px; line-height: 1.55; }
.foot-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-family: 'Inter Tight';
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--ink-2); transition: color 140ms ease; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
}
.foot-socials { display: flex; gap: 8px; }
.foot-socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: background 140ms ease, color 140ms ease;
}
.foot-socials a:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }

.giant-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 0.85;
  text-align: center;
  padding: 40px 0 40px;
  opacity: 0.95;
}
.giant-logo span { color: var(--lime); -webkit-text-stroke: 2px var(--ink); }
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  padding-bottom: 56px;
}
.foot-legal a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 140ms ease;
}
.foot-legal a:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .feature-grid, .stats, .tests, .pricing-grid, .foot-grid, .how-grid, .cta { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .how, .cta { padding: 48px 28px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
}

@media (max-width: 768px) {
  /* navbar */
  .nav { height: 62px; gap: 10px; }
  .brand { font-size: 17px; gap: 8px; }
  .brand-logo { width: 30px; height: 30px; }
  .nav-right { gap: 6px; flex-wrap: nowrap; }
  .nav-right .nav-link {
    font-size: 13px; padding: 6px 8px; white-space: nowrap; gap: 3px;
  }
  .nav-right .nav-link svg { width: 9px; height: 9px; }
  .nav .btn-primary { padding: 9px 15px; font-size: 13px; white-space: nowrap; }
  /* drop the least-important link so the row never wraps */
  .nav-right > a.nav-link[href*="auth"] { display: none; }

  /* hero subtext smaller */
  .hero-sub { font-size: 15px; line-height: 1.5; max-width: none; }
  .hero { padding-top: 104px; }
  .eyebrow { font-size: 12px; }

  /* shrink the whole monkey + reels cluster on phone.
     NOTE: disable hero-rise here — its end-state transform overrides the scale. */
  .hero-visual {
    animation: none;
    opacity: 1;
    transform: scale(0.7) translateY(40px);
    transform-origin: center top;
    height: 400px;
    margin: 0 auto;
  }

  /* skip the 4 auto-playing cards on phone — go straight to the steps */
  .about-steps, .steps-down { display: none; }

  /* hide the oversized footer wordmark on phone */
  .giant-logo { display: none; }

  /* June event section: stack + fit the bracket */
  .comm-event { grid-template-columns: 1fr; gap: 20px; }
  .comm-event-left { max-width: none; text-align: center; margin: 0 auto; }
  .comm-event-left .comm-title { font-size: 28px; }
  .comm-event-left .comm-sub { font-size: 15px; line-height: 1.5; margin-top: 14px; }
  .comm-event-left .comm-cta-row { align-items: center; }
  .comm-event-right { display: flex; justify-content: center; overflow: hidden; }
  .brkv { zoom: 0.66; }
  .comm-title { font-size: 28px; }
  .comm-sub { font-size: 15px; }
  .comm-head-mid { margin-top: 64px; }

  /* black About section overlaps the bottom of the rock */
  .about { margin-top: -90px; }
}

@media (max-width: 420px) {
  .hero-visual { transform: scale(0.58) translateY(50px); height: 360px; }
}

@media (hover: none) and (pointer: coarse) {
  .hero-bg,
  .hero-visual,
  .hero-visual *,
  .tl-media,
  .tl-media .w,
  .comm-event-right,
  .comm-event-right *,
  .paid-marquee,
  .paid-marquee *,
  .founder-thumb {
    touch-action: pan-y;
  }

  .hero-bg,
  .orbit-rail > .ig-card,
  .center-orb,
  .hero-visual video,
  .tl-side,
  .brkv,
  .brkv *,
  .paid-card,
  .paid-vid,
  .paid-video,
  .founder-thumb,
  .founder-thumb *,
  .founder-video,
  .ig-card-video,
  video[data-lazyvid] {
    pointer-events: none !important;
  }

  .brand,
  .nav-link,
  .btn,
  .w1-cta,
  .faq-q,
  .foot-legal a,
  .founder,
  .jm-overlay.on,
  .jm-overlay.on * {
    pointer-events: auto;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero-bg,
  .hero-visual,
  .hero-visual *,
  .about-glows,
  .about::before,
  .tl-media,
  .tl-media .w,
  .comm-event-right,
  .comm-event-right *,
  .paid-marquee,
  .paid-marquee *,
  .founder-thumb,
  .founder-thumb *,
  video[data-lazyvid] {
    pointer-events: none !important;
    touch-action: pan-y;
  }

  .brand,
  .nav-link,
  .btn,
  .w1-cta,
  .faq-q,
  .foot-legal a,
  .founder,
  .jm-overlay.on,
  .jm-overlay.on * {
    pointer-events: auto;
  }
}

/* === iOS Safari memory fix: skip rendering off-screen sections === */
.about,
.how-section,
.reviews,
.faq,
footer,
.comm-event,
.founders {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* Pause all infinite animations in off-screen sections on iOS */
.is-ios-webkit-lite .section-offscreen,
.is-ios-webkit-lite .section-offscreen * {
  animation-play-state: paused !important;
}

/* Hide duplicate paid marquee cards on iOS (14 → 7 video elements) */
.is-ios-webkit-lite .paid-track .paid-card:nth-child(n+8) {
  display: none;
}

.is-ios-webkit-lite .nav-wrap,
.is-ios-webkit-lite .eyebrow,
.is-ios-webkit-lite .ig-card-tag,
.is-ios-webkit-lite .paid-money,
.is-ios-webkit-lite .astep,
.is-ios-webkit-lite .w,
.is-ios-webkit-lite .jm-overlay {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.is-ios-webkit-lite .nav-wrap {
  background: rgba(255, 255, 255, 0.92);
}

.is-ios-webkit-lite .nav-wrap.over-dark {
  background: rgba(8, 16, 10, 0.94);
}

.is-ios-webkit-lite .monkey-glow {
  will-change: auto;
}

.is-ios-webkit-lite .monkey-glow .blob {
  filter: blur(18px);
  mix-blend-mode: normal;
  opacity: 0.68;
}

.is-ios-webkit-lite .comm-accent-live::after,
.is-ios-webkit-lite .brk-match,
.is-ios-webkit-lite .confetti i {
  will-change: auto;
}

/* === JOIN MODAL === */
.jm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 16, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.jm-overlay.on { display: flex; opacity: 1; pointer-events: auto; }
.jm {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 40px 100px -30px rgba(15, 36, 25, 0.5);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform .42s cubic-bezier(.2,.8,.25,1), opacity .42s ease;
}
.jm-overlay.on .jm { transform: translateY(0) scale(1); opacity: 1; }
.jm-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-3); background: var(--bg-soft);
  transition: background .2s ease, color .2s ease;
}
.jm-close:hover { background: var(--line); color: var(--ink); }

.jm-body { animation: jmStep .42s cubic-bezier(.2,.7,.2,1); }
@keyframes jmStep {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.jm-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 12px;
}
.jm-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: var(--ink); background: var(--lime);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
.jm-badge svg { width: 13px; height: 13px; }
.jm-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 27px; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.08; color: var(--ink);
}
.jm-sub { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin-top: 10px; }
.jm-sub strong { color: var(--ink); font-weight: 700; }
.jm-embed {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.jm-embed iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
}

/* choices */
.jm-choices { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.jm-choice {
  display: flex; align-items: center; gap: 14px;
  text-align: left;
  padding: 16px;
  border: 1px solid var(--line); border-radius: 16px;
  background: var(--card);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.jm-choice:hover {
  border-color: var(--lime-dark);
  background: rgba(102, 255, 0, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -22px rgba(102, 255, 0, 0.5);
}
.jm-choice-ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(31, 74, 48, 0.08); color: var(--moss);
  transition: background .2s ease, color .2s ease;
}
.jm-choice:hover .jm-choice-ic { background: var(--lime); color: var(--ink); }
.jm-choice-tx { flex: 1; }
.jm-choice-t { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.jm-choice-d { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.jm-choice-arrow { color: var(--ink-3); flex-shrink: 0; transition: transform .2s ease, color .2s ease; }
.jm-choice:hover .jm-choice-arrow { transform: translateX(3px); color: var(--moss); }

/* trial offer */
.jm-offer {
  margin-top: 20px; padding: 18px;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f6ffe8);
}
.jm-offer-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink); padding: 5px 0;
}
.jm-tick {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--lime); color: var(--ink);
}
.jm-tick svg { width: 12px; height: 12px; }
.jm-price {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 12px; padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
}
.jm-price-free { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 26px; color: var(--moss); letter-spacing: -0.03em; }
.jm-price-then { font-size: 14px; color: var(--ink-2); }
.jm-price-then strong { color: var(--ink); }

.jm-cta { width: 100%; margin-top: 20px; }
.jm-form { margin-top: 20px; }
.jm-input {
  width: 100%;
  font-family: 'Inter Tight', sans-serif; font-size: 15px;
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--bg-soft); color: var(--ink);
  outline: none; transition: border-color .2s ease, background .2s ease;
}
.jm-input:focus { border-color: var(--moss); background: #fff; }
.jm-note { font-size: 12.5px; color: var(--ink-3); margin-top: 14px; line-height: 1.5; }
.jm-link {
  display: block; width: 100%; text-align: center;
  margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--moss);
  transition: color .2s ease;
}
.jm-link:hover { color: var(--ink); }
.jm-back {
  display: block; margin: 16px auto 0;
  font-size: 13px; color: var(--ink-3);
  transition: color .2s ease;
}
.jm-back:hover { color: var(--ink); }

.jm-success-ic {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--lime); color: var(--ink);
  animation: jmPop .5s cubic-bezier(.2,1.5,.5,1);
}
.jm-success-ic svg { width: 28px; height: 28px; }
@keyframes jmPop { from { transform: scale(0); } to { transform: scale(1); } }

@media (max-width: 520px) {
  .jm-overlay { padding: 10px; align-items: flex-start; }
  .jm { padding: 20px 14px; max-height: 95vh; border-radius: 20px; }
  .jm-title { font-size: 22px; }
  .jm-sub { font-size: 14px; }
  .jm-embed { margin-top: 12px; margin-left: -6px; margin-right: -6px; }
  .jm-embed iframe { height: 72vh; min-height: 460px; }
  .jm-close { top: 12px; right: 12px; }
}
