/* Base */
:root {
  --cyan: #06b6d4;
  --cyan-h: #0891b2;
  --cyan-lt: #e9fbff;
  --navy: #082030;
  --navy2: #0c2a3e;
  --text: #1e3244;
  --muted: #557080;
  --light: #90a8b8;
  --bg: #ffffff;
  --bg-alt: #f6fafb;
  --border: #daeaf0;
  --radius: 12px;
  --shadow: 0 1px 0 rgba(8, 32, 48, 0.05);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --nav-mobile: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* Focus */
:where(a, button):focus-visible {
  outline: 3px solid rgba(6, 182, 212, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}

img {
  max-width: 100%;
  height: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 9999;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 500;
  isolation: isolate;
  background: rgba(8, 32, 48, 0.72);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out),
    border-color 320ms var(--ease-out);
}

.top--scrolled {
  background: rgba(8, 32, 48, 0.92);
  border-bottom-color: rgba(6, 182, 212, 0.14);
  box-shadow:
    0 12px 40px rgba(8, 32, 48, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.top__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.85;
}

.top__glow::before,
.top__glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.top__glow::before {
  width: 180px;
  height: 80px;
  left: 8%;
  top: -40px;
  background: rgba(6, 182, 212, 0.22);
  animation: navGlow 8s ease-in-out infinite alternate;
}

.top__glow::after {
  width: 120px;
  height: 60px;
  right: 18%;
  top: -28px;
  background: rgba(34, 211, 238, 0.12);
  animation: navGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes navGlow {
  from {
    transform: translateX(0) scale(1);
  }
  to {
    transform: translateX(24px) scale(1.08);
  }
}

.top__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  transition: height 320ms var(--ease-out);
}

.top--scrolled .top__inner {
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 1;
}

.brand > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: transform 280ms var(--ease-out), opacity 280ms var(--ease-out);
}

.brand:hover .brand__logo {
  transform: scale(1.03) rotate(-1deg);
}

.brand__sep {
  width: 2px;
  height: 28px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(6, 182, 212, 0.55) 35%,
    rgba(255, 255, 255, 0.2) 65%,
    transparent
  );
}

.brand__title {
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(110deg, #67e8f9 0%, var(--cyan) 45%, #a5f3fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: brandShine 6s linear infinite;
}

@keyframes brandShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 2px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.04) inset;
}

.nav__indicator {
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: calc(100% - 10px);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.2);
  box-shadow:
    0 0 0 1px rgba(6, 182, 212, 0.28) inset,
    0 4px 14px rgba(6, 182, 212, 0.12);
  transform: none;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition:
    left 280ms var(--ease-out),
    width 280ms var(--ease-out),
    opacity 200ms var(--ease-out);
}

.nav.is-ready .nav__indicator {
  opacity: 1;
}

.nav__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 11px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 220ms var(--ease-out),
    transform 160ms var(--ease-out);
}

.nav__icon {
  font-size: 0.95em;
  width: 1.15em;
  text-align: center;
  opacity: 0.85;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav__link:hover .nav__icon,
.nav__link.is-active .nav__icon {
  opacity: 1;
}

.nav__link--ig {
  padding: 8px 10px;
}

.nav__link--ig .nav__icon {
  font-size: 1.05em;
}

.nav__ctaShort {
  display: none;
}

@media (min-width: 1081px) {
  .brand__sep,
  .brand__title {
    display: none;
  }

  .brand__logo {
    height: 42px;
  }

  .nav__link {
    padding: 8px 11px;
    font-size: 12px;
  }

  /* Desktop: Textlabels sichtbar, Icons aus */
  .nav__icon {
    display: none;
  }

  .nav__label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
  }

  .nav__ctaIcon {
    display: none;
  }

  .nav__ctaLong {
    display: inline;
  }

  .nav__ctaShort {
    display: none;
  }

  .nav__cta {
    padding: 9px 14px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav__link:hover {
    color: #fff;
    transform: translateY(-1px);
  }
}

.nav__link.is-active {
  color: #fff;
  font-weight: 700;
}

.nav__link:active {
  transform: scale(0.97);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 2px;
  background: linear-gradient(135deg, var(--cyan) 0%, #22d3ee 55%, #67e8f9 100%);
  background-size: 160% 160%;
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 8px 22px rgba(6, 182, 212, 0.28);
  transition:
    background-position 320ms var(--ease-out),
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 8px 22px rgba(6, 182, 212, 0.28);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.28) inset,
      0 10px 28px rgba(6, 182, 212, 0.38);
  }
}

.nav__cta:hover {
  background-position: 100% 100%;
  transform: translateY(-2px) scale(1.02);
}

.navbtn {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  padding: 9px 14px;
  border-radius: 999px;
  font: inherit;
  transition:
    background 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    transform 200ms var(--ease-out);
}

.navbtn:hover {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.35);
  transform: translateY(-1px);
}

