﻿:root {
  color-scheme: dark;
  --ink: #090a08;
  --ink-soft: #11130f;
  --paper: #f3f7e9;
  --muted: #aeb8a4;
  --acid: #caff2f;
  --aqua: #31e7d2;
  --coral: #ff5b4d;
  --pink: #ff4bb8;
  --sun: #ffd84d;
  --violet: #8f6cff;
  --line: rgba(243, 247, 233, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(202, 255, 47, 0.045) 0,
      rgba(202, 255, 47, 0.045) 1px,
      transparent 1px,
      transparent 92px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(49, 231, 210, 0.035) 0,
      rgba(49, 231, 210, 0.035) 1px,
      transparent 1px,
      transparent 92px
    ),
    var(--ink);
  color: var(--paper);
  font-family:
    "Bahnschrift",
    "DIN Alternate",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 91, 77, 0.12) 49% 50%, transparent 51%),
    linear-gradient(24deg, transparent 0 62%, rgba(49, 231, 210, 0.09) 63% 64%, transparent 65%),
    repeating-linear-gradient(157deg, transparent 0 22px, rgba(255, 216, 77, 0.08) 22px 24px, transparent 24px 64px);
  mix-blend-mode: screen;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--paper);
  background: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.motion-canvas,
.cursor-ring,
.scroll-progress {
  position: fixed;
  pointer-events: none;
}

.motion-canvas {
  inset: 0;
  z-index: 0;
  opacity: 0.78;
}

.scroll-progress {
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 4px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--acid), var(--coral), var(--aqua), var(--sun));
}

.cursor-ring {
  z-index: 40;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 247, 233, 0.85);
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition:
    opacity 160ms ease,
    width 160ms ease,
    height 160ms ease,
    border-color 160ms ease;
  mix-blend-mode: difference;
}

.page-shell {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(9, 10, 8, 0.84), rgba(9, 10, 8, 0));
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: 32px auto;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark__symbol {
  width: 32px;
  aspect-ratio: 1;
  border: 2px solid var(--acid);
  display: grid;
  place-items: center;
  color: var(--acid);
  font-size: 12px;
  line-height: 1;
  transform: rotate(-8deg);
  box-shadow: 4px 4px 0 var(--coral);
}

.brand-mark__text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-mark__text span:first-child {
  font-size: 0.82rem;
}

.brand-mark__text span:last-child {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  border: 1px solid rgba(243, 247, 233, 0.2);
  padding: 8px 11px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(9, 10, 8, 0.36);
  backdrop-filter: blur(16px);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

main {
  overflow: hidden;
}

section {
  position: relative;
  padding-inline: clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero {
  min-height: 88svh;
  padding-top: clamp(116px, 15vh, 164px);
  padding-bottom: clamp(42px, 8vh, 88px);
  display: grid;
  align-items: center;
}

.hero-grid {
  position: relative;
  min-height: min(680px, 74svh);
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 980px;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--acid);
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  position: relative;
  z-index: 2;
  width: min(100%, 1090px);
  margin-bottom: 26px;
  font-size: clamp(4.4rem, 15vw, 13.8rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  isolation: isolate;
}

.name-line {
  display: block;
}

.name-line:nth-child(2) {
  padding-left: clamp(0px, 8vw, 120px);
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
  text-stroke: 2px var(--paper);
}

.name-letter {
  display: inline-block;
}

.name-line:nth-child(2) .name-letter {
  background: linear-gradient(
    180deg,
    var(--paper) 0 var(--letter-fill, 0%),
    transparent var(--letter-fill, 0%) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-mascot {
  --mascot-x: 50%;
  --mascot-y: 36%;
  --mascot-rot: -8deg;
  --mascot-scale: 1;
  --mascot-shift-x: -50%;
  --mascot-shift-y: -70%;
  --mascot-z: 2;
  --mascot-w: clamp(30px, 3.8vw, 54px);
  --mascot-ratio: 253 / 416;
  position: absolute;
  left: var(--mascot-x);
  top: var(--mascot-y);
  z-index: var(--mascot-z);
  width: var(--mascot-w);
  aspect-ratio: var(--mascot-ratio);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translate(var(--mascot-shift-x), var(--mascot-shift-y)) rotate(var(--mascot-rot))
    scale(var(--mascot-scale));
  transform-origin: 50% 78%;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.46));
  transition:
    left 520ms cubic-bezier(0.18, 0.86, 0.24, 1),
    top 520ms cubic-bezier(0.18, 0.86, 0.24, 1),
    opacity 180ms ease,
    filter 180ms ease,
    transform 240ms cubic-bezier(0.2, 0.9, 0.24, 1.16);
}

.hero-mascot.is-ready {
  opacity: 0.96;
}

.hero-mascot.is-stuck {
  position: fixed;
  left: var(--stuck-x);
  top: var(--stuck-y);
  z-index: 35;
  transform: translate(-50%, -50%) rotate(var(--mascot-rot)) scale(var(--mascot-scale));
}

.hero-mascot:hover,
.hero-mascot:focus-visible {
  --mascot-scale: 1.12;
  opacity: 1;
  filter:
    drop-shadow(0 0 14px rgba(255, 132, 28, 0.4))
    drop-shadow(0 12px 16px rgba(0, 0, 0, 0.54));
  outline: none;
}

.hero-mascot:focus-visible {
  border-radius: 999px;
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

.hero-mascot.is-poofing {
  --mascot-scale: 0.22;
  opacity: 0;
  pointer-events: none;
  filter: blur(5px) drop-shadow(0 0 18px rgba(202, 255, 47, 0.8));
}

.mascot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transform-origin: 50% 78%;
  animation: mascot-breathe 2200ms ease-in-out infinite;
}

.mascot-poof {
  position: fixed;
  left: var(--poof-x);
  top: var(--poof-y);
  z-index: 36;
  width: 84px;
  height: 84px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.mascot-poof::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(243, 247, 233, 0.65);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 42%, rgba(202, 255, 47, 0.88) 0 7px, transparent 8px),
    radial-gradient(circle at 66% 38%, rgba(49, 231, 210, 0.78) 0 6px, transparent 7px),
    radial-gradient(circle at 48% 70%, rgba(255, 91, 77, 0.74) 0 8px, transparent 9px);
  animation: mascot-cloud 720ms ease-out forwards;
}

.mascot-poof span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--spark-color, var(--acid));
  box-shadow: 0 0 12px currentColor;
  transform: rotate(var(--spark-angle)) translateX(0) rotate(45deg);
  animation: mascot-spark 680ms ease-out forwards;
}

