:root {
  --black: oklch(13% 0.012 265);
  --ink: oklch(19% 0.012 265);
  --tt-blue: oklch(62% 0.22 245);
  --tt-red: oklch(64% 0.25 16);
  --tt-purple: oklch(55% 0.24 305);
  --tt-black: oklch(10% 0.014 265);
  --white: oklch(98% 0.006 255);
  --paper: oklch(96% 0.012 90);
  --line: rgba(0, 0, 0, 0.12);
  --line-inverse: rgba(255, 255, 255, 0.16);
  --muted: oklch(48% 0.012 265);
  --pink: oklch(64% 0.25 16);
  --pink-dark: oklch(50% 0.22 16);
  --cyan: oklch(82% 0.16 205);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  --ease: cubic-bezier(.19, 1, .22, 1);
  --entrance-duration: 1.5s;
  --float-duration: 4s;
  --font-display: "Archivo Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  background: var(--pink);
  color: var(--white);
}

.section-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 64px);
}

.section {
  position: relative;
  padding: clamp(82px, 11vw, 170px) 0;
}

#about,
#network,
#apply {
  scroll-margin-top: 90px;
}

#about,
#network,
#apply {
  content-visibility: auto;
}

#about {
  contain-intrinsic-size: 760px;
}

#network {
  contain-intrinsic-size: 980px;
}

#apply {
  contain-intrinsic-size: 650px;
}

.section--black {
  background: var(--black);
  color: var(--white);
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--white {
  background: var(--white);
  color: var(--ink);
}

.blank-page-section {
  min-height: calc(100vh - 72px);
}

.component-library {
  min-height: calc(100vh - 72px);
}

.component-library__intro {
  max-width: 940px;
}

.component-library h1 {
  margin: 0;
  max-width: 900px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 104px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.component-library__intro > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.35;
}

.component-library__group-title {
  margin: clamp(54px, 8vw, 110px) 0 24px;
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.component-library__group {
  display: grid;
  gap: 28px;
}

.component-preview {
  border: 1px solid var(--line-inverse);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}

.component-preview__label {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-inverse);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.component-preview__surface {
  position: relative;
  padding: clamp(20px, 3vw, 36px);
  overflow: hidden;
  background: var(--black);
}

.component-preview__surface--full {
  padding: 0;
}

.component-code {
  margin: 0;
  overflow: auto;
  padding: 20px;
  border-radius: 12px;
  background: oklch(16% 0.014 265);
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
}

.lf-nav-preview,
.ls-nav-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.lf-nav-preview nav,
.ls-nav-preview nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 800;
}

.lf-logo,
.ls-logo {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.03em;
}

.lf-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--tt-red), var(--cyan));
}

.ls-logo span {
  color: var(--tt-red);
}

.ls-nav-preview {
  min-height: 84px;
  padding: 0 clamp(18px, 3vw, 34px);
  border-radius: 0;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(18px);
}

.ls-nav-preview nav {
  gap: clamp(18px, 3vw, 40px);
  color: #d7d7d7;
  font-weight: 760;
}

.lf-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lf-nav-actions a {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 800;
}

.lf-nav-actions button,
.lf-button,
.ls-button {
  border: 0;
  cursor: default;
  font: inherit;
}

.lf-nav-actions button {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.lf-hero-preview,
.ls-hero-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 660px;
  padding: clamp(40px, 7vw, 92px);
  overflow: hidden;
  text-align: center;
  background: var(--black);
}

.lf-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .24;
}

.lf-glow--pink {
  top: 8%;
  left: -80px;
  background: var(--tt-red);
}

.lf-glow--cyan {
  right: -80px;
  bottom: 8%;
  background: var(--cyan);
}

.ls-glow {
  position: absolute;
  width: min(500px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .18;
  pointer-events: none;
}

.ls-glow--pink {
  top: -100px;
  right: -120px;
  background: var(--tt-red);
}

.ls-glow--cyan {
  bottom: -200px;
  left: -200px;
  background: var(--cyan);
}

.lf-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 0 auto 24px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lf-hero-preview h3,
.ls-hero-preview h3,
.lf-cta-preview h3,
.ls-cta-preview h3 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 22px;
  color: var(--white);
  font-size: clamp(48px, 8vw, 112px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.lf-hero-preview h3 span {
  color: rgba(255,255,255,.62);
}

.lf-hero-preview p,
.ls-hero-preview p,
.lf-cta-preview p,
.ls-cta-preview p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.64);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}

.lf-button-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lf-button,
.ls-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
}

a.lf-button,
a.ls-button {
  cursor: pointer;
}

.lf-button--pink,
.ls-button {
  background: var(--tt-red);
  color: var(--white);
  box-shadow: 0 0 40px rgba(255,0,80,.22);
}

.lf-button--glass,
.ls-button--secondary {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.05);
  color: var(--white);
}

.lf-button--white {
  background: var(--white);
  color: var(--black);
}

.lf-button--cyan {
  background: var(--cyan);
  color: var(--black);
}

.lf-logo-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(800px, 100%);
  margin: 54px auto 0;
  color: rgba(255,255,255,.48);
  font-weight: 950;
  letter-spacing: .1em;
}

.lf-logo-strip span {
  min-width: 0;
  text-align: center;
}

@media (max-width: 520px) {
  .lf-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    width: min(280px, 100%);
    margin-top: 44px;
    font-size: 13px;
    letter-spacing: .08em;
  }
}

.lf-stats,
.ls-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.lf-stats div,
.ls-stats div {
  display: grid;
  gap: 6px;
  padding: clamp(22px, 4vw, 40px);
  text-align: center;
}

.lf-stats strong,
.ls-stats strong {
  color: var(--cyan);
  font-size: clamp(34px, 5vw, 66px);
  line-height: .9;
  font-weight: 950;
}

.lf-stats div:nth-child(even) strong,
.ls-stats div:nth-child(even) strong {
  color: var(--tt-red);
}

.lf-stats span,
.ls-stats span {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lf-split-preview,
.ls-split-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.lf-split-preview h3,
.ls-split-preview h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(36px, 6vw, 72px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.lf-split-preview h3 span {
  color: var(--tt-red);
}

.lf-cyan {
  color: var(--cyan) !important;
}

.lf-split-preview p,
.ls-split-preview p {
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.45;
}

.ls-copy-block {
  max-width: 620px;
}

.lf-creator-card,
.lf-chart-card,
.ls-card-stack > div {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.lf-avatar {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tt-red), var(--cyan));
}

.lf-creator-card h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.lf-creator-card > div:not(.lf-avatar) {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}

.lf-creator-card span,
.lf-chart-card span {
  color: rgba(255,255,255,.55);
}

.lf-creator-card strong,
.lf-chart-card strong {
  color: var(--tt-red);
}

.lf-check-list,
.ls-split-preview ul {
  display: grid;
  gap: 18px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.75);
  font-weight: 760;
}

.ls-split-preview li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lf-check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--cyan);
}

.brand-liveflow {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.brand-liveflow .section-inner {
  position: relative;
  z-index: 1;
}

.brand-liveflow::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: min(460px, 66vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0,242,255,.14);
  filter: blur(115px);
  pointer-events: none;
}

.creator-monetize {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.creator-monetize::before {
  content: "";
  position: absolute;
  inset: auto auto 10% -160px;
  width: min(440px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,0,80,.16);
  filter: blur(110px);
  pointer-events: none;
}

.creator-monetize .section-inner {
  position: relative;
  z-index: 1;
}

.creator-monetize__grid {
  gap: clamp(42px, 6vw, 92px);
}

.creator-monetize__visual {
  position: relative;
  min-height: 360px;
}

.creator-monetize__card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}

.creator-monetize__profile {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 16px;
  margin: 0 0 22px !important;
  padding: 0 !important;
  background: transparent !important;
}

.creator-monetize__profile .lf-avatar {
  flex: 0 0 auto;
  margin: 0;
}

.creator-monetize__metric {
  position: absolute;
  right: clamp(0px, 3vw, 34px);
  bottom: 6px;
  z-index: 2;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.creator-monetize__metric span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.3;
}

.creator-monetize__metric strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.creator-monetize__bars {
  height: 36px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 12px;
}

.creator-monetize__bars i {
  width: 10px;
  border-radius: 4px 4px 0 0;
  background: var(--cyan);
}

.creator-monetize__bars i:nth-child(1) { height: 45%; opacity: .45; }
.creator-monetize__bars i:nth-child(2) { height: 68%; opacity: .7; }
.creator-monetize__bars i:nth-child(3) { height: 100%; }

.creator-monetize__copy {
  max-width: 620px;
}

.creator-monetize__features {
  display: grid;
  gap: 24px;
  margin: 34px 0 42px;
}

.creator-monetize__feature {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.creator-monetize__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.creator-monetize__feature--pink .creator-monetize__icon {
  background: rgba(255,0,80,.12);
  color: var(--tt-red);
}

.creator-monetize__feature--cyan .creator-monetize__icon {
  background: rgba(0,242,255,.12);
  color: var(--cyan);
}

.creator-monetize__feature h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.02em;
}