.navbtn__bars {
  width: 18px;
  height: 12px;
  display: inline-block;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) 0 0/100% 2px,
    linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) 0 50%/100% 2px,
    linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) 0 100%/100% 2px;
  background-repeat: no-repeat;
}

.navbtn__label {
  font-size: 13px;
  font-weight: 700;
}

/* Section waves */
.wave {
  display: block;
  width: 100%;
  margin-top: clamp(36px, 5vw, 52px);
  line-height: 0;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.wave svg {
  display: block;
  width: 100%;
  height: clamp(44px, 5.5vw, 64px);
  vertical-align: middle;
}

.wave path {
  fill: var(--wave-fill, #fff);
}

@media (prefers-reduced-motion: no-preference) {
  .wave svg {
    animation: waveBob 7s ease-in-out infinite alternate;
  }
}

@keyframes waveBob {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(4px);
  }
}

.wave--to-light {
  --wave-fill: var(--bg);
}

.wave--to-alt {
  --wave-fill: var(--bg-alt);
}

.wave--to-cyan {
  --wave-fill: var(--cyan-lt);
}

.wave--to-navy {
  --wave-fill: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  padding: 68px 0 0;
  overflow: hidden;
}

.hero__snow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero__flake {
  position: absolute;
  top: -6%;
  left: var(--x, 50%);
  font-size: var(--size, 8px);
  line-height: 1;
  opacity: var(--opacity, 0.5);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
  animation: heroSnowFall var(--duration, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
  user-select: none;
}

.hero__flake--cyan {
  color: rgba(186, 245, 255, 0.92);
  text-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

@keyframes heroSnowFall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(var(--drift, 0px), 108vh, 0) rotate(var(--spin, 180deg));
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.hero > .wave {
  position: relative;
  z-index: 2;
}

@media (min-width: 981px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 44px;
  }
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kicker__line {
  width: 28px;
  height: 2px;
  background: var(--cyan);
  opacity: 0.9;
}

.h1 {
  margin: 0 0 14px;
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.accent {
  color: var(--cyan);
}

.lead {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  max-width: 55ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__countdown {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__countdown [data-countdown-days] {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn--cyan {
  background: var(--cyan);
  color: var(--navy);
  transition: background 180ms var(--ease-out), transform 160ms var(--ease-out);
}

.btn--cyan:hover {
  background: #22d3ee;
  transform: translateY(-1px);
}

.btn--cyan:active {
  transform: scale(0.97);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition:
    border-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-1px);
}

.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.hero__logo {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(8, 32, 48, 0.16));
}

.facts {
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.facts__item {
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.05);
}

.facts__key {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.facts__val {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

/* Sections */
.section {
  position: relative;
  padding: clamp(56px, 8vw, 80px) 0 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section--cube {
  background:
    radial-gradient(120% 140% at 10% 5%, rgba(6, 182, 212, 0.09), transparent 48%),
    linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
}

.cubeScrollZone {
  height: clamp(180vh, 240vh, 280vh);
}

.cubeScrollZone__sticky {
  position: sticky;
  top: 72px;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  padding: 16px 0 24px;
}

.section--cube .section__inner {
  width: 100%;
  padding-bottom: 0;
}

.cubeSection {
  display: grid;
  gap: 28px;
  align-items: center;
  width: 100%;
}

.cubeStage {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 8px 0;
}

.cubeScrollHint {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--light);
}

.cubeScene {
  position: relative;
  perspective: 900px;
  perspective-origin: 50% 50%;
  display: grid;
  place-items: center;
  padding: 16px 0 24px;
  transform-style: preserve-3d;
}

.cubeScene::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: min(72%, 220px);
  height: 28px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(8, 32, 48, 0.22) 0%, transparent 72%);
  pointer-events: none;
  filter: blur(2px);
}

.cube {
  --cube-size: clamp(200px, 32vw, 270px);
  --cube-depth: calc(var(--cube-size) / 2);
  width: var(--cube-size);
  height: var(--cube-size);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  transform: rotateY(0deg);
  will-change: transform;
}

.cube__face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(6, 182, 212, 0.08) inset,
    0 18px 36px rgba(8, 32, 48, 0.2);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #fff;
}

.cube__face img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #f8fdff;
}

.cube__face--front {
  transform: rotateY(0deg) translateZ(var(--cube-depth));
}

.cube__face--back {
  transform: rotateY(180deg) translateZ(var(--cube-depth));
}

.cube__face--right {
  transform: rotateY(90deg) translateZ(var(--cube-depth));
}

.cube__face--left {
  transform: rotateY(-90deg) translateZ(var(--cube-depth));
}

.cubeDots {
  display: flex;
  gap: 8px;
}

.cubeDots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.cubeDots span.is-active {
  background: var(--cyan);
  transform: scale(1.15);
}

.cubeCopy .h2 {
  margin-bottom: 10px;
}

@media (min-width: 900px) {
  .cubeSection {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tag::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--cyan);
}

.h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy2);
}

.h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy2);
}

