:root {
  --paper: #f8fbff;
  --paper-deep: #edf3fb;
  --ink: #09111d;
  --ink-soft: #415064;
  --blue: #217cb1;
  --blue-bright: #217cb1;
  --blue-soft: rgba(33, 124, 177, 0.16);
  --line: rgba(8, 30, 68, 0.12);
  --shadow: 0 30px 80px rgba(11, 27, 56, 0.16);
  --radius-xl: 38px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(33, 124, 177, 0.1) 0%, transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(33, 124, 177, 0.08) 0%, transparent 30%),
    linear-gradient(180deg, #fdfefe 0%, var(--paper) 38%, var(--paper-deep) 100%);
  line-height: 1.68;
  letter-spacing: 0.002em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background-image: repeating-linear-gradient(
    110deg,
    rgba(33, 124, 177, 0.03) 0,
    rgba(33, 124, 177, 0.03) 1px,
    transparent 1px,
    transparent 28px
  );
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 36%, rgba(33, 124, 177, 0.09) 0%, transparent 26%),
    radial-gradient(circle at 50% 74%, rgba(33, 124, 177, 0.05) 0%, transparent 24%);
}

a {
  color: inherit;
}

.page,
.site-footer,
.site-header {
  position: relative;
  z-index: 2;
}

.footsteps-background {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bg-step-pair {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: var(--pair-opacity, 1);
}

.bg-step {
  position: absolute;
  width: 18px;
  height: 32px;
  border-radius: 44% 44% 52% 52%;
  opacity: 0;
  transform-origin: center;
  animation: bgStepFade 3200ms ease-out forwards;
}

.bg-step::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -9px;
  width: 12px;
  height: 13px;
  border-radius: 50%;
  background: inherit;
}

.bg-step.left {
  background: var(--left-step-color, rgba(33, 124, 177, 0.34));
}

.bg-step.right {
  background: var(--right-step-color, rgba(26, 100, 144, 0.28));
}

@keyframes bgStepFade {
  0% {
    opacity: 0;
  }

  12% {
    opacity: 0.42;
  }

  60% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(8, 30, 68, 0.08);
}

.header-shell,
.footer-shell {
  width: min(1320px, 94vw);
  margin: 0 auto;
}

.header-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 220ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-bright), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 11, 18, 0.78) 0%, rgba(6, 11, 18, 0.34) 48%, rgba(6, 11, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 11, 18, 0.18) 0%, rgba(6, 11, 18, 0.6) 100%),
    url("./csm_Marktplatz_Wittenberg_c_WelterbeRegion-Uwe-Weigel_881030aacd.jpg");
  background-size: cover;
  background-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(140px, 22vh, 240px);
  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0) 0%,
    rgba(248, 251, 255, 0.12) 24%,
    rgba(248, 251, 255, 0.54) 62%,
    rgba(248, 251, 255, 0.94) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, 94vw);
  margin: 0 auto;
  padding: clamp(120px, 16vh, 180px) 0 clamp(170px, 22vh, 230px);
  color: #f7fbff;
}

.hero-inner > * {
  will-change: transform, opacity;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-bright);
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 18px;
  max-width: min(100%, 34rem);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(33, 124, 177, 0.34), rgba(255, 255, 255, 0.08)),
    rgba(6, 11, 18, 0.24);
  color: #f5fbff;
  text-shadow: 0 0 18px rgba(33, 124, 177, 0.5);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 34px rgba(33, 124, 177, 0.24),
    0 18px 40px rgba(3, 13, 28, 0.24);
  backdrop-filter: blur(12px);
}

.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8edcff;
  box-shadow: 0 0 18px rgba(142, 220, 255, 0.95);
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6.4rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-wrap: balance;
}

p {
  margin: 0;
}

.hero-lead {
  margin-top: 22px;
  max-width: 38rem;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  color: rgba(247, 251, 255, 0.86);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 40px;
  width: fit-content;
  max-width: 100%;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts p,
.detail-grid p {
  display: grid;
  gap: 4px;
}

.hero-facts span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 251, 255, 0.62);
}

.hero-facts strong,
.detail-grid strong {
  font-size: 0.98rem;
}

.detail-grid span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(9, 17, 29, 0.46);
}

.hero-organizer {
  margin-top: 26px;
  max-width: 36rem;
}

