:root {
  --black: #050505;
  --ink: #111;
  --white: #f7f7f2;
  --muted: #a7a7a0;
  --lime: #dcff00;
  --line: rgba(255, 255, 255, .18);
  --dark-line: rgba(0, 0, 0, .12);
  --max: 1180px;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 118px; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Space Grotesk", Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 10;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, .78);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand-mark img {
  width: 178px;
  height: auto;
  filter: invert(1);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-links a, .nav-cta { transition: color .2s ease; }
.nav-links a:hover { color: var(--lime); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 5, 5, .94);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
.mobile-menu a {
  padding: 15px 16px;
  border-radius: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.mobile-menu a:hover {
  background: var(--lime);
  color: var(--black);
}
.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover {
  background: var(--black);
  color: var(--lime);
}

.section {
  padding: 108px 24px;
}

.section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--white); color: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  align-items: end;
  gap: 30px;
  padding: 132px 24px 70px;
  overflow: hidden;
}

.hero > * { position: relative; z-index: 1; }
.hero-bg {
  position: absolute;
  inset: -20% -8% auto auto;
  width: 58vw;
  height: 78vh;
  background: var(--lime);
  transform: skewX(-18deg) rotate(7deg);
  transform-origin: top;
}

.hero-copy, .hero-visual { max-width: none; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--ink); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(66px, 10vw, 148px);
  line-height: .82;
  font-weight: 1000;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 82px);
  line-height: .9;
  font-weight: 1000;
  text-transform: uppercase;
}
h3 {
  margin-bottom: 14px;
  font-size: 28px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 640px;
  color: #d8d8d2;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.button-primary { background: var(--lime); border-color: var(--lime); color: var(--black); }
.button-secondary { color: var(--white); }
.not-found-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 150px 24px 90px;
  background: var(--black);
  color: var(--white);
}
.not-found-hero::before {
  content: "";
  position: absolute;
  inset: 13% -12% auto auto;
  width: min(720px, 66vw);
  height: min(560px, 64vh);
  background: var(--lime);
  transform: skewX(-18deg) rotate(7deg);
  opacity: .92;
}
.not-found-mark {
  position: absolute;
  left: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 56px;
  color: rgba(255, 255, 255, .08);
  font-size: clamp(150px, 26vw, 360px);
  font-weight: 1000;
  line-height: .78;
  pointer-events: none;
}
.not-found-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 48px));
  min-width: 0;
}
.not-found-copy h1 {
  max-width: 980px;
  font-size: clamp(62px, 10vw, 132px);
}
.not-found-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #deded6;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}
.thanks-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 150px 24px 90px;
  background: var(--black);
  color: var(--white);
}
.thanks-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 9% auto;
  width: min(760px, 68vw);
  height: min(440px, 50vh);
  background: var(--lime);
  transform: skewX(-18deg) rotate(-6deg);
}
.thanks-mark {
  position: absolute;
  right: max(18px, calc((100vw - var(--max)) / 2));
  top: 132px;
  color: rgba(255, 255, 255, .08);
  font-size: clamp(112px, 20vw, 280px);
  font-weight: 1000;
  line-height: .8;
  pointer-events: none;
}
.thanks-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 48px));
  min-width: 0;
}
.thanks-copy h1 {
  max-width: 1040px;
  font-size: clamp(58px, 9vw, 126px);
}
.thanks-copy p:not(.eyebrow) {
  max-width: 690px;
  color: #deded6;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}
.thanks-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.thanks-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  align-self: center;
  min-height: 580px;
  max-width: 620px;
  width: 100%;
  perspective: 1100px;
}
.post-card,
.hero-stat {
  position: absolute;
  border: 1px solid rgba(5, 5, 5, .55);
  background: var(--black);
  box-shadow: -14px 14px 0 rgba(0, 0, 0, .9);
}
.post-card {
  overflow: hidden;
  top: 74px;
  left: 0;
  width: min(74%, 460px);
  opacity: 1;
  transition:
    top 1.25s cubic-bezier(.2, .82, .2, 1),
    left 1.25s cubic-bezier(.2, .82, .2, 1),
    width 1.25s cubic-bezier(.2, .82, .2, 1),
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(.2, .82, .2, 1);
  will-change: transform, top, left, width;
}
.post-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.post-card.is-front {
  z-index: 3;
  left: 26%;
  top: 74px;
  width: min(74%, 460px);
  transform: rotate(1.5deg);
  animation: heroFloat 7s ease-in-out infinite;
}
.post-card.is-middle {
  z-index: 2;
  left: 0;
  top: 18px;
  width: min(48%, 310px);
  opacity: .95;
  transform: rotate(-7deg) translateZ(-30px);
  animation: heroFloatAlt 8s ease-in-out infinite;
}
.post-card.is-back {
  z-index: 1;
  left: 43%;
  top: 34px;
  width: min(42%, 270px);
  opacity: .52;
  transform: rotate(7deg) translateZ(-80px) scale(.96);
  animation: none;
}
.hero-visual.is-cycling .post-card {
  animation: none;
}
.hero-stat {
  z-index: 5;
  left: 66px;
  top: 485px;
  padding: 14px 18px;
  background: var(--lime);
  color: var(--black);
  text-transform: uppercase;
  transform: rotate(2deg);
}
.hero-stat strong {
  display: block;
  font-size: 34px;
  line-height: .9;
}
.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 1000;
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(1.5deg) translate3d(0, 0, 0); }
  50% { transform: rotate(3deg) translate3d(-8px, -12px, 0); }
}
@keyframes heroFloatAlt {
  0%, 100% { transform: rotate(-7deg) translate3d(0, 0, -30px); }
  50% { transform: rotate(-4deg) translate3d(12px, 10px, -30px); }
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--lime);
  color: var(--black);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll 18s linear infinite;
}
.ticker-group {
  display: flex;
  flex-shrink: 0;
}
.ticker span {
  padding: 18px 34px;
  font-size: 20px;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-33.333%); } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 30px; }