.p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 72ch;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.grid--arche {
  grid-template-columns: 1fr;
  align-items: center;
}

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

.callout {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 14px 0 10px;
}

.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.stat:hover {
  transform: translateY(-1px);
  border-color: rgba(6, 182, 212, 0.28);
}

.stat__n {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--cyan-h);
  line-height: 1.1;
}

.stat__l {
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}

.callout__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--light);
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.eventIntro {
  max-width: 68ch;
  margin-bottom: 0;
}

.eventList {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.eventList__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px 14px 44px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 600;
}

.eventList__item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at center, var(--cyan) 0 42%, transparent 44%),
    rgba(6, 182, 212, 0.18);
  flex-shrink: 0;
}

.eventPromise {
  margin-top: 18px;
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.08), rgba(6, 182, 212, 0.02));
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: 16px;
  padding: 18px 20px;
}

.eventPromise .h3 {
  margin-bottom: 8px;
}

.eventPromise .p {
  margin-bottom: 12px;
}

.artistGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .artistGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.artistCard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 10px 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.artistCard:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.34);
  box-shadow: 0 12px 24px rgba(8, 32, 48, 0.08);
}

.artistCard__media {
  margin: 0 auto 8px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #22d3ee, #0891b2);
  box-shadow: 0 6px 16px rgba(8, 32, 48, 0.12);
  overflow: hidden;
}

.artistCard__media img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.artistCard .h3 {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.3;
}

@media (min-width: 820px) {
  .eventList {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.35);
}

.card--navy {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.18);
}

.card--navy .h3 {
  color: #fff;
}

.card--navy .p {
  color: rgba(255, 255, 255, 0.68);
}

.card__ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cyan-lt);
  color: var(--cyan-h);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card--navy .card__ico {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
}

.archebox {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  place-items: center;
}

.link {
  color: var(--cyan-h);
  text-decoration: none;
  font-weight: 700;
}

.link:hover {
  text-decoration: underline;
}

/* Donate */
.donate {
  position: relative;
  background:
    radial-gradient(90% 130% at 85% 10%, rgba(6, 182, 212, 0.18), transparent 46%),
    radial-gradient(120% 140% at 8% 0%, rgba(8, 32, 48, 0.1), transparent 55%),
    linear-gradient(165deg, #effbff 0%, #dff7ff 100%);
  padding-bottom: 0;
}

.donate__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) 24px clamp(36px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.donateInfo {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(8, 32, 48, 0.1);
  padding: 22px 20px;
}

.donate__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-h);
  margin-bottom: 10px;
}

.donate__h {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--navy2);
  line-height: 1.2;
}

.donate__p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 68ch;
}

.donateList {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.donateList li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.65;
}

.donateList li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan-h);
  font-weight: 900;
}

.iban {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(8, 32, 48, 0.12);
}

.iban--lift {
  background: #fff;
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-top: 3px solid var(--cyan);
  border-radius: 20px;
  box-shadow:
    0 28px 56px rgba(8, 32, 48, 0.18),
    0 12px 24px rgba(6, 182, 212, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transform: translateY(-8px);
  position: relative;
  z-index: 2;
}

@media (min-width: 980px) {
  .iban--lift {
    transform: translateY(-12px) scale(1.015);
  }
}

.iban__row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 10px;
  padding: 14px 14px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.iban__row:first-child {
  border-top: none;
}

@media (min-width: 980px) {
  .donate__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }

  .donateInfo,
  .iban--lift {
    min-height: 100%;
  }
}

.iban__k {
  color: var(--light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.iban__v {
  color: var(--text);
  font-weight: 700;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.02em;
}

.copy {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.copy:hover {
  border-color: rgba(6, 182, 212, 0.45);
  color: var(--cyan-h);
}

.supporters {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
}

.supporters__logos {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.supporters__logo {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
}

.supporters__logo.is-inv {
  background: var(--navy);
}

.supporters__logo.is-inv img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.supporters__logo.is-white {
  background: var(--bg-alt);
}

/* Impact */
.impact {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 18px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--cyan);
  box-shadow: var(--shadow);
}

.impact__head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.impact .h3 {
  color: var(--navy2);
}

.impact__sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.stats--impact {
  margin-top: 10px;
}

.stat--impact {
  background: var(--bg-alt);
  border-color: var(--border);
}

.stat--impact:hover {
  border-color: rgba(6, 182, 212, 0.35);
}

.stat--impact .stat__n {
  color: var(--cyan-h);
  font-size: 1.7rem;
}

.stat--impact .stat__l {
  color: var(--muted);
}

/* spark bars removed by request */

.impact__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn--soft {
  background: var(--cyan-lt);
  border: 1px solid rgba(6, 182, 212, 0.22);
  color: var(--navy2);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.btn--soft:hover {
  transform: translateY(-1px);
  border-color: rgba(6, 182, 212, 0.35);
}

/* Past events timeline */
.timeline__intro {
  max-width: 62ch;
  margin-bottom: 8px;
}

.timeline {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 36px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: start;
}

.timeline__axis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-top: 4px;
}

.timeline__item:not(:last-child) .timeline__axis::after {
  content: "";
  position: absolute;
  top: 56px;
  bottom: -40px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--cyan) 0%, rgba(6, 182, 212, 0.15) 70%, transparent 100%);
}

.timeline__year {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy2);
  letter-spacing: -0.03em;
  line-height: 1;
}