@keyframes mascot-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3%) scale(1.025);
  }
}

@keyframes mascot-cloud {
  to {
    opacity: 0;
    transform: scale(1.65) rotate(14deg);
    filter: blur(4px);
  }
}

@keyframes mascot-spark {
  to {
    opacity: 0;
    transform: rotate(var(--spark-angle)) translateX(var(--spark-distance)) rotate(45deg) scale(0.2);
  }
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  max-width: 830px;
}

.intro-panel p {
  margin-bottom: 0;
  color: rgba(243, 247, 233, 0.88);
  font-size: clamp(1.06rem, 2.1vw, 1.36rem);
  line-height: 1.48;
}

.live-word {
  position: relative;
  display: inline-block;
  color: var(--acid);
  min-width: 10ch;
}

.mini-scoreboard {
  width: 168px;
  border: 1px solid rgba(202, 255, 47, 0.52);
  background: rgba(202, 255, 47, 0.1);
  box-shadow: 8px 8px 0 rgba(255, 91, 77, 0.72);
  padding: 12px;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.mini-scoreboard span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.mini-scoreboard strong {
  display: block;
  margin-top: 8px;
  color: var(--acid);
  font-size: 1.64rem;
  line-height: 0.9;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.photo-slot {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(243, 247, 233, 0.25);
  background:
    linear-gradient(135deg, rgba(202, 255, 47, 0.18), transparent 36%),
    linear-gradient(45deg, rgba(255, 91, 77, 0.18), transparent 40%),
    repeating-linear-gradient(
      -45deg,
      rgba(243, 247, 233, 0.1) 0,
      rgba(243, 247, 233, 0.1) 2px,
      transparent 2px,
      transparent 14px
    ),
    rgba(17, 19, 15, 0.86);
  box-shadow: var(--shadow);
}

.photo-slot::before {
  content: attr(data-label);
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  color: var(--ink);
  background: var(--acid);
  padding: 7px 9px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.photo-slot::after {
  content: "Bild tauschen";
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: rgba(243, 247, 233, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-photo {
  position: absolute;
  right: min(4vw, 44px);
  top: 8%;
  width: min(34vw, 390px);
  min-width: 270px;
  height: min(54vh, 510px);
  transform: rotate(5deg);
}

.hero-ticket {
  position: absolute;
  right: min(26vw, 340px);
  bottom: 9%;
  width: min(29vw, 330px);
  min-width: 230px;
  min-height: 160px;
  transform: rotate(-9deg);
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.22), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 75, 184, 0.18) 0 7px, transparent 7px 18px),
    rgba(17, 19, 15, 0.92);
}

.paint-strike {
  position: absolute;
  left: 4%;
  top: 13%;
  width: min(58vw, 620px);
  height: 92px;
  transform: rotate(-6deg);
  border-top: 3px solid var(--coral);
  border-bottom: 3px solid var(--aqua);
  background:
    repeating-linear-gradient(90deg, rgba(202, 255, 47, 0.24) 0 11px, transparent 11px 28px);
  opacity: 0.84;
}

.court-arc {
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: min(60vw, 640px);
  aspect-ratio: 1;
  border: 2px solid rgba(243, 247, 233, 0.2);
  border-radius: 50%;
}

.court-arc::before,
.court-arc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(202, 255, 47, 0.32);
}

.court-arc::before {
  inset: 70px;
}

.court-arc::after {
  inset: 150px;
  border-color: rgba(255, 91, 77, 0.32);
}

.ticker-band {
  position: relative;
  z-index: 4;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%) rotate(-1.8deg);
  overflow: hidden;
  border-block: 1px solid rgba(243, 247, 233, 0.22);
  background: var(--paper);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  padding: 10px 18px;
  font-weight: 950;
  font-size: clamp(0.86rem, 2vw, 1.12rem);
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.link-map {
  padding-top: clamp(80px, 11vw, 138px);
  padding-bottom: clamp(70px, 10vw, 128px);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title {
  max-width: 880px;
  margin-bottom: 32px;
  font-size: clamp(2.3rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--paper);
  text-stroke: 1.4px var(--paper);
}

.orbit-board {
  position: relative;
  min-height: 690px;
  border-block: 1px solid rgba(243, 247, 233, 0.16);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(243, 247, 233, 0.15) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(243, 247, 233, 0.15) 50%, transparent 50.3%);
}

.orbit-board::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(243, 247, 233, 0.18);
  border-radius: 50%;
  animation: slow-spin 42s linear infinite;
}