.copy-stack {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  color: #34342f;
}
.copy-stack p:last-child { margin-bottom: 0; }
.about-visual {
  position: relative;
  min-height: 560px;
}
.about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid var(--dark-line);
  filter: grayscale(.08) contrast(1.04);
}
.about-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 320px;
  padding: 20px;
  background: var(--black);
  color: var(--white);
  box-shadow: -10px 10px 0 var(--lime);
}
.about-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}
.about-note p {
  margin: 0;
  line-height: 1.45;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head h2 { max-width: 820px; }
.section-head.compact { display: block; }
.services-head {
  max-width: 860px;
}
.services-head h2 {
  max-width: 760px;
}
.services-head p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: #383834;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}

.metrics {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}
.metrics::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 46%;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 0 100%);
}
.metrics > * {
  position: relative;
  z-index: 1;
}
.metrics-head {
  align-items: start;
}
.metrics-head p:last-child {
  max-width: 390px;
  margin: 10px 0 0;
  color: #24241f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.metric-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .92);
  box-shadow: -10px 10px 0 var(--black);
}
.metric-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 42px;
  height: 6px;
  background: var(--lime);
  transform: rotate(-8deg);
}
.metric-card span, .metric-card small {
  display: block;
  color: #454540;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.metric-card strong {
  display: block;
  margin: 30px 0 22px;
  color: var(--black);
  font-size: clamp(42px, 6vw, 80px);
  line-height: .85;
  font-weight: 1000;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 22px 24px 24px;
  border: 1px solid var(--dark-line);
  background:
    linear-gradient(135deg, rgba(220, 255, 0, .18) 0 18%, transparent 18% 100%),
    #fff;
  box-shadow: -6px 8px 0 rgba(5, 5, 5, .9);
}
.service-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 48px;
  height: 7px;
  background: var(--lime);
  transform: rotate(-8deg);
}
.service-grid article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--lime);
}
.service-grid span {
  display: inline-block;
  margin-bottom: 54px;
  font-size: 13px;
  font-weight: 1000;
  color: var(--lime);
  background: var(--black);
  padding: 8px 10px;
}
.service-grid h3 {
  margin-bottom: 16px;
}
.service-grid p { color: #42423d; line-height: 1.45; }
.service-grid p,
.contact-copy p,
.about-note p {
  font-weight: 500;
}

.brands {
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}
.brands-head {
  align-items: start;
}
.brands-head h2 {
  max-width: 760px;
  font-size: clamp(38px, 5.4vw, 74px);
}
.brands-head p:last-child {
  max-width: 390px;
  margin: 10px 0 0;
  color: #3a3a34;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}
.brand-memory {
  max-width: var(--max);
  margin-top: 18px;
  overflow: visible;
}
.brand-board {
  position: relative;
  width: 100%;
  min-height: clamp(430px, 42vw, 620px);
  perspective: 1400px;
  background: transparent;
}
.brand-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(108px, 9vw, 148px);
  aspect-ratio: 1;
  perspective: 900px;
  transform:
    translate(-50%, -50%)
    rotate(var(--r))
    translateZ(var(--depth));
  filter: drop-shadow(-10px 14px 18px rgba(0, 0, 0, .2));
}
.brand-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .8s cubic-bezier(.2, .82, .2, 1);
}
.brand-card.is-revealed .brand-card-inner {
  transform: rotateY(180deg);
}
.brand-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .16);
  backface-visibility: hidden;
}
.brand-card-front {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(220, 255, 0, .32) 45% 57%, transparent 57%),
    var(--black);
}
.brand-card-front img {
  width: 74%;
  height: auto;
  filter: invert(1);
  transform: rotate(-4deg);
}
.brand-card-back {
  padding: clamp(16px, 1.8vw, 28px);
  background: #fff;
  transform: rotateY(180deg);
}
.brand-card-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.talents-head {
  display: block;
}
.talents-head h2 {
  max-width: 1120px;
  font-size: clamp(44px, 7vw, 96px);
}
.talent-card {
  position: relative;
  background: #fff;
  color: var(--black);
}
.polaroid-card {
  padding: 12px 12px 18px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 6px;
  box-shadow:
    -8px 10px 0 rgba(0, 0, 0, .92),
    0 18px 38px rgba(0, 0, 0, .16);
  transform: rotate(var(--tilt, -1deg));
  transition: transform .25s ease, box-shadow .25s ease;
}
.polaroid-card:nth-child(2n) { --tilt: 1.2deg; }
.polaroid-card:nth-child(3n) { --tilt: -1.8deg; }
.polaroid-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    -9px 12px 0 var(--lime),
    0 22px 48px rgba(0, 0, 0, .18);
}
.polaroid-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--black);
  border-radius: 4px;
}
.polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.01);
}
.polaroid-photo.is-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(220, 255, 0, .28) 44% 57%, transparent 57%),
    var(--black);
}
.polaroid-photo.is-placeholder img {
  height: auto;
  filter: invert(1);
  object-fit: contain;
}
.polaroid-info {
  min-height: 142px;
  padding: 16px 4px 0;
}
.polaroid-info h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: .92;
  text-transform: uppercase;
}
.polaroid-info p {
  min-height: 42px;
  margin-bottom: 14px;
  color: #373732;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.28;
}
.talent-total {
  display: inline-flex;
  padding: 7px 10px;
  background: var(--lime);
  color: var(--black);
  font-weight: 1000;
  font-size: 12px;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 18px 16px;
  font: inherit;
}