.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px var(--cyan-lt);
  flex-shrink: 0;
}

.timeline__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  border-top: 3px solid var(--cyan);
  box-shadow: var(--shadow);
}

.timeline__head {
  margin-bottom: 8px;
}

.timeline__meta {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-h);
  letter-spacing: 0.02em;
}

.timeline__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.timelineGalleryToggle {
  margin-top: 14px;
}

.timelineGalleryToggle__summary {
  display: none;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.timelineGalleryToggle__summary::-webkit-details-marker {
  display: none;
}

/* FAQ (SEO / GEO) */
.section--faq {
  background: var(--bg);
}

.faqIntro {
  max-width: 62ch;
  margin-bottom: 20px;
}

.faqList {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faqItem {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  padding: 0 16px;
}

.faqItem__q {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  list-style: none;
}

.faqItem__q::-webkit-details-marker {
  display: none;
}

.faqItem__a {
  margin: 0 0 14px;
  padding-top: 0;
}

.contactAddress {
  font-style: normal;
  line-height: 1.65;
}

.timeline__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.timeline__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .timeline__photo:hover img {
    transform: scale(1.05);
  }
}

@media (max-width: 720px) {
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline__axis {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 0;
  }

  .timeline__item:not(:last-child) .timeline__axis::after {
    display: none;
  }

  .timelineGalleryToggle {
    margin-top: 12px;
  }

  .timelineGalleryToggle__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.22);
    background: var(--cyan-lt);
    color: var(--navy2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .timelineGalleryToggle__summary::after {
    content: "▾";
    font-size: 12px;
    color: var(--cyan-h);
    transition: transform 180ms var(--ease-out);
  }

  .timelineGalleryToggle[open] .timelineGalleryToggle__summary::after {
    transform: rotate(180deg);
  }

  .timelineGalleryToggle__summary span {
    color: var(--cyan-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .timelineGalleryToggle:not([open]) .timeline__gallery {
    display: none;
  }

  .timelineGalleryToggle .timeline__gallery {
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

@media (min-width: 721px) {
  .timelineGalleryToggle > .timeline__gallery {
    display: grid !important;
  }

  html.js .timeline__gallery[data-stagger] [data-stagger-item] {
    opacity: 1;
    transform: none;
  }
}

/* ── Ticket Section ──────────────────────────────────────────── */
.ticketGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}

@media (min-width: 900px) {
  .ticketGrid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.ticketHint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.charityNote {
  display: flex;
  align-items: flex-start;
  gap: 0.65em;
  margin-top: 1em;
  padding: 1em 1.25em;
  border-radius: 1em;
  background: linear-gradient(90deg, #e9f9f7 0, #fafdff 100%);
  box-shadow: 0 2px 16px rgba(0, 40, 80, 0.09);
}

.charityNote--ticket {
  margin-top: 1.1em;
}

.charityNote__icon {
  flex-shrink: 0;
  font-size: 1.3em;
  line-height: 1.2;
}

.charityNote__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
}

/* Stage: provides perspective + centers everything */
.ticketStage {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 28px 80px;
  perspective: 1200px;
  -webkit-perspective: 1200px;
  overflow: visible;
}

/* Float wrapper: permanent bobbing (starts after scroll reveal) */
.ticketFloat {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.ticketStage.is-in .ticketFloat {
  animation: ticketBob 3.8s ease-in-out infinite;
}

@keyframes ticketBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* The card — all transforms driven by JS */
.ticketCard {
  position: relative;
  /* Avoid relying on `aspect-ratio` since both faces are absolute-positioned.
     Some browsers collapse height to 0 in that combo. */
  width: clamp(320px, 78vw, 440px);
  height: clamp(192px, 46vw, 264px); /* 5:3 ratio */
  max-width: 100%;
  margin-inline: auto;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-12deg);
  border-radius: 16px;
  cursor: pointer;
  outline: none;
}

.ticketCard--flat {
  transform: rotateY(0deg);
}

.ticketCard:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}

/* Both faces */
.ticketCard__face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.50),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.ticketCard__face--front {
  transform: translateZ(1px);
}

.ticketCard__face--back {
  transform: rotateY(180deg) translateZ(1px);
}

/* Images: edge-to-edge, no bleed */
.ticketCard__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Glare overlay — position driven by --gx / --gy from JS */
.ticketCard__glare {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 60% at var(--gx, 30%) var(--gy, 25%),
    rgba(255, 255, 255, 0.26) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 70%
  );
  mix-blend-mode: overlay;
}

/* Blob shadow beneath — softens when card lifts on hover */
.ticketShadow {
  position: absolute;
  inset: auto 14% -12px 14%;
  height: 32px;
  background: rgba(4, 14, 26, 0.55);
  filter: blur(26px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.72;
  transition: filter 600ms ease, opacity 600ms ease, inset 600ms ease;
}

.ticketStage:hover .ticketShadow {
  inset: auto 8% -20px 8%;
  filter: blur(42px);
  opacity: 0.45;
}

@media (prefers-reduced-motion: reduce) {
  .ticketFloat {
    animation: none !important;
  }
  .ticketCard {
    transform: none !important;
    transition: none !important;
  }
}

/* Supporters carousel */
.carousel {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  max-width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 12px;
  width: max-content;
  will-change: transform;
}

.carousel__track > * {
  flex: 0 0 auto;
}

.logoCard {
  display: grid;
  place-items: center;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.logoCard:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.35);
}

.logoCard img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 220ms var(--ease-out), filter 220ms var(--ease-out);
}

.logoCard:hover img {
  opacity: 1;
  filter: none;
}

.logoCard--sponsor,
.logoCard--host {
  min-width: 200px;
  height: 72px;
  padding: 10px 18px;
  background: #fff;
  border-color: var(--border);
}

.logoCard--sponsor img,
.logoCard--host img {
  display: block;
  height: 44px;
  max-width: 168px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  mix-blend-mode: multiply;
}

.logoCard--host img {
  mix-blend-mode: normal;
}

.logoCard--sponsor:hover,
.logoCard--host:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 8px 20px rgba(8, 32, 48, 0.06);
}