.creator-monetize__feature p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .creator-monetize__grid {
    grid-template-columns: 1fr;
  }

  .creator-monetize__visual {
    min-height: auto;
    padding-bottom: 60px;
  }

  .creator-monetize__metric {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 560px) {
  .creator-monetize__feature {
    grid-template-columns: 1fr;
  }

  .creator-monetize__metric {
    position: relative;
    width: min(190px, 100%);
    margin: -20px 0 0 auto;
  }
}

.ls-split-preview li::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tt-red), var(--cyan));
}

.lf-chart-card > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.lf-bars {
  height: 220px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.lf-bars i {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: rgba(255,255,255,.08);
}

.lf-bars i:nth-child(1) { height: 30%; }
.lf-bars i:nth-child(2) { height: 52%; }
.lf-bars i:nth-child(3) { height: 78%; background: var(--cyan); }
.lf-bars i:nth-child(4) { height: 48%; }
.lf-bars i:nth-child(5) { height: 100%; background: var(--tt-red); }

.lf-steps,
.ls-steps,
.ls-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lf-steps > div,
.ls-steps > div,
.ls-testimonials > div {
  min-height: 220px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
}

.lf-steps span,
.ls-steps span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255,255,255,.12);
  font-size: 64px;
  line-height: .9;
  font-weight: 950;
}

.lf-steps h3,
.ls-steps h3,
.ls-card-stack h4 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 26px;
  letter-spacing: -.03em;
}

.lf-steps p,
.ls-steps p,
.ls-testimonials p,
.ls-card-stack p {
  color: rgba(255,255,255,.62);
}

.lf-talent-grid,
.ls-creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lf-talent-grid > div,
.ls-creator-grid > div {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
}

.lf-talent-grid > div > div,
.ls-creator-grid i {
  display: block;
  height: 190px;
  background: linear-gradient(135deg, rgba(255,0,80,.38), rgba(0,242,255,.32));
}

.lf-talent-grid h3,
.ls-creator-grid h3 {
  margin: 20px 20px 6px;
  color: var(--white);
  font-size: 20px;
  letter-spacing: -.02em;
}

.lf-talent-grid p,
.ls-creator-grid p {
  margin: 0 20px 22px;
  color: rgba(255,255,255,.56);
}

.lf-cta-preview,
.ls-cta-preview {
  padding: clamp(42px, 8vw, 100px) clamp(24px, 5vw, 60px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 36px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255,0,80,.28), transparent 42%),
    radial-gradient(circle at bottom left, rgba(0,242,255,.2), transparent 42%),
    #0e0e12;
}

.lf-footer-preview,
.ls-footer-preview {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  border-top: 1px solid rgba(255,255,255,.1);
  background: oklch(14% 0.012 265);
}

.lf-footer-preview strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.lf-footer-preview span,
.ls-footer-preview p {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.8;
}

.lf-footer-preview input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--white);
  padding: 0 12px;
}

.ls-hero-preview {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  place-items: center;
  gap: clamp(34px, 6vw, 80px);
  text-align: left;
}

.ls-hero-preview h3,
.ls-hero-preview p {
  margin-left: 0;
}

.ls-hero-preview h3 {
  font-size: clamp(54px, 7.8vw, 110px);
}

.ls-hero-preview .lf-button-row {
  justify-content: flex-start;
}

.ls-phone-stack {
  position: relative;
  width: min(520px, 100%);
  height: 620px;
}

.ls-phone-stack div {
  position: absolute;
  top: 100px;
  width: clamp(190px, 20vw, 280px);
  height: clamp(390px, 40vw, 560px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 42px;
  background: oklch(15% 0.016 265);
  color: rgba(255,255,255,.08);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 950;
  box-shadow: 0 0 40px rgba(255,0,80,.15), 0 0 120px rgba(0,242,255,.08);
  overflow: hidden;
}

.ls-phone-stack div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent);
}

.ls-phone-stack div:nth-child(1) {
  left: 0;
  transform: rotate(-9deg);
}

.ls-phone-stack div:nth-child(2) {
  left: 50%;
  top: 0;
  z-index: 2;
  transform: translateX(-50%);
}

.ls-phone-stack div:nth-child(3) {
  right: 0;
  transform: rotate(9deg);
}

.ls-card-stack {
  display: grid;
  gap: 24px;
}

.ls-button {
  background: linear-gradient(135deg, var(--tt-red), #ff3d8b);
}

.ls-button--secondary {
  box-shadow: none;
}

.ls-testimonials strong {
  color: var(--white);
}

@media (max-width: 900px) {
  .lf-nav-preview,
  .ls-nav-preview,
  .lf-split-preview,
  .ls-split-preview,
  .ls-hero-preview,
  .lf-footer-preview,
  .ls-footer-preview {
    grid-template-columns: 1fr;
  }

  .lf-nav-preview,
  .ls-nav-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .lf-nav-preview nav,
  .ls-nav-preview nav,
  .lf-nav-actions {
    flex-wrap: wrap;
  }

  .lf-stats,
  .ls-stats,
  .lf-steps,
  .ls-steps,
  .lf-talent-grid,
  .ls-creator-grid,
  .ls-testimonials {
    grid-template-columns: 1fr;
  }

  .ls-phone-stack {
    height: 380px;
    transform: scale(.82);
    transform-origin: left center;
  }
}

.eyebrow {
  margin: 0 0 18px;
  font-size: clamp(12px, 1.25vw, 16px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow {
  text-transform: none;
}

.eyebrow::first-letter {
  text-transform: uppercase;
}

.eyebrow span {
  text-transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.button--ghost {
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.5);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button--tiktok-live {
  color: var(--white);
  background: var(--tt-red);
  border-color: var(--tt-red);
}

.button--tiktok-live:hover {
  background: #d90445;
  border-color: #d90445;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 3vw, 40px) 0 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
}

.site-header .site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand {
  width: clamp(176px, 14vw, 210px);
  height: 128px;
  margin-block: -28px;
  overflow: hidden;
}

.brand picture,
.brand img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand img {
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
}

.nav-item {
  position: relative;
}

.site-nav > .nav-item > a,
.mobile-nav > .nav-item > a,
.hello-link,
.lang-switch a {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-nav > .nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #111;
}

.site-nav > .nav-item > a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 6px;
  background: var(--pink);
  transition: width .35s var(--ease);
}

.site-nav > .nav-item:hover > a::after,
.site-nav > .nav-item:focus-within > a::after {
  width: 100%;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(760px, 92vw);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 16px, 0);
  transition: opacity .26s ease, transform .26s var(--ease);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 160px;
  gap: 30px;
  padding: 30px;
  background: var(--black);
  color: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
}

.mega-menu__group p {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mega-menu__group a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.mega-menu__group a:hover {
  color: var(--pink);
  transform: translateX(4px);
}

.mega-menu__partner {
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.header-apply-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.header-apply-link:hover,
.header-apply-link[aria-current="page"] {
  background: var(--black);
  color: var(--white);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.nav-cta:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.hello-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  transition: background .25s ease, transform .25s var(--ease);
}

.hello-link:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.partner-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 116px;
  height: 34px;
}

.partner-logo-link picture,
.mobile-partner-logo-link picture,
.partner-logo-link img,
.mobile-partner-logo-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.partner-logo-link img,
.mobile-partner-logo-link img {
  object-fit: contain;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.lang-switch a[aria-current="page"] {
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 8px;
  background: var(--black);
  transition: transform .2s ease;
}

.mobile-panel {
  display: none;
}

.mobile-quick-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mobile-cta--alt {
  background: transparent;
  border: 1px solid rgba(255,255,255,.32);
}

.mobile-cta--alt:hover {
  background: rgba(255,255,255,.1);
}

/* Hero */
.hero {
  --hero-neon-pink: #ff007f;
  --hero-electric-blue: #00f2ff;
  --hero-deep-purple: var(--tt-red);
  position: relative;
  min-height: max(900px, calc(100vh - 86px));
  display: grid;
  align-items: start;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-nightlife-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.hero-nightlife-bg__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(56px);
  opacity: .3;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-nightlife-bg__glow--purple {
  top: -10%;
  left: -10%;
  background: var(--hero-deep-purple);
  animation: nightlifeGlowFloat 16s ease-in-out infinite alternate;
}

.hero-nightlife-bg__glow--blue {
  right: -10%;
  bottom: -10%;
  background: var(--hero-electric-blue);
  animation: nightlifeGlowFloat 20s ease-in-out infinite alternate-reverse;
}

.hero-nightlife-bg__glow--pink {
  top: 40%;
  left: 30%;
  width: 360px;
  height: 360px;
  background: var(--hero-neon-pink);
  opacity: .22;
  animation: nightlifeGlowPulse 9s ease-in-out infinite alternate;
}

.hero-nightlife-bg__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(37, 244, 238, .2);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.5);
  animation: nightlifePulseRing 5.5s cubic-bezier(.215, .61, .355, 1) infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-nightlife-bg__pulse:nth-of-type(4) { animation-delay: 0s; }
.hero-nightlife-bg__pulse:nth-of-type(5) { animation-delay: 1.35s; }
.hero-nightlife-bg__pulse:nth-of-type(6) { animation-delay: 2.7s; }
.hero-nightlife-bg__pulse:nth-of-type(7) { animation-delay: 4.05s; }

.hero-nightlife-bg__scanlines {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 50%, rgba(0,0,0,.05) 50%);
  background-size: 100% 4px;
  pointer-events: none;
}

.hero-nightlife-bg__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .28;
  pointer-events: none;
}

.hero-nightlife-bg__particles::before {
  content: "";
  position: absolute;
  inset: -120px 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .78) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(37, 244, 238, .54) 0 1px, transparent 1.5px);
  background-position: 0 0, 32px 46px;
  background-size: 86px 118px, 142px 176px;
  animation: nightlifeParticleRise 24s linear infinite;
  will-change: transform;
}