.contact {
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(660px, 1.18fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .94;
  margin-bottom: 28px;
}
.contact-copy p {
  max-width: 520px;
  color: #393934;
  font-size: 19px;
  line-height: 1.5;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}
.contact-list a:hover { color: #7d9000; }
.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: -10px 12px 0 var(--black);
  width: 100%;
}
.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.contact-form input {
  min-height: 58px;
}
.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}
.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: #393934;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.form-status.is-success { color: #5f7600; }
.form-status.is-error { color: #9b1717; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.contact-form .button { width: fit-content; }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 24px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.footer img {
  width: 170px;
  filter: invert(1);
}
.footer div { display: flex; gap: 18px; color: var(--muted); font-size: 13px; text-transform: uppercase; }

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: min(430px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, .94);
  color: var(--white);
  box-shadow: -8px 10px 0 var(--lime);
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-banner p {
  margin: 0 0 14px;
  color: #e7e7df;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.cookie-banner a {
  color: var(--lime);
  font-weight: 900;
}
.cookie-banner button {
  min-height: 40px;
  padding: 11px 15px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--black);
  font: 900 12px/1 "Space Grotesk", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.legal-page {
  background: var(--white);
  color: var(--ink);
}
.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
}
.legal-top img {
  width: 190px;
  filter: invert(1);
}
.legal-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.legal-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 96px;
}
.legal-main h1 {
  max-width: 900px;
  color: var(--black);
  font-size: clamp(52px, 10vw, 118px);
}
.legal-main h2 {
  margin: 44px 0 14px;
  font-size: clamp(26px, 4vw, 42px);
}
.legal-main p,
.legal-main li {
  color: #30302b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.legal-main a {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.legal-card {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: -8px 10px 0 var(--black);
}
.legal-card p:last-child {
  margin-bottom: 0;
}