.sponsors__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--light);
  line-height: 1.5;
}

/* Font Awesome helpers */
.icon--brand-ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 48%, #fcb045 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.instaDevice__chrome .icon--brand-ig,
.icon--on-dark.icon--brand-ig {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.tag--icon {
  gap: 8px;
}

.tag--icon::before {
  display: none;
}

.tag--icon .fa-instagram {
  font-size: 1.05em;
}

.btn {
  gap: 8px;
}

.contactCard .h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contactMapWrap .h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contactCard__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--cyan-lt);
  color: var(--cyan-h);
  font-size: 14px;
  flex-shrink: 0;
}

.contactCard--cta .contactCard__icon {
  background: rgba(6, 182, 212, 0.2);
}

/* Instagram (site + IG fusion) */
.section--insta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(95% 120% at 8% 0%, rgba(188, 24, 136, 0.07), transparent 52%),
    radial-gradient(90% 130% at 92% 15%, rgba(6, 182, 212, 0.22), transparent 50%),
    radial-gradient(120% 140% at 50% 100%, rgba(8, 32, 48, 0.06), transparent 55%),
    linear-gradient(168deg, #effbff 0%, var(--bg-alt) 48%, #e8f7fc 100%);
  padding-bottom: 0;
}

.insta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.insta__glow::before,
.insta__glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.insta__glow::before {
  width: 280px;
  height: 280px;
  right: -40px;
  top: 12%;
  background: rgba(220, 39, 67, 0.12);
}

.insta__glow::after {
  width: 320px;
  height: 320px;
  left: -60px;
  bottom: 8%;
  background: rgba(6, 182, 212, 0.16);
}

.instaLayout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 40px);
}

@media (min-width: 980px) {
  .instaLayout {
    grid-template-columns: 1fr 0.92fr;
    gap: 36px;
    align-items: center;
  }
}

.instaCopy .h2 {
  max-width: 14ch;
}

.instaAccent {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 48%, #fcb045 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.instaPerks {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.instaCopy__leadIcon {
  margin-right: 6px;
  color: var(--cyan-h);
}

.instaPerks__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 14px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
  box-shadow: 0 8px 22px rgba(8, 32, 48, 0.06);
}

.instaPerks__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--cyan-lt), #fff);
  color: var(--cyan-h);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.12);
}

.instaPerks__icon--ig {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.12));
  color: #c13584;
}

.instaCopy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn--insta {
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 48%, #fcb045 100%);
  box-shadow:
    0 10px 28px rgba(220, 39, 67, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    filter 180ms var(--ease-out);
}

.btn--insta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 14px 34px rgba(220, 39, 67, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.btn--insta:active {
  transform: scale(0.98);
}

.btn--insta .fa-instagram {
  font-size: 1.1em;
}

.instaDevice {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 980px) {
  .instaDevice {
    margin: 0 0 0 auto;
    max-width: 100%;
  }
}

.instaDevice__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--navy2) 0%, #123347 100%);
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(8, 32, 48, 0.14);
}