@keyframes nightlifePulseRing {
  0% { transform: translate(-50%, -50%) scale(.5); opacity: 0; }
  50% { opacity: .5; border-color: var(--hero-neon-pink); }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@keyframes nightlifeGlowFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 50px); }
}

@keyframes nightlifeGlowPulse {
  0% { transform: scale(1); opacity: .2; }
  100% { transform: scale(1.5); opacity: .5; }
}

@keyframes nightlifeParticleRise {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -118px, 0); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5,5,5,.32), rgba(5,5,5,.08) 48%, rgba(5,5,5,.34));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(0deg, rgba(5,5,5,.9), rgba(5,5,5,.48) 48%, transparent);
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-phone-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.hero-showcase-phone {
  position: absolute;
  left: 50%;
  top: 35%;
  width: 260px;
  aspect-ratio: 9 / 19;
  overflow: hidden;
  border: 8px solid #18181b;
  border-radius: 40px;
  background: var(--tt-black);
  backface-visibility: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 1);
  opacity: 0;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  animation: phoneEntrance var(--entrance-duration) cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: var(--delay);
}

.hero-showcase-phone--0 { --tx: -410px; --tz: -400px; --s: .74; --delay: .4s; z-index: 10; }
.hero-showcase-phone--1 { --tx: -205px; --tz: -200px; --s: .9; --delay: .2s; z-index: 20; }
.hero-showcase-phone--2 { --tx: 0px; --tz: 100px; --s: 1.06; --delay: 0s; z-index: 50; }
.hero-showcase-phone--3 { --tx: 205px; --tz: -200px; --s: .9; --delay: .2s; z-index: 20; }
.hero-showcase-phone--4 { --tx: 410px; --tz: -400px; --s: .74; --delay: .4s; z-index: 10; }

.hero-showcase-phone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 96px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: oklch(22% 0.012 265);
  transform: translateX(-50%);
}

.hero-showcase-phone picture,
.hero-showcase-phone img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-showcase-phone img {
  object-fit: cover;
  -webkit-user-drag: none;
}

.hero-showcase-phone__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,.92), transparent 56%);
}

.hero-showcase-phone--2 .hero-showcase-phone__caption {
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 48%);
}

.hero-showcase-phone__caption strong {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

.hero-showcase-phone__caption span {
  margin-top: 4px;
  color: rgba(212,212,216,.9);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 760;
}

.hero-showcase-phone--2 .hero-showcase-phone__caption span {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .hero-phone-title {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  color: var(--white);
  font-size: clamp(46px, 4.7vw, 68px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: -.06em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0,0,0,.88);
  text-wrap: balance;
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-top: clamp(690px, 76vh, 750px);
  padding-bottom: clamp(64px, 8vh, 110px);
}

.hero h1 {
  margin: 0 auto;
  max-width: 1180px;
  font-size: clamp(66px, 8.8vw, 128px);
  line-height: .88;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(0,0,0,.55),
    0 16px 42px rgba(0,0,0,.9);
}

.hero__lead {
  width: min(760px, 92vw);
  margin: 20px auto 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 660;
}

.hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@keyframes phoneEntrance {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 50px, -1000px) scale(.5);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--tx), 0, var(--tz)) scale(var(--s));
  }
}

/* Partner band */
.partner-band {
  background: var(--black);
  color: var(--white);
  padding: 34px 0 58px;
}

.partner-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(18px, 3vw, 34px);
}

.partner-card {
  min-height: 150px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(26px, 5vw, 54px);
}

.partner-card--dark {
  background: var(--tt-black);
  border: 1px solid rgba(255,255,255,.18);
}

.partner-card--dark img {
  width: min(620px, 100%);
}

.partner-card--outlined {
  gap: 26px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
}

.partner-card--outlined span {
  font-size: clamp(18px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 930;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.partner-card--outlined img {
  width: min(190px, 42%);
}

/* Project showcase */
.project-showcase {
  padding-top: clamp(70px, 7vw, 120px);
}

.project-showcase .eyebrow {
  color: rgba(255,255,255,.74);
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 74px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.project-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.13);
  background: var(--ink);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  transform: translateY(0);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,10,120,.65);
}

.project-card__media {
  position: absolute;
  inset: 0;
}

.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.76) 78%);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
}

.project-card__body p {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-card__body h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.project-card__body span {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.45;
}

.project-card__body a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--pink);
}

/* Agency intro */
.agency-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.agency-intro h2,
.full-service h2,
.workarounds h2,
.creator-network h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 108px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.agency-intro__copy p {
  margin: 32px 0 0;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.32;
  font-weight: 560;
  letter-spacing: -.01em;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.tag-row a:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

/* Logo wall */
.logo-wall {
  padding: clamp(42px, 6vw, 92px) 0;
  background: var(--white);
}

.logo-wall__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0,0,0,.1);
}

.logo-tile {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 52px);
  background: var(--white);
}

.logo-tile img {
  max-width: min(220px, 88%);
  max-height: 82px;
  object-fit: contain;
  filter: saturate(.8);
}

.logo-tile strong {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -.04em;
}

/* Full service */
.full-service__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
}

.sticky-label {
  position: sticky;
  top: 120px;
  align-self: start;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
}

.sticky-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 930;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
}

.full-service__copy {
  max-width: 1070px;
}

.full-service__copy p {
  margin: 30px 0 0;
  color: #252525;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
}

.full-service__copy h3 {
  margin: 66px 0 0;
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.full-service__impact {
  padding: 34px;
  border-left: 8px solid var(--pink);
  background: var(--paper);
  font-weight: 820;
}

/* Workarounds */
.workarounds {
  --workarounds-accent: #ff2b4f;
  min-height: 70svh;
  display: flex;
  align-items: center;
  padding-block: clamp(42px, 5vw, 72px);
}

.workarounds .section-inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.workarounds__divider {
  display: none;
  width: 100%;
  height: 1px;
  background: transparent;
  opacity: 0;
}

.workarounds__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.workarounds__intro .eyebrow {
  margin-bottom: clamp(2px, .35vw, 5px);
  animation: workaroundsTitleFloat 3.8s ease-in-out infinite;
}

.workarounds__intro h2 {
  color: var(--white);
  max-width: none;
  font-size: clamp(30px, 4vw, 56px);
  line-height: .94;
  animation: workaroundsTitleFloat 3.8s ease-in-out infinite;
  will-change: transform;
}

.workarounds__intro h2 span {
  display: block;
}

.workarounds__intro h2 .workarounds__accent {
  display: inline;
  color: var(--workarounds-accent);
  text-shadow: 0 0 28px rgba(255, 43, 79, .24);
}

@keyframes workaroundsTitleFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.workarounds__intro p:not(.eyebrow) {
  width: min(920px, 100%);
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.4;
  font-weight: inherit;
  text-wrap: balance;
}

.workaround-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--workaround-gap);
  align-content: start;
  padding-top: clamp(18px, 2.8vw, 46px);
}

.workaround-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(16px, 2vw, 24px);
  row-gap: 10px;
  padding: 0 0 clamp(24px, 3vw, 38px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.workaround-card > span {
  color: var(--pink);
  grid-row: 1 / span 3;
  min-width: 34px;
  padding-top: 3px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.workaround-card h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.workaround-card p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  font-weight: 680;
}

.workaround-card__points {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.workaround-card__points li {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,.58);
  background: transparent;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
}

.workaround-card__points li + li::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255,255,255,.24);
}

.workaround-card a {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: auto;
  margin-top: 4px;
  padding: 0 0 5px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  font-weight: 920;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workaround-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(.42);
  transform-origin: left center;
  transition: transform .32s var(--ease);
}

.workaround-card a:hover::after,
.workaround-card a:focus-visible::after {
  transform: scaleX(1);
}

/* Creators */
.creator-network__layout {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.creator-network__copy p:not(.eyebrow) {
  margin: 30px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.creator-tile {
  overflow: hidden;
  border-radius: 22px;
  background: var(--tt-black);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.creator-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(255,10,120,.18);
}

.creator-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq-section__layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 90px);
}

.faq-section h2 {
  font-size: clamp(40px, 6vw, 88px);
}

.faq-section__intro {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.03em;
}

.faq-item button i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  transition: transform .22s ease, background .22s ease;
}

.faq-item--open button i {
  transform: rotate(45deg);
  background: var(--pink);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s var(--ease);
}

