:root {
  --black: #050505;
  --ink: #111111;
  --muted: #a4a8b0;
  --line: rgba(255, 255, 255, 0.16);
  --paper: #f6f6f3;
  --white: #ffffff;
  --blue: #37a5ff;
  --purple: #9a55ff;
  --cyan: #30f0ff;
  --green: #98f25b;
  --magenta: #e241ff;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: background 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.nav-cta {
  opacity: 0.76;
}

.site-nav a:hover,
.nav-cta:hover {
  opacity: 1;
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.panel-dark {
  color: var(--white);
  background: var(--black);
}

.panel-light {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(1.18) contrast(1.08) brightness(1.65);
  transform: translate3d(0, calc(var(--hero-parallax, 0) * 1px), 0) scale(calc(1.04 + var(--hero-scale, 0) * 0.04));
  will-change: transform;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 150px 0 90px;
  transform: translate3d(0, calc(var(--hero-copy-shift, 0) * 1px), 0);
  opacity: var(--hero-copy-opacity, 1);
  will-change: transform, opacity;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-light .eyebrow {
  color: #5d6168;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.manifesto-line {
  font-family: "Arial Narrow", "Helvetica Neue Condensed Bold", Impact, sans-serif;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 1120px;
  margin-bottom: 32px;
  font-size: clamp(58px, 9.8vw, 136px);
  line-height: 0.82;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.8vw, 92px);
  line-height: 0.88;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-lines {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 840px;
  margin: 0 0 30px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-lines::before {
  content: "";
  position: absolute;
  inset: -80%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 255, 255, 0.18), transparent 30%);
  animation: line-sweep 8s linear infinite;
  opacity: 0.72;
}

.hero-lines span {
  position: relative;
  z-index: 1;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  border-right: 0;
  background: transparent;
  font-weight: 900;
  text-align: center;
  transform: translateY(18px);
  opacity: 0;
  animation: line-rise 720ms ease forwards;
}

.hero-lines span:nth-child(2) {
  animation-delay: 140ms;
}

.hero-lines span:nth-child(3) {
  animation-delay: 280ms;
}

.hero-lines span:nth-child(4) {
  animation-delay: 420ms;
  border-right: 0;
}

@keyframes line-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes line-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mission,
.manifesto,
.producers {
  position: relative;
  overflow: hidden;
}

.section-bg-video,
.section-video-shade {
  position: absolute;
  inset: 0;
}

.section-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(1.08) contrast(1.18) brightness(1.2);
  transform: scale(1.06);
}

.manifesto .section-bg-video {
  opacity: 0.46;
  filter: saturate(1.02) contrast(1.14) brightness(0.96);
}

.section-video-shade {
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
}

.manifesto .section-video-shade {
  background:
    radial-gradient(circle at 66% 42%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}

.mission .wide-copy,
.manifesto .manifesto-inner,
.producers .producer-title,
.producers .producer-strip {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 32px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.wide-copy,
.section-heading,
.timeline,
.producer-strip,
.work-grid,
.ecosystem-stage,
.manifesto-inner,
.closing-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.wide-copy {
  max-width: 1080px;
}

.wide-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(20px, 2vw, 28px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(26px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 70px);
}

#mission {
  display: block;
  scroll-margin-top: 172px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.producer-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(28px, 4vw, 58px) clamp(28px, 5vw, 72px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.producer-title {
  width: min(100%, var(--max));
  margin: 0 auto clamp(26px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.86);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.1;
  letter-spacing: 0.24em;
  text-align: center;
}

.producers-video {
  opacity: 0.32;
  filter: saturate(0.76) contrast(1.2);
}

.producers-video-shade {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.94)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.88));
}

.producer-strip img {
  display: block;
  width: min(100%, 190px);
  max-width: none;
  height: clamp(50px, 5.2vw, 82px);
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.2));
}

.century .section-heading {
  grid-template-columns: 1fr;
  max-width: 1080px;
}

.century {
  color: var(--white);
  background:
    radial-gradient(circle at 68% 48%, rgba(154, 85, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #050505, #0b0612 58%, #050505);
}

.turning-point {
  width: min(100%, var(--max));
  margin: 0 auto clamp(58px, 8vw, 100px);
}

.turning-point p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.7vw, 24px);
  font-weight: 900;
  letter-spacing: 0.34em;
}

.turning-point h2 {
  max-width: 960px;
  margin-bottom: 32px;
  color: var(--white);
}