.creator-page {
  background: var(--white);
  color: var(--ink);
}
.creator-page .site-header {
  background: rgba(5, 5, 5, .9);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}
.creator-directory-hero,
.creator-profile-hero,
.creator-detail-section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.creator-directory-hero {
  padding: 170px 0 58px;
}
.creator-directory-hero h1,
.creator-profile-hero h1 {
  color: var(--black);
  font-size: clamp(64px, 12vw, 156px);
}
.creator-directory-hero p:last-child {
  max-width: 650px;
  color: #33332f;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.creator-directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 110px;
}
.creator-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 485px;
  overflow: visible;
  padding: 12px 12px 18px;
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  background: #fff;
  box-shadow:
    -8px 10px 0 rgba(5, 5, 5, .92),
    0 18px 38px rgba(0, 0, 0, .14);
  transform: rotate(var(--creator-tilt, -1deg));
  transition: transform .25s ease, box-shadow .25s ease;
}
.creator-list-card:nth-child(2n) { --creator-tilt: 1.1deg; }
.creator-list-card:nth-child(3n) { --creator-tilt: -1.6deg; }
.creator-list-card:nth-child(5n) { --creator-tilt: .7deg; }
.creator-list-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    -9px 12px 0 var(--lime),
    0 24px 50px rgba(0, 0, 0, .18);
}
.creator-card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.creator-card-media {
  aspect-ratio: 1;
  flex: 0 0 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black);
  width: 100%;
}
.creator-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}
.creator-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 12px;
  padding: 16px 4px 0;
}
.creator-tag {
  align-self: flex-start;
  padding: 7px 9px;
  background: var(--black);
  color: var(--lime);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}
.creator-card-body h2 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: .9;
}
.creator-card-body p {
  min-height: 42px;
  margin-bottom: 0;
  color: #373732;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.creator-card-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.creator-card-facts span {
  padding: 9px;
  border: 1px solid var(--dark-line);
  background: rgba(220, 255, 0, .18);
  color: #3f3f39;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.creator-card-facts strong {
  display: block;
  color: var(--black);
  font-size: 17px;
  line-height: 1;
}
.creator-card-cta {
  width: fit-content;
  margin-top: 2px;
  padding: 9px 10px;
  background: var(--lime);
  color: var(--black);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}