.hero-organizer-kicker {
  margin-bottom: 6px;
  color: rgba(247, 251, 255, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-organizer-copy {
  color: rgba(247, 251, 255, 0.86);
}

.hero-organizer-link {
  display: inline-block;
  margin-top: 10px;
  color: #cfe2ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(207, 226, 255, 0.38);
}

.hero-organizer-link:hover,
.hero-organizer-link:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.route-story {
  position: relative;
  width: min(1320px, 96vw);
  margin: calc(-12vh) auto 0;
  padding: clamp(118px, 16vh, 170px) 0 180px;
  overflow: hidden;
  contain: paint;
}

.route-story::before {
  content: "";
  position: absolute;
  top: clamp(56px, 8vh, 104px);
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 124, 177, 0.06) 0%, transparent 24%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.1) 0%, rgba(248, 251, 255, 0) 30%);
  pointer-events: none;
}

.route-canvas {
  position: absolute;
  top: clamp(20px, 3vh, 42px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 8%, #000000 22%, #000000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 8%, #000000 22%, #000000 100%);
}

.route-map {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-lane-halo,
.route-lane-edge,
.route-lane,
.route-centerline,
.route-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-lane-halo {
  stroke: rgba(33, 124, 177, 0.1);
  stroke-width: 188px;
}

.route-lane-edge {
  stroke: rgba(33, 124, 177, 0.1);
  stroke-width: 164px;
}

.route-lane {
  stroke: url("#route-lane-fill");
  stroke-width: 152px;
}

.route-centerline {
  stroke: rgba(33, 124, 177, 0.2);
  stroke-width: 4px;
  stroke-dasharray: 12 20;
}

.route-progress {
  stroke: url("#route-progress-fill");
  stroke-width: 8px;
  stroke-dasharray: none;
}

.route-runner-ring {
  fill: none;
  stroke: rgba(33, 124, 177, 0.3);
  stroke-width: 4px;
}

.route-runner-dot {
  fill: var(--blue);
}

.route-sign {
  position: absolute;
  z-index: 1;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(9, 17, 29, 0.48);
}

.route-sign--start {
  top: 130px;
  left: calc(50% + 86px);
}

.route-sign--finish {
  bottom: 80px;
  left: calc(50% + 116px);
}

.route-intro,
.story-stop {
  position: relative;
  z-index: 2;
}

.route-intro {
  width: min(740px, 92vw);
  margin: 0 auto clamp(100px, 14vh, 160px);
  text-align: center;
  --reveal-delay: 0.02s;
}

.route-intro-copy {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  text-wrap: balance;
}

.story-stop {
  width: min(560px, calc(50% - 110px));
  display: grid;
  gap: 26px;
}

#spenden {
  --reveal-delay: 0.04s;
}

#ort {
  --reveal-delay: 0.08s;
}

#countdown {
  --reveal-delay: 0.06s;
}

#ergebnisse {
  --reveal-delay: 0.05s;
}

.story-stop + .story-stop {
  margin-top: clamp(120px, 18vh, 220px);
}

.story-stop--left {
  margin-left: 20px;
  margin-right: auto;
}

.story-stop--right {
  margin-left: auto;
  margin-right: 20px;
}

.story-stop--center {
  width: min(860px, 92vw);
  margin-inline: auto;
}

.story-stop--finish {
  margin-top: clamp(140px, 20vh, 240px);
}

.stop-visual {
  position: relative;
}

.stop-image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translate3d(0, 0, 0) scale(1.015);
  transition: transform 1700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stop-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stop-image--cause {
  aspect-ratio: 1.14;
  border-radius: 34px 140px 34px 34px;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.1) 0%, rgba(8, 13, 24, 0.62) 100%),
    url("./brand-kita-klettermax-100-resimage_v-variantBig16x9_w-960.jpg");
  background-size: cover;
  background-position: center center;
}

.stop-image--cause::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(10, 19, 34, 0.22) 100%),
    linear-gradient(135deg, rgba(33, 124, 177, 0.18), transparent 45%);
}

.stop-image--venue {
  aspect-ratio: 1.16;
  border-radius: 140px 34px 34px 34px;
  background:
    linear-gradient(180deg, rgba(7, 14, 28, 0.06) 0%, rgba(7, 14, 28, 0.24) 100%),
    url("./csm_DJI_0534_cb81b90d94.jpeg");
  background-size: cover;
  background-position: center center;
}

.stop-image--venue::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(7, 14, 28, 0.08) 100%),
    linear-gradient(135deg, rgba(33, 124, 177, 0.1), transparent 48%);
}

