/* ==========================================================================
   R.k.n.kt, shared styles
   ========================================================================== */

:root {
  --bg: #f8f4f5;
  --ink: #0a0a0a;
  --ink-2: #2b2b2b;
  --muted: #6b6468;
  --line: rgba(10, 10, 10, 0.14);
  --card: #ffffff; /* solid: the lava background must never show through cards */
  --pink: #ff8fd2;
  --magenta: #f35fbf;
  --lilac: #d3a3ff;
  --radius: 6px;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(16px, 3.2vw, 52px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

/* ---------- Soft gradient background ---------- */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
/* Lava lamp: each blob slowly wanders and changes shape on its own path */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: lava-a 22s ease-in-out infinite alternate;
  will-change: translate, scale, border-radius;
}
.blob.b1 { width: 38vw; height: 30vw; left: -12vw; top: 8vh;  background: var(--pink);    transform: rotate(35deg); animation-name: lava-a; animation-duration: 28s; }
.blob.b2 { width: 16vw; height: 22vw; left: 12vw;  top: 22vh; background: var(--magenta); opacity: .45; animation-name: lava-b; animation-duration: 34s; animation-delay: -8s; }
.blob.b3 { width: 22vw; height: 18vw; left: -4vw;  top: 62vh; background: var(--lilac);   opacity: .6;  animation-name: lava-c; animation-duration: 40s; animation-delay: -15s; }
.blob.b4 { width: 30vw; height: 30vw; right: -10vw; top: 18vh; background: var(--pink);   animation-name: lava-b; animation-duration: 31s; animation-delay: -4s; animation-direction: alternate-reverse; }
.blob.b5 { width: 18vw; height: 14vw; right: 12vw; top: 48vh; background: var(--magenta); opacity: .45; animation-name: lava-c; animation-duration: 37s; animation-delay: -20s; }
.blob.b6 { width: 26vw; height: 22vw; right: -6vw; top: 68vh; background: var(--lilac);   opacity: .5;  animation-name: lava-a; animation-duration: 43s; animation-delay: -11s; animation-direction: alternate-reverse; }
.blob.b7 { width: 30vw; height: 14vw; left: 30vw;  top: -10vh; background: var(--pink);   opacity: .3;  animation-name: lava-b; animation-duration: 46s; animation-delay: -26s; }

@keyframes lava-a {
  0%   { translate: 0 0;          scale: 1;    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
  25%  { translate: 14vw 10vh;    scale: 1.15; border-radius: 62% 38% 55% 45% / 45% 60% 40% 55%; }
  50%  { translate: 6vw 26vh;     scale: 0.9;  border-radius: 40% 60% 35% 65% / 60% 40% 65% 35%; }
  75%  { translate: -6vw 14vh;    scale: 1.1;  border-radius: 55% 45% 62% 38% / 38% 62% 45% 55%; }
  100% { translate: 10vw -6vh;    scale: 1;    border-radius: 48% 52% 42% 58% / 58% 42% 52% 48%; }
}
@keyframes lava-b {
  0%   { translate: 0 0;          scale: 1;    border-radius: 50%; }
  30%  { translate: -12vw 18vh;   scale: 1.2;  border-radius: 38% 62% 60% 40% / 55% 45% 55% 45%; }
  60%  { translate: 8vw 30vh;     scale: 0.85; border-radius: 60% 40% 42% 58% / 40% 60% 38% 62%; }
  100% { translate: 16vw 8vh;     scale: 1.1;  border-radius: 45% 55% 58% 42% / 62% 38% 55% 45%; }
}
@keyframes lava-c {
  0%   { translate: 0 0;          scale: 1;    border-radius: 50%; }
  35%  { translate: 12vw -18vh;   scale: 1.15; border-radius: 58% 42% 38% 62% / 45% 58% 42% 55%; }
  70%  { translate: -8vw -30vh;   scale: 0.9;  border-radius: 42% 58% 62% 38% / 60% 40% 58% 42%; }
  100% { translate: 6vw -12vh;    scale: 1.05; border-radius: 55% 45% 45% 55% / 42% 58% 48% 52%; }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ---------- Header ---------- */

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px var(--gutter) 0;
}

.brand {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1;
  justify-self: start;
}

.nav { display: flex; gap: 44px; }
.nav a {
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
  padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav a[aria-current="true"] { color: var(--ink); font-weight: 500; }

.header-actions { display: flex; gap: 18px; justify-self: end; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 48px;
  padding: 0 44px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: #262626; }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-ghost:hover { background: #fff; }
.btn-lg { height: 58px; min-width: 296px; font-size: 17px; }
.btn .arrow { width: 20px; height: 20px; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  align-items: center; justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; content: "";
  transition: transform .2s;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after  { position: absolute; top: 6px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px var(--gutter) 0;
}

.spark {
  width: 80px;
  height: 80px;
  margin-bottom: 36px;
  animation: twinkle 5s ease-in-out infinite;
}
/* 3D spinning star (canvas replaces the SVG once WebGL loads) */
.spark-3d { width: 104px; height: 104px; margin-bottom: 24px; animation: none; position: relative; }
.spark-3d svg { width: 100%; height: 100%; padding: 12px; animation: twinkle 5s ease-in-out infinite; }
.spark-3d svg.is-3d { padding: 0; }
/* Stars drawn in 3D (spark3d.js) spin on their own: no flat twinkle/spin on top */
svg.is-3d { animation: none !important; overflow: visible; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(.9) rotate(8deg); }
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(64px, 12.6vw, 210px);
  letter-spacing: -0.035em;
  line-height: .86;
}

.hero-tagline {
  margin: 38px 0 0;
  font-size: clamp(15px, 1.65vw, 27px);
  font-weight: 400;
  letter-spacing: .62em;
  margin-right: -.62em; /* optically re-center the tracked text */
  text-transform: uppercase;
}

.hero-sub {
  margin: 40px 0 0;
  font-size: clamp(14px, 1.05vw, 17px);
  letter-spacing: .14em;
  line-height: 1.6;
  color: var(--ink-2);
}

.hero-ctas {
  display: flex;
  gap: 36px;
  margin-top: 46px;
}


/* ---------- Trusted by / partner wheel ---------- */

.trusted {
  padding: 84px var(--gutter) 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.trusted-label {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  letter-spacing: .38em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 30px;
}
.trusted-label::before,
.trusted-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.wheel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 16px;
}

.wheel-arrow {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 0; background: none;
  border-radius: 50%;
  color: var(--ink-2);
  transition: background .2s;
}
.wheel-arrow:hover { background: rgba(255,255,255,.7); }
.wheel-arrow svg { width: 22px; height: 22px; }

.wheel-viewport {
  overflow: hidden;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.wheel-track {
  display: flex;
  gap: 8px;
  margin: 0; padding: 0;
  list-style: none;
  will-change: transform;
}
.wheel-track li { flex: 0 0 auto; }

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 76px;
  border-radius: 10px;
  color: #3a3a3a;
  filter: grayscale(1);
  opacity: .78;
  transition: opacity .25s, background .25s, transform .25s, color .25s, filter .25s, box-shadow .25s;
}
.partner-logo:hover,
.partner-logo:focus-visible,
.partner-logo.is-active {
  opacity: 1;
  filter: none;
  color: var(--brand, var(--ink));
  background: color-mix(in srgb, var(--brand, #fff) 9%, rgba(255,255,255,.85));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand, #000) 22%, transparent);
  transform: translateY(-3px);
}
.partner-logo img { max-width: 120px; max-height: 48px; object-fit: contain; }

/* Text wordmarks, placeholders until you drop in official logo files */
.wm { font-family: var(--display); line-height: 1; white-space: nowrap; }
.wm-redbull  { font-weight: 800; font-stretch: 80%; font-size: 25px; letter-spacing: -.01em; }
.wm-logitech { font-family: var(--body); font-weight: 500; font-size: 23px; letter-spacing: -.03em; }
.wm-logitech b { font-family: var(--display); font-weight: 900; font-size: 30px; margin-left: 5px; vertical-align: -2px; }
.wm-twitch   { font-weight: 900; font-stretch: 115%; font-size: 26px; letter-spacing: -.03em; }
.wm-adidas   { font-weight: 800; font-size: 27px; letter-spacing: -.02em; }
.wm-nvidia   { font-weight: 800; font-stretch: 105%; font-size: 22px; letter-spacing: .02em; }
.wm-jbl      { font-weight: 900; font-stretch: 75%; font-size: 32px; letter-spacing: -.02em; }
.wm-intel    { font-family: var(--body); font-weight: 600; font-size: 31px; letter-spacing: -.05em; }
.wm-oakley   { font-weight: 700; font-stretch: 125%; font-size: 17px; letter-spacing: .28em; margin-right: -.28em; }

/* ---------- Hover preview balloon ---------- */

.tip {
  position: fixed;
  z-index: 100;
  width: 310px;
  padding: 18px 20px 16px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 50px -12px rgba(80, 20, 60, .45);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transform-origin: var(--arrow-x, 50%) 100%;
  transition: opacity .18s ease, transform .18s ease;
}
.tip.is-visible { opacity: 1; transform: none; }
.tip::after {
  content: "";
  position: absolute;
  left: var(--arrow-x, 50%);
  bottom: -7px;
  width: 14px; height: 14px;
  margin-left: -7px;
  background: var(--ink);
  border-radius: 2px;
  transform: rotate(45deg);
}
.tip.below { transform-origin: var(--arrow-x, 50%) 0; }
.tip.below::after { bottom: auto; top: -7px; }

.tip-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.tip-name { font-family: var(--display); font-weight: 800; font-stretch: 110%; font-size: 18px; }
.tip-meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #bdb3b9; white-space: nowrap; }
.tip-title { margin: 10px 0 0; font-size: 14px; font-weight: 600; color: #ffc4e8; }
.tip-text { margin: 6px 0 0; font-size: 13.5px; line-height: 1.5; color: #e6e1e4; }
.tip-stats { display: flex; gap: 18px; margin: 14px 0 0; padding: 12px 0 0; border-top: 1px solid rgba(255,255,255,.14); }
.tip-stat b { display: block; font-family: var(--display); font-size: 18px; font-weight: 800; }
.tip-stat span { font-size: 11px; color: #bdb3b9; }
.tip-cta { display: block; margin-top: 14px; font-size: 12.5px; font-weight: 500; letter-spacing: .04em; color: #fff; }

/* ---------- Partner (collaboration) page ---------- */

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px var(--gutter) 96px;
}

.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.back-link svg { width: 18px; height: 18px; transition: transform .2s; }
.back-link:hover svg { transform: translateX(-4px); }

.eyebrow {
  margin: 48px 0 0;
  font-size: 12px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--muted);
}

.collab-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25em .4em;
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(44px, 7.4vw, 104px);
  letter-spacing: -.035em;
  line-height: .95;
}
.collab-title .x { font-weight: 300; font-stretch: 100%; color: var(--muted); font-size: .6em; }

.collab-lead {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
}

.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.tags li {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 28px 24px 26px 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat span { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); }

.collab-body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 56px;
  margin-top: 64px;
}

.story h2,
.card h2 {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--muted);
}
.story p { margin: 0 0 20px; font-size: 17px; line-height: 1.75; color: var(--ink-2); }

.card {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card ul { margin: 0; padding: 0; list-style: none; }
.card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  border-top: 1px solid var(--line);
}
.card li:first-child { border-top: 0; padding-top: 0; }
.card li svg { width: 14px; height: 14px; margin-top: 4px; }

.quote {
  margin: 72px 0 0;
  padding: 0;
}
.quote p {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 105%;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
  letter-spacing: -.02em;
}
.quote footer { margin-top: 18px; font-size: 14px; color: var(--muted); }

.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 88px;
}
.pager a {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: background .2s, border-color .2s;
}
.pager a:hover { background: #fff; border-color: var(--ink); }
.pager small { display: block; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.pager strong { display: block; margin-top: 6px; font-family: var(--display); font-weight: 800; font-stretch: 110%; font-size: 22px; }
.pager .next { text-align: right; }

.cta-band {
  margin-top: 40px;
  padding: 44px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -.02em;
}
.cta-band p { margin: 6px 0 0; color: #cfc8cc; }
.cta-band .btn { background: #fff; color: var(--ink); border-color: #fff; }

.not-found { text-align: center; padding: 120px 0; }
.not-found h1 { font-family: var(--display); font-weight: 800; font-size: 48px; margin: 0 0 16px; }

/* ---------- Be a Creator section ---------- */

html { scroll-behavior: smooth; }

.creators {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px var(--gutter) 40px;
  scroll-margin-top: 0;
}

/* Creator / brand panels, the header and hero links pick which one shows */
.audience-panel { scroll-margin-top: 0; }
.audience-panel:not([hidden]) { animation: panel-in .45s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }


.section-intro { max-width: 820px; }
.section-intro .eyebrow { margin: 0; }
.section-title {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(42px, 6.6vw, 92px);
  letter-spacing: -.035em;
  line-height: .95;
}
.section-lead {
  margin: 30px 0 0;
  max-width: 680px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
}

.block { margin-top: 96px; }
.block-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--muted);
}
.block-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0; padding: 0;
  list-style: none;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 30px 28px 32px;
  border-top: 2px solid var(--ink);
}
.step-num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ink);
}
.step h4, .perk h4 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 108%;
  font-size: 22px;
  letter-spacing: -.01em;
}
.step p, .perk p {
  margin: 10px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* Perks */
.perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.perk {
  padding: 28px 24px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s, border-color .25s, background .25s;
}
.perk:hover { transform: translateY(-4px); border-color: var(--ink); background: #fff; }
.perk h4 { margin-top: 0; font-size: 19px; }

/* Ecosystem */
.ecosystem {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 96px;
  padding: 56px;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.ecosystem::before,
.ecosystem::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.ecosystem::before { width: 340px; height: 260px; right: -60px; top: -80px; background: var(--magenta); }
.ecosystem::after  { width: 280px; height: 220px; right: 180px; bottom: -120px; background: var(--lilac); opacity: .4; }
.ecosystem .eyebrow { margin: 0; color: #bdb3b9; }
.ecosystem h3 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -.03em;
  line-height: 1.02;
}
.ecosystem-copy p:last-child {
  margin: 20px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: #d9d2d6;
}
.orbit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0; padding: 0;
  list-style: none;
}
.orbit li {
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: 14.5px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s, color .2s, border-color .2s;
}
.orbit li:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Goals */
.goals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.goal { padding: 30px 28px 30px 0; }
.goal + .goal { padding-left: 28px; border-left: 1px solid var(--line); }
.goal b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -.025em;
  line-height: 1.05;
}
.goal span { display: block; margin-top: 10px; font-size: 15px; color: var(--muted); }

.creators .cta-band { margin-top: 96px; }

/* Reveal on scroll (only when JS runs) */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .perks { grid-template-columns: 1fr 1fr; }
  .ecosystem { grid-template-columns: 1fr; padding: 44px 36px; }
  .orbit { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .creators { padding-top: 80px; }
  .block, .ecosystem, .creators .cta-band { margin-top: 64px; }
  .steps, .perks, .goals { grid-template-columns: 1fr; }
  .step { padding: 24px 0 8px; }
  .goal, .goal + .goal { padding: 22px 0; border-left: 0; }
  .goal + .goal { border-top: 1px solid var(--line); }
  .ecosystem { padding: 36px 24px; }
}

/* ---------- Creator application ---------- */

.apply {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px var(--gutter) 96px;
}
.apply-head { margin-top: 44px; }
.apply-head .eyebrow { margin: 0; }
.apply .section-title { font-size: clamp(40px, 6vw, 76px); }

.stepper {
  display: grid;
  grid-template-columns: repeat(var(--steps, 5), 1fr);
  gap: 8px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
.stepper button {
  width: 100%;
  padding: 14px 0 0;
  border: 0;
  border-top: 3px solid var(--line);
  background: none;
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  transition: border-color .25s, color .25s;
}
.stepper button span {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 2px;
}
.stepper button:disabled { cursor: default; }
.stepper button.is-done { border-color: var(--ink); color: var(--ink-2); }
.stepper button.is-current { border-color: var(--magenta); color: var(--ink); font-weight: 600; }

.apply-form {
  margin-top: 28px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.form-step { margin: 0; padding: 0; border: 0; min-width: 0; }
.form-step legend {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0;
  margin-bottom: 30px;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -.02em;
}
.form-step legend span { font-size: .55em; color: var(--magenta); letter-spacing: .08em; }
.step-note { margin: -18px 0 26px; color: var(--muted); }

.field { margin-bottom: 30px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label,
.field .label { display: block; font-weight: 600; font-size: 15px; }
.field em, .consent em { font-style: normal; color: var(--magenta); }
.hint { margin: 4px 0 12px; font-size: 14px; color: var(--muted); }
.field > label + input,
.field > label + select,
.field > label + textarea { margin-top: 10px; }

.apply input[type="text"],
.apply input[type="date"],
.apply input[type="email"],
.apply input[type="number"],
.apply select,
.apply textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(10,10,10,.2);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.apply textarea { resize: vertical; min-height: 88px; }
.apply input:focus,
.apply select:focus,
.apply textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(243, 95, 191, .22);
}
.chips + .other,
.chips + textarea { margin-top: 12px; }

.contact-row { display: grid; grid-template-columns: 190px 1fr; gap: 10px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip, .field .chip { position: relative; cursor: pointer; font-weight: 400; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid rgba(10,10,10,.2);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip input:checked + span::before { content: "✓ "; }
.chip input:focus-visible + span { outline: 2px solid var(--magenta); outline-offset: 2px; }
.chip input:disabled + span { opacity: .4; cursor: not-allowed; }

.scale { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.scale label {
  position: relative;
  padding: 16px 14px;
  border: 1px solid rgba(10,10,10,.2);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-weight: 400;
  transition: border-color .15s, background .15s, color .15s;
}
.scale.three { grid-template-columns: repeat(3, 1fr); }
.scale.five { grid-template-columns: repeat(5, 1fr); }
.scale input { position: absolute; opacity: 0; }
.scale b { display: block; font-size: 15px; }
.scale span { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.4; }
.scale label:hover { border-color: var(--ink); }
.scale label:has(input:checked) { background: var(--ink); color: #fff; border-color: var(--ink); }
.scale label:has(input:checked) span { color: #cfc8cc; }
.scale label:has(input:focus-visible) { outline: 2px solid var(--magenta); outline-offset: 2px; }

.platforms { display: grid; gap: 8px; }
.platform {
  display: grid !important;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 400 !important;
}
.pf-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.pf-name::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pf);
}

.rates { display: grid; gap: 8px; }
.rate {
  display: grid !important;
  grid-template-columns: 1fr 150px 92px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(10,10,10,.14);
  border-radius: 10px;
  background: #fff;
  font-weight: 400 !important;
}
.rate b { display: block; font-size: 15px; }
.rate small { font-size: 13px; color: var(--muted); }
.rate-input { position: relative; }
.rate-input i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-style: normal; color: var(--muted); }
.apply .rate-input input { padding-left: 28px; text-align: right; }
.rate-auto {
  justify-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10,10,10,.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  visibility: hidden;
}
.rate.is-auto .rate-auto { visibility: visible; background: #ffe3f4; color: #a3136f; }
.rate.is-auto .rate-input input { color: var(--muted); }

.header-account { display: flex; align-items: center; gap: 14px; justify-self: end; font-size: 14px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 14.5px;
  cursor: pointer;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ink); flex: none; }
.privacy-note { margin: 16px 0 0; font-size: 13px; color: var(--muted); }

.error { margin: 8px 0 0; font-size: 13.5px; color: #c4204f; }
.has-error input[type="text"],
.has-error select,
.has-error .chip span,
.has-error .scale label,
.consent.has-error { border-color: #c4204f; }

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.form-nav .btn { padding: 0 28px; }
.form-nav [data-action="back"] { margin-right: auto; }
.form-nav [data-action="next"],
.form-nav [data-action="submit"] { margin-left: auto; }
.form-count { font-size: 13px; color: var(--muted); }
.form-nav [data-action="back"] .arrow { order: -1; }
.form-nav [data-action="back"]:hover .arrow { transform: translateX(-4px); }
.btn:disabled { opacity: .5; cursor: wait; }
.form-status { margin: 16px 0 0; color: #c4204f; font-size: 14px; }

.apply-done { text-align: center; padding: 60px 0 20px; outline: none; }
.apply-done .spark { margin: 0 auto 28px; }
.apply-done .section-lead { margin-left: auto; margin-right: auto; }
.apply-done .btn { margin-top: 36px; }
.demo-note {
  display: inline-block;
  margin: 28px 0 0;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff4d6;
  color: #7a5200;
  font-size: 13.5px;
}

@media (max-width: 720px) {
  .apply-form { padding: 26px 18px; border-radius: 14px; }
  .stepper { gap: 4px; }
  .stepper button { font-size: 0; }
  .stepper button span { font-size: 11px; }
  .field-row, .contact-row { grid-template-columns: 1fr; gap: 0; }
  .contact-row { gap: 10px; }
  .scale, .scale.three, .scale.five { grid-template-columns: 1fr 1fr; }
  .platform { grid-template-columns: 96px 1fr; }
  .rate { grid-template-columns: 1fr 120px; }
  .rate-auto { grid-column: 1 / -1; }
  .rate:not(.is-auto) .rate-auto { display: none; }
  .header-account .muted { display: none; }
  .form-count { display: none; }
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px var(--gutter) 36px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 1320px) {
  .nav { gap: 30px; }
  .btn { padding: 0 28px; }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; padding-top: 22px; }
  .menu-toggle { display: inline-flex; }
  .nav,
  .header-actions { display: none; }

  .menu-open .nav,
  .menu-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
  }
  .menu-open .nav {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 0;
  }
  .menu-open .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .menu-open .nav a::after { display: none; }
  .menu-open .header-actions { justify-self: stretch; padding-bottom: 8px; }
  .menu-open .header-actions .btn { flex: 1; }

  .brand { font-size: 28px; }
  .collab-body { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .hero { padding-top: 56px; }
  .spark { width: 56px; height: 56px; margin-bottom: 24px; }
  .spark-3d { width: 76px; height: 76px; margin-bottom: 16px; }
  .hero-tagline { letter-spacing: .4em; margin-right: -.4em; margin-top: 26px; }
  .hero-sub { letter-spacing: .06em; margin-top: 28px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 14px; margin-top: 36px; }
  .btn-lg { min-width: 0; width: 100%; }

  .trusted { padding-top: 64px; }
  .wheel { grid-template-columns: 32px 1fr 32px; gap: 4px; }
  .wheel-arrow { width: 32px; height: 32px; }
  .partner-logo { width: 140px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .pager { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