.faq-item--open .faq-item__panel {
  max-height: 380px;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

/* Contact section */
.contact-ctas {
  background: var(--black);
  padding: 0;
  color: var(--white);
}

.contact-ctas__wrap {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  width: min(760px, 100%);
}

.contact-ctas__lead h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.02em;
}

.contact-ctas__subtext {
  margin: 10px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.4;
}

.contact-split {
  width: 100%;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
}

.contact-split__header {
  padding: clamp(34px, 5vw, 72px) clamp(22px, 4vw, 64px);
  border-bottom: 0;
  text-align: center;
}

.contact-split__header h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6vw, 86px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-split__header p {
  margin: 12px auto 0;
  color: rgba(255,255,255,.62);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.4;
}

.contact-split__panels {
  display: flex;
  min-height: clamp(300px, 34vw, 430px);
  border-bottom: 0;
}

.contact-split__panel {
  position: relative;
  flex: 1 1 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(26px, 3.4vw, 48px);
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: none;
}

.contact-split__panel:last-child {
  border-right: 0;
}

.contact-split__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}

.contact-split__panel--creator::before {
  background: linear-gradient(135deg, rgba(37, 244, 238, .16), transparent 56%);
}

.contact-split__panel--brand::before {
  background: linear-gradient(135deg, rgba(255, 43, 79, .16), transparent 56%);
}

.contact-split__panel-content {
  position: relative;
  z-index: 1;
  max-width: 360px;
  text-align: center;
  transition: none;
}

.contact-split__panel-content span {
  display: block;
  margin-bottom: 14px;
  color: var(--tt-red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.contact-split__panel--creator .contact-split__panel-content span {
  color: var(--tt-blue);
}

.contact-split__panel-content h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 74px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-split__panel-content small {
  display: block;
  margin: -6px auto 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.contact-split__panel-content p {
  margin: 0 auto clamp(26px, 4vw, 42px);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact-split__panel-content i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-style: normal;
  font-size: 28px;
  line-height: 1;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.contact-split__panel:hover .contact-split__panel-content i {
  transform: none;
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.contact-split__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 64px);
}

.contact-split__footer h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.2;
}

.contact-split__footer p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.45;
}

.contact-split__footer a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease;
}

.contact-split__footer a:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--white);
}

.section-divider--invisible {
  height: clamp(28px, 5vw, 72px);
  background: var(--black);
}

.contact-ctas,
.contact-split,
.contact-split__header,
.contact-split__footer {
  background: var(--black);
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field > span {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: oklch(18% 0.012 265);
  color: var(--white);
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.35;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 0, 80, .5);
  outline-offset: 1px;
  border-color: var(--tt-red);
}

.contact-form__submit {
  margin-top: 4px;
  width: max-content;
  min-width: 210px;
}

.contact-ctas__meta {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.contact-ctas__meta a,
.contact-ctas__meta p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.45;
}

.contact-ctas__meta strong {
  color: var(--white);
}

/* Footer */
.footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: oklch(14% 0.012 265);
  color: var(--white);
}

