:root {
  --gold: #daaf37;
  --gold-2: #e8c45a;
  --gold-dim: rgba(218, 175, 55, 0.16);
  --bg: #0b0b0d;
  --bg-2: #141414;
  --card: #141414;
  --line: #2d2d2d;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --black: #0b0b0d;
  --radius: 12px;
  --btn-radius: 4px;
  --header: 76px;
  --container: 1180px;
  --font: "PP Neue Montreal", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip-link:focus { left: 8px; background: var(--gold); color: #111; padding: 8px 12px; z-index: 100; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}
.container.narrow { width: min(calc(100% - 48px), 760px); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.center { text-align: center; }

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.035em; }
h1 { font-size: clamp(40px, 6vw, 76px); line-height: 0.98; }
h2 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05; }
h3 { font-size: 18px; letter-spacing: -0.02em; }
h1 em, h2 em {
  font-style: normal;
  color: var(--gold);
}

.lead {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #111;
}
.btn-primary:hover { background: var(--gold-2); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--gold-dim); }
.btn-ghost-white {
  background: transparent;
  color: var(--text);
  border-color: rgba(245,245,245,.7);
}
.btn-ghost-white:hover { border-color: var(--gold); color: var(--gold); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link svg { width: 16px; height: 16px; }
.text-link:hover { color: var(--gold-2); }

.icon-wrap {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(218,175,55,.35);
  border-radius: 10px;
  color: var(--gold);
  background: rgba(218,175,55,.06);
  margin-bottom: 16px;
}
.icon-wrap svg { width: 20px; height: 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  backdrop-filter: blur(18px);
  background: rgba(8,8,8,.78);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}
.brand-word {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #f5f5f5;
  line-height: 1;
  padding-right: 0.12em;
}
.nav-desktop {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7d7d7;
}
.nav-desktop a:hover { color: var(--gold); }
.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--text);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-overlay {
  position: fixed;
  inset: var(--header) 0 0;
  background: rgba(8,8,8,.96);
  z-index: 40;
  padding: 32px 24px;
}
.nav-overlay[hidden] { display: none; }
.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav-overlay-inner .btn { width: fit-content; margin-top: 8px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  padding: 64px 0 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 14%, rgba(11,11,13,.35) 36%, transparent 58%),
    url("../img/hero-ring.png") 78% 42% / auto 132% no-repeat;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 560px; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-spacer { min-height: 420px; }

/* Stats */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 8px;
  text-align: center;
  border-right: 1px solid rgba(218,175,55,.28);
}
.stat:last-child { border-right: 0; }
.stat .icon-wrap {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
}
.stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.04em;
}
.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Sections */
.section { padding: 108px 0; }
.section-alt { background: var(--bg-2); }
.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.split .lead { margin-top: 14px; }

.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.wide-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding: 16px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wide-cta svg { width: 16px; height: 16px; }
.wide-cta:hover { background: var(--gold-dim); }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.filters .is-active { color: var(--gold); }

.cards-grid {
  display: grid;
  gap: 16px;
}
.cards-grid.six { grid-template-columns: repeat(3, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(218,175,55,.5); transform: translateY(-2px); }
.card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.creator-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: stretch;
}
.creator-split .cards-grid { margin: 0; }
.media-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
  background: transparent;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.particle {
  border: 0;
  border-radius: 0;
  overflow: visible;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.media-frame.particle img {
  object-fit: contain;
  max-height: 420px;
  filter: none;
}
.media-frame.dashboard { max-height: 430px; margin-bottom: 20px; }
.brand-spin {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-spin canvas {
  width: 100%;
  height: 460px;
  display: block;
}

/* Ecosystem orbit */
.ecosystem {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.mini-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.mini-points strong { display: block; font-size: 14px; margin-bottom: 4px; }
.mini-points span { color: var(--muted); font-size: 13px; line-height: 1.4; }

.orbit {
  position: relative;
  min-height: 560px;
}
.orbit-ring {
  position: absolute;
  inset: 70px;
  border: 1px dashed rgba(218,175,55,.35);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(218,175,55,.08);
}
.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  text-align: center;
}
.orbit-core img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.orbit-core span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: #f5f5f5;
}
.orbit-node {
  position: absolute;
  width: 170px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.orbit-node .icon-wrap { width: 34px; height: 34px; margin-bottom: 8px; }
.orbit-node b { display: block; font-size: 13px; }
.orbit-node small { color: var(--muted); font-size: 12px; }
.orbit-node.n1 { top: 12px; left: 50%; transform: translateX(-50%); }
.orbit-node.n2 { top: 32%; left: 0; }
.orbit-node.n3 { top: 32%; right: 0; }
.orbit-node.n4 { bottom: 24px; left: 8%; }
.orbit-node.n5 { bottom: 24px; right: 8%; }

/* Process */
.process-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border: 1px solid rgba(218,175,55,.35);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,10,10,.82), rgba(10,10,10,.94)),
    url("../img/wave-gold.png") center 40% / 160% auto no-repeat,
    #0a0a0a;
}
.process-col {
  padding: 28px 22px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-col:last-child { border-right: 0; }
.process-col h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  margin: 8px 0 10px;
}
.process-col p { color: var(--muted); font-size: 14px; line-height: 1.45; margin: 0; }
.process-col.is-last {
  background: linear-gradient(90deg, transparent, rgba(218,175,55,.12));
}