.instaDevice__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.instaDevice__brand .fa-instagram {
  font-size: 1.15em;
}

.instaDevice__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.14);
  border: 1px solid rgba(6, 182, 212, 0.35);
  white-space: nowrap;
}

.instaCard {
  position: relative;
  background: #fff;
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow:
    0 28px 56px rgba(8, 32, 48, 0.16),
    0 12px 24px rgba(6, 182, 212, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.instaCard::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #f09433, #dc2743, var(--cyan));
  z-index: 2;
}

.instaProfile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  padding: 18px 16px 12px;
  align-items: start;
  background: linear-gradient(180deg, #fff 0%, var(--cyan-lt) 140%);
}

.instaProfile__avatar {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    from 210deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    var(--cyan),
    #22d3ee,
    #f09433
  );
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(8, 32, 48, 0.12);
  transition: transform 220ms var(--ease-out);
}

.instaProfile__avatar:hover {
  transform: scale(1.04);
}

.instaProfile__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

.instaProfile__meta {
  min-width: 0;
}

.instaStats {
  display: flex;
  gap: 14px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.instaStats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 52px;
  gap: 2px;
}

.instaStats__ico {
  font-size: 11px;
  color: var(--light);
  margin-bottom: 2px;
}

.instaStats__ico--cyan {
  color: var(--cyan-h);
}

.instaStats__n {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy2);
  line-height: 1.1;
}

.instaStats__n.accent {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan-h);
}

.instaStats__l {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
}

.instaProfile__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 4px;
}

.instaProfile__user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy2);
}

.instaProfile__user .fa-instagram {
  font-size: 0.95em;
}

.instaFollow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.25);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.instaFollow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.32);
}

.instaProfile__name {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
}

.instaProfile__name .fa-star {
  color: #f59e0b;
  font-size: 0.85em;
}

.instaProfile__bio {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.instaChip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.instaChip .fa-solid {
  font-size: 0.85em;
  color: var(--cyan-h);
}

.instaTabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.instaTabs__item--muted {
  opacity: 0.45;
  pointer-events: none;
}

.instaTabs__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}

.instaTabs__item--active {
  color: var(--cyan-h);
  border-top: 2px solid var(--cyan);
  margin-top: -1px;
}

.instaGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: linear-gradient(180deg, #fff 0%, var(--cyan-lt) 100%);
}

.instaGrid__item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8f2f6;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(8, 32, 48, 0.08);
}

.instaGrid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms var(--ease-out);
}

.instaGrid__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, rgba(8, 32, 48, 0.55), rgba(131, 58, 180, 0.35));
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
  pointer-events: none;
}

.instaGrid__overlay .fa-instagram {
  font-size: 1.65rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transform: scale(0.9);
  transition: transform 280ms var(--ease-out);
}

.instaGrid__item:hover .instaGrid__overlay .fa-instagram,
.instaGrid__item:focus-visible .instaGrid__overlay .fa-instagram {
  transform: scale(1);
}

.instaGrid__item:hover img,
.instaGrid__item:focus-visible img {
  transform: scale(1.06);
}

.instaGrid__item:hover .instaGrid__overlay,
.instaGrid__item:focus-visible .instaGrid__overlay {
  opacity: 1;
}

.instaGrid__item:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  z-index: 1;
}

.instaCard__foot {
  padding: 12px 16px 16px;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--border);
}

.instaCard__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan-h);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

.instaCard__link .fa-arrow-up-right-from-square {
  font-size: 0.85em;
  opacity: 0.75;
}

.instaCard__link:hover {
  color: var(--navy2);
}

@media (min-width: 640px) {
  .instaProfile__avatar {
    width: 88px;
    height: 88px;
  }

  .instaProfile {
    padding: 20px 18px 14px;
    gap: 16px 20px;
  }

  .instaStats {
    gap: 18px;
  }
}

@media (max-width: 479px) {
  .instaProfile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instaProfile__avatar {
    margin: 0 auto;
  }

  .instaStats {
    justify-content: center;
  }

  .instaProfile__row {
    justify-content: center;
  }
}

.section--contactNew {
  position: relative;
}

.contactLayout {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

@media (min-width: 981px) {
  .contactLayout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
  }
}

.contactCards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contactCard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.contactCard .p {
  margin-bottom: 0;
}