.footer .container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(120px, .6fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(24px, 3.2vw, 40px) 0 clamp(26px, 3.4vw, 44px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.site-footer__top {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  padding-bottom: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(14px, 2vw, 22px);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.to-top {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-self: start;
}

.footer-brand__logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand__logos picture {
  display: block;
  line-height: 0;
}

.footer-brand__shop-logo {
  width: 118px;
  height: auto;
  background: transparent;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.footer-brand__partner-logo {
  width: 142px;
  height: auto;
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand__qr {
  width: 76px;
  height: auto;
  padding: 6px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.footer-brand h2 {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.footer-columns a:hover {
  color: var(--pink);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.footer-column {
  padding: 0;
  min-width: 0;
}

.footer-column p {
  margin: 0;
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 720;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.footer-address {
  margin: 0;
  font-style: normal;
}

.footer-address p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.45;
}

.footer-brand-row {
  display: flex;
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .nav-cta-group,
  .hello-link {
    display: none;
  }

  .partner-logo-link,
  .header-apply-link {
    display: inline-flex;
  }

  .partner-logo-link {
    width: 86px;
    height: 26px;
  }

  .header-apply-link {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow: auto;
    padding: 28px clamp(22px, 4vw, 46px) 38px;
    background: var(--black);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s var(--ease);
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .mobile-panel--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav {
    display: grid;
    gap: 10px;
  }

  .mobile-nav > .nav-item > a {
    display: block;
    padding: 12px 0;
    font-size: 24px;
    line-height: 1;
  }

  .mobile-nav .nav-apply-link {
    width: max-content;
    margin-top: 6px;
    padding: 14px 18px !important;
    border: 1px solid currentColor;
  }

  .mobile-subnav {
    display: grid;
    gap: 6px;
    padding: 4px 0 16px 18px;
  }

  .mobile-subnav a {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 820;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 20px;
    border-radius: 999px;
    background: var(--pink);
    font-size: 13px;
    font-weight: 930;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .mobile-partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 190px);
    height: 54px;
    margin-top: 20px;
  }

  .hero-showcase-phone {
    top: 39%;
    width: 230px;
  }

  .hero-showcase-phone--0 { --tx: -305px; --tz: -400px; --s: .72; }
  .hero-showcase-phone--1 { --tx: -152px; --tz: -200px; --s: .88; }
  .hero-showcase-phone--2 { --tx: 0px; --tz: 90px; --s: 1.04; }
  .hero-showcase-phone--3 { --tx: 152px; --tz: -200px; --s: .88; }
  .hero-showcase-phone--4 { --tx: 305px; --tz: -400px; --s: .72; }

  .hero__content {
    padding-top: clamp(630px, 74vh, 700px);
  }

  .partner-band__inner,
  .agency-intro__grid,
  .full-service__layout,
  .workarounds .section-inner,
  .creator-network__layout,
  .faq-section__layout {
    grid-template-columns: 1fr;
  }

  .workarounds__intro {
    min-height: auto;
    gap: 26px;
  }

  .workarounds__divider {
    display: block;
  }

  .workaround-grid {
    grid-template-rows: none;
    padding-top: 0;
  }

  .site-footer__top {
    align-items: flex-start;
  }

  .sticky-label {
    position: static;
    min-height: auto;
  }

  .sticky-label span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .project-grid,
  .workaround-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 560px;
  }

  .logo-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section-inner {
    padding: 0 16px;
  }

  .section {
    padding: clamp(56px, 10vw, 82px) 0;
  }

  .site-header {
    min-height: 60px;
    padding: 0 12px 0 8px;
  }

  .header-brand-group {
    gap: 8px;
  }

  .brand {
    width: 112px;
    height: 74px;
    margin-block: -6px;
  }

  .mobile-panel {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding: 22px 18px 28px;
  }

  .mobile-nav > .nav-item > a {
    font-size: 18px;
    line-height: 1.15;
  }

  .mobile-cta {
    width: 100%;
  }

  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 78px);
    letter-spacing: -.055em;
  }

  .hero-showcase-phone {
    top: 35%;
    width: 162px;
    border-width: 6px;
    border-radius: 30px;
  }

  .hero-showcase-phone--0 { --tx: -152px; --tz: -320px; --s: .58; }
  .hero-showcase-phone--1 { --tx: -76px; --tz: -160px; --s: .78; }
  .hero-showcase-phone--2 { --tx: 0px; --tz: 44px; --s: .96; }
  .hero-showcase-phone--3 { --tx: 76px; --tz: -160px; --s: .78; }
  .hero-showcase-phone--4 { --tx: 152px; --tz: -320px; --s: .58; }

  .hero-showcase-phone__notch {
    width: 72px;
    height: 18px;
  }

  .hero-showcase-phone__caption {
    padding: 12px;
  }

  .hero .hero-phone-title {
    padding: 0 16px;
    font-size: 34px;
    line-height: .84;
  }

  .hero__content {
    padding-top: 520px;
    padding-bottom: 50px;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero__actions .button {
    width: min(100%, 320px);
  }

  .partner-card {
    min-height: 124px;
    border-radius: 22px;
  }

  .partner-card--outlined {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-card {
    min-height: auto;
  }

  .agency-intro h2,
  .full-service h2,
  .workarounds h2,
  .creator-network h2,
  .faq-section h2 {
    font-size: clamp(40px, 14vw, 74px);
  }

  .workarounds {
    min-height: 64svh;
    padding-block: clamp(38px, 9vw, 62px);
  }

  .workarounds .section-inner {
    gap: clamp(54px, 13vw, 76px);
  }

  .workarounds__intro {
    gap: 12px;
  }

  .workarounds__intro .eyebrow {
    margin-bottom: 0;
  }

  .workarounds__intro h2,
  .workarounds__intro p:not(.eyebrow) {
    white-space: normal;
  }

  .workarounds__intro h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: auto;
    overflow-wrap: normal;
    animation: none;
  }

  .workarounds__intro h2 > span {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .workarounds__intro h2 .workarounds__accent {
    text-shadow: 0 0 18px rgba(255, 43, 79, .18);
  }

  .workarounds__intro p:not(.eyebrow) {
    margin-top: 8px;
  }

  .logo-wall__grid,
  .creator-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-brand__logos {
    gap: 10px;
  }

  .footer-brand__shop-logo {
    width: 100px;
  }

  .footer-brand__partner-logo {
    width: 128px;
  }

  .footer-brand__qr {
    width: 68px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-ctas__wrap {
    width: 100%;
    gap: 16px;
  }

  .contact-form__submit {
    width: 100%;
  }

  .contact-ctas__meta a,
  .contact-ctas__meta p {
    font-size: 14px;
  }

  .to-top {
    margin-top: 6px;
  }

  .logo-tile {
    min-height: 130px;
  }

  .workaround-card {
    min-height: auto;
  }

  .faq-item button {
    padding: 22px 0;
  }

  .faq-item button span {
    font-size: clamp(18px, 6.2vw, 24px);
  }
}

@media (max-width: 480px) {
  .brand {
    width: 96px;
    height: 64px;
    margin-block: -2px;
  }

  .header-brand-group .partner-logo-link {
    width: 82px;
    height: 26px;
  }

  .header-brand-group {
    gap: 6px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-showcase-phone {
    top: 34%;
    width: clamp(132px, 36vw, 150px);
  }

  .hero-showcase-phone--0 { --tx: clamp(-146px, -34vw, -112px); --tz: -320px; --s: .46; }
  .hero-showcase-phone--1 { --tx: clamp(-78px, -18vw, -56px); --tz: -160px; --s: .68; }
  .hero-showcase-phone--2 {
    --tz: 24px;
    --s: .88;
  }
  .hero-showcase-phone--3 { --tx: clamp(56px, 18vw, 78px); --tz: -160px; --s: .68; }
  .hero-showcase-phone--4 { --tx: clamp(112px, 34vw, 146px); --tz: -320px; --s: .46; }

  .hero__content {
    padding-top: 440px;
  }

  .hero .hero-phone-title {
    font-size: 30px;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 84px;
  }

  .header-brand-group .partner-logo-link {
    width: 70px;
    height: 23px;
  }
}

/* Static build enhancements */
.site-header.site-header--scrolled {
  min-height: 62px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-grid .reveal:nth-child(2),
.workaround-grid .reveal:nth-child(2) {
  transition-delay: .08s;
}

.project-grid .reveal:nth-child(3),
.workaround-grid .reveal:nth-child(3) {
  transition-delay: .16s;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* WeLiveShops refinement layer */
h1,
h2,
h3,
.hero-phone-title,
.component-library h1,
.lf-hero-preview h3,
.ls-hero-preview h3,
.lf-cta-preview h3,
.ls-cta-preview h3,
.page-hero__copy h1,
.section-kicker h2,
.split-feature__copy h2,
.conversion-strip h2,
.learn-live h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.site-header {
  background: color-mix(in oklch, var(--white) 94%, transparent);
}

.site-nav,
.mobile-nav,
.eyebrow,
.button,
.workaround-card a,
.footer-column {
  letter-spacing: .04em;
}

.site-nav a,
.mobile-nav a,
.button,
.eyebrow,
.component-preview__label,
.lf-stats span,
.ls-stats span {
  line-height: 1.35;
}

.hero-showcase-phone__caption strong,
.hero-showcase-phone__caption span,
.footer-column p {
  line-height: 1.45;
}

.hero {
  min-height: clamp(760px, 92vh, 980px);
}

.button--ghost-dark,
.button--dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button--ghost-dark:hover,
.button--dark:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.section-kicker {
  width: min(860px, 100%);
  margin-bottom: clamp(30px, 5vw, 64px);
}

.section-kicker h2,
.learn-live h2,
.split-feature__copy h2,
.conversion-strip h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-kicker p:not(.eyebrow),
.learn-live__copy p:not(.eyebrow),
.split-feature__copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.audience-paths {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.audience-paths .section-kicker h2 {
  color: var(--white);
}

.audience-paths .section-kicker p:not(.eyebrow) {
  color: rgba(255,255,255,.76);
}

.audience-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.audience-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line-inverse);
  border-radius: 28px;
  background: color-mix(in oklch, var(--white) 7%, transparent);
}

.audience-card > span,
.proof-grid span,
.learn-live__steps span,
.creator-profile-panel > span,
.campaign-panel > span,
.contact-route span {
  color: var(--pink);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: 28px 0 0;
  min-height: 4.08em;
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.08;
}

.audience-card ul,
.lf-check-list,
.ls-split-preview ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.5;
}

.audience-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.audience-card .button {
  margin-top: auto;
}

.audience-card .button--ghost-dark {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.audience-card .button--ghost-dark:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.workarounds__intro .eyebrow,
.workarounds__intro h2 {
  animation: none;
}

.workaround-card h3,
.faq-section h2 {
  line-height: 1.02;
}

.workaround-card p {
  line-height: 1.5;
}

.learn-live__layout,
.split-feature,
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.learn-live__copy,
.split-feature__copy {
  max-width: 680px;
}

.learn-live__copy .button {
  margin-top: 30px;
}

.learn-live__steps,
.proof-grid {
  display: grid;
  gap: 16px;
}

.learn-live__steps article,
.proof-grid article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid color-mix(in oklch, var(--ink) 12%, transparent);
  border-radius: 22px;
  background: var(--white);
}

.learn-live {
  background: var(--white);
}

.learn-live__steps article {
  border-color: var(--line-inverse);
  background: linear-gradient(160deg, color-mix(in oklch, var(--ink) 96%, transparent), color-mix(in oklch, var(--ink) 88%, var(--black)));
  color: var(--white);
  transition: transform .42s var(--ease), background .42s var(--ease), border-color .42s var(--ease);
}

.learn-live__steps article:hover {
  transform: translateY(-8px);
  border-color: color-mix(in oklch, var(--pink) 68%, transparent);
  background: linear-gradient(160deg, color-mix(in oklch, var(--pink) 36%, var(--black)), color-mix(in oklch, var(--ink) 92%, var(--black)));
}

.learn-live__steps h3,
.proof-grid h3 {
  margin: 18px 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.learn-live__steps p,
.proof-grid p,
.campaign-panel p,
.creator-profile-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.learn-live__steps p {
  color: rgba(255,255,255,.78);
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.contact-route {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 178px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: color-mix(in oklch, var(--white) 6%, transparent);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.contact-route:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
}

.contact-route strong {
  color: var(--white);
  max-width: 12ch;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: .95;
  text-transform: uppercase;
  text-wrap: balance;
}

.contact-apply-grid .apply-in-app__button {
  min-width: 0;
  width: min(100%, 280px);
  min-height: 54px;
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  line-height: 1.15;
}

.contact-apply-grid {
  margin-top: clamp(-18px, -1.8vw, -10px);
}

.contact-apply-grid .apply-in-app-card h2 {
  color: var(--black);
}

.contact-apply-grid .apply-in-app-card__image {
  border-color: var(--black);
}

.contact-apply-grid .apply-in-app__button {
  border-color: var(--black);
}

.contact-apply-grid .apply-in-app__button:hover {
  background: color-mix(in oklch, var(--black) 88%, var(--white));
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 160px) 0;
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--pink) 18%, transparent), transparent 36%),
    linear-gradient(315deg, color-mix(in oklch, var(--cyan) 16%, transparent), transparent 42%),
    var(--black);
  color: var(--white);
}

.page-hero__copy h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(46px, 7.6vw, 112px);
  line-height: .98;
  text-wrap: balance;
}

.page-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.creator-profile-panel,
.campaign-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: color-mix(in oklch, var(--white) 7%, transparent);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

.creator-profile-panel strong,
.campaign-panel strong {
  display: block;
  margin: 18px 0 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.mini-metrics div {
  min-height: 96px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.mini-metrics b {
  color: var(--white);
  font-size: 18px;
}

.mini-metrics small {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.35;
}

.campaign-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  height: 220px;
  margin: 24px 0;
}

.campaign-bars i {
  border-radius: 14px 14px 0 0;
  background: color-mix(in oklch, var(--white) 12%, transparent);
}

.campaign-bars i:nth-child(1) { height: 42%; }
.campaign-bars i:nth-child(2) { height: 72%; background: var(--cyan); }
.campaign-bars i:nth-child(3) { height: 56%; }
.campaign-bars i:nth-child(4) { height: 100%; background: var(--pink); }

.creator-program,
.brand-program {
  background: var(--white);
}

.conversion-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.conversion-strip h2 {
  max-width: 820px;
  color: var(--white);
}

.component-preview__surface--light {
  background: var(--paper);
}

.conversion-faq {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  color: var(--ink);
}

.conversion-faq__intro h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
}

.conversion-faq__intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.conversion-faq__list {
  display: grid;
  gap: 1px;
  background: color-mix(in oklch, var(--ink) 14%, transparent);
}

.conversion-faq__list article {
  padding: 22px 0;
  background: var(--paper);
}

.conversion-faq__list h4 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
}

.conversion-faq__list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.footer-column a {
  color: rgba(255,255,255,.78);
  overflow-wrap: anywhere;
}

.page-old-hero {
  min-height: calc(100vh - 72px);
}

.page-old-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-old-hero h1 span {
  color: rgba(255,255,255,.62);
}

.page-old-hero .lf-pill {
  margin-left: auto;
  margin-right: auto;
}

.page-old-hero--brand {
  min-height: clamp(660px, 80vh, 720px);
  padding-inline: clamp(18px, 5vw, 72px);
  padding-block: clamp(48px, 5vw, 72px);
  background:
    radial-gradient(circle at 76% 28%, rgba(37, 244, 238, .26), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(255, 43, 79, .22), transparent 34%),
    linear-gradient(135deg, #020203 0%, #14181f 48%, #050507 100%);
  color: var(--white);
}

.page-old-hero--brand .lf-pill,
.page-old-hero--brand h1,
.page-old-hero--brand p {
  margin-left: 0;
}

.page-old-hero--brand .lf-pill {
  margin-right: 0;
}

.page-old-hero--brand h1 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(54px, 7.2vw, 102px);
}

.page-old-hero--brand p {
  max-width: 620px;
  color: rgba(255,255,255,.72);
}

.page-old-hero--brand .ls-button--secondary {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.05);
  box-shadow: none;
}

.page-old-hero--brand .creator-network-hero__phone {
  position: absolute;
  right: clamp(48px, 8vw, 130px);
  top: 50%;
  justify-self: center;
  width: min(300px, 100%);
  min-width: min(230px, 100%);
  transform: translateY(-50%) rotate(8deg);
}

@media (max-width: 720px) {
  .page-old-hero--brand .creator-network-hero__phone {
    position: relative;
    right: auto;
    top: auto;
    width: min(230px, 72vw);
    min-width: 0;
    transform: rotate(4deg);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal,
.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .audience-paths__grid,
  .learn-live__layout,
  .split-feature,
  .page-hero__grid,
  .conversion-faq {
    grid-template-columns: 1fr;
  }

  .conversion-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .audience-card,
  .creator-profile-panel,
  .campaign-panel {
    border-radius: 22px;
  }

  .contact-route-grid {
    grid-template-columns: 1fr;
  }

  .contact-route {
    min-height: 140px;
  }

  .contact-split__panels {
    flex-direction: column;
    min-height: auto;
  }

  .contact-split__panel {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-split__panel:hover {
    flex-grow: 1;
  }

  .contact-split__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 72px 0 86px;
  }

  .hero__actions {
    align-items: center;
    justify-content: center;
  }

  .hero__actions .button,
  .conversion-strip .button {
    width: min(100%, 340px);
  }
}

/* White surface correction */
html,
body,
.hero,
.hero-showcase-phone,
.section,
.section--black,
.section--light,
.section--white,
.audience-paths,
.workarounds,
.learn-live,
.faq-section,
.contact-ctas,
.footer,
.site-footer,
.page-hero,
.page-old-hero,
.creator-program,
.brand-program,
.conversion-strip {
  background: var(--white);
  color: var(--ink);
}

.workarounds {
  background: transparent;
}

.hero-tiktok-grain,
.hero-tiktok-overlay,
.hero::before,
.hero::after,
.hero-tiktok-bg__glow {
  display: none;
}

.audience-paths .section-kicker h2,
.audience-card h3,
.workarounds__intro h2,
.workaround-card h3,
.learn-live__steps h3,
.contact-ctas__lead h2,
.contact-route strong,
.footer-column h3,
.footer-column p,
.footer-column a,
.page-hero__copy h1,
.page-old-hero h1,
.conversion-strip h2,
.creator-profile-panel strong,
.campaign-panel strong {
  color: var(--ink);
}

.hero,
.hero .eyebrow,
.hero h1,
.hero__lead,
.hero-showcase-phone__caption,
.hero-showcase-phone__caption strong,
.hero-showcase-phone__caption span,
.hero .hero-phone-title {
  color: var(--ink);
}

.section-kicker p:not(.eyebrow),
.audience-paths .section-kicker p:not(.eyebrow),
.workarounds__intro p:not(.eyebrow),
.workaround-card p,
.learn-live__copy p:not(.eyebrow),
.learn-live__steps p,
.contact-ctas__subtext,
.contact-ctas__meta a,
.contact-ctas__meta p,
.footer-address p,
.page-hero__copy p:not(.eyebrow),
.page-old-hero h1 span,
.creator-profile-panel p,
.campaign-panel p,
.mini-metrics small,
.conversion-faq__intro p:not(.eyebrow),
.conversion-faq__list p {
  color: var(--muted);
}

.audience-card,
.learn-live__steps article,
.contact-route,
.creator-profile-panel,
.campaign-panel,
.mini-metrics div,
.conversion-faq__list article {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.audience-card li {
  color: var(--muted);
}

.workaround-card a {
  color: var(--ink);
}

.audience-card .button--ghost-dark,
.button--dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button--ghost {
  color: var(--black);
  background: var(--white);
  border-color: var(--line);
}

.button--ghost:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.hero {
  background: var(--black);
  color: var(--white);
}

.hero-showcase-phone {
  background: var(--tt-black);
}

.hero::before,
.hero::after {
  display: block;
}

.hero .eyebrow,
.hero h1,
.hero__lead,
.hero-showcase-phone__caption,
.hero-showcase-phone__caption strong,
.hero-showcase-phone__caption span,
.hero .hero-phone-title {
  color: var(--white);
}

.hero .button--ghost {
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.5);
}

.hero .button--ghost:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.page-old-hero--brand {
  background:
    radial-gradient(circle at 76% 28%, rgba(37, 244, 238, .26), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(255, 43, 79, .22), transparent 34%),
    linear-gradient(135deg, #020203 0%, #14181f 48%, #050507 100%);
  color: var(--white);
}

.page-old-hero--brand h1 {
  color: var(--white);
}

.page-old-hero--brand p {
  color: rgba(255,255,255,.72);
}

.learn-live__layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.learn-live__copy {
  max-width: 940px;
}

.learn-live__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.learn-live__steps article {
  min-height: 240px;
}

.audience-card,
.learn-live__steps article,
.contact-route,
.creator-profile-panel,
.campaign-panel,
.proof-grid article {
  border-color: var(--line-inverse);
  background: linear-gradient(160deg, color-mix(in oklch, var(--ink) 96%, transparent), color-mix(in oklch, var(--ink) 88%, var(--black)));
  color: var(--white);
}

.audience-card:hover,
.learn-live__steps article:hover,
.contact-route:hover,
.creator-profile-panel:hover,
.campaign-panel:hover,
.proof-grid article:hover {
  border-color: rgb(220, 28, 22);
  background: linear-gradient(160deg, rgb(15, 15, 18) 0%, rgb(78, 10, 10) 38%, rgb(184, 22, 18) 72%, rgb(246, 48, 36) 100%);
}

.audience-card h3,
.audience-card li,
.audience-card p,
.learn-live__steps h3,
.learn-live__steps p,
.contact-route strong,
.creator-profile-panel strong,
.creator-profile-panel p,
.campaign-panel strong,
.campaign-panel p,
.proof-grid h3,
.proof-grid p {
  color: var(--white);
}

.audience-card .button--ghost-dark {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.audience-card .button--ghost-dark:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.audience-card > span,
.learn-live__steps span,
.contact-route span,
.creator-profile-panel > span,
.campaign-panel > span,
.proof-grid span {
  color: var(--white);
}

@media (max-width: 900px) {
  .learn-live__steps {
    grid-template-columns: 1fr;
  }

  .learn-live__steps article {
    min-height: auto;
  }

  .apply-in-app__grid {
    grid-template-columns: 1fr;
  }
}

.hero__content {
  z-index: 80;
  padding-top: clamp(270px, 36vh, 360px);
  padding-bottom: clamp(180px, 24vh, 260px);
  pointer-events: none;
}

.hero__content h1 {
  position: relative;
  z-index: 90;
  margin-bottom: clamp(290px, 34vh, 380px);
}

.hero__content .eyebrow,
.hero__actions {
  position: relative;
  z-index: 91;
  pointer-events: auto;
}

/* Final homepage surface overrides */
.footer {
  background: var(--black);
  color: var(--white);
  border-top-color: var(--line-inverse);
}

.footer-column p {
  color: rgba(255,255,255,.62);
}

.footer-column a {
  color: rgba(255,255,255,.9);
}

@media (min-width: 760px) {
  .contact-ctas__wrap {
    width: min(1100px, 100%);
  }

  .contact-ctas__lead h2 {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .hero__content {
    padding-top: clamp(250px, 36vh, 330px);
    padding-bottom: 150px;
  }

  .hero__content h1 {
    margin-bottom: clamp(230px, 30vh, 300px);
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding-top: 255px;
    padding-bottom: 120px;
  }

  .hero__content h1 {
    margin-bottom: 190px;
  }
}

.creator-network-hero {
  --creator-network-bg: #020203;
  --creator-network-panel: #0b0c10;
  --creator-network-white: #f7f7f2;
  --creator-network-muted: #b7b7c4;
  --creator-network-cyan: #25f4ee;
  --creator-network-red: #ff2b4f;
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 74% 47%, rgba(255, 43, 79, 0.12), transparent 26%),
    radial-gradient(circle at 35% 64%, rgba(37, 244, 238, 0.08), transparent 28%),
    linear-gradient(180deg, #000 0%, #030306 52%, #000 100%);
  color: var(--creator-network-white);
  isolation: isolate;
}

.creator-network-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: .35;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 63%);
}

.creator-network-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, .72) 100%);
}

.creator-network-hero__content {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(34px, 5vw, 64px) clamp(22px, 4vw, 64px);
}

.creator-network-hero__header {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.creator-network-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--creator-network-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.creator-network-hero__eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--creator-network-red);
  box-shadow: 0 0 18px var(--creator-network-red);
}

.creator-network-hero h1 {
  margin: 0;
  color: var(--creator-network-white);
  font-family: var(--font-display);
  font-size: clamp(44px, 7.6vw, 118px);
  line-height: .84;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.creator-network-hero h1 span {
  color: var(--creator-network-red);
  text-shadow: 0 0 28px rgba(255, 43, 79, .24);
}

.creator-network-hero__header p {
  max-width: 980px;
  margin: 24px auto 0;
  color: rgba(247, 247, 242, .76);
  font-size: clamp(15px, 1.6vw, 24px);
  line-height: 1.45;
}

.learn-live--network {
  width: min(1180px, 100%);
  margin: clamp(30px, 4vw, 54px) auto 0;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
}

.learn-live--network .section-inner {
  width: 100%;
  padding: 0;
}

.learn-live--network h2 {
  font-size: clamp(32px, 4.2vw, 64px);
}

.learn-go-live {
  position: relative;
  z-index: 20;
  width: min(1180px, 100%);
  margin: clamp(30px, 4vw, 54px) auto 0;
  color: var(--ink);
}

.learn-go-live .eyebrow {
  color: var(--pink);
}

.learn-go-live__plan {
  min-height: 620px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #f4f7fb;
  box-shadow: 0 28px 90px rgba(7, 17, 31, .14);
}

.learn-go-live__plan h2,
.learn-go-live__launch h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.learn-go-live__plan h2 {
  max-width: 800px;
  font-size: clamp(39px, 6vw, 66px);
  line-height: .94;
}

.learn-go-live__plan > p,
.learn-go-live__launch-copy > p {
  max-width: 790px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
}

.learn-go-live__process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(50px, 7vw, 82px);
}

.learn-go-live__process-card {
  position: relative;
  min-height: 172px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line-inverse);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 44%),
    var(--black);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .10),
    0 18px 46px rgba(7, 17, 31, .10);
}