.turning-point div {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(21px, 2.6vw, 34px);
  line-height: 1.25;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.timeline article {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  overflow: visible;
  text-align: center;
  background: transparent;
  animation: timeline-float 5.5s ease-in-out infinite;
}

.timeline article:nth-child(2) {
  animation-delay: 260ms;
}

.timeline article:nth-child(3) {
  animation-delay: 520ms;
}

.timeline span {
  position: relative;
  z-index: 1;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(50px, 6vw, 88px);
  line-height: 0.85;
  color: var(--white);
}

.timeline h3 {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 0 auto;
  font-size: clamp(21px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
}

.nowrap {
  max-width: none;
  white-space: nowrap;
}

.timeline h3.nowrap {
  width: max-content;
  max-width: min(92vw, 440px);
  font-size: clamp(19px, 1.7vw, 28px);
}

.timeline-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(76%, 240px);
  height: 128px;
  object-fit: contain;
  margin: 0 auto 2px;
  opacity: 0.94;
  animation: crest-pulse 4.8s ease-in-out infinite;
}

.timeline-logo-rings {
  width: min(72%, 220px);
  height: 128px;
}

.timeline-logo-fifa {
  width: min(68%, 210px);
  height: 128px;
}

.timeline-logo-mwc {
  width: min(64%, 168px);
  height: 128px;
}

.timeline-logo-crest {
  border-radius: 50%;
}

@keyframes timeline-float {
  50% {
    transform: translateY(-8px);
  }
}

@keyframes crest-pulse {
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.mwc-reveal {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.mwc-video,
.mwc-overlay {
  position: absolute;
  inset: 0;
}

.mwc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transform: translate3d(0, calc(var(--mwc-parallax, 0) * 1px), 0) scale(calc(1.03 + var(--mwc-scale, 0) * 0.03));
  will-change: transform;
}

.mwc-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.28)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94), transparent 52%);
}

.mwc-copy {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.mwc-logo {
  display: block;
  width: clamp(92px, 12vw, 150px);
  height: auto;
  margin: 0 0 clamp(28px, 4vw, 48px);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.16);
}

.mwc-wordmark {
  width: min(100%, clamp(520px, 70vw, 880px));
  margin: 0 0 clamp(24px, 3.5vw, 40px);
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.12));
}

.mwc-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2.4vw, 30px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.ecosystem {
  min-height: 148svh;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: clamp(90px, 14svh, 160px);
  background:
    radial-gradient(circle at 18% 30%, rgba(55, 165, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 50%, rgba(226, 65, 255, 0.14), transparent 24%),
    var(--black);
}

.ecosystem .section-heading {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 0;
  align-items: end;
  padding-top: clamp(66px, 8vw, 96px);
  margin-bottom: 0;
  pointer-events: none;
}

#ecosystem {
  display: block;
  scroll-margin-top: 172px;
}

.ecosystem-stage {
  position: sticky;
  top: 6svh;
  height: 78svh;
  width: min(100%, var(--max));
  display: grid;
  place-items: center;
  margin: 0 auto;
  perspective: 1500px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.ecosystem-core {
  position: relative;
  z-index: 0;
  display: grid;
  width: clamp(280px, 42vw, 620px);
  height: clamp(280px, 42vw, 620px);
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  opacity: 0.13;
  filter: grayscale(1) brightness(2.2) drop-shadow(0 0 90px rgba(255, 255, 255, 0.22));
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.ecosystem-core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.ecosystem-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-style: preserve-3d;
}

.ecosystem-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(88vw, 1120px);
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.54);
  transform: translate(-50%, -50%);
  transition: box-shadow 180ms ease, opacity 180ms ease;
  will-change: transform, opacity;
  cursor: pointer;
}

.ecosystem-stage.is-dragging,
.work-stage.is-dragging {
  cursor: grabbing;
}

.ecosystem-panel.is-front {
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72), 0 0 42px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.ecosystem-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  -webkit-user-drag: none;
  user-select: none;
}

.ecosystem-panel--louder img {
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.ecosystem-panel span {
  display: none;
}

.work {
  min-height: 150svh;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: clamp(96px, 16svh, 180px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 24%),
    var(--black);
}

.work .section-heading {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 0;
  align-items: end;
  padding-top: clamp(66px, 8vw, 96px);
  margin-bottom: 0;
  pointer-events: none;
}

.work-stage {
  position: sticky;
  top: 6svh;
  height: 78svh;
  width: min(100%, var(--max));
  display: grid;
  place-items: center;
  margin: 0 auto;
  perspective: 1400px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.work-core {
  position: relative;
  z-index: 3;
  width: clamp(120px, 14vw, 190px);
  height: clamp(120px, 14vw, 190px);
  border-radius: 50%;
  opacity: 0.72;
  perspective: 900px;
  filter: drop-shadow(0 0 48px rgba(255, 255, 255, 0.2));
}

.work-core .coin-globe,
.bottom-globe .coin-globe {
  width: 100%;
  height: 100%;
}

.work-orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.work-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(88vw, 1120px);
  min-height: min(62svh, 680px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.54);
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  cursor: pointer;
  transition: box-shadow 180ms ease, opacity 180ms ease;
}

.work-card.is-front {
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72), 0 0 42px rgba(255, 255, 255, 0.12);
}

.work-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.work-card-media-contain {
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  background: #050505;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.84));
}

.work-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(26px, 4vw, 54px);
}

.work-card-content p {
  max-width: 680px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.work-card-content h3 {
  font-size: clamp(26px, 3.3vw, 48px);
}

.video-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-card:not(.is-front) .video-toggle {
  opacity: 0.58;
}

.video-toggle::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--black);
}

