:root {
  --paper: #e8e4da;
  --ink: #121212;
  --pink: #cf3c61;
  --lime: #c1cf3b;
  --white: #f7f4ec;
  --muted: #8e8a82;
  --display: "Unbounded", "Arial Narrow", sans-serif;
  --body: "Golos Text", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --script: "Marck Script", cursive;
  --line: 2px solid var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; background: var(--ink); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }

button:focus-visible, a:focus-visible {
  outline: 4px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--lime);
  padding: 12px 16px;
  font: 700 13px/1 var(--mono);
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 7px 20px;
  border-bottom: var(--line);
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-110%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .18s ease, visibility 0s linear .28s;
}

.site-header.is-scrolled,
.site-header:focus-within {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font: 800 13px/1.05 var(--display);
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font: 900 16px/1 var(--display);
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  position: relative;
  font: 600 11px/1 var(--mono);
  text-transform: uppercase;
  text-decoration: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  background: var(--pink);
  transition: right .2s ease;
}
.main-nav a:hover::after { right: 0; }

.header-cta { justify-self: end; }

.button-sticker {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 11px 15px;
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font: 700 11px/1 var(--mono);
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button-sticker:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }

.collaboration-cta { position: relative; display: inline-flex; max-width: 100%; }
.collaboration-cta-toggle { white-space: nowrap; }
.collaboration-cta-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  right: 0;
  min-width: max-content;
  padding: 5px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.collaboration-cta-menu[hidden] { display: none; }
.collaboration-cta-link {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  font: 700 11px/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.collaboration-cta-link:hover { color: var(--paper); background: var(--ink); }
.hero-action .collaboration-cta-menu,
.price-card .collaboration-cta-menu { top: auto; bottom: calc(100% + 10px); }

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font: 600 9px/1.2 var(--mono);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 20px 66px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, .38) 0%, rgba(7, 7, 7, .22) 39%, rgba(7, 7, 7, .03) 72%, rgba(7, 7, 7, .12) 100%), linear-gradient(0deg, rgba(7, 7, 7, .16), transparent 42%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image: radial-gradient(rgba(247, 244, 236, .62) .55px, transparent .9px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02) brightness(1.22);
}

.hero-title {
  position: absolute;
  z-index: 4;
  top: 12vh;
  left: 4vw;
  width: 46vw;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 9vw, 10rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .32);
}

.hero-line { display: block; white-space: nowrap; }
.hero-line-one { color: var(--white); font-size: .57em; letter-spacing: -.025em; }
.hero-line-two { padding-left: 3vw; color: var(--pink); }
.hero-line-two em { font-style: normal; }
.hero-line-three { padding-left: 0; color: var(--white); font-size: .76em; letter-spacing: -.035em; }
.hero-role { display: block; margin: 1.25rem 0 0 .3rem; color: var(--lime); font: 700 clamp(.8rem, 1.25vw, 1.2rem)/1.1 var(--mono); letter-spacing: -.02em; }

.js .hero-line { opacity: 0; transition: transform .75s cubic-bezier(.2,.8,.2,1), opacity .35s ease; }
.js .hero-line-one { transform: translateX(-12vw); }
.js .hero-line-two { transform: translateX(13vw); }
.js .hero-line-three { transform: translateY(10vh); }
.js.is-ready .hero-line { opacity: 1; transform: translate(0); }
.js.is-ready .hero-line-two { transition-delay: .08s; }
.js.is-ready .hero-line-three { transition-delay: .16s; }

.hero-action {
  position: absolute;
  z-index: 8;
  left: 4vw;
  bottom: 36px;
}
.button-sticker-large { padding: 16px 20px; font-size: 13px; background: var(--lime); }
.contact-note {
  display: inline-block;
  margin: 13px 0 0 8px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  font: 600 10px/1 var(--mono);
  text-transform: uppercase;
}
.contact-note[hidden] { display: none; }