.orbit-board::after {
  content: "";
  position: absolute;
  inset: 19%;
  border: 1px dashed rgba(202, 255, 47, 0.24);
  border-radius: 50%;
  animation: slow-spin 58s linear reverse infinite;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(38vw, 340px);
  min-width: 250px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  isolation: isolate;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
}

.orbit-core::before,
.orbit-core::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orbit-core::before {
  border: 2px solid var(--paper);
  background:
    repeating-linear-gradient(45deg, rgba(255, 216, 77, 0.16) 0 8px, transparent 8px 18px),
    rgba(9, 10, 8, 0.9);
  box-shadow: 12px 12px 0 var(--acid);
  animation: core-box-spin 13s linear infinite;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.orbit-core::after {
  inset: 18px;
  border: 1px solid rgba(202, 255, 47, 0.28);
  animation: core-box-spin 19s linear reverse infinite;
}

.orbit-core:hover::before,
.orbit-core:focus-visible::before,
.orbit-board.is-orbit-open .orbit-core::before {
  border-color: var(--acid);
  box-shadow:
    16px 16px 0 var(--acid),
    -10px -10px 0 rgba(255, 91, 77, 0.72);
  filter: saturate(1.4);
}

.orbit-core:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 16px;
}

.orbit-core > div {
  position: relative;
  z-index: 1;
}

.orbit-core strong {
  display: block;
  max-width: 9ch;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 0.84;
}

.orbit-core span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

@keyframes core-box-spin {
  to {
    transform: rotate(360deg);
  }
}

.portal {
  --tone: var(--aqua);
  --x: 10%;
  --y: 10%;
  --build-x: 0%;
  --build-y: 0%;
  --closed-rot: -12deg;
  --build-delay: 0ms;
  --portal-rot: 0deg;
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: clamp(190px, 22vw, 260px);
  min-height: 156px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--tone), var(--paper) 20%);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), color-mix(in srgb, var(--tone), transparent 62%), transparent 36%),
    rgba(9, 10, 8, 0.92);
  padding: 16px;
  box-shadow: 8px 8px 0 color-mix(in srgb, var(--tone), black 18%);
  opacity: 0;
  pointer-events: none;
  filter: blur(7px);
  transform: translate3d(var(--build-x), var(--build-y), 0) scale(0.42) rotate(var(--closed-rot));
  transition:
    opacity 280ms ease,
    filter 440ms ease,
    transform 560ms cubic-bezier(0.18, 0.86, 0.28, 1.16),
    border-color 180ms ease,
    color 180ms ease;
}

.orbit-board.is-orbit-open .portal {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(var(--portal-rot));
  transition-delay: var(--build-delay);
}