.stop-copy {
  display: grid;
  gap: 18px;
}

.stop-copy p {
  color: var(--ink-soft);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0;
}

.impact-strip div,
.detail-grid p {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.impact-strip strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  color: var(--ink);
}

.impact-strip span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.detail-grid strong {
  color: var(--ink);
}

.feature-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px 22px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 30, 68, 0.08);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(237, 244, 255, 0.88));
  box-shadow: 0 18px 44px rgba(11, 27, 56, 0.08);
}

.feature-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.feature-list li + li {
  margin-top: 8px;
}

.countdown-shell {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(33, 124, 177, 0.12) 0%, transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 255, 0.96));
  box-shadow: var(--shadow);
}

.countdown-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(33, 124, 177, 0.08);
  pointer-events: none;
}

.countdown-shell > * {
  position: relative;
  z-index: 1;
}

.countdown-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 1rem;
}

.countdown-shell h2 {
  max-width: 9ch;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.countdown-meta-sep {
  display: inline-block;
  margin-inline: 0;
}

.race-clock {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.clock-unit {
  min-width: 0;
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(8, 30, 68, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms ease;
}

.clock-unit span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.clock-unit small {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.clock-unit.is-tick {
  transform: translateY(-4px);
}

.clock-divider {
  display: none;
}

.countdown-next {
  margin-top: 4px;
  color: var(--ink-soft);
  text-align: left;
  max-width: 30rem;
}

.countdown-status {
  margin-top: 0;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(33, 124, 177, 0.12);
  color: var(--blue);
  text-align: left;
  font-weight: 600;
}

.stop-copy--results {
  display: grid;
  gap: 24px;
  padding: 30px 32px 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 255, 0.96));
  box-shadow: var(--shadow);
}

.stop-copy--results h2 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.stop-copy--results > p:not(.goal-status) {
  max-width: 38rem;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
}

.result-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 6px;
}

.result-row {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 20px 22px;
  border: 1px solid rgba(8, 30, 68, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.result-row span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.result-row strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.95;
  color: var(--ink);
}

.goal-status {
  margin-top: 4px;
  color: var(--blue);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.site-footer {
  padding: 30px 0 42px;
}

.footer-shell {
  padding: 26px 28px 28px;
  border: 1px solid rgba(8, 30, 68, 0.08);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(237, 244, 255, 0.92));
  box-shadow: 0 22px 54px rgba(11, 27, 56, 0.08);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-shell p {
  color: var(--ink-soft);
}

.footer-meta {
  width: 100%;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 30, 68, 0.08);
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.footer-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(8, 30, 68, 0.14);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--blue);
  border-color: rgba(33, 124, 177, 0.5);
}

.footer-meta-sep {
  color: rgba(65, 80, 100, 0.7);
}

.footer-impressum {
  min-width: 0;
}

.footer-impressum summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid rgba(8, 30, 68, 0.14);
}

.footer-impressum summary::after {
  content: "+";
  color: var(--blue);
  font-size: 0.95rem;
  line-height: 1;
}

.footer-impressum[open] summary::after {
  content: "-";
}

.footer-impressum summary::-webkit-details-marker {
  display: none;
}