.learn-go-live__process-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
}

.learn-go-live__process-card h3 {
  max-width: 250px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.learn-go-live__process-card p {
  max-width: 245px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.42;
}

.learn-go-live__launch {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  margin-top: clamp(24px, 4vw, 42px);
  padding: clamp(28px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(7, 17, 31, .14);
}

.learn-go-live__launch h2 {
  max-width: 620px;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: .95;
}

.learn-go-live__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.learn-go-live__launch-panel {
  display: grid;
  gap: 12px;
}

.learn-go-live__launch-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(7, 17, 31, .06);
  border-radius: 18px;
  background: #eef2f7;
}

.learn-go-live__launch-row strong {
  display: grid;
  width: 54px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  box-shadow:
    3px 3px 0 rgba(37, 244, 238, .72),
    -3px -3px 0 rgba(255, 43, 79, .72);
}

.learn-go-live__launch-row span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .learn-go-live__process,
  .learn-go-live__launch {
    grid-template-columns: 1fr;
  }

  .learn-go-live__plan {
    min-height: auto;
  }

  .learn-go-live__process-card {
    min-height: 150px;
  }
}

@media (max-width: 680px) {
  .learn-go-live {
    width: min(100% - 28px, 1180px);
  }

  .learn-go-live__plan,
  .learn-go-live__launch {
    border-radius: 22px;
  }

  .learn-go-live__actions .button {
    width: min(100%, 340px);
  }

  .learn-go-live__launch-row {
    grid-template-columns: 46px 1fr;
  }

  .learn-go-live__launch-row strong {
    width: 46px;
  }
}