.section-dark { color: var(--white); background: var(--ink); }
.section-paper { color: var(--ink); background: var(--paper); }
.proof, .audience, .content-proof, .formats, .process { padding: 110px 20px; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 48px;
}
.section-heading h2 {
  margin: 0;
  font: 900 clamp(3.8rem, 6.2vw, 7rem)/.86 var(--display);
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading h2 span { color: var(--pink); }
.source-note, .data-index {
  margin: 0;
  font: 600 10px/1.35 var(--mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.proof-source { justify-self: end; display: grid; justify-items: end; gap: 12px; }
.source-note { align-self: start; justify-self: end; color: var(--muted); }
.section-intro { margin: 8px 0 0; max-width: 380px; font-size: 17px; line-height: 1.45; }

.studio-link {
  border: 0;
  padding: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font: 700 9px/1.2 var(--mono);
  letter-spacing: .02em;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}
.studio-link:hover { color: var(--pink); }

.js [data-reveal] { opacity: 0; transform: translateY(44px); transition: opacity .55s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid rgba(247,244,236,.35);
  border-left: 1px solid rgba(247,244,236,.35);
}
.metric {
  position: relative;
  min-height: 310px;
  padding: 20px;
  border-right: 1px solid rgba(247,244,236,.35);
  border-bottom: 1px solid rgba(247,244,236,.35);
  overflow: hidden;
}
.metric-wide { grid-column: span 7; }
.metric-pink { grid-column: span 5; color: var(--ink); background: var(--pink); }
.metric-lime { grid-column: span 4; color: var(--ink); background: var(--lime); }
.metric-outline { grid-column: span 8; }
.metric-100k { grid-column: span 4; color: var(--ink); background: var(--paper); }
.metric-100k strong { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; white-space: normal; }
.metric-100k-number { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.metric-100k-value { display: block; font: 900 clamp(3.6rem, 5.3vw, 6.6rem)/.86 var(--display); letter-spacing: -.06em; white-space: nowrap; }
.metric-100k strong .metric-100k-label { font: 600 clamp(1rem, 1.35vw, 1.35rem)/1.1 var(--body); letter-spacing: -.02em; text-transform: none; }
.metric-label { margin: 0; font: 600 10px/1 var(--mono); text-transform: uppercase; }
.metric > .studio-link { position: absolute; top: 20px; right: 20px; }
.metric > strong {
  display: block;
  margin-top: 38px;
  font: 900 clamp(3.6rem, 5.3vw, 6.6rem)/.86 var(--display);
  letter-spacing: -.03em;
  white-space: nowrap;
}
.metric > strong small { font-size: .34em; letter-spacing: 0; }
.metric > p:last-child { position: absolute; left: 20px; bottom: 20px; max-width: 440px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.metric-pink .metric-stamp {
  position: absolute;
  right: 28px;
  bottom: 26px;
  padding: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-12deg);
  font: 800 10px/1.15 var(--mono);
  text-align: center;
}
.mini-bars { position: absolute; left: 20px; right: 20px; bottom: 24px; height: 60px; display: flex; align-items: end; gap: 8px; }
.mini-bars i { flex: 1; background: var(--ink); }
.mini-bars i:nth-child(1) { height: 20%; }.mini-bars i:nth-child(2) { height: 35%; }.mini-bars i:nth-child(3) { height: 52%; }.mini-bars i:nth-child(4) { height: 80%; }.mini-bars i:nth-child(5) { height: 60%; }.mini-bars i:nth-child(6) { height: 88%; }.mini-bars i:nth-child(7) { height: 100%; }

.section-heading-dark { color: var(--ink); border-bottom: var(--line); }
.audience .section-heading h2 { max-width: 14ch; font-size: clamp(3.25rem, 5vw, 5.8rem); letter-spacing: -.045em; }
.audience .section-intro { align-self: start; }

.demography { display: grid; grid-template-columns: .9fr 1.5fr; border-bottom: var(--line); }
.gender-block, .age-block { padding: 46px 0; }
.gender-block { position: relative; padding-right: 5vw; border-right: var(--line); }
.gender-block > .studio-link { position: absolute; top: 48px; right: 5vw; }
.age-block { padding-left: 5vw; }
.gender-block > strong { display: block; margin-top: 54px; font: 900 clamp(5.2rem, 9.5vw, 10rem)/.86 var(--display); color: var(--pink); letter-spacing: -.06em; }
.gender-block > p { margin: 10px 0 34px; font: 800 26px/1 var(--display); text-transform: uppercase; }
.gender-line { height: 18px; background: var(--ink); }
.gender-line i { display: block; height: 100%; width: var(--value); background: var(--pink); }
.gender-block small { display: block; margin-top: 12px; color: #555; font: 500 10px/1.4 var(--mono); text-transform: uppercase; }
.age-block .data-index { display: block; margin-bottom: 34px; }
.age-row { display: grid; grid-template-columns: 90px 1fr 70px; gap: 18px; align-items: center; padding: 13px 0; border-top: 1px solid rgba(18,18,18,.24); font: 700 14px/1 var(--mono); }
.age-row i { height: 10px; background: rgba(18,18,18,.15); }
.age-row b { display: block; width: var(--value); height: 100%; background: var(--ink); }
.age-row-main b { background: var(--pink); }

.geography { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding-top: 62px; }
.geography > .data-index { position: absolute; top: 22px; left: 0; }
.geography > .studio-link { position: absolute; top: 22px; right: 0; }
.country { min-width: 0; min-height: 170px; padding: 18px; overflow: hidden; border-right: var(--line); border-bottom: var(--line); }
.country:nth-child(2) { border-left: var(--line); }
.country span { display: block; font: 800 clamp(1.25rem, 2.1vw, 2.35rem)/.92 var(--display); overflow-wrap: anywhere; text-transform: uppercase; }
.country strong { display: block; margin-top: 22px; font: 900 clamp(3rem, 5.5vw, 5.8rem)/.86 var(--display); color: var(--pink); }
.country-main { color: var(--paper); background: var(--ink); }
.country-main strong { color: var(--lime); }
.country-note { grid-column: 1 / -1; min-height: auto; border-left: var(--line); padding: 14px 18px; }
.country-note span { font: 600 11px/1 var(--mono); }

.audience-card { position: relative; grid-column: span 4; min-width: 0; min-height: 310px; padding: 20px; border-right: 1px solid rgba(247,244,236,.35); border-bottom: 1px solid rgba(247,244,236,.35); }
.audience-gender { color: var(--ink); background: var(--lime); }
.audience-gender > .studio-link { position: absolute; top: 20px; right: 20px; }
.audience-gender > strong { display: block; margin-top: 56px; font: 900 clamp(4.2rem, 6.6vw, 7.8rem)/.86 var(--display); letter-spacing: -.06em; }
.audience-gender > p { margin: 10px 0 34px; font: 800 26px/1 var(--display); text-transform: uppercase; }
.audience-gender .gender-line { height: 18px; background: rgba(18,18,18,.16); }
.audience-gender .gender-line i { display: block; width: var(--value); height: 100%; background: var(--pink); }
.audience-gender small { display: block; margin-top: 12px; font: 500 10px/1.4 var(--mono); text-transform: uppercase; }
.audience-age { grid-column: span 4; }
.audience-age h2 { margin: 0; font: 900 clamp(2.4rem, 3.6vw, 4.2rem)/.86 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.audience-age h2 span { color: var(--pink); }
.audience-age > p { margin: 16px 0 26px; color: var(--muted); font-size: 14px; line-height: 1.35; }
.audience-age .data-index { display: block; margin-bottom: 14px; }
.audience-age .age-row { display: grid; grid-template-columns: 66px 1fr 58px; gap: 10px; align-items: center; padding: 8px 0; border-top: 1px solid rgba(247,244,236,.28); font: 700 11px/1 var(--mono); }
.audience-age .age-row i { height: 8px; background: rgba(247,244,236,.18); }
.audience-age .age-row b { display: block; width: var(--value); height: 100%; background: var(--white); }
.audience-age .age-row-main b { background: var(--pink); }
.audience-geography { grid-column: 1 / -1; min-height: auto; }
.audience-geography > .studio-link { position: absolute; top: 20px; right: 20px; }
.audience-countries { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 34px; border-top: 1px solid rgba(247,244,236,.35); border-left: 1px solid rgba(247,244,236,.35); }
.audience-countries .country { min-height: 112px; padding: 14px; overflow: hidden; border-right: 1px solid rgba(247,244,236,.35); border-bottom: 1px solid rgba(247,244,236,.35); }
.audience-countries .country span { display: block; font: 800 clamp(1rem, 1.6vw, 1.7rem)/.92 var(--display); overflow-wrap: anywhere; text-transform: uppercase; }
.audience-countries .country strong { display: block; margin-top: 16px; font: 900 clamp(2.2rem, 3.8vw, 4rem)/.86 var(--display); color: var(--pink); }
.audience-countries .country-main { background: rgba(247,244,236,.1); }
.audience-countries .country-main strong { color: var(--lime); }
.audience-countries .country-note { grid-column: 1 / -1; min-height: auto; padding: 12px 14px; }
.audience-countries .country-note span { font: 600 10px/1 var(--mono); }

.content-proof { padding-bottom: 72px; }
.content-proof .section-heading h2 { font-size: clamp(2.4rem, 3.4vw, 4rem); }
.stories { position: relative; padding-top: 48px; border-top: 1px solid rgba(247,244,236,.35); }
.stories-studio-link { position: absolute; top: 18px; right: 0; }
.story {
  display: grid;
  grid-template-columns: 210px 1fr 250px;
  gap: 30px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(247,244,236,.35);
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, padding .2s ease;
}
.story:hover { padding-left: 12px; color: var(--lime); }
.story-cover { position: relative; height: 145px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--ink); background: var(--paper); }
.story-cover::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(247,244,236,.16); pointer-events: none; }
.story-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }
.story-cover span { position: relative; z-index: 1; font: 900 54px/.86 var(--display); text-transform: uppercase; }
.story-cover small { position: absolute; z-index: 2; right: 9px; bottom: 7px; font: 700 9px/1 var(--mono); }
.story-cover .story-duration { position: absolute; z-index: 2; right: 7px; bottom: 7px; padding: 4px 5px; color: var(--white); background: rgba(17,17,17,.82); font: 700 10px/1 var(--mono); letter-spacing: 0; text-transform: none; }
.cover-plutonium { background: var(--lime); }.cover-bugs { color: var(--white); background: var(--pink); }.cover-chernobyl { color: var(--white); background: #285072; }.cover-prince { background: #d6a83f; }
.story-number { color: var(--muted); font: 600 9px/1 var(--mono); text-transform: uppercase; }
.story-copy { min-width: 0; }
.story-copy h3 { margin: 14px 0 0; max-width: 760px; overflow-wrap: anywhere; font: 800 clamp(1.65rem, 2.8vw, 3.3rem)/.86 var(--display); text-transform: uppercase; }
.story-views { text-align: right; font: 900 clamp(2rem, 2.2vw, 2.65rem)/.86 var(--display); white-space: nowrap; }
.story-views small { display: block; margin-top: 9px; color: var(--muted); font: 500 9px/1 var(--mono); text-transform: uppercase; }

.integrations { padding: 110px 20px 120px; overflow: hidden; }
.integrations-heading { margin-bottom: 18px; }
.integrations-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 18px; }
.integrations-toolbar > p { margin: 0; font: 600 10px/1 var(--mono); text-transform: uppercase; }
.carousel-controls { display: flex; gap: 8px; }
.carousel-controls button { width: 42px; height: 36px; border: var(--line); background: transparent; cursor: pointer; font: 900 22px/.8 var(--display); transition: color .18s ease, background .18s ease; }
.carousel-controls button:hover { color: var(--paper); background: var(--ink); }
.integrations-carousel { display: flex; gap: 18px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; scroll-behavior: smooth; }
.integrations-carousel::-webkit-scrollbar { display: none; }
.integration-card { flex: 0 0 min(78vw, 1080px); scroll-snap-align: start; }
.integration-video { overflow: hidden; background: var(--ink); aspect-ratio: 16 / 9; }
.integration-video video { display: block; width: 100%; height: 100%; object-fit: contain; background: var(--ink); }
.integration-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 15px 0 0; border-top: var(--line); }
.integration-meta span { font: 600 10px/1 var(--mono); text-transform: uppercase; }
.integration-meta h3 { margin: 0; font: 900 clamp(1.7rem, 3.2vw, 3.6rem)/.9 var(--display); text-align: right; text-transform: uppercase; }

.formats { padding-top: 58px; padding-bottom: 120px; }
.formats-heading h2 { max-width: 14ch; overflow-wrap: anywhere; font-size: clamp(3rem, 4.6vw, 5rem); }
.formats-heading .section-intro { align-self: start; }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: var(--line); }
.price-card { position: relative; min-width: 0; min-height: 610px; padding: 20px; border-right: var(--line); border-bottom: var(--line); background: var(--paper); }
.price-top { display: flex; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid var(--ink); font: 600 9px/1 var(--mono); text-transform: uppercase; }
.price-card h3 { height: clamp(5rem, 6.7vw, 8.6rem); margin: 38px 0 20px; overflow-wrap: anywhere; font: 900 clamp(2.5rem, 3.8vw, 5rem)/.86 var(--display); text-transform: uppercase; letter-spacing: -.03em; }
.price-card-featured h3 { font-size: clamp(2.5rem, 3.15vw, 4.2rem); overflow-wrap: normal; white-space: nowrap; }
.price { display: block; color: var(--pink); font: 900 clamp(2.4rem, 2.8vw, 3.6rem)/.86 var(--display); white-space: nowrap; }
.price-card ul { margin: 52px 0 100px; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.price-card li { padding: 12px 0; border-bottom: 1px solid var(--ink); font: 600 11px/1.25 var(--mono); text-transform: uppercase; }
.price-card li::before { content: "↳ "; color: var(--pink); }
.price-card > [data-collaboration-cta] { position: absolute; left: 20px; right: 20px; bottom: 20px; }
.price-card .collaboration-cta-toggle { position: static; width: 100%; padding: 16px; }
.price-card-featured { background: var(--pink); }
.price-card-featured .price { color: var(--ink); }
.price-card-featured li::before { color: var(--lime); }
.popular-stamp { position: absolute; right: 18px; top: 56px; padding: 8px 10px; color: var(--ink); background: var(--lime); transform: rotate(4deg); font: 800 10px/1 var(--mono); }
.price-card-dark { color: var(--white); background: var(--ink); }
.price-card-dark .price-top, .price-card-dark ul, .price-card-dark li { border-color: rgba(247,244,236,.45); }
.price-card-dark .collaboration-cta-toggle { color: var(--ink); border-color: var(--ink); }
.other-socials-note { margin: 16px 0 0; color: var(--muted); font: 600 11px/1.4 var(--mono); text-transform: uppercase; }
.contact-note-prices { margin-left: 0; }

.process { border-top: 1px solid rgba(247,244,236,.35); }
.process .section-heading { grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr); }
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-left: 1px solid rgba(247,244,236,.4); }
.process-list li { min-width: 0; min-height: 310px; padding: 18px; border-top: 1px solid rgba(247,244,236,.4); border-right: 1px solid rgba(247,244,236,.4); border-bottom: 1px solid rgba(247,244,236,.4); }
.process-list li > span { color: var(--pink); font: 700 11px/1 var(--mono); }
.process-list h3 { margin: 75px 0 18px; white-space: nowrap; font: 900 clamp(2.25rem, 2.6vw, 3.4rem)/.86 var(--display); text-transform: uppercase; }
.process-list p { max-width: 250px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.final-contact {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, 62.5vw, 960px);
  display: grid;
  grid-template-columns: 30% minmax(0, 1fr);
  align-items: center;
  padding: clamp(48px, 7vw, 110px) clamp(24px, 5vw, 80px);
  overflow: hidden;
  color: var(--white);
  background-color: #6689ad;
  background-image: url("assets/traffic-light-vintage.webp");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}