.footer-impressum-panel {
  margin-top: 12px;
  padding: 18px 18px 20px;
  width: min(620px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(8, 30, 68, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.footer-impressum-panel p,
.footer-impressum-list {
  color: var(--ink-soft);
}

.footer-impressum-panel p + p {
  margin-top: 4px;
}

.footer-impressum-panel strong {
  color: var(--ink);
}

.footer-impressum-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.footer-impressum-list li + li {
  margin-top: 8px;
}

@media (prefers-reduced-motion: no-preference) {
  .js-ready .hero-inner > * {
    opacity: 0.001;
    transform: translate3d(0, 26px, 0);
    transition:
      opacity 880ms ease,
      transform 1380ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .js-ready.page-entered .hero-inner > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .js-ready .hero-inner > :nth-child(1) {
    transition-delay: 70ms;
  }

  .js-ready .hero-inner > :nth-child(2) {
    transition-delay: 150ms;
  }

  .js-ready .hero-inner > :nth-child(3) {
    transition-delay: 250ms;
  }

  .js-ready .hero-inner > :nth-child(4) {
    transition-delay: 340ms;
  }

  .js-ready .hero-inner > :nth-child(5) {
    transition-delay: 430ms;
  }

  .js-ready [data-reveal] {
    opacity: 0.001;
    transform: translate3d(0, 24px, 0) scale(0.994);
    transition:
      opacity 820ms ease,
      transform 1220ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .js-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .js-ready .route-intro > * {
    opacity: 0.001;
    transform: translate3d(0, 18px, 0);
    transition:
      opacity 720ms ease,
      transform 1080ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .js-ready .route-intro.is-visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .js-ready .route-intro > :nth-child(1) {
    transition-delay: calc(var(--reveal-delay, 0s) + 120ms);
  }

  .js-ready .route-intro > :nth-child(2) {
    transition-delay: calc(var(--reveal-delay, 0s) + 220ms);
  }

  .js-ready .story-stop .stop-visual,
  .js-ready .story-stop .countdown-shell,
  .js-ready .story-stop .stop-copy > * {
    opacity: 0.001;
    transform: translate3d(0, 20px, 0);
    transition:
      opacity 720ms ease,
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .js-ready .story-stop .stop-visual {
    transform: translate3d(0, 28px, 0) scale(0.989);
  }

  .js-ready .story-stop.is-visible .stop-visual,
  .js-ready .story-stop.is-visible .countdown-shell,
  .js-ready .story-stop.is-visible .stop-copy > * {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .js-ready .story-stop.is-visible .stop-image {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .js-ready .story-stop .stop-copy > :nth-child(1) {
    transition-delay: calc(var(--reveal-delay, 0s) + 120ms);
  }

  .js-ready .story-stop .stop-copy > :nth-child(2) {
    transition-delay: calc(var(--reveal-delay, 0s) + 180ms);
  }

  .js-ready .story-stop .stop-copy > :nth-child(3) {
    transition-delay: calc(var(--reveal-delay, 0s) + 240ms);
  }

  .js-ready .story-stop .stop-copy > :nth-child(4) {
    transition-delay: calc(var(--reveal-delay, 0s) + 300ms);
  }

  .js-ready .story-stop .stop-copy > :nth-child(5) {
    transition-delay: calc(var(--reveal-delay, 0s) + 360ms);
  }

  .js-ready .story-stop .stop-visual,
  .js-ready .story-stop .countdown-shell {
    transition-delay: calc(var(--reveal-delay, 0s) + 90ms);
  }
}

@media (max-width: 1100px) {
  .story-stop {
    width: min(520px, calc(50% - 90px));
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .feature-panels {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  .header-shell {
    min-height: 74px;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
  }

  .hero-facts {
    border-radius: 28px;
  }

  .route-story {
    width: min(96vw, 760px);
    margin-top: calc(-9vh);
    padding-top: clamp(112px, 14vh, 150px);
  }

  .route-canvas {
    top: clamp(18px, 3vh, 34px);
  }

  .route-sign--start {
    left: calc(50% + 80px);
  }

  .route-sign--finish {
    left: calc(50% + 80px);
  }

  .story-stop,
  .story-stop--left,
  .story-stop--right,
  .story-stop--center {
    width: min(620px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .story-stop + .story-stop {
    margin-top: 120px;
  }

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

  .result-board {
    grid-template-columns: 1fr;
  }

  .route-lane-halo {
    stroke-width: 156px;
  }

  .route-lane-edge {
    stroke-width: 136px;
  }

  .route-lane {
    stroke-width: 126px;
  }
}

@media (max-width: 760px) {
  .footsteps-background,
  .route-canvas {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
  }

  .header-shell {
    min-height: auto;
    width: min(92vw, 680px);
    padding: 14px 0 12px;
    align-items: flex-start;
    gap: 12px;
  }

  .brand {
    font-size: 0.98rem;
  }

  nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(8, 30, 68, 0.08);
    background: rgba(255, 255, 255, 0.74);
  }

  nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero::after {
    height: 138px;
  }

  .hero-inner {
    width: min(92vw, 680px);
    padding: 120px 0 102px;
  }

  .hero-badge {
    gap: 10px;
    padding: 11px 14px;
    max-width: 100%;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .hero-badge::before {
    width: 8px;
    height: 8px;
  }

  .hero-facts {
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
  }

  .hero-facts p {
    padding: 15px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-organizer {
    margin-top: 22px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 11, 18, 0.22);
    backdrop-filter: blur(10px);
  }

  .route-story {
    width: min(92vw, 680px);
    margin-top: -48px;
    padding: 82px 0 110px;
    overflow: visible;
  }

  .route-story::before {
    top: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(33, 124, 177, 0.08) 0%, transparent 28%),
      linear-gradient(180deg, rgba(248, 251, 255, 0.44) 0%, rgba(248, 251, 255, 0) 34%);
  }

  .route-intro {
    width: 100%;
    margin: 0 0 42px;
    padding: 24px 22px;
    text-align: left;
    border-radius: 28px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 255, 0.94));
    box-shadow: var(--shadow);
  }

  .route-intro-copy {
    font-size: 1rem;
    text-wrap: pretty;
  }

  .story-stop,
  .story-stop--left,
  .story-stop--right,
  .story-stop--center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 18px;
  }

  .story-stop + .story-stop,
  .story-stop--finish {
    margin-top: 34px;
  }

  .story-stop .stop-visual {
    order: -1;
  }

  .stop-copy:not(.stop-copy--results) {
    padding: 24px 22px;
    border-radius: 28px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 255, 0.94));
    box-shadow: var(--shadow);
  }

  .stop-image--cause,
  .stop-image--venue {
    aspect-ratio: 1.18;
    border-radius: 28px;
  }

  .impact-strip,
  .detail-grid,
  .feature-panels,
  .result-board {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .impact-strip div,
  .detail-grid p {
    padding: 16px 18px;
    border-top: 0;
    border: 1px solid rgba(8, 30, 68, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
  }

  .feature-card,
  .result-row,
  .clock-unit {
    border-radius: 22px;
  }

  .countdown-shell {
    gap: 16px;
    padding: 24px 22px 26px;
    border-radius: 28px;
  }

  .countdown-shell::before {
    inset: 14px;
    border-radius: 22px;
  }

  .countdown-shell h2 {
    max-width: 8ch;
    font-size: clamp(2rem, 9.8vw, 3rem);
  }

  .countdown-meta {
    gap: 6px 10px;
    font-size: 0.96rem;
  }

  .race-clock {
    gap: 12px;
  }

  .clock-unit {
    padding: 16px 16px 18px;
  }

  .clock-unit span {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .countdown-next {
    max-width: none;
    font-size: 0.98rem;
  }

  .countdown-status {
    font-size: 0.95rem;
  }

  .stop-copy--results {
    padding: 24px 22px 26px;
    border-radius: 28px;
  }

  .stop-copy--results h2 {
    max-width: 9ch;
    font-size: clamp(2rem, 9.6vw, 3rem);
  }

  .result-row strong {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .footer-shell {
    width: min(92vw, 680px);
    padding: 22px 20px 22px;
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .footer-meta {
    margin-top: 4px;
    padding-top: 14px;
  }

  .footer-meta-links {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-meta-sep {
    display: none;
  }

  .footer-impressum-panel {
    padding: 16px 16px 18px;
    border-radius: 20px;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .hero-inner {
    padding-top: 110px;
    padding-bottom: 148px;
  }

  .route-canvas {
    top: 12px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.6rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-facts {
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 0;
  }

  .route-story {
    padding-bottom: 130px;
  }

  .route-canvas {
    left: -18%;
    right: -18%;
  }

  .route-sign {
    font-size: 0.68rem;
  }

  .route-sign--start {
    top: 112px;
    left: calc(50% + 34px);
  }

  .route-sign--finish {
    bottom: 66px;
    left: calc(50% + 36px);
  }

  .route-lane-halo {
    stroke-width: 124px;
  }

  .route-lane-edge {
    stroke-width: 104px;
  }

  .route-lane {
    stroke-width: 96px;
  }

  .route-progress {
    stroke-width: 7px;
  }

  .stop-image--cause,
  .stop-image--venue {
    aspect-ratio: 1.06;
    border-radius: 26px;
  }

  .countdown-shell {
    padding: 28px 22px 30px;
    border-radius: 30px;
  }

  .countdown-shell h2 {
    max-width: 8ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .countdown-meta {
    gap: 6px 10px;
  }

  .clock-unit {
    padding: 16px 16px 18px;
  }

  .clock-unit span {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .stop-copy--results {
    padding: 24px 22px 26px;
    border-radius: 30px;
  }

  .stop-copy--results h2 {
    max-width: 10ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .result-row {
    padding: 18px 18px 20px;
  }

  .result-row strong {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .feature-card {
    padding: 18px 18px 20px;
  }

  .footer-shell {
    padding-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-inner > *,
  [data-reveal],
  .route-intro > *,
  .story-stop .stop-visual,
  .story-stop .countdown-shell,
  .story-stop .stop-copy > *,
  .stop-image {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
