@font-face {
  font-family: Barlow;
  src: url("/assets/barlow-condensed-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #111210;
  --panel: #1a1b18;
  --ink: #f5f5f1;
  --muted: #aaada4;
  --lime: #fff200;
  --line: #363831;
  --font: Manrope, Arial, sans-serif;
  --display: Barlow, Impact, "Arial Narrow", sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
::selection {
  background: var(--lime);
  color: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 6px;
}
button {
  border: 0;
}
svg {
  display: block;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
button[hidden],
[hidden] {
  display: none !important;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--lime);
  color: var(--bg);
  padding: 12px 20px;
  transform: translateY(-160%);
  z-index: 100;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.8px;
  white-space: nowrap;
}
.brand-mark {
  color: var(--lime);
  width: 22px;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}
.brand-mark svg {
  width: 100%;
  height: 29px;
  overflow: visible;
}
.brand-period {
  color: var(--lime);
}
.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.desktop-nav a:hover,
.text-link:hover,
.back-top:hover {
  color: var(--lime);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.language {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.language a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.language a[aria-current] {
  color: var(--lime);
}
.language span {
  color: #606359;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 58px;
  padding: 16px 23px;
  background: var(--lime);
  color: var(--bg);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  border-radius: 5px;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: normal;
}
.button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.button:hover {
  background: #e2ff78;
  transform: translateY(-2px);
}
.button:hover svg {
  transform: translate(2px, -2px);
}
.button-small {
  font-size: 12px;
  min-height: 44px;
  padding: 12px 15px;
  gap: 17px;
}
.button-small svg {
  width: 16px;
  height: 16px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink);
  margin: 6px 0;
}
.mobile-nav {
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
}
.mobile-nav > a:not(.button) {
  display: block;
  padding: 13px 0;
}
.mobile-nav .button {
  margin-top: 15px;
  width: 100%;
}
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 650px;
  align-items: center;
  padding-block: 76px 60px;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}
.mini-bolt {
  width: 10px;
  color: var(--lime);
}
.mini-bolt svg {
  height: 16px;
  width: 10px;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -1px;
}
h1 {
  font-size: clamp(80px, 10.5vw, 154px);
  margin: 26px 0 29px;
}
.hero-outline {
  color: var(--lime);
}
.hero-description {
  font-size: 16px;
  color: #bebfb8;
  max-width: 465px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  transition: color 0.2s;
}
.text-link span {
  font-size: 22px;
}
.hero-audience {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.9px;
  margin-top: 30px;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 530px;
  isolation: isolate;
  background: radial-gradient(ellipse at 50% 50%, #fff2000b, transparent 70%);
}
.visual-label {
  position: absolute;
  right: 14px;
  top: 2px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border: 5px solid #292b25;
  border-radius: 14px;
  box-shadow: 0 25px 55px #0008;
  background: var(--panel);
}
.hero-card:after {
  position: absolute;
  content: "";
  inset: 40% 0 0;
  background: linear-gradient(transparent, #0008);
  pointer-events: none;
}
.hero-card img {
  height: 100%;
  object-fit: cover;
}
.podcast-card {
  width: 267px;
  height: 411px;
  left: 21px;
  top: 66px;
  transform: rotate(-9deg);
  z-index: 2;
}
.runner-card {
  width: 226px;
  height: 355px;
  right: 10px;
  top: 34px;
  transform: rotate(10deg);
  z-index: 1;
}
.podcast-card img {
  object-position: center 22%;
}
.runner-card img {
  object-position: center 15%;
}
.card-topline,
.card-bottom,
.card-category,
.card-format {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.card-topline {
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.frame-corners {
  font-size: 28px;
  line-height: 1;
}
.card-bottom {
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wave {
  color: var(--lime);
  letter-spacing: 0;
  font-size: 17px;
}
.card-category {
  top: 12px;
}
.card-format {
  bottom: 16px;
}
.clip-subtitle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 77px;
  z-index: 4;
  text-align: center;
  font-family: var(--display);
  line-height: 1.16;
  font-size: 28px;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 10px #0005;
}
.clip-subtitle span,
.clip-subtitle strong {
  display: table;
  margin: 0 auto;
}
.clip-subtitle strong {
  color: var(--bg);
  background: var(--lime);
  font-weight: 800;
  padding: 0 6px;
  text-shadow: none;
  transform: rotate(-2deg);
}
.side-subtitle {
  bottom: 61px;
  font-size: 25px;
}
.side-subtitle strong {
  background: var(--ink);
}
.cut-sticker {
  width: 113px;
  height: 113px;
  position: absolute;
  right: 2px;
  bottom: 56px;
  background: var(--lime);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: rotate(11deg);
  z-index: 4;
  border: 5px solid var(--bg);
  outline: 1px solid var(--lime);
}
.cut-sticker svg {
  width: 24px;
  height: 40px;
}
.cut-sticker span {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
}
.floating-tag {
  position: absolute;
  bottom: 19px;
  left: 17px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-3deg);
  z-index: 4;
}
.floating-tag > span {
  font-size: 25px;
  line-height: 1;
  color: var(--lime);
}
.platforms {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-block: 31px 36px;
}
.platforms > span {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 600;
}
.platform-name {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.platform-name svg {
  width: 25px;
  height: 25px;
}
.platform-end {
  max-width: 175px;
  font-size: 10px !important;
  text-align: right;
}
.ticker {
  overflow: hidden;
  background: var(--lime);
  color: var(--bg);
  border-block: 1px solid var(--lime);
  padding: 13px 0;
}
.ticker > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
  width: max-content;
  margin-inline: auto;
}
.ticker span {
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.ticker .ticker-star {
  font-size: 34px;
}
.section {
  padding-block: 112px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}
.section-heading > .section-heading {
  margin: 0;
}
h2 {
  font-size: clamp(47px, 5.5vw, 78px);
}
h2 span {
  color: var(--lime);
}
.section-heading > .eyebrow {
  margin: 0;
}
.section-heading .eyebrow,
.process-intro .eyebrow,
.lab .eyebrow,
.faq-layout .eyebrow {
  margin-bottom: 25px;
  color: var(--muted);
}
.section-heading > p {
  color: var(--muted);
  max-width: 355px;
  font-size: 15px;
  line-height: 1.85;
  padding-bottom: 4px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.work-image {
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.work-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.work-item:hover .work-image img {
  transform: scale(1.035);
}
.work-image-podcast img {
  object-position: center 26%;
}
.work-image-runner img {
  object-position: center 33%;
}
.work-image:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #000b);
  pointer-events: none;
}
.work-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 9px 12px;
  background: #111210c9;
  border: 1px solid #ffffff35;
  border-radius: 3px;
  z-index: 2;
}
.work-subtitle {
  position: absolute;
  bottom: 53px;
  left: 30px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
  z-index: 2;
}
.work-subtitle mark {
  color: var(--bg);
  background: var(--lime);
  padding: 0 5px;
}
.work-image-runner mark {
  background: var(--ink);
}
.image-concept {
  position: absolute;
  bottom: 18px;
  left: 30px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 1px;
}
.work-item h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-top: 23px;
  line-height: 1.4;
}
.work-item > p {
  font-size: 14px;
  color: var(--muted);
  max-width: 470px;
  line-height: 1.8;
  margin-top: 11px;
}
.concept-disclosure {
  font-size: 12px;
  color: var(--muted);
  margin-top: 25px;
  line-height: 1.7;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  margin-top: 49px;
}
.principle-number {
  font-family: var(--display);
  font-size: 21px;
  color: var(--lime);
  display: flex;
  gap: 15px;
  align-items: center;
}
.principle-number > span {
  font-family: var(--font);
  font-size: 14px;
  color: #72756b;
}
.principles h3 {
  font-size: 24px;
  font-family: var(--display);
  margin-top: 18px;
  letter-spacing: 0.5px;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 10px;
}
.process-section {
  background: #1c1c18;
  border-block: 1px solid var(--line);
  padding-block: 105px;
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.process-intro > p:not(.eyebrow) {
  max-width: 365px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 27px;
}
.process-sigil {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 43px;
  color: var(--lime);
}
.process-sigil svg {
  width: 38px;
  height: 57px;
}
.process-sigil span {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.8px;
}
.process-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 27px 0;
  border-bottom: 1px solid #3a3c34;
}
.process-steps li:first-child {
  padding-top: 0;
}
.process-steps li:last-child {
  border: 0;
  padding-bottom: 0;
}
.step-number {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.4;
  color: var(--lime);
}
.process-steps h3 {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.4px;
}
.process-steps p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 8px;
}
.lab {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 100px;
  align-items: center;
}
.lab-copy > p:not(.eyebrow):not(.concept-disclosure):not(.lab-hint) {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 430px;
  margin-top: 26px;
}
.lab-switch {
  margin-top: 28px;
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  gap: 3px;
}
.lab-switch button {
  padding: 13px 18px;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  gap: 13px;
  align-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.lab-switch button[aria-pressed="true"] {
  background: var(--lime);
  color: var(--bg);
}
.lab-switch svg {
  width: 10px;
  height: 16px;
}
.lab-hint {
  margin-top: 15px;
  font-size: 12px;
  color: var(--muted);
  max-width: 360px;
}
.lab .concept-disclosure {
  max-width: 330px;
  margin-top: 28px;
}
.lab-frame {
  height: 465px;
  width: 300px;
  border: 6px solid var(--line);
  border-radius: 13px;
  justify-self: center;
  position: relative;
  overflow: hidden;
  box-shadow: 23px 23px 0 #1c1c18;
  transform: rotate(3deg);
}
.lab-frame > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    filter 0.35s,
    transform 0.35s;
}
.lab-frame[data-mode="raw"] > img {
  filter: saturate(0.45) brightness(0.7);
  transform: scale(0.92);
}
.lab-frame-label {
  position: absolute;
  top: 16px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.7px;
  font-weight: 700;
}
.raw-caption {
  position: absolute;
  bottom: 70px;
  left: 17px;
  right: 17px;
  background: #111210e0;
  padding: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.cut-caption {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.2;
}
.cut-caption > span,
.cut-caption > strong {
  display: table;
  margin: auto;
  background: var(--bg);
  padding: 2px 6px;
  font-weight: 800;
}
.cut-caption > strong {
  background: var(--lime);
  color: var(--bg);
  transform: rotate(-2deg);
}
.lab-format {
  position: absolute;
  bottom: 52px;
  right: 12px;
  font-size: 12px;
}
.edit-timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  gap: 3px;
  background: var(--bg);
}
.edit-timeline span {
  width: 33.3%;
  font-size: 9px;
  text-align: center;
  background: var(--lime);
  color: var(--bg);
  font-weight: 700;
  border-radius: 2px;
  padding: 4px;
}
.edit-timeline span:nth-child(2) {
  background: #7d7500;
  color: #fff;
  width: 50%;
}
.edit-timeline span:nth-child(3) {
  background: #3b391e;
  color: #fff;
}
.lab-frame[data-mode="raw"] .edit-timeline {
  opacity: 0.2;
}
.faq-section {
  padding-block: 95px 110px;
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 85px;
}
.faq-layout h2 {
  font-size: clamp(40px, 4.4vw, 62px);
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 15px;
  height: 15px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon:before,
.faq-icon:after {
  content: "";
  position: absolute;
  background: var(--lime);
  width: 14px;
  height: 1px;
  left: 0;
  top: 7px;
}
.faq-icon:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .faq-icon:after {
  transform: rotate(0);
}
details[open] summary {
  color: var(--lime);
}
details > p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 30px 24px 0;
}
.contact-section {
  background: var(--lime);
  color: var(--bg);
  padding-block: 77px 72px;
  position: relative;
  overflow: hidden;
}
.contact-section > .container {
  position: relative;
}
.contact-section .eyebrow {
  font-size: 12px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.contact-section h2 {
  font-size: clamp(48px, 6.8vw, 97px);
  position: relative;
  z-index: 1;
  max-width: 1020px;
}
.contact-section h2 span {
  color: var(--bg);
}
.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.contact-bottom p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
}
.contact-bottom > div > span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #404a1f;
}
.button-dark {
  background: var(--bg);
  color: var(--ink);
  min-width: 246px;
}
.button-dark:hover {
  background: #292c21;
}
.button-dark:focus-visible {
  outline-color: var(--bg);
}
.contact-bolt {
  position: absolute;
  width: 170px;
  right: -29px;
  top: -14px;
  color: #d7cc00;
  transform: rotate(7deg);
}
.contact-bolt svg {
  width: 100%;
  height: 210px;
}
.contact-section a:focus-visible {
  outline-color: var(--bg);
}
footer {
  padding-top: 49px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 41px;
}
.footer-top p {
  font-size: 13px;
  color: var(--muted);
}
.back-top {
  font-size: 12px;
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 44px;
}
.back-top svg {
  width: 14px;
  height: 14px;
  transform: rotate(-45deg);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}
.footer-bottom > span:nth-child(2) {
  letter-spacing: 2px;
  font-size: 10px;
}
.privacy-trigger {
  background: none;
  padding: 10px 0;
  font-size: 12px;
  color: var(--muted);
}
dialog {
  width: min(570px, calc(100% - 40px));
  max-height: 85dvh;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
}
dialog::backdrop {
  background: #000c;
  backdrop-filter: blur(5px);
}
dialog h2 {
  font-size: 42px;
  line-height: 1.05;
  margin-block: 22px;
}
dialog p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
dialog .text-link {
  margin-top: 18px;
}
dialog .text-link svg {
  width: 15px;
  height: 15px;
}
.dialog-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 44px;
  height: 44px;
  background: none;
  font-size: 29px;
  color: var(--muted);
}
.error-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
}
.error-page .eyebrow {
  margin-top: 80px;
  color: var(--lime);
}
.error-page h1 {
  font-size: clamp(60px, 9vw, 120px);
}
.error-page p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 32px;
}
@media (min-width: 1450px) {
  .hero {
    min-height: 750px;
  }
  .hero-visual {
    transform: scale(1.06);
    transform-origin: center;
  }
  .hero-copy h1 {
    font-size: 166px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 18px;
  }
  .nav-inner {
    gap: 22px;
  }
  .nav-actions {
    gap: 16px;
  }
  .nav-actions > .button-small {
    font-size: 0;
    gap: 0;
    padding: 13px;
  }
  .nav-actions > .button-small svg {
    width: 18px;
    height: 18px;
  }
  .hero {
    grid-template-columns: 55% 45%;
    padding-block: 65px 40px;
  }
  .hero h1 {
    font-size: 11vw;
  }
  .hero-actions {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-audience {
    font-size: 10px;
  }
  .hero-visual {
    transform: scale(0.9);
    transform-origin: center right;
  }
  .podcast-card {
    left: -5px;
  }
  .runner-card {
    right: -17px;
  }
  .floating-tag {
    left: -6px;
  }
  .cut-sticker {
    right: -20px;
  }
  .visual-label {
    right: -20px;
    top: -20px;
  }
  .platform-end {
    display: none;
  }
  .platforms {
    gap: 20px;
  }
  .platform-name {
    font-size: 16px;
  }
  .process-layout,
  .lab,
  .faq-layout {
    gap: 60px;
  }
  .section {
    padding-block: 90px;
  }
  .work-image {
    height: 340px;
  }
  .contact-section h2 {
    font-size: 7.3vw;
  }
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 48px);
  }
  .nav-inner {
    height: 80px;
  }
  .desktop-nav,
  .nav-actions > .button-small {
    display: none;
  }
  .nav-actions {
    gap: 17px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-block: 52px 30px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero h1 {
    font-size: clamp(85px, 16vw, 130px);
  }
  .hero-description {
    max-width: 500px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
  .hero-audience {
    font-size: 12px;
  }
  .hero-visual {
    height: 510px;
    width: 480px;
    max-width: 100%;
    margin: 40px auto 0;
    transform: none;
  }
  .podcast-card {
    left: 35px;
  }
  .runner-card {
    right: 15px;
  }
  .visual-label {
    right: 4px;
    top: 9px;
  }
  .floating-tag {
    left: 29px;
    bottom: 0;
  }
  .cut-sticker {
    right: 2px;
    bottom: 25px;
  }
  .platforms {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 26px;
    gap: 19px 32px;
  }
  .platforms > span:first-child {
    flex-basis: 100%;
    text-align: center;
  }
  .platform-name {
    font-size: 17px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 30px;
  }
  .section-heading > p {
    max-width: 280px;
    font-size: 14px;
  }
  .section h2 {
    font-size: 60px;
  }
  .work-image {
    height: 320px;
  }
  .work-subtitle {
    font-size: 29px;
    left: 20px;
  }
  .image-concept {
    left: 20px;
  }
  .work-item h3 {
    font-size: 18px;
  }
  .work-grid {
    gap: 20px;
  }
  .principles {
    gap: 24px;
  }
  .principles h3 {
    font-size: 23px;
  }
  .principles p {
    font-size: 14px;
  }
  .process-layout {
    gap: 40px;
  }
  .process-intro h2 {
    font-size: 54px;
  }
  .lab {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .lab h2 {
    font-size: 54px;
  }
  .lab-frame {
    width: 260px;
    height: 425px;
  }
  .lab-switch button {
    padding: 12px;
    font-size: 12px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-layout h2 {
    font-size: 60px;
  }
  .contact-section h2 {
    font-size: 9vw;
  }
  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-bolt {
    width: 140px;
    right: 0;
    top: 10px;
    opacity: 0.5;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-top p {
    flex-basis: 60%;
    text-align: right;
  }
  .footer-top .back-top {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }
  .nav-inner {
    height: 75px;
  }
  .brand {
    font-size: 27px;
  }
  .brand-mark {
    width: 20px;
  }
  .nav-actions {
    gap: 12px;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 26px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.25px;
  }
  .hero h1 {
    font-size: 18.5vw;
    line-height: 0.94;
    letter-spacing: -0.6px;
    margin: 24px 0;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.8;
    max-width: 440px;
  }
  .hero-actions {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 14px;
    min-height: 56px;
    padding-inline: 20px;
    gap: 24px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-audience {
    font-size: 10px;
    letter-spacing: 0.6px;
    margin-top: 16px;
  }
  .hero-visual {
    height: 393px;
    width: 345px;
    margin-top: 27px;
  }
  .podcast-card {
    width: 206px;
    height: 321px;
    left: 14px;
    top: 40px;
    border-width: 4px;
    border-radius: 12px;
  }
  .runner-card {
    width: 176px;
    height: 280px;
    right: 4px;
    top: 19px;
    border-width: 4px;
    border-radius: 12px;
  }
  .clip-subtitle {
    font-size: 23px;
    bottom: 60px;
  }
  .side-subtitle {
    font-size: 20px;
    bottom: 53px;
  }
  .card-topline,
  .card-category,
  .card-bottom,
  .card-format {
    font-size: 8px;
    left: 10px;
    right: 10px;
  }
  .card-topline {
    top: 11px;
  }
  .card-topline .frame-corners {
    font-size: 22px;
  }
  .card-bottom {
    bottom: 10px;
  }
  .wave {
    font-size: 13px;
  }
  .cut-sticker {
    height: 82px;
    width: 82px;
    bottom: 28px;
    right: 1px;
    border-width: 4px;
    gap: 5px;
  }
  .cut-sticker span {
    font-size: 16px;
  }
  .cut-sticker svg {
    width: 16px;
    height: 30px;
  }
  .floating-tag {
    font-size: 8px;
    letter-spacing: 0.5px;
    padding: 7px 11px;
    left: 16px;
    bottom: 0;
  }
  .floating-tag > span {
    font-size: 21px;
  }
  .visual-label {
    font-size: 8px;
    letter-spacing: 0.7px;
    right: 0;
    top: 9px;
  }
  .platforms {
    gap: 17px 20px;
    padding-top: 22px;
    padding-bottom: 26px;
  }
  .platforms > span:first-child {
    font-size: 10px;
  }
  .platform-name {
    font-size: 13px;
    letter-spacing: -0.3px;
    gap: 5px;
  }
  .platform-name svg {
    width: 18px;
    height: 18px;
  }
  .ticker {
    padding: 12px 0;
  }
  .ticker > div {
    gap: 25px;
  }
  .ticker span {
    font-size: 24px;
  }
  .ticker .ticker-star {
    font-size: 27px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading .eyebrow,
  .process-intro .eyebrow,
  .lab .eyebrow,
  .faq-layout .eyebrow {
    font-size: 10px;
    letter-spacing: 1.3px;
    margin-bottom: 20px;
  }
  .section h2,
  .process-intro h2 {
    font-size: 53px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.8;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .work-image {
    height: 350px;
  }
  .work-subtitle {
    font-size: 35px;
    bottom: 49px;
    left: 23px;
  }
  .work-tag {
    top: 17px;
    left: 17px;
    font-size: 12px;
  }
  .image-concept {
    left: 23px;
    font-size: 9px;
  }
  .work-item h3 {
    font-size: 19px;
    margin-top: 19px;
  }
  .work-item > p {
    font-size: 14px;
    margin-top: 9px;
  }
  .concept-disclosure {
    font-size: 12px;
    margin-top: 26px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 35px;
    padding-top: 29px;
  }
  .principles article {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 7px 16px;
  }
  .principle-number {
    grid-row: 1/3;
    align-items: flex-start;
    line-height: 1.3;
    font-size: 24px;
  }
  .principle-number > span {
    display: none;
  }
  .principles h3 {
    margin-top: 0;
    font-size: 26px;
    line-height: 1.3;
  }
  .principles p {
    margin-top: 0;
    font-size: 14px;
  }
  .process-section {
    padding-block: 65px;
  }
  .process-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-intro > p:not(.eyebrow) {
    margin-top: 23px;
    font-size: 15px;
    max-width: 100%;
  }
  .process-sigil {
    display: none;
  }
  .process-steps li {
    padding-block: 23px;
    gap: 20px;
  }
  .process-steps h3 {
    font-size: 18px;
  }
  .process-steps p {
    font-size: 14px;
  }
  .lab {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lab-copy > p:not(.eyebrow):not(.concept-disclosure):not(.lab-hint) {
    font-size: 15px;
    margin-top: 24px;
  }
  .lab-switch {
    margin-top: 24px;
  }
  .lab-switch button {
    font-size: 13px;
    padding: 12px 15px;
  }
  .lab .concept-disclosure {
    max-width: 100%;
    margin-top: 17px;
  }
  .lab-hint {
    max-width: 100%;
  }
  .lab-frame {
    height: 440px;
    width: 280px;
    box-shadow: 14px 14px 0 #1c1c18;
    margin-bottom: 15px;
  }
  .faq-section {
    padding-block: 59px 63px;
  }
  .faq-layout {
    gap: 30px;
  }
  .faq-layout h2 {
    font-size: 49px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 22px;
    gap: 20px;
  }
  details > p {
    font-size: 14px;
    padding-right: 0;
  }
  .contact-section {
    padding-block: 55px;
  }
  .contact-section .eyebrow {
    font-size: 9px;
    letter-spacing: 1.1px;
    margin-bottom: 21px;
  }
  .contact-section h2 {
    font-size: 11.5vw;
    letter-spacing: -0.6px;
    line-height: 1;
  }
  .contact-bottom {
    margin-top: 26px;
    gap: 24px;
  }
  .contact-bottom p {
    font-size: 15px;
    max-width: 340px;
  }
  .contact-bottom > div > span {
    font-size: 12px;
    max-width: 310px;
  }
  .button-dark {
    font-size: 14px;
    min-width: unset;
    gap: 25px;
  }
  .contact-bolt {
    display: none;
  }
  footer {
    padding-top: 32px;
  }
  .footer-top {
    padding-bottom: 25px;
    gap: 20px;
  }
  .footer-top p {
    flex-basis: 100%;
    text-align: left;
    font-size: 12px;
    order: 2;
  }
  .footer-top .brand {
    font-size: 26px;
  }
  .footer-top .back-top {
    font-size: 11px;
  }
  .footer-bottom {
    gap: 15px;
    font-size: 11px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .privacy-trigger {
    font-size: 11px;
  }
  dialog {
    padding: 32px 24px;
  }
  dialog h2 {
    font-size: 35px;
  }
  dialog .eyebrow {
    font-size: 10px;
  }
  dialog p:not(.eyebrow) {
    font-size: 14px;
  }
  .error-page .eyebrow {
    margin-top: 50px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-visual {
    transform: scale(0.89);
    transform-origin: top center;
    margin-bottom: -42px;
    max-width: none;
    width: 320px;
    margin-left: calc((100% - 320px) / 2);
  }
  .platforms {
    gap: 15px;
  }
  .platform-name {
    font-size: 12px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .section h2,
  .process-intro h2 {
    font-size: 47px;
  }
  .lab-switch button {
    font-size: 12px;
    padding-inline: 12px;
  }
  .lab-frame {
    width: 255px;
    height: 408px;
  }
  .faq-layout h2 {
    font-size: 44px;
  }
}
.hero-description,
.section-heading > p,
.work-item > p,
.principles p,
.process-intro > p:not(.eyebrow),
.process-steps p,
.lab-copy > p:not(.eyebrow):not(.concept-disclosure):not(.lab-hint),
details > p,
.contact-bottom p,
dialog p:not(.eyebrow) {
  font-size: 1rem;
}
.desktop-nav a,
.text-link,
.back-top,
.work-tag,
summary,
.lab-switch button {
  font-size: 0.875rem;
}
.language a {
  min-width: 24px;
  justify-content: center;
}
.eyebrow,
.hero .eyebrow,
.hero-audience,
.section-heading .eyebrow,
.process-intro .eyebrow,
.lab .eyebrow,
.faq-layout .eyebrow,
.contact-section .eyebrow,
.platforms > span:first-child,
.footer-bottom,
.privacy-trigger {
  font-size: 0.75rem;
}
.hero .eyebrow,
.hero-audience {
  letter-spacing: 0.7px;
}
.hero .eyebrow {
  flex-wrap: wrap;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
  .work-item:hover .work-image img {
    transform: none;
  }
}