.tech-layout { display: block; }

/* Creators carousel */
.carousel-controls { display: flex; gap: 8px; }
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  display: grid;
  place-items: center;
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn[data-carousel-prev] svg { transform: rotate(180deg); }
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }

.creator-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 5);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.creator-track::-webkit-scrollbar { display: none; }
.creator-card {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.creator-photo { aspect-ratio: 4/5; overflow: hidden; }
.creator-photo img { width: 100%; height: 100%; object-fit: cover; }
.creator-body { padding: 16px; }
.creator-body .meta { margin: 4px 0 12px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.creator-stats {
  display: grid;
  gap: 6px;
  margin: 0 0 8px;
}
.creator-stats.two { grid-template-columns: 1fr 1fr; }
.creator-stats.two dd { font-size: 20px; }
.creator-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.creator-foot span { font-weight: 700; font-size: 16px; }
.creator-foot small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.creator-foot .text-link { margin-top: 0; font-size: 11px; }
.social-row { display: flex; gap: 6px; margin: 0 0 12px; }
.soc { width: 16px; height: 16px; border-radius: 4px; display: block; }
.soc.yt { background: #ff0000; }
.soc.ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.soc.tt { background: #fff; }

.case-layout {
  display: grid;
  grid-template-columns: .7fr 1.2fr .8fr;
  gap: 32px;
  align-items: start;
}
.case-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.case-kicker strong {
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-copy .text-link { margin-top: 28px; }
.creator-stats dt { color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.creator-stats dd { margin: 2px 0 0; font-size: 13px; font-weight: 700; }
.creator-body .text-link { margin-top: 8px; }

blockquote {
  margin: 28px 0 0;
  padding: 0;
  color: #dedede;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
blockquote footer {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
blockquote cite { display: block; font-style: normal; color: #888; }
.case-card {
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.case-media { position: relative; }
.case-media img { width: 100%; height: 340px; object-fit: cover; }
.case-brand {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.case-metrics div { padding: 18px 10px; text-align: center; border-right: 1px solid var(--line); }
.case-metrics div:last-child { border-right: 0; }
.case-metrics strong { display: block; color: var(--gold); font-size: 22px; }
.case-metrics span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.partners-img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 22px;
  opacity: .92;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 42px;
  margin-top: 28px;
  color: #cfcfcf;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: .78;
}
.logos-section { padding-top: 48px; padding-bottom: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.about-stats { margin-top: 36px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 108px 0 96px;
  background:
    url("../img/wave-gold.png") center 20% / 140% auto no-repeat,
    radial-gradient(circle at 50% 120%, rgba(218,175,55,.16), transparent 46%),
    #090909;
}
.cta-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 8%;
  width: 100%;
  opacity: .55;
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 36px; }
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.cta-card {
  background: rgba(20,20,20,.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.cta-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.contact-form {
  position: relative;
  margin-top: 40px;
  background: rgba(14,14,14,.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c7c7c7;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0b0b0b;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.form-status { margin: 0; color: var(--gold); font-size: 14px; }
.contact-form .btn { width: fit-content; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .eyebrow { margin-top: 12px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ddd;
}
.socials svg { width: 15px; height: 15px; }
.socials a:hover { color: var(--gold); border-color: var(--gold); }
.site-footer h3 {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 10px; color: var(--muted); }
.site-footer a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 18px; }

.page-default { padding-top: 72px; }
.prose { color: #d5d5d5; line-height: 1.7; font-size: 17px; }
.prose p { margin: 0 0 16px; }

@media (max-width: 1100px) {
  .hero-grid,
  .ecosystem,
  .case-layout,
  .creator-split,
  .footer-grid,
  .page-hero { grid-template-columns: 1fr; }
  .cards-grid.six,
  .cards-grid.four { grid-template-columns: repeat(2, 1fr); }
  .creator-track { grid-auto-columns: calc((100% - 24px) / 3); }
  .orbit { min-height: 620px; }
  .hero-bg {
    background:
      linear-gradient(180deg, var(--bg) 6%, transparent 28%, transparent 72%, var(--bg) 100%),
      url("../img/hero-ring.png") center 18% / auto 78% no-repeat;
    opacity: .95;
  }
  .hero-spacer { min-height: 280px; order: -1; }
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .stats-row,
  .case-metrics,
  .form-row,
  .cta-grid,
  .cards-grid.six,
  .cards-grid.four,
  .mini-points { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-box { grid-template-columns: 1fr; }
  .case-layout { grid-template-columns: 1fr; }
  .creator-track { grid-auto-columns: 84%; }
  .hero { min-height: auto; padding-top: 28px; }
  .hero-spacer { min-height: 240px; }
  .case-media img { height: 220px; }
  .footer-bottom { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-row,
  .case-metrics { grid-template-columns: 1fr; }
  .cta-grid,
  .form-row { grid-template-columns: 1fr; }
}