.video-toggle.is-playing::before,
.video-toggle.is-playing::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 5px;
  height: 18px;
  background: var(--black);
}

.video-toggle.is-playing::before {
  left: 17px;
  border: 0;
}

.video-toggle.is-playing::after {
  left: 27px;
}

.manifesto {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 172px;
  background: var(--black);
}

.manifesto-title {
  margin: 0 0 clamp(24px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.manifesto-line {
  max-width: 1050px;
  margin: 0 0 clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(36px, 5.3vw, 72px);
  line-height: 0.92;
}

.closing {
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
  text-align: center;
}

.closing-inner {
  max-width: 1050px;
}

.quote-small,
.quote-name {
  max-width: 820px;
  margin: 0 auto clamp(22px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.28;
}

.quote-large {
  max-width: 1180px;
  margin: 0 auto clamp(22px, 4vw, 44px);
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 0.9;
}

.quote-name {
  margin-bottom: clamp(28px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-question {
  margin: 0 auto;
  color: var(--white);
  font-family: "Arial Narrow", "Helvetica Neue Condensed Bold", Impact, sans-serif;
  font-size: clamp(38px, 5.2vw, 76px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  scroll-margin-top: 172px;
}

.bottom-globe {
  width: clamp(160px, 26vw, 320px);
  height: clamp(160px, 26vw, 320px);
  margin: clamp(54px, 9vw, 96px) auto 0;
  perspective: 900px;
}

.contact-dialog {
  width: min(calc(100% - 32px), 780px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(22px);
}

.contact-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.12), transparent 28%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.contact-modal {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  text-align: left;
}

.contact-modal h2 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.9;
}

.contact-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.contact-form input {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 148px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.contact-form-wide,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-submit {
  justify-self: start;
}

.video-dialog {
  width: min(calc(100% - 28px), 1180px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 34px 140px rgba(0, 0, 0, 0.86);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.video-modal {
  position: relative;
  padding: clamp(42px, 5vw, 68px) clamp(14px, 2vw, 22px) clamp(14px, 2vw, 22px);
}

.video-close {
  top: 14px;
  right: 14px;
}

.modal-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 78svh;
  border-radius: var(--radius);
  background: #000;
  object-fit: contain;
}

.coin-globe {
  position: relative;
  display: block;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: globe-medal-spin 11s linear infinite;
}

.coin-globe::before {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(124, 132, 142, 0.48) 38%, rgba(18, 20, 24, 0.96) 50%, rgba(124, 132, 142, 0.48) 62%, rgba(255, 255, 255, 0.94));
  box-shadow:
    inset -20px 0 28px rgba(0, 0, 0, 0.72),
    inset 16px 0 24px rgba(255, 255, 255, 0.42),
    0 0 44px rgba(255, 255, 255, 0.18);
  transform: translateZ(-10px);
}

.coin-globe::after {
  content: "";
  position: absolute;
  inset: 3%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.08),
    inset 0 0 34px rgba(0, 0, 0, 0.55);
  transform: translateZ(8px);
  pointer-events: none;
}

.coin-globe img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: globe-spin 11s linear infinite;
  filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.2));
  transform: translateZ(12px);
  backface-visibility: hidden;
}

@keyframes globe-spin {
  to {
    transform: translateZ(12px) rotateY(-360deg);
  }
}

@keyframes globe-medal-spin {
  to {
    transform: rotateY(360deg);
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.62);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-video {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .brand img {
    width: 146px;
  }

  .section-heading,
  .hero-lines,
  .timeline,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero-lines span {
    min-height: 54px;
  }

  .timeline article {
    min-height: 190px;
  }

  .producer-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ecosystem {
    min-height: 150svh;
    padding-bottom: 110px;
  }

  .ecosystem .section-heading {
    min-height: 0;
    padding-top: 74px;
  }

  .ecosystem-core {
    width: clamp(220px, 58vw, 360px);
    height: clamp(220px, 58vw, 360px);
  }

  .ecosystem-panel {
    width: min(92vw, 720px);
  }

  .work {
    min-height: 152svh;
    padding-bottom: 120px;
  }

  .work-card {
    width: min(92vw, 720px);
    min-height: min(58svh, 520px);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand img {
    width: 120px;
  }

  .hero-content {
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 78px);
    line-height: 0.84;
  }

  h2 {
    font-size: clamp(38px, 12vw, 62px);
    line-height: 0.9;
  }

  .turning-point h2,
  .manifesto-line {
    font-size: clamp(40px, 12vw, 66px);
    line-height: 0.9;
  }

  .timeline span {
    font-size: clamp(58px, 18vw, 86px);
  }

  .timeline h3 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .timeline h3.nowrap {
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .work-card-content h3 {
    font-size: clamp(26px, 8vw, 42px);
  }

  .quote-small,
  .quote-name {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .quote-large {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 0.9;
  }

  .quote-question {
    font-size: clamp(34px, 10vw, 54px);
  }

  .producer-strip img {
    width: min(100%, 184px);
    height: 64px;
  }

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

  .contact-modal {
    padding-top: 58px;
  }

  .work-card {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }
}