.contactCard--cta {
  border-color: rgba(6, 182, 212, 0.28);
  background: linear-gradient(150deg, #fff, var(--cyan-lt));
}

.contactMapWrap {
  background: linear-gradient(155deg, #fff, var(--cyan-lt));
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.contactMapWrap .h3 {
  margin-bottom: 0;
}

.contactMapWrap .p {
  margin-bottom: 4px;
  flex: 1;
}

.contactMapActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contactMapActions .btn {
  flex: 1 1 auto;
  min-width: min(100%, 220px);
}

.contactMapNote {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 600;
}

/* Sponsors (clean horizontal rails) */
.supporters--rails {
  margin-top: 18px;
  overflow: hidden;
}

.supportersHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.supportersHead__copy .p {
  margin-bottom: 0;
}

.sponsorRails {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.sponsorRailBlock {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sponsorRailBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.sponsorRailTitle {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
}

.sponsorRailControls {
  display: none;
}

.railBtn {
  appearance: none;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  color: var(--navy2);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.railBtn:hover {
  transform: translateY(-1px);
  border-color: rgba(6, 182, 212, 0.35);
  background: #fff;
}

.railBtn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.sponsorRail {
  overflow: hidden;
  padding: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.sponsorMarquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: sponsorMarquee 70s linear infinite;
}

.sponsorMarquee__track--reverse {
  animation-direction: reverse;
}

.sponsorMarquee__set {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 10px;
}

.sponsorRail:hover .sponsorMarquee__track {
  animation-play-state: paused;
}

@keyframes sponsorMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.sponsorChip {
  flex: 0 0 auto;
  height: 68px;
  width: clamp(128px, 14vw, 160px);
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.sponsorChip__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
  .sponsorChip:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 10px 24px rgba(8, 32, 48, 0.08);
  }
}

.sponsorChip img {
  display: block;
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

@media (max-width: 560px) {
  .supportersHead {
    align-items: stretch;
  }
  .supportersHead .btn {
    width: 100%;
    justify-content: center;
  }
  .sponsorRailTitle {
    display: none;
  }
}

.logoCard--cta {
  background: var(--cyan-lt);
  border-color: rgba(6, 182, 212, 0.3);
  align-content: center;
  gap: 4px;
}

.logoCard__ctaTitle {
  font-weight: 900;
  color: var(--navy2);
}

.logoCard__ctaSub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

.footer__logo--inv {
  opacity: 0.45;
}

.footer__meta {
  min-width: 260px;
  text-align: center;
}

.footer__p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
}

.footer__link:hover {
  color: var(--cyan);
}

.footer__dot {
  margin: 0 8px;
  opacity: 0.45;
}

/* Legal pages */
.legal {
  margin-top: 16px;
}

.legal .h3 {
  margin-top: 18px;
}

.legal--long .h3 {
  margin-top: 26px;
}

.legal a.link {
  word-break: break-word;
}

/* Mobile */
@media (max-width: 980px) {
  .section {
    padding-top: clamp(42px, 10vw, 56px);
  }

  .section__inner {
    padding: 0 18px;
  }

  .wave {
    margin-top: 26px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero__actions,
  .impact__cta,
  .instaCopy__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__actions .btn,
  .impact__cta .btn,
  .instaCopy__actions .btn {
    width: 100%;
  }

  .hero__panel {
    align-items: stretch;
  }

  .eventList__item {
    padding: 14px 16px 14px 44px;
  }

  .contactCard,
  .donateInfo {
    padding: 14px 14px;
  }

  .timeline__card {
    padding: 14px 14px 12px;
  }

  .ticketGrid {
    overflow: visible;
  }

  .ticketStage {
    padding: 20px 0 32px;
    perspective: 900px;
    -webkit-perspective: 900px;
    overflow: visible;
    width: 100%;
    min-height: 200px;
  }

  .ticketFloat {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .ticketCard {
    width: 100%;
    max-width: 360px;
    height: auto;
    min-height: 192px;
    aspect-ratio: 5 / 3;
  }

  .ticketCard--flat {
    transform: rotateY(0deg);
  }

  .instaLayout {
    gap: 18px;
  }

  .instaDevice__chrome {
    padding: 9px 10px;
    border-radius: 12px 12px 0 0;
  }

  .instaProfile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instaProfile__avatar {
    margin: 0 auto;
  }

  .instaStats,
  .instaProfile__row {
    justify-content: center;
  }

  .instaGrid {
    gap: 3px;
    padding: 3px;
  }

  .supportersHead {
    display: grid;
    gap: 10px;
  }

  .supportersHead .btn {
    width: 100%;
  }

  .facts {
    max-width: none;
  }
  .iban__row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }
  .copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .top__inner {
    height: 72px;
    padding: 0 14px;
    gap: 8px;
  }

  .top--scrolled .top__inner {
    height: 72px;
  }

  .brand {
    max-width: calc(100% - 5.75rem);
    gap: 10px;
  }

  .brand__sep,
  .brand__title {
    display: none;
  }

  .brand__logo {
    height: 38px;
  }

  .section__inner {
    padding: 0 14px;
  }

  .h2 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
    line-height: 1.18;
  }

  .p {
    line-height: 1.75;
  }

  .stats--impact {
    gap: 8px;
  }

  .instaPerks__item {
    padding: 10px 11px;
    gap: 9px;
  }

  .instaPerks__icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 13px;
  }

  .instaProfile__name {
    justify-content: center;
  }

  .instaProfile__bio {
    justify-content: center;
  }

  .sponsorRailBar {
    gap: 8px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1080px) {
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 6.5rem);
    padding-right: 6px;
  }

  .brand__title {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(10px, 2.8vw, 12px);
    letter-spacing: 0.03em;
  }

  .navbtn__label {
    font-size: 12px;
  }

  .top {
    overflow: visible;
  }

  .top:has(.nav.is-open)::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(8, 32, 48, 0.55);
  }

  .top__inner {
    position: relative;
    z-index: 3;
    height: 72px;
    gap: 10px;
    overflow: visible;
    transition: none;
  }

  .top--scrolled .top__inner {
    height: 72px;
  }

  .navbtn {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 9px 12px;
    position: relative;
    z-index: 4;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(72px + env(safe-area-inset-top, 0px) + 8px);
    z-index: 5;
    max-height: calc(100dvh - 96px - env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(12, 42, 62, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.22);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    box-shadow:
      0 24px 48px rgba(8, 32, 48, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition:
      opacity 240ms var(--ease-out),
      transform 240ms var(--ease-out),
      visibility 0s linear 240ms;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition:
      opacity 240ms var(--ease-out),
      transform 240ms var(--ease-out),
      visibility 0s;
  }

  .nav__indicator {
    display: none;
  }

  .nav__link {
    justify-content: flex-start;
    gap: 12px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
    min-height: 44px;
  }

  .nav__label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
    border: 0;
    font-weight: 700;
  }

  .nav__icon {
    display: inline-block;
    flex-shrink: 0;
    font-size: 1.05em;
    width: 1.35em;
    text-align: center;
    opacity: 1;
  }

  .nav__link--ig {
    padding: 12px 14px;
  }

  .nav__ctaLong {
    display: inline;
  }

  .nav__ctaShort {
    display: none;
  }

  .nav__ctaIcon {
    display: inline-block;
    flex-shrink: 0;
    font-size: 1.05em;
  }

  .nav__cta {
    justify-content: center;
    gap: 10px;
    margin-left: 0;
    margin-top: 6px;
    padding: 13px 16px;
    font-size: 15px;
  }

  .nav__link.is-active {
    background: rgba(6, 182, 212, 0.16);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.22) inset;
  }
}

/* Scroll reveal */
/* If JS fails to run, content must still be visible. */
[data-animate] {
  opacity: 1;
}

html.js [data-animate] {
  opacity: 0;
  transition:
    opacity 480ms var(--ease-out),
    transform 480ms var(--ease-out),
    filter 480ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}

html.js [data-animate][data-anim="up"] {
  transform: translateY(22px);
}

html.js [data-animate][data-anim="left"] {
  transform: translateX(-24px);
}

html.js [data-animate][data-anim="right"] {
  transform: translateX(24px);
}

html.js [data-animate][data-anim="scale"] {
  transform: translateY(12px) scale(0.96);
}

html.js [data-animate][data-anim="clip"] {
  transform: translateY(10px);
  clip-path: inset(0 0 12% 0);
}

html.js [data-animate].is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
  filter: none;
}

/* Stagger groups */
[data-stagger] [data-stagger-item] {
  opacity: 1;
  transform: none;
}

html.js [data-stagger] [data-stagger-item] {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 420ms var(--ease-out),
    transform 420ms var(--ease-out);
}

html.js [data-stagger].is-in [data-stagger-item] {
  opacity: 1;
  transform: none;
}

html.js [data-stagger].is-in [data-stagger-item]:nth-child(1) {
  transition-delay: 0ms;
}
html.js [data-stagger].is-in [data-stagger-item]:nth-child(2) {
  transition-delay: 55ms;
}
html.js [data-stagger].is-in [data-stagger-item]:nth-child(3) {
  transition-delay: 110ms;
}
html.js [data-stagger].is-in [data-stagger-item]:nth-child(4) {
  transition-delay: 165ms;
}
html.js [data-stagger].is-in [data-stagger-item]:nth-child(5) {
  transition-delay: 220ms;
}

.tag,
.h2,
.donate__h {
  transition:
    opacity 400ms var(--ease-out),
    transform 400ms var(--ease-out);
}

[data-animate].is-in .tag,
[data-animate].is-in .h2,
[data-animate].is-in .donate__h {
  animation: titleRise 520ms var(--ease-out) both;
  animation-delay: var(--d, 0ms);
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-animate],
  [data-stagger] [data-stagger-item] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
  .wave svg {
    animation: none;
  }
  [data-animate].is-in .tag,
  [data-animate].is-in .h2,
  [data-animate].is-in .donate__h {
    animation: none;
  }
  .brand__title {
    animation: none;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--cyan);
  }
  .nav__cta {
    animation: none;
  }
  .top__glow::before,
  .top__glow::after {
    animation: none;
  }
  .sponsorMarquee__track {
    animation: none;
  }
  .hero__flake {
    animation: none;
    opacity: 0.35;
  }

}