.orbit-board.is-orbit-open .portal:hover,
.orbit-board.is-orbit-open .portal:focus-visible {
  transform: translate3d(0, -8px, 0) scale(1.02) rotate(-2deg);
  border-color: var(--paper);
  transition-delay: 0ms;
}

.portal::before {
  content: attr(data-index);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--tone);
  font-weight: 950;
  transform: rotate(8deg);
}

.portal span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(1.22rem, 2.8vw, 1.78rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.portal small {
  color: color-mix(in srgb, var(--tone), var(--paper) 26%);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal:nth-of-type(1) {
  --tone: var(--acid);
  --x: 4%;
  --y: 12%;
  --build-x: 148%;
  --build-y: 118%;
  --closed-rot: -18deg;
  --build-delay: 20ms;
  --portal-rot: -1deg;
}

.portal:nth-of-type(2) {
  --tone: var(--coral);
  --x: 67%;
  --y: 7%;
  --build-x: -96%;
  --build-y: 146%;
  --closed-rot: 16deg;
  --build-delay: 90ms;
  --portal-rot: 1deg;
}

.portal:nth-of-type(3) {
  --tone: var(--aqua);
  --x: 76%;
  --y: 58%;
  --build-x: -124%;
  --build-y: -58%;
  --closed-rot: 14deg;
  --build-delay: 160ms;
  --portal-rot: -2deg;
}

.portal:nth-of-type(4) {
  --tone: var(--sun);
  --x: 9%;
  --y: 63%;
  --build-x: 132%;
  --build-y: -68%;
  --closed-rot: -14deg;
  --build-delay: 230ms;
  --portal-rot: 0.5deg;
}

.portal:nth-of-type(5) {
  --tone: var(--pink);
  --x: 39%;
  --y: 78%;
  --build-x: 16%;
  --build-y: -150%;
  --closed-rot: 12deg;
  --build-delay: 300ms;
  --portal-rot: -0.5deg;
}

.story-section {
  padding-top: clamp(70px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 112px);
  background:
    linear-gradient(180deg, rgba(243, 247, 233, 0.035), transparent 20% 70%, rgba(49, 231, 210, 0.035)),
    var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 110px;
}

.body-copy {
  color: rgba(243, 247, 233, 0.82);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: 1.7;
}

.life-layers {
  display: grid;
  gap: 22px;
}

.layer {
  position: relative;
  min-height: 340px;
  border-top: 1px solid rgba(243, 247, 233, 0.18);
  padding-top: 24px;
}

.layer h3 {
  margin-bottom: 10px;
  color: var(--acid);
  font-size: clamp(1.55rem, 4vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.layer p {
  max-width: 520px;
  color: rgba(243, 247, 233, 0.78);
  line-height: 1.64;
}

.layer .photo-slot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42vw, 330px);
  min-height: 190px;
  transform: rotate(var(--tilt, -3deg));
}

.layer:nth-child(2) h3 {
  color: var(--aqua);
}

.layer:nth-child(3) h3 {
  color: var(--sun);
}

.layer:nth-child(2) .photo-slot {
  --tilt: 3deg;
  right: 8%;
}

.layer:nth-child(3) .photo-slot {
  --tilt: -6deg;
  right: 14%;
}

.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  border: 1px solid rgba(243, 247, 233, 0.2);
  background: rgba(243, 247, 233, 0.16);
}

.stat-ribbon div {
  min-height: 118px;
  padding: 16px;
  background: rgba(9, 10, 8, 0.9);
}

.stat-ribbon span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-ribbon strong {
  display: block;
  margin-top: 15px;
  color: var(--paper);
  font-size: clamp(1.35rem, 3.8vw, 2.8rem);
  line-height: 0.9;
}

.gallery-section {
  padding-top: clamp(74px, 11vw, 140px);
  padding-bottom: clamp(76px, 12vw, 150px);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}

.gallery-head p {
  color: rgba(243, 247, 233, 0.78);
  line-height: 1.65;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 74px;
  gap: 12px;
}

.image-grid .photo-slot {
  min-height: 0;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.image-grid .photo-slot:hover {
  transform: translateY(-7px) rotate(1deg);
  filter: saturate(1.25);
}

.image-grid .photo-slot:nth-child(1) {
  grid-column: span 5;
  grid-row: span 5;
}

.image-grid .photo-slot:nth-child(2) {
  grid-column: span 3;
  grid-row: span 4;
}

.image-grid .photo-slot:nth-child(3) {
  grid-column: span 4;
  grid-row: span 6;
}

.image-grid .photo-slot:nth-child(4) {
  grid-column: span 4;
  grid-row: span 4;
}

.image-grid .photo-slot:nth-child(5) {
  grid-column: span 4;
  grid-row: span 5;
}

.image-grid .photo-slot:nth-child(6) {
  grid-column: span 4;
  grid-row: span 3;
}

.manifesto {
  padding-top: clamp(70px, 10vw, 126px);
  padding-bottom: clamp(78px, 11vw, 140px);
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(9, 10, 8, 0.09) 0 2px, transparent 2px 14px),
    var(--acid);
}

.manifesto .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.manifesto h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 9vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifesto p {
  margin-bottom: 22px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.62;
}

.manifesto a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid var(--ink);
  padding: 10px 14px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--coral);
}