.final-contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, transparent 22%, rgba(31, 57, 83, .08) 42%, rgba(31, 57, 83, .2) 100%);
  pointer-events: none;
}
.final-contact-content {
  grid-column: 2;
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 3vw, 48px);
}
.final-contact-title {
  width: 100%;
  margin: 0;
  color: #f3f0e7;
  font: 800 clamp(3rem, 5.1vw, 6rem)/.88 var(--display);
  letter-spacing: -.065em;
  text-wrap: balance;
  filter: drop-shadow(0 1px 0 rgba(24, 46, 68, .18));
}
.final-contact-line {
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
}
.final-contact-script {
  margin: -.02em 0 -.06em;
  font-family: var(--script);
  font-size: 1.08em;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.045em;
  text-transform: none;
}
.final-contact-action { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.final-contact-action .contact-note { margin: 0; }
.final-contact-button { white-space: nowrap; }

.site-footer { display: flex; justify-content: space-between; gap: 18px; padding: 20px; color: var(--white); background: var(--ink); font: 500 9px/1 var(--mono); text-transform: uppercase; }
.site-footer p { margin: 0; }.site-footer a { color: var(--lime); }

.studio-lightbox {
  width: min(94vw, 1440px);
  max-height: 92svh;
  padding: 46px 16px 16px;
  overflow: auto;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(247,244,236,.45);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.studio-lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(7px); }
.studio-lightbox figure { margin: 0; }
.studio-lightbox img { display: block; width: 100%; height: auto; }
.studio-lightbox figcaption { margin-top: 12px; color: var(--muted); font: 600 10px/1.3 var(--mono); text-transform: uppercase; }
.studio-lightbox-close { position: absolute; top: 13px; right: 16px; border: 0; padding: 0; color: var(--white); background: transparent; cursor: pointer; font: 700 10px/1 var(--mono); text-transform: uppercase; }

.comment-reviews { padding: 64px 20px 120px; overflow: hidden; }
.comment-reviews-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, .55fr); gap: 40px; align-items: end; margin-bottom: 52px; }
.comment-reviews-heading .data-index { display: block; margin-bottom: 20px; }
.comment-reviews-heading h2 { margin: 0; font-size: clamp(3.8rem, 6.7vw, 7.8rem); line-height: .79; letter-spacing: -.075em; }
.comment-reviews-heading h2 span { color: var(--pink); }
.comment-reviews-heading p { max-width: 32ch; margin: 0 0 5px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.35rem); line-height: 1.28; }
.comment-clouds { display: grid; grid-template-columns: minmax(0, 1fr); border: var(--line); background: rgba(247,244,236,.3); gap: 1px; }
.comment-cloud-column { min-width: 0; overflow: hidden; background: var(--ink); }
.comment-cloud-column header { display: flex; align-items: center; min-height: 115px; padding: 18px 20px; border-bottom: var(--line); }
.comment-cloud-column header span { color: var(--muted); font: 600 9px/1.1 var(--mono); text-transform: uppercase; }
.comment-cloud-column h3 { margin: 0; text-align: left; font-size: clamp(1.7rem, 2.8vw, 3.25rem); line-height: .9; letter-spacing: -.065em; white-space: nowrap; }
.comment-cloud-specialists h3 { color: var(--lime); }
.comment-cloud { position: relative; height: 800px; overflow: hidden; isolation: isolate; perspective: 1350px; background: radial-gradient(circle at 50% 50%, rgba(216,48,99,.18), transparent 44%), linear-gradient(90deg, rgba(247,244,236,.055) 1px, transparent 1px); background-size: auto, 42px 42px; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent); }
.comment-cloud-specialists .comment-cloud { background: radial-gradient(circle at 50% 50%, rgba(203,214,42,.16), transparent 44%), linear-gradient(90deg, rgba(247,244,236,.055) 1px, transparent 1px); background-size: auto, 42px 42px; }
.comment-slide { display: contents; }
.comment-card { position: absolute; top: 50%; left: 50%; z-index: 1; display: block; width: min(86%, 1280px); overflow: hidden; border: 1px solid rgba(247,244,236,.38); background: #111; box-shadow: 0 20px 42px rgba(0,0,0,.5); opacity: .1; transform-style: preserve-3d; animation: comment-wheel 60s linear var(--wheel-delay, 0s) infinite; transition: opacity .2s ease, filter .2s ease; will-change: transform, opacity; }
.comment-card img { display: block; width: 100%; height: auto; }
.comment-counter { display: none; }
.comment-youtube-link { position: absolute; inset: 0; z-index: 1; display: block; overflow: hidden; text-indent: -9999px; white-space: nowrap; cursor: pointer; }
.comment-youtube-link:focus-visible { outline: none; }
.comment-card.is-featured { border-color: var(--pink); box-shadow: 0 24px 54px rgba(216,48,99,.32); }
.comment-cloud-specialists .comment-card.is-featured { border-color: var(--lime); box-shadow: 0 24px 54px rgba(203,214,42,.26); }
.comment-card:hover,
.comment-card:has(.comment-youtube-link:focus-visible) { z-index: 1000 !important; opacity: 1 !important; filter: brightness(1.16); animation-play-state: paused; outline: 2px solid var(--white); outline-offset: 4px; }
@keyframes comment-wheel {
  0% { z-index: 1; opacity: .08; transform: translate3d(-50%, 430px, -350px) rotateX(30deg) rotateY(42deg) scale(.52); }
  16% { z-index: 2; opacity: .35; transform: translate3d(-50%, 285px, -190px) rotateX(18deg) rotateY(27deg) scale(.72); }
  39% { z-index: 8; opacity: .9; transform: translate3d(-50%, 85px, -20px) rotateX(5deg) rotateY(8deg) scale(.94); }
  50% { z-index: 20; opacity: 1; transform: translate3d(-50%, -50%, 70px) rotateX(0) rotateY(0) scale(1); }
  61% { z-index: 8; opacity: .9; transform: translate3d(-50%, -185px, -20px) rotateX(-5deg) rotateY(-8deg) scale(.94); }
  84% { z-index: 2; opacity: .35; transform: translate3d(-50%, -385px, -190px) rotateX(-18deg) rotateY(-27deg) scale(.72); }
  100% { z-index: 1; opacity: .08; transform: translate3d(-50%, -530px, -350px) rotateX(-30deg) rotateY(-42deg) scale(.52); }
}

@media (max-width: 1050px) {
  .hero-title { top: 13vh; left: 3vw; width: 68vw; font-size: clamp(6rem, 13.5vw, 10rem); }
  .section-heading, .audience .section-heading, .formats-heading, .process .section-heading { grid-template-columns: minmax(0, 1fr) minmax(180px, .65fr); }
  .section-heading .source-note, .section-heading .section-intro, .audience .section-intro, .formats-heading .section-intro { justify-self: start; }
  .proof-source { justify-self: start; justify-items: start; }
  .story { grid-template-columns: 180px 1fr 190px; }
  .price-grid { grid-template-columns: minmax(0, 1fr); }
  .price-card { min-height: 580px; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comment-cloud { height: 700px; }
  .comment-card { width: min(86%, 880px); }
}

@media (max-width: 1440px) and (min-width: 761px) {
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: auto minmax(0, 1fr); gap: 10px; min-height: 54px; padding: 7px 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand > span:last-child { display: none; }
  .main-nav { display: none; }
  .header-cta { display: inline-flex; justify-self: end; }
  .header-cta .collaboration-cta-toggle { padding: 10px 11px; font-size: 9px; }
  .hero { min-height: 760px; padding: 0 12px 52px; }
  .hero::before { background: linear-gradient(0deg, rgba(7,7,7,.67), rgba(7,7,7,.22)), linear-gradient(90deg, rgba(7,7,7,.72), rgba(7,7,7,.18)); }
  .hero-title { top: 8vh; left: 12px; width: calc(100% - 24px); font-size: clamp(3.8rem, 18vw, 5.2rem); line-height: .86; }
  .hero-line { white-space: normal; }
  .hero-line-one { font-size: .51em; }
  .hero-line-two { padding-left: 2vw; }
  .hero-line-three { padding-left: 0; font-size: .66em; }
  .hero-role { margin: 1rem 0 0; font-size: .68rem; }
  .hero-action { left: 12px; bottom: 28px; }
  .button-sticker-large { padding: 13px 14px; font-size: 10px; }

  .proof, .audience, .content-proof, .formats, .process, .integrations { padding: 78px 12px; }
  .comment-reviews { padding: 52px 12px 78px; }
  .comment-reviews-heading { display: block; margin-bottom: 32px; }
  .comment-reviews-heading h2 { font-size: clamp(3.2rem, 14vw, 5.4rem); }
  .comment-reviews-heading p { margin-top: 25px; font-size: 1rem; }
  .comment-clouds {
    width: calc(100% + 24px);
    margin-inline: -12px;
    border-inline: 0;
  }
  .comment-cloud-column header { min-height: 94px; padding: 16px 14px; }
  .comment-cloud-column h3 { font-size: clamp(1.5rem, 7.5vw, 2.3rem); white-space: normal; }
  .js .comment-counter { display: block; margin-left: auto; color: var(--muted); font: 600 11px/1 var(--mono); white-space: nowrap; }
  .comment-cloud {
    height: auto;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    perspective: none;
    -webkit-mask-image: none;
    mask-image: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y pinch-zoom;
  }
  .comment-cloud::-webkit-scrollbar { display: none; }
  .comment-slide {
    flex: 0 0 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .comment-card {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  .comment-card img { width: 100%; height: auto; object-fit: contain; }
  .comment-youtube-link {
    position: static;
    inset: auto;
    z-index: auto;
    display: block;
    overflow: visible;
    padding: 14px;
    border-top: 1px solid rgba(247,244,236,.38);
    color: inherit;
    font: 700 11px/1 var(--mono);
    text-indent: 0;
    white-space: normal;
    text-transform: uppercase;
    text-decoration: none;
  }
  .formats { padding-top: 44px; }
  .section-heading, .audience .section-heading, .formats-heading, .process .section-heading { display: block; padding-bottom: 34px; }
  .section-heading h2 { font-size: clamp(3rem, 11vw, 4.6rem); }
  .content-proof .section-heading h2 { font-size: clamp(2.5rem, 10vw, 3.6rem); }
  .audience .section-heading h2 { font-size: clamp(2.8rem, 11.5vw, 4.2rem); }
  .source-note, .section-intro { margin-top: 28px; }

  .proof-grid { display: block; }
  .metric { min-height: auto; display: grid; grid-template-columns: minmax(0, 1fr); align-content: start; }
  .metric-label { grid-row: 1; }
  .metric > strong { grid-row: 2; margin-top: 30px; font-size: clamp(2.35rem, 12vw, 4.25rem); letter-spacing: -.06em; white-space: nowrap; }
  .metric > p:last-child { position: static; grid-row: 3; max-width: none; margin: 24px 0 0; }
  .metric > .studio-link { position: static; grid-row: 4; justify-self: start; margin-top: 28px; }
  .metric-pink .metric-stamp { position: static; grid-row: 3; justify-self: end; margin-top: 30px; }
  .mini-bars { position: static; grid-row: 3; margin-top: 30px; }
  .metric-100k strong { gap: 12px; }
  .metric-100k-number { gap: 5px; }
  .metric-100k-label { font-size: 1rem; }
  .metric-100k-value { font-size: clamp(3rem, 14vw, 4.8rem); }

  .audience-card { min-height: auto; margin-top: 0; }
  .audience-gender, .audience-age { padding: 20px; }
  .audience-gender > strong { margin-top: 52px; font-size: clamp(4.4rem, 20vw, 6.4rem); }
  .audience-age h2 { font-size: clamp(2.3rem, 8vw, 3.6rem); letter-spacing: -.07em; }
  .audience-geography { padding: 20px; }
  .audience-countries { grid-template-columns: 1fr 1fr; }
  .audience-countries .country { min-height: 110px; padding: 12px 10px; }

  .demography { display: block; }
  .gender-block { padding-right: 0; border-right: 0; border-bottom: var(--line); }
  .gender-block > .studio-link { top: 48px; right: 0; }
  .age-block { padding-left: 0; }
  .gender-block > strong { margin-top: 54px; font-size: clamp(3.5rem, 18vw, 6rem); letter-spacing: -.08em; }
  .age-row { grid-template-columns: 62px minmax(0, 1fr) 56px; gap: 8px; font-size: 11px; }
  .age-row strong { white-space: nowrap; }
  .geography { grid-template-columns: minmax(0, 1fr); }
  .geography > .studio-link { top: 22px; right: 0; }
  .country { min-height: 138px; border-left: var(--line); }
  .country span { font-size: clamp(1.5rem, 7vw, 2rem); overflow-wrap: normal; }
  .country strong { margin-top: 18px; font-size: clamp(2.2rem, 11vw, 3rem); letter-spacing: -.075em; white-space: nowrap; }
  .audience-countries .country span { font-size: clamp(.95rem, 4.8vw, 1.25rem); overflow-wrap: anywhere; }
  .audience-countries .country strong { margin-top: 16px; font-size: clamp(1.75rem, 8.4vw, 2.35rem); letter-spacing: -.09em; }

  .story { grid-template-columns: minmax(0, 1fr); gap: 18px; align-items: start; }
  .story-cover { height: auto; aspect-ratio: 16 / 9; }.story-cover span { font-size: 34px; }
  .story-copy h3 { font-size: 1.65rem; line-height: .92; overflow-wrap: normal; }
  .story-views { grid-column: 1; text-align: left; font-size: 2.5rem; }
  .stories { padding-top: 52px; }

  .integrations-heading h2 { max-width: 100%; font-size: clamp(2.35rem, 10vw, 3.55rem); letter-spacing: -.065em; overflow-wrap: anywhere; }
  .integrations-toolbar { margin-bottom: 14px; }
  .carousel-controls button { width: 38px; height: 34px; }
  .integrations-carousel { gap: 12px; }
  .integration-card { flex: 0 0 100%; min-width: 0; }
  .integration-meta { align-items: start; flex-direction: column; gap: 7px; }
  .integration-meta h3 { font-size: 2rem; text-align: left; }
  .formats-heading h2 { max-width: none; overflow-wrap: normal; word-break: normal; hyphens: none; font-size: clamp(2.3rem, 8.5vw, 3.2rem); letter-spacing: -.065em; }

  .price-grid { grid-template-columns: minmax(0, 1fr); }
  .price-card { min-width: 0; min-height: 0; border-top: 0; }
  .price-card h3 { height: auto; min-height: 0; margin: 30px 0 18px; overflow-wrap: normal; font-size: clamp(2.2rem, 8.8vw, 3.1rem); line-height: .9; }
  .price-card-featured h3 { font-size: clamp(2.1rem, 8vw, 2.9rem); white-space: normal; }
  .price { font-size: clamp(2.1rem, 9.5vw, 2.8rem); }

  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-width: 0; min-height: 220px; }
  .process-list h3 { margin-top: 40px; font-size: clamp(2.2rem, 10vw, 3rem); }

  .final-contact {
    min-height: 720px;
    grid-template-columns: 37% minmax(0, 1fr);
    padding: 42px 12px;
    background-position: -27vw center;
    background-size: auto 100%;
  }
  .final-contact::before { background: linear-gradient(90deg, transparent 24%, rgba(31, 57, 83, .2) 100%); }
  .final-contact-title {
    width: 100%;
    font-size: clamp(1.3rem, 5.9vw, 1.8rem);
    line-height: .94;
    letter-spacing: -.055em;
  }
  .final-contact-line { white-space: normal; }
  .final-contact-script { font-size: 1.12em; line-height: 1.08; }
  .site-footer { flex-wrap: wrap; padding: 18px 12px; }
  .site-footer p:last-child { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-line { opacity: 1 !important; transform: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