.creator-network-map-section {
  min-height: auto;
  background: #000;
}

.creator-network-map-section .creator-network-hero__content {
  min-height: auto;
  display: block;
  padding: clamp(26px, 4vw, 52px) clamp(22px, 4vw, 64px) clamp(42px, 6vw, 80px);
}

@media (min-width: 981px) {
  .creator-network-map-section .creator-network-hero__content {
    padding-inline: 10vw;
  }
}

.creator-network-map-section .creator-network-hero__stage {
  margin-top: clamp(24px, 4vw, 54px);
}

.creator-network-map-section .creator-network-hero__header h1 {
  max-width: calc(100vw - 48px);
  margin-inline: auto;
  font-size: clamp(32px, 4.35vw, 58px);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .creator-network-map-section .creator-network-hero__header h1 {
    font-size: clamp(34px, 10vw, 44px);
    white-space: normal;
  }
}

.live-lockup {
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  top: clamp(18px, 4vw, 52px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px 18px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(0, 0, 0, .72);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, .48),
    0 0 38px rgba(255, 43, 79, .28),
    0 0 42px rgba(37, 244, 238, .12),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px);
  isolation: isolate;
}

.live-lockup::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 50%, rgba(37, 244, 238, .28), transparent 28%),
    radial-gradient(circle at 78% 50%, rgba(255, 43, 79, .34), transparent 30%);
  filter: blur(18px);
  opacity: .62;
}

.tiktok-mark-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: #050506;
  box-shadow:
    4px 4px 0 rgba(37, 244, 238, .95),
    -4px -4px 0 rgba(255, 43, 79, .95),
    0 0 30px rgba(255, 255, 255, .10);
}

.tiktok-mark {
  position: relative;
  width: 26px;
  height: 32px;
  display: inline-block;
  filter:
    drop-shadow(3px 0 0 var(--creator-network-cyan))
    drop-shadow(-3px 0 0 var(--creator-network-red));
}

.tiktok-mark::before {
  content: "♪";
  position: absolute;
  left: -1px;
  top: -8px;
  color: #fff;
  font-size: 39px;
  font-weight: 950;
  line-height: 1;
}

.live-lockup__text {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  line-height: 1;
}

.live-lockup__brand {
  color: #fff;
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 255, 255, .14);
}

.live-lockup__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 12px;
  background: var(--creator-network-red);
  color: #fff;
  font-size: clamp(18px, 2.8vw, 30px);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
  transform: translateY(1px);
  box-shadow: 0 0 26px rgba(255, 43, 79, .58);
}

.live-lockup__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, .9);
  animation: liveLockupPulse 1.4s ease-in-out infinite;
}

@keyframes liveLockupPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .55;
    transform: scale(.72);
  }
}

@media (max-width: 560px) {
  .live-lockup {
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    gap: 13px;
    padding: 15px 17px 15px 15px;
  }

  .tiktok-mark-wrap {
    width: 46px;
    height: 46px;
  }

  .tiktok-mark {
    width: 22px;
    height: 28px;
  }

  .tiktok-mark::before {
    top: -7px;
    font-size: 34px;
  }

  .live-lockup__text {
    gap: 7px;
  }
}

.apply-in-app {
  min-height: calc(100vh - 72px);
  background: var(--white);
  color: var(--ink);
  padding: clamp(64px, 8vw, 110px) 0;
}

.apply-in-app__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.apply-in-app h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
}

.apply-in-app__intro {
  max-width: 560px;
  margin: 14px auto clamp(46px, 7vw, 80px);
  color: color-mix(in oklch, var(--muted) 72%, var(--white));
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
  text-align: center;
}

.apply-in-app__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.apply-in-app-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.apply-in-app-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  overflow: hidden;
  border: 4px solid var(--black);
  border-radius: 40px;
  background: var(--paper);
  transition: transform .3s var(--ease);
}

.apply-in-app-card__image:hover {
  transform: scale(1.02);
}

.apply-in-app-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .84;
}