.connect-section {
  min-height: 76svh;
  padding-top: clamp(80px, 11vw, 150px);
  padding-bottom: clamp(68px, 10vw, 130px);
}

.connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-link {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  border: 1px solid rgba(243, 247, 233, 0.2);
  background: rgba(17, 19, 15, 0.74);
  padding: 12px;
  overflow: hidden;
}

.contact-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--tone, var(--acid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.contact-link:hover::after,
.contact-link:focus-visible::after {
  transform: scaleX(1);
}

.contact-icon {
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--tone, var(--acid));
  font-size: 1rem;
  font-weight: 950;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(1.12rem, 2.8vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.contact-link em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(243, 247, 233, 0.16);
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(243, 247, 233, 0.64);
  font-size: 0.84rem;
}

.site-footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) rotate(0.001deg);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.scramble {
  display: inline-block;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    max-width: 390px;
  }

  .hero-grid {
    min-height: 760px;
  }

  .intro-panel,
  .story-grid,
  .gallery-head,
  .manifesto .section-inner,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .mini-scoreboard {
    width: 100%;
    max-width: 260px;
  }

  .hero-photo {
    top: 17%;
    right: 4%;
    width: min(46vw, 340px);
    min-width: 210px;
    height: 410px;
  }

  .hero-ticket {
    right: auto;
    left: 2%;
    bottom: 15%;
    width: min(48vw, 310px);
    min-width: 210px;
  }

  .orbit-board {
    min-height: 0;
    display: grid;
    gap: 14px;
    padding-block: 20px;
    background: none;
  }

  .orbit-board::before,
  .orbit-board::after,
  .orbit-core,
  .portal {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .orbit-core {
    width: 100%;
    min-width: 0;
    aspect-ratio: auto;
    min-height: 210px;
    margin-bottom: 12px;
  }

  .orbit-board:not(.is-orbit-open) .portal {
    display: none;
  }

  .orbit-board.is-orbit-open .portal {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    filter: none;
    transform: none;
    transition-delay: 0ms;
  }

  .portal {
    width: 100%;
    min-height: 132px;
  }

  .sticky-note {
    position: relative;
    top: auto;
  }

  .stat-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .image-grid .photo-slot {
    grid-column: span 3;
    grid-row: span 4;
  }
}

@media (max-width: 680px) {
  body::before {
    opacity: 0.22;
  }

  .site-header {
    position: absolute;
    flex-direction: column;
    padding-top: 16px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 91svh;
    padding-top: 170px;
  }

  .hero-grid {
    min-height: 720px;
    align-items: start;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 7rem);
  }

  .name-line:nth-child(2) {
    padding-left: 0;
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }

  .intro-panel {
    gap: 18px;
  }

  .hero-photo {
    top: 45%;
    right: 1%;
    width: 58vw;
    min-width: 200px;
    height: 310px;
  }

  .hero-ticket {
    left: 0;
    bottom: 2%;
    width: 58vw;
    min-width: 190px;
  }

  .paint-strike {
    top: 31%;
    width: 86vw;
    height: 68px;
  }

  .section-title {
    font-size: clamp(2.25rem, 13vw, 4.6rem);
  }

  .layer {
    min-height: 520px;
  }

  .layer .photo-slot {
    width: 88%;
    right: auto;
    left: 4%;
  }

  .stat-ribbon,
  .image-grid,
  .contact-link {
    grid-template-columns: 1fr;
  }

  .contact-link {
    gap: 10px;
  }

  .contact-link em {
    justify-self: start;
  }

  .image-grid {
    grid-auto-rows: 66px;
  }

  .image-grid .photo-slot {
    grid-column: span 1 !important;
    grid-row: span 4 !important;
  }

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

@media (pointer: coarse) {
  .cursor-ring {
    display: none;
  }
}

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

  .motion-canvas,
  .cursor-ring {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