.creator-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 44px;
  align-items: end;
  padding: 170px 0 86px;
}
.creator-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  color: #56564e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.creator-breadcrumb a {
  color: var(--black);
}
.creator-breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: #909083;
}
.profile-lead {
  max-width: 680px;
  color: #33332f;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}
.creator-handle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}
.creator-handle-row > a,
.creator-handle-row > span {
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--dark-line);
  background: #fff;
  color: var(--black);
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  font-weight: 1000;
  max-width: 100%;
  min-width: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.creator-handle-row > a {
  background: var(--black);
  color: var(--lime);
}
.creator-handle-row > a > span:not(.platform-icon),
.creator-handle-row > span > span:not(.platform-icon) {
  min-width: 0;
  overflow: visible;
  padding: 0;
  white-space: nowrap;
}
.platform-icon {
  align-items: center;
  display: inline-grid;
  flex: 0 0 auto;
  height: 18px;
  justify-items: center;
  padding: 0;
  width: 18px;
}
.platform-icon svg {
  display: block;
  height: 18px;
  overflow: visible;
  width: 18px;
}
.platform-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button-dark {
  background: var(--black);
  color: var(--white);
}
.button-dark:hover {
  color: var(--lime);
}
.profile-visual {
  position: relative;
  padding: 14px 14px 72px;
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: -12px 14px 0 var(--black);
  transform: rotate(1.2deg);
}
.profile-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
}
.profile-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--black);
  font-size: 26px;
  font-weight: 1000;
  text-transform: uppercase;
}
.creator-detail-section {
  padding: 72px 0;
}
.creator-section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.creator-section-head h2 {
  max-width: 720px;
  font-size: clamp(38px, 6vw, 78px);
}
.profile-fact-grid,
.social-account-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.profile-fact-grid article,
.social-account-grid article,
.management-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: -7px 9px 0 var(--black);
}
.profile-fact-grid article {
  min-height: 190px;
  padding: 22px;
}
.profile-fact-grid article::after,
.social-account-grid article::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 7px;
  background: var(--lime);
  transform: rotate(-8deg);
}
.profile-fact-grid span,
.social-account-grid > article > span,
.management-card span {
  color: #46463f;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.social-account-grid > article > span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}
.profile-fact-grid strong {
  display: block;
  margin-top: 46px;
  color: var(--black);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: .86;
  overflow: visible;
  text-transform: uppercase;
  white-space: nowrap;
}
.social-account-grid {
  grid-template-columns: repeat(3, 1fr);
}
.social-account-grid article {
  padding: 24px;
}
.social-account-grid h3 {
  margin: 44px 0 24px;
  font-size: clamp(22px, 2.1vw, 30px);
  overflow: visible;
  white-space: nowrap;
}
.social-account-grid dl {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}
.social-account-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-line);
}
.social-account-grid dt,
.social-account-grid dd {
  margin: 0;
  color: #34342f;
  font-size: 14px;
  font-weight: 800;
}
.social-account-grid dd {
  min-width: 0;
  overflow: visible;
  text-align: right;
  white-space: nowrap;
}
.social-account-grid a,
.management-actions a {
  display: inline-flex;
  width: fit-content;
  padding: 11px 13px;
  background: var(--lime);
  color: var(--black);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.management-section {
  padding-bottom: 120px;
}
.management-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(220, 255, 0, .22) 0 24%, transparent 24%),
    #fff;
}
.management-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 68px);
}
.management-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: #34342f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}
.management-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.creator-cover-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  overflow: hidden;
  padding: 156px max(24px, calc((100vw - var(--max)) / 2)) 78px;
  background: var(--black);
  color: var(--white);
}
.creator-cover-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.05) contrast(1.04);
}
.creator-cover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .7) 42%, rgba(5, 5, 5, .32) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .78) 0%, transparent 38%);
}
.creator-cover-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 660px;
}
.creator-cover-content h1 {
  color: var(--white);
  font-size: clamp(64px, 7vw, 104px);
  line-height: .82;
}
.creator-cover-content .profile-lead {
  max-width: min(650px, 100%);
  color: #efefe7;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
  overflow-wrap: break-word;
}
.creator-breadcrumb-light {
  color: rgba(255, 255, 255, .72);
}
.creator-breadcrumb-light a {
  color: var(--white);
}
.creator-breadcrumb-light span::before {
  color: rgba(255, 255, 255, .42);
}
.creator-handle-row-dark > a,
.creator-handle-row-dark > span {
  border-color: rgba(255, 255, 255, .26);
  background: rgba(5, 5, 5, .54);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.creator-handle-row-dark > a {
  background: var(--lime);
  color: var(--black);
}
.creator-detail-section-first {
  padding-top: 86px;
}
.creator-detail-page .creator-section-head {
  display: block;
  margin-bottom: 30px;
}
.creator-detail-page .creator-section-head h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 58px);
}
.creator-detail-page .profile-fact-grid article {
  min-height: 165px;
}
.creator-detail-page .profile-fact-grid strong {
  margin-top: 38px;
  font-size: clamp(22px, 1.65vw, 28px);
}
.creator-detail-page .social-account-grid h3 {
  font-size: clamp(19px, 1.65vw, 26px);
  overflow-wrap: normal;
}
.creator-imprint-section {
  padding-top: 28px;
  padding-bottom: 120px;
}
.creator-imprint-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: -7px 9px 0 var(--black);
}
.creator-imprint-card h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
}
.creator-imprint-card p {
  margin: 0;
  color: #34342f;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}
.creator-imprint-card a {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.creator-imprint-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 148px; }
  .hero-bg { width: 82vw; height: 46vh; }
  .hero-visual {
    min-height: 540px;
    max-width: 620px;
    margin-inline: auto;
  }
  .metric-grid, .service-grid { grid-template-columns: 1fr; }
  .contact { gap: 42px; }
  .about-visual, .about-visual img { min-height: 430px; height: 430px; }
  .brand-board { min-height: 560px; }
  .talent-grid { grid-template-columns: repeat(2, 1fr); }
  .creator-profile-hero,
  .profile-fact-grid,
  .social-account-grid {
    grid-template-columns: 1fr;
  }
  .creator-directory {
    grid-template-columns: repeat(2, 1fr);
  }
  .creator-list-card {
    min-height: 470px;
  }
  .creator-section-head,
  .management-card {
    display: block;
  }
  .management-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }
  .creator-cover-hero {
    min-height: 82svh;
    padding-inline: 18px;
  }
  .creator-cover-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, .9) 0%, rgba(5, 5, 5, .64) 58%, rgba(5, 5, 5, .28) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, .82) 0%, transparent 46%);
  }
  .creator-imprint-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header { inset: 10px 10px auto; }
  .brand-mark img { width: 132px; }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .nav-cta {
    padding: 9px 10px;
    font-size: 11px;
  }
  .section { padding: 78px 16px; }
  .hero {
    padding: 156px 16px 58px;
    gap: 42px;
  }
  .not-found-hero,
  .thanks-hero {
    padding: 148px 16px 68px;
  }
  .not-found-copy h1,
  .thanks-copy h1 {
    font-size: clamp(44px, 12.4vw, 62px);
  }
  .not-found-copy p:not(.eyebrow),
  .thanks-copy p:not(.eyebrow) {
    font-size: 17px;
  }
  .thanks-steps {
    display: grid;
  }
  .thanks-steps span {
    width: 100%;
  }
  h1 { font-size: clamp(56px, 18vw, 88px); }
  .hero-text, .copy-stack, .contact-copy p { font-size: 17px; }
  .hero-visual { min-height: 500px; }
  .post-card.is-front { left: 21%; width: 76%; top: 92px; }
  .post-card.is-middle { width: 56%; top: 24px; }
  .post-card.is-back { left: 48%; width: 44%; top: 52px; }
  .hero-stat { left: 24px; top: 368px; }
  .section-head { display: block; }
  .brands-head h2 { font-size: clamp(36px, 13vw, 56px); }
  .brand-board { min-height: 680px; }
  .talent-grid { grid-template-columns: 1fr; }
  .footer { align-items: flex-start; flex-direction: column; }
  .footer div,
  .legal-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .creator-directory-hero,
  .creator-profile-hero {
    padding-top: 150px;
  }
  .creator-directory { grid-template-columns: 1fr; }
  .creator-list-card { min-height: 0; }
  .creator-card-media {
    aspect-ratio: 1;
  }
  .creator-card-facts {
    grid-template-columns: 1fr;
  }
  .profile-actions .button,
  .management-actions a {
    width: 100%;
  }
  .creator-cover-hero {
    min-height: 86svh;
    padding: 142px 16px 54px;
  }
  .creator-cover-content h1 {
    font-size: clamp(44px, 12vw, 52px);
    overflow-wrap: normal;
  }
  .creator-cover-content {
    max-width: min(358px, 100%);
  }
  .creator-cover-content .profile-lead {
    max-width: 100%;
    font-size: 17px;
  }
  .creator-handle-row-dark > a,
  .creator-handle-row-dark > span {
    width: 100%;
  }
  .creator-detail-page .creator-detail-section {
    padding-block: 54px;
  }
  .creator-detail-page .creator-section-head h2 {
    font-size: clamp(32px, 12vw, 48px);
  }
  .creator-detail-page .profile-fact-grid strong {
    font-size: clamp(28px, 8vw, 36px);
  }
  .creator-detail-page .social-account-grid h3 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .management-section .creator-section-head h2 {
    font-size: clamp(28px, 9vw, 36px);
    overflow-wrap: anywhere;
  }
  .management-card h3 {
    font-size: clamp(30px, 10vw, 42px);
    overflow-wrap: anywhere;
  }
  .creator-imprint-card {
    padding: 22px;
  }
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