.apply-in-app-card h2 {
  min-height: 3rem;
  max-width: 250px;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.apply-in-app__button {
  min-height: 48px;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 0;
  padding: 0 24px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: background .2s ease, transform .2s var(--ease);
}

.apply-in-app__button:hover {
  background: color-mix(in oklch, var(--black) 86%, var(--white));
  transform: translateY(-2px);
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .9);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.apply-modal[hidden] {
  display: none;
}

.apply-modal__content {
  position: relative;
  width: min(500px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid #222;
  border-radius: 40px;
  background: #0a0a0a;
  animation: applyModalAppear .4s cubic-bezier(.16, 1, .3, 1);
  scrollbar-width: none;
}

.apply-modal__content::-webkit-scrollbar {
  display: none;
}

@keyframes applyModalAppear {
  from {
    opacity: 0;
    transform: scale(.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.apply-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: color .2s ease;
}

.apply-modal__close:hover {
  color: var(--white);
}

.apply-modal h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.apply-modal__route {
  margin: 8px 0 30px;
  color: #888;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.apply-modal__route span {
  color: var(--white);
}

.apply-modal__form {
  display: grid;
  gap: 20px;
}

.apply-modal__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.apply-modal__field {
  display: grid;
  gap: 8px;
}

.apply-modal__field span {
  margin-left: 8px;
  color: #888;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.apply-modal__field input,
.apply-modal__field textarea {
  width: 100%;
  border: 1px solid #222;
  border-radius: 20px;
  background: #151515;
  color: var(--white);
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.apply-modal__field textarea {
  min-height: 100px;
  resize: none;
}

.apply-modal__field input:focus,
.apply-modal__field textarea:focus {
  border-color: var(--white);
  background: #1a1a1a;
}

.apply-modal__submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  margin-top: 4px;
  background: var(--white);
  color: #000;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s var(--ease);
}

.apply-modal__submit:hover {
  background: #f0f0f0;
  transform: scale(1.01);
}

.apply-modal__success {
  padding: 32px 0;
  text-align: center;
}

.apply-modal__success[hidden] {
  display: none;
}

.apply-modal__success-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  color: #000;
}

.apply-modal__success-icon svg {
  width: 32px;
  height: 32px;
}

.apply-modal__success p {
  margin: 10px auto 0;
  max-width: 340px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .apply-in-app__grid {
    grid-template-columns: 1fr;
  }

  .apply-modal__field-grid {
    grid-template-columns: 1fr;
  }
}

.creator-network-hero__stage {
  position: relative;
  min-height: 680px;
  margin-top: clamp(24px, 4vw, 54px);
  background: #000;
}

.creator-network-hero__map-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(940px, 68vw);
  aspect-ratio: 1120 / 840;
  transform: translate(-55%, -41%);
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .5));
}

.creator-network-hero__map-glow {
  position: absolute;
  inset: 8% 4% 10%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 66%);
  filter: blur(28px);
  opacity: .7;
}

.creator-network-hero__map-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.creator-network-hero__map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .86;
  mix-blend-mode: screen;
  filter: invert(1) grayscale(1) contrast(1.05) brightness(1.08);
}

.creator-network-hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.creator-network-hero__arc {
  fill: none;
  stroke: var(--creator-network-red);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(255, 43, 79, .45));
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: creatorNetworkDrawArc 2.2s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: var(--arc-delay);
}

.creator-network-hero__arc-shadow {
  fill: none;
  stroke: rgba(255, 43, 79, .2);
  stroke-width: 13;
  stroke-linecap: round;
  opacity: .55;
}

.creator-network-hero__hub circle:first-child {
  fill: #fff;
  stroke: rgba(255, 255, 255, .72);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(255, 43, 79, .45));
  transform-box: fill-box;
  transform-origin: center;
}

.creator-network-hero__hub text {
  fill: var(--creator-network-white);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

.creator-network-hero__hub-logo {
  pointer-events: none;
  user-select: none;
}

.creator-network-hero__hub-ring {
  fill: none;
  stroke: var(--creator-network-red);
  stroke-width: 2;
  opacity: .32;
  transform-box: fill-box;
  transform-origin: center;
}

.creator-network-hero__hub {
  cursor: grab;
  touch-action: none;
}

.creator-network-hero__hub.is-dragging {
  cursor: grabbing;
}

.creator-network-hero__hub.is-dragging circle:first-child,
.creator-network-hero__hub.is-selected circle:first-child {
  stroke: #fff;
  stroke-width: 4;
  filter: drop-shadow(0 0 22px rgba(255, 43, 79, .9));
}

.creator-network-hero__hub.is-selected .creator-network-hero__hub-ring {
  opacity: .75;
  stroke-width: 3;
}

.creator-network-editor {
  position: fixed;
  left: 18px;
  top: 90px;
  z-index: 120;
  width: min(370px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(5, 6, 10, .82);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

.creator-network-editor h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.creator-network-editor p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  line-height: 1.35;
}

.creator-network-editor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.creator-network-editor__actions button {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.creator-network-editor__actions button:hover {
  background: rgba(255, 255, 255, .14);
}

.creator-network-editor__output {
  width: 100%;
  min-height: 124px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 10px;
  background: rgba(0, 0, 0, .48);
  color: rgba(255, 255, 255, .86);
  font: 11px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  outline: none;
}

.creator-network-editor__status {
  min-height: 15px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  line-height: 1.35;
}

.creator-network-hero__phone {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 52%;
  width: min(330px, 23vw);
  min-width: 250px;
  aspect-ratio: 9 / 18.7;
  transform: translateY(-43%) rotate(10deg);
  border-radius: 42px;
  background: linear-gradient(145deg, #1b1d22, #050507 45%, #14161a);
  padding: 12px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .74),
    0 0 0 1px rgba(255, 255, 255, .16),
    inset 0 0 0 2px rgba(255, 255, 255, .08);
}

.creator-network-hero__phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 5;
  width: 94px;
  height: 25px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.creator-network-hero__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 64% 20%, rgba(255, 43, 79, .22), transparent 26%),
    linear-gradient(180deg, #101116 0%, #050506 100%);
}

.creator-network-hero__phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 18px 12px;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 700;
}

.creator-network-hero__avatar {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 4px auto 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .04), 0 0 34px rgba(255, 43, 79, .18);
  color: var(--creator-network-white);
  font-size: 11px;
  font-weight: 950;
}

.creator-network-hero__avatar img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  transform: translateX(-2px);
}

.creator-network-hero__profile-copy {
  padding: 0 18px;
  text-align: center;
}

.creator-network-hero__profile-copy h2 {
  margin: 0 0 4px;
  color: var(--creator-network-white);
  font-size: 18px;
  line-height: 1.15;
}

.creator-network-hero__profile-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.35;
}

.creator-network-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 18px 14px;
  text-align: center;
}

.creator-network-hero__stats strong {
  display: block;
  color: var(--creator-network-white);
  font-size: 17px;
}

.creator-network-hero__stats span {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
}

.creator-network-hero__button {
  width: calc(100% - 36px);
  min-height: 38px;
  display: grid;
  place-items: center;
  margin: 0 18px 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(90deg, var(--creator-network-red), #ff6b7d);
  box-shadow:
    0 0 18px rgba(255, 43, 79, .55),
    0 12px 34px rgba(255, 43, 79, .46),
    0 0 42px rgba(255, 107, 125, .24);
}

.creator-network-hero__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 12px 10px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.creator-network-hero__tabs span:first-child {
  color: var(--creator-network-cyan);
}

.creator-network-hero__video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 8px 8px;
}

.creator-network-hero__video-grid div {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 43, 79, .9), transparent 45%),
    radial-gradient(circle at 50% 20%, rgba(37, 244, 238, .45), transparent 28%),
    linear-gradient(180deg, #2b2e36, #08090c);
}

.creator-network-hero__video-grid div:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(37, 244, 238, .75), transparent 42%),
    radial-gradient(circle at 60% 28%, rgba(255, 255, 255, .52), transparent 20%),
    linear-gradient(180deg, #38313c, #06070a);
}

.creator-network-hero__video-grid div:nth-child(3) {
  background:
    linear-gradient(160deg, rgba(255, 43, 79, .65), transparent 42%),
    radial-gradient(circle at 55% 30%, rgba(255, 255, 255, .42), transparent 18%),
    linear-gradient(180deg, #252937, #06070a);
}

.creator-network-hero__video-grid div::before {
  content: "LIVE";
  position: absolute;
  left: 6px;
  top: 6px;
  padding: 3px 5px;
  border-radius: 4px;
  background: var(--creator-network-red);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
}

.creator-network-hero__video-grid div::after {
  content: "Creator\A Network";
  white-space: pre;
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  line-height: .95;
  text-transform: uppercase;
}

@keyframes creatorNetworkDrawArc {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 980px) {
  .creator-network-hero__content {
    padding: 26px 18px 120px;
  }

  .creator-network-hero__stage {
    min-height: 780px;
  }

  .creator-network-hero__map-wrap {
    top: 48%;
    width: 1060px;
    max-width: none;
    transform: translate(-54%, -48%) scale(.78);
  }

  .creator-network-hero__phone {
    top: 68%;
    right: 18px;
    width: 250px;
    min-width: 230px;
  }
}

@media (max-width: 640px) {
  .creator-network-editor {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: auto;
  }

  .creator-network-editor__output {
    min-height: 82px;
  }

  .creator-network-hero h1 {
    font-size: clamp(40px, 14vw, 66px);
  }

  .creator-network-hero__header p {
    font-size: 15px;
  }

  .creator-network-hero__stage {
    min-height: 860px;
  }

  .creator-network-hero__map-wrap {
    top: 38%;
    width: 980px;
    transform: translate(-50%, -55%) scale(.58);
  }

  .creator-network-hero__phone {
    top: 72%;
    right: 50%;
    width: 210px;
    min-width: 210px;
    transform: translate(50%, -40%) rotate(7deg);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 840px;
  }

  .hero-showcase-phone {
    top: 46%;
  }

  .hero__content {
    padding-top: 96px;
    padding-bottom: 112px;
  }

  .hero__content h1 {
    margin-bottom: clamp(380px, 54vh, 450px);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 780px;
  }

  .hero-showcase-phone {
    top: 47%;
  }

  .hero__content {
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .hero__content h1 {
    margin-bottom: 350px;
  }
}
