/* Sponsoo Management – design system */

@font-face {
  font-family: "Big Shoulders";
  src: url("fonts/big-shoulders.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --rasen: #00af36;
  --rasen-text: #00872a;      /* green on light ground, AA contrast */
  --nachtrasen: #063d1f;
  --nachtrasen-2: #0a5129;
  --kreide: #f4f5ef;
  --papier: #ffffff;
  --tinte: #15201a;
  --grau: #56625b;
  --linie: #d9ddd3;
  --blau: #0087e6;
  --blau-dunkel: #00305a;

  --display: "Big Shoulders", "Arial Narrow", "Roboto Condensed", sans-serif;
  --text: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(1rem, 4vw, 3rem);
  --max: 78rem;
  --radius: 6px;
  --header-h: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  background: var(--kreide);
  color: var(--tinte);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; }

:focus-visible { outline: 3px solid var(--rasen); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--papier); padding: .6rem 1rem; border-radius: var(--radius);
}
.skip:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.measure { max-width: 38rem; }

/* ---------- type ---------- */

.display {
  font-family: var(--display);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.d-xl { font-size: clamp(3.2rem, 8.4vw, 7.6rem); }
.d-l  { font-size: clamp(2.9rem, 7.5vw, 6.5rem); }
.d-m  { font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: .92; }
.d-s  { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1; }

.lead { font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.5; max-width: 36rem; }
.muted { color: var(--grau); }
.kicker { font-weight: 700; color: var(--rasen-text); margin-bottom: .75rem; }
.on-dark .kicker { color: var(--rasen); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 3.1rem; padding: .7rem 1.4rem;
  border-radius: var(--radius); border: 2px solid transparent;
  font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: .01em;
  text-decoration: none; line-height: 1;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn--primary { background: var(--rasen); color: var(--nachtrasen); }
.btn--primary:hover { background: #10c645; }
.btn--ghost { border-color: currentColor; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--ink { background: var(--tinte); color: var(--papier); }
.btn--ink:hover { background: var(--nachtrasen); }
.btn--blue { background: var(--blau); color: var(--papier); }
.btn--blue:hover { background: #0a76c4; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.textlink { font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .2em; }
.textlink:hover { color: var(--rasen-text); }
.on-dark .textlink:hover { color: var(--rasen); }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--nachtrasen); color: var(--papier);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { width: 9.5rem; }
.nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav a {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem;
  text-decoration: none; padding: .45rem .8rem; border-radius: var(--radius);
}
.nav a:hover { background: var(--nachtrasen-2); }
body[data-page="sportlerin"] .nav [data-nav="sportlerin"],
body[data-page="vereine"] .nav [data-nav="vereine"],
body[data-page="sponsoren"] .nav [data-nav="sponsoren"],
body[data-page="health"] .nav [data-nav="health"] {
  box-shadow: inset 0 -3px 0 var(--rasen);
  border-radius: 0;
}
.nav .btn { margin-left: .75rem; font-size: 1.2rem; min-height: 2.6rem; padding: .5rem 1rem; }
.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 2px solid rgba(255, 255, 255, .5); color: inherit;
  font: 700 1.2rem var(--display); padding: .4rem .8rem; border-radius: var(--radius); cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--nachtrasen); padding: .5rem var(--gutter) 1.5rem;
    border-top: 1px solid var(--nachtrasen-2);
  }
  .nav.is-open { display: flex; }
  .nav a { font-size: 1.8rem; padding: .6rem 0; border-bottom: 1px solid var(--nachtrasen-2); border-radius: 0; }
  .nav a:hover { background: none; color: var(--rasen); }
  .nav .btn { margin: 1rem 0 0; justify-content: center; }
  body[data-page] .nav [data-nav] { box-shadow: none; }
}

/* ---------- sections ---------- */

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--white { background: var(--papier); }
.section--dark { background: var(--nachtrasen); color: var(--papier); }
.section--green { background: var(--rasen); color: var(--nachtrasen); }
.section--blue { background: var(--blau); color: var(--papier); }
.section--ink { background: var(--tinte); color: var(--papier); }
.on-dark .muted, .section--dark .muted, .section--ink .muted, .section--blue .muted { color: rgba(255, 255, 255, .72); }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.split--center { align-items: center; }
.split--wide-left { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
@media (max-width: 860px) {
  .split, .split--wide-left { grid-template-columns: minmax(0, 1fr); }
}

.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); max-width: 48rem; }
.section-head .display + p { margin-top: 1.25rem; }

/* ---------- hero (photo) ---------- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--papier); background: var(--nachtrasen);
  min-height: min(88vh, 54rem);
  display: flex; align-items: flex-end;
}
.hero__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 61, 31, .92) 0%, rgba(6, 61, 31, .55) 55%, rgba(6, 61, 31, .15) 100%),
    linear-gradient(0deg, rgba(6, 61, 31, .8) 0%, rgba(6, 61, 31, 0) 45%);
}
.hero--blue::after {
  background:
    linear-gradient(90deg, rgba(0, 48, 90, .92) 0%, rgba(0, 48, 90, .5) 60%, rgba(0, 48, 90, .1) 100%),
    linear-gradient(0deg, rgba(0, 48, 90, .8) 0%, rgba(0, 48, 90, 0) 45%);
}
.hero--ink::after {
  background:
    linear-gradient(90deg, rgba(21, 32, 26, .94) 0%, rgba(21, 32, 26, .55) 60%, rgba(21, 32, 26, .15) 100%),
    linear-gradient(0deg, rgba(21, 32, 26, .8) 0%, rgba(21, 32, 26, 0) 45%);
}
.hero .wrap { padding-block: clamp(4rem, 10vw, 7rem) clamp(3rem, 7vw, 5.5rem); }
.hero h1 { max-width: 13ch; }
.hero .lead { margin-top: 1.75rem; }
.hero--short { min-height: min(70vh, 42rem); }

/* the one orchestrated moment: hero headline sweeps in like a blurred sprint */
@media (prefers-reduced-motion: no-preference) {
  .hero h1 { animation: sprint .9s cubic-bezier(.2, .7, .1, 1) both; }
  .hero .lead, .hero .btn-row { animation: settle .7s .35s ease-out both; }
}
@keyframes sprint {
  from { transform: translateX(-12vw) skewX(-12deg); filter: blur(14px); opacity: 0; }
  60% { filter: blur(2px); opacity: 1; }
  to { transform: none; filter: none; opacity: 1; }
}
@keyframes settle { from { opacity: 0; } to { opacity: 1; } }

/* ---------- audience lanes (home) ---------- */

.lanes { display: flex; min-height: min(80vh, 46rem); background: var(--tinte); }
.lane {
  position: relative; isolation: isolate; overflow: hidden;
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--papier); text-decoration: none;
  transition: flex-grow .5s cubic-bezier(.2, .7, .1, 1);
}
.lane img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.lane::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, var(--lane-color) 0%, color-mix(in srgb, var(--lane-color) 55%, transparent) 38%, transparent 70%);
}
.lane::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: var(--lane-accent, var(--lane-color)); }
.lane + .lane { border-left: 2px solid var(--kreide); }
.lane h2 { font-family: var(--display); font-weight: 900; font-size: clamp(2.6rem, 4.6vw, 4.4rem); line-height: .9; }
.lane p { margin: .8rem 0 0; max-width: 22rem; }
.lane__go { margin-top: 1.25rem; font-family: var(--display); font-weight: 800; font-size: 1.3rem; text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 2px; }
.lane--sportler { --lane-color: rgba(6, 61, 31, .95); --lane-accent: var(--rasen); }
.lane--vereine { --lane-color: rgba(0, 48, 90, .95); --lane-accent: var(--blau); }
.lane--sponsoren { --lane-color: rgba(21, 32, 26, .95); --lane-accent: var(--papier); }
@media (hover: hover) and (min-width: 861px) {
  .lanes:hover .lane { flex-grow: .8; }
  .lanes .lane:hover, .lanes .lane:focus-visible { flex-grow: 1.6; }
  .lane:hover img { transform: scale(1.04); }
}
@media (max-width: 860px) {
  .lanes { flex-direction: column; min-height: 0; }
  .lane { min-height: 22rem; }
  .lane + .lane { border-left: 0; border-top: 2px solid var(--kreide); }
}

/* ---------- facts ---------- */

.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid currentColor; }
.fact { padding: 1.5rem 1.5rem 0 0; }
.fact + .fact { padding-left: 1.5rem; border-left: 1px solid var(--linie); }
.section--dark .fact + .fact { border-left-color: var(--nachtrasen-2); }
.fact strong { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(3rem, 6vw, 5rem); line-height: .9; }
.fact span { display: block; margin-top: .5rem; color: var(--grau); max-width: 16rem; }
.section--dark .fact span, .section--ink .fact span { color: rgba(255, 255, 255, .72); }
.section--ink .fact + .fact { border-left-color: rgba(255, 255, 255, .18); }
@media (max-width: 640px) {
  .facts { grid-template-columns: minmax(0, 1fr); }
  .fact, .fact + .fact { padding: 1.25rem 0; border-left: 0; }
  .fact + .fact { border-top: 1px solid var(--linie); }
}

/* ---------- ticks list ---------- */

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: .7rem 0 .7rem 2.1rem; border-bottom: 1px solid var(--linie); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 1.05rem;
  width: 1.1rem; height: .6rem;
  border-left: 3px solid var(--rasen-text); border-bottom: 3px solid var(--rasen-text);
  transform: rotate(-45deg);
}
.on-dark .ticks li, .section--dark .ticks li, .section--blue .ticks li, .section--ink .ticks li { border-bottom-color: rgba(255, 255, 255, .18); }
.section--dark .ticks li::before, .section--ink .ticks li::before { border-color: var(--rasen); }
.section--blue .ticks li::before { border-color: var(--papier); }
.ticks--cols { columns: 2; column-gap: 3rem; }
.ticks--cols li { break-inside: avoid; }
@media (max-width: 640px) { .ticks--cols { columns: 1; } }
.ticks li.no::before { width: .9rem; height: 0; border-left: 0; border-bottom: 3px solid var(--grau); transform: none; top: 1.3rem; }
.ticks li.no { color: var(--grau); }

/* ---------- start bib (signature element) ---------- */

.bib {
  --bib-color: var(--rasen);
  --bib-ink: var(--nachtrasen);
  position: relative;
  background: var(--papier); color: var(--tinte);
  border-radius: 14px;
  padding: 0 clamp(1.5rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
  max-width: 34rem;
  transform: rotate(-1.5deg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08), 0 30px 60px -30px rgba(0, 0, 0, .55);
  /* safety-pin holes, punched through to the section behind */
  -webkit-mask:
    radial-gradient(circle 9px at 22px 22px, transparent 98%, #000) top left / 51% 51% no-repeat,
    radial-gradient(circle 9px at calc(100% - 22px) 22px, transparent 98%, #000) top right / 51% 51% no-repeat,
    radial-gradient(circle 9px at 22px calc(100% - 22px), transparent 98%, #000) bottom left / 51% 51% no-repeat,
    radial-gradient(circle 9px at calc(100% - 22px) calc(100% - 22px), transparent 98%, #000) bottom right / 51% 51% no-repeat;
          mask:
    radial-gradient(circle 9px at 22px 22px, transparent 98%, #000) top left / 51% 51% no-repeat,
    radial-gradient(circle 9px at calc(100% - 22px) 22px, transparent 98%, #000) top right / 51% 51% no-repeat,
    radial-gradient(circle 9px at 22px calc(100% - 22px), transparent 98%, #000) bottom left / 51% 51% no-repeat,
    radial-gradient(circle 9px at calc(100% - 22px) calc(100% - 22px), transparent 98%, #000) bottom right / 51% 51% no-repeat;
}
.bib--blue { --bib-color: var(--blau); --bib-ink: var(--papier); }
.bib__band {
  margin-inline: calc(-1 * clamp(1.5rem, 4vw, 2.75rem));
  padding: 1.1rem 3.5rem;
  background: var(--bib-color); color: var(--bib-ink);
  border-radius: 14px 14px 0 0;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-family: var(--display); font-weight: 800; font-size: 1.35rem; line-height: 1.1;
}
.bib__num {
  display: block;
  font-family: var(--display); font-weight: 900;
  font-size: clamp(5rem, 15vw, 9.5rem); line-height: .82;
  letter-spacing: -.02em; margin-top: 1.5rem;
  font-variant-numeric: tabular-nums;
}
.bib__unit { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); }
.bib__calc {
  display: grid; grid-template-columns: 1fr auto; gap: .35rem 1rem;
  margin-top: 1.5rem; padding-top: 1rem; border-top: 2px dashed var(--linie);
  font-size: 1rem;
}
.bib__calc dd { margin: 0; text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.bib__calc dt:last-of-type, .bib__calc dd:last-of-type { padding-top: .35rem; border-top: 1px solid var(--linie); }
.bib__note { margin: 1rem 0 0; font-size: .9rem; color: var(--grau); }

/* follower slider */
.tier { margin-top: 2rem; }
.tier label { display: block; font-weight: 700; margin-bottom: .75rem; }
.tier input[type="range"] { width: 100%; accent-color: var(--rasen); height: 2rem; }
.tier__scale { display: flex; justify-content: space-between; font-size: .85rem; color: var(--grau); }
.section--dark .tier__scale { color: rgba(255, 255, 255, .7); }

/* ---------- plans ---------- */

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; }
.plan { background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; }
.plan--featured { background: var(--nachtrasen); color: var(--papier); border-color: var(--nachtrasen); }
.plan--featured .ticks li { border-bottom-color: rgba(255, 255, 255, .18); }
.plan--featured .ticks li::before { border-color: var(--rasen); }
.plan h3 { font-family: var(--display); font-weight: 800; font-size: 2rem; line-height: 1; }
.plan__price { font-family: var(--display); font-weight: 900; font-size: 3.4rem; line-height: 1; margin: .75rem 0 .25rem; }
.plan__price small { font-size: 1.1rem; font-weight: 700; }
.plan .ticks { margin: 1.25rem 0 1.75rem; font-size: .98rem; }
.plan .btn { margin-top: auto; justify-content: center; }
@media (max-width: 960px) { .plans { grid-template-columns: minmax(0, 1fr); } }

/* ---------- media cards (Sedcard / Reel / Analyse) ---------- */

.tools { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.tool { display: flex; flex-direction: column; text-decoration: none; }
.tool__img { background: var(--tool-bg, var(--rasen)); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; display: grid; place-items: center; padding: 1.5rem 1.5rem 0; max-width: 100%; }
.tool__img img { width: 62%; align-self: end; }
.tool h3 { font-family: var(--display); font-weight: 900; font-size: 2.2rem; line-height: 1; margin-top: 1rem; }
.tool p { margin: .4rem 0 0; color: var(--grau); }
.tool:hover h3 { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: .15em; }
@media (max-width: 760px) { .tools { grid-template-columns: minmax(0, 1fr); } .tool__img { aspect-ratio: 5 / 4; } .tool__img img { width: 40%; } }

/* ---------- feature row with photo ---------- */

.feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 0; background: var(--papier); border-radius: var(--radius); overflow: hidden; text-decoration: none; }
.feature + .feature { margin-top: 1.25rem; }
.feature__img { min-height: 18rem; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; }
.feature__body { padding: clamp(1.5rem, 4vw, 3rem); align-self: center; }
.feature__body h3 { font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: .95; }
.feature__body p { margin: .9rem 0 0; }
@media (max-width: 760px) { .feature { grid-template-columns: minmax(0, 1fr); } .feature__img { min-height: 0; aspect-ratio: 16 / 9; max-width: 100%; } }

/* ---------- deals scoreboard ---------- */

.deals { list-style: none; margin: 0; padding: 0; border-top: 2px solid currentColor; }
.deal a {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .25rem 2rem; align-items: baseline;
  padding: 1.35rem 0; border-bottom: 1px solid var(--linie); text-decoration: none;
}
.section--dark .deal a { border-bottom-color: var(--nachtrasen-2); }
.deal__pair { font-family: var(--display); font-weight: 900; font-size: clamp(1.9rem, 4.2vw, 3.4rem); line-height: .95; }
.deal__x { color: var(--rasen); padding-inline: .15em; }
.deal__meta { color: var(--grau); font-variant-numeric: tabular-nums; white-space: nowrap; }
.section--dark .deal__meta { color: rgba(255, 255, 255, .65); }
.deal__desc { grid-column: 1 / -1; margin: 0; max-width: 46rem; color: var(--grau); }
.section--dark .deal__desc { color: rgba(255, 255, 255, .72); }
.deal a:hover .deal__pair { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: .12em; }
@media (max-width: 640px) { .deal a { grid-template-columns: minmax(0, 1fr); } }

/* ---------- press / job lists ---------- */

.entries { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--tinte); }
.entry a { display: grid; grid-template-columns: 8rem minmax(0, 1fr); gap: .5rem 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--linie); text-decoration: none; }
.entry time { color: var(--grau); font-variant-numeric: tabular-nums; padding-top: .3rem; }
.entry h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.05; }
.entry p { margin: .5rem 0 0; color: var(--grau); max-width: 44rem; }
.entry a:hover h3 { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .15em; }
@media (max-width: 640px) { .entry a { grid-template-columns: minmax(0, 1fr); } }

/* ---------- FAQ / details ---------- */

.faq { border-top: 2px solid var(--tinte); }
.faq details { border-bottom: 1px solid var(--linie); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.1;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%;
  width: .8rem; height: .8rem; margin-top: -.55rem;
  border-right: 3px solid currentColor; border-bottom: 3px solid currentColor;
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -.1rem; }
.faq details > div { padding: 0 0 1.5rem; max-width: 46rem; }

/* ---------- contact band ---------- */

.contact-band .display { max-width: 14ch; }
.contact-lines { list-style: none; margin: 0; padding: 0; }
.contact-lines li { padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .25); }
.contact-lines span { display: block; font-size: .95rem; opacity: .75; }
.contact-lines a { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.1; text-decoration: none; overflow-wrap: anywhere; }
.contact-lines a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.section--green .contact-lines li { border-bottom-color: rgba(6, 61, 31, .3); }

/* ---------- steps (real sequences only) ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; counter-reset: step; }
.step { background: var(--papier); border-radius: var(--radius); padding: 2rem; border-top: 6px solid var(--blau); }
.step h3 { font-family: var(--display); font-weight: 800; font-size: 1.9rem; line-height: 1; margin-bottom: .75rem; }
.step__money { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--linie); }
.step__money dl { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem; }
.step__money dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }
@media (max-width: 960px) { .steps { grid-template-columns: minmax(0, 1fr); } }

/* ---------- prose (legal, long texts) ---------- */

.prose { max-width: 44rem; }
.prose > :first-child { margin-top: 0; }
.section--blue .bib--blue { --bib-color: var(--blau-dunkel); }
.prose h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.05; margin: 2.5rem 0 .75rem; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 1.75rem 0 .5rem; }
.prose h4 { font-size: 1rem; font-weight: 700; margin: 1.25rem 0 .4rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 1em; }
.prose li { margin-bottom: .35em; }
.prose a { overflow-wrap: anywhere; }

/* ---------- page head (no photo) ---------- */

.page-head { background: var(--nachtrasen); color: var(--papier); padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-head .lead { margin-top: 1.25rem; }

/* ---------- footer ---------- */

.site-footer { background: var(--tinte); color: rgba(255, 255, 255, .8); padding-block: 4rem 2rem; font-size: .98rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--rasen); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2rem; }
.footer-grid h2 { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--papier); margin-bottom: .75rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { padding: .2rem 0; }
.footer-grid address { font-style: normal; }
.footer-brand img { width: 10rem; margin-bottom: 1.25rem; }
.footer-base { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .15); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .9rem; color: rgba(255, 255, 255, .6); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media (max-width: 640px) {
  .display { line-height: .92; }
  .bib__band { padding: 1rem 2.75rem; font-size: 1.15rem; }
  .bib__band span { white-space: nowrap; }
  .hero { min-height: min(80vh, 40rem); }
}

/* =====================================================================
   Motion layer – only under html.motion (set when motion is allowed)
   ===================================================================== */

/* scroll progress in the header */
.site-header { transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .45); }
.progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--rasen); transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}

/* reveals */
.motion .rv {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .8s cubic-bezier(.2, .7, .1, 1),
    transform .9s cubic-bezier(.2, .7, .1, 1),
    filter .9s cubic-bezier(.2, .7, .1, 1),
    clip-path 1s cubic-bezier(.7, 0, .2, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.motion .rv.is-in { opacity: 1; transform: none; }

/* headlines sprint in with motion blur, like the photography */
.motion .rv--sprint { transform: translateX(-8vw) skewX(-14deg); filter: blur(12px); transform-origin: 0 100%; }
.motion .rv--sprint.is-in { transform: none; filter: blur(0); }

.motion .deal.rv { transform: translateX(-60px); }
.motion .deal.rv.is-in { transform: none; }
.motion .deal .deal__x { display: inline-block; transition: transform .6s cubic-bezier(.34, 1.8, .64, 1) .35s; }
.motion .deal.rv:not(.is-in) .deal__x { transform: scale(0) rotate(-180deg); }
.deal a:hover .deal__x { transform: rotate(90deg) scale(1.2); }

.motion .ticks li.rv { transform: translateX(-18px); }
.motion .ticks li.rv.is-in { transform: none; }
.motion .ticks li.rv::before { transition: transform .5s cubic-bezier(.34, 1.8, .64, 1); transition-delay: calc(var(--i, 0) * 80ms + .25s); }
.motion .ticks li.rv:not(.is-in)::before { transform: rotate(-45deg) scale(0); }

/* lanes open like a curtain from the bottom */
.motion .lane.rv { opacity: 1; transform: none; clip-path: inset(100% 0 0 0); transition-delay: calc(var(--i, 0) * 120ms); }
.motion .lane.rv.is-in { clip-path: inset(0 0 0 0); }
.motion .lane.rv h2, .motion .lane.rv p, .motion .lane.rv .lane__go { transition: transform .8s cubic-bezier(.2, .7, .1, 1), opacity .8s; transition-delay: calc(var(--i, 0) * 120ms + .35s); }
.motion .lane.rv:not(.is-in) h2, .motion .lane.rv:not(.is-in) p, .motion .lane.rv:not(.is-in) .lane__go { transform: translateY(40px); opacity: 0; }

/* start bib: pinned on with a swing, then tilts with the pointer */
.bib { transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) rotate(-1.5deg); }
.motion .bib.rv { transform: perspective(1000px) translateY(120px) rotate(-14deg) scale(.86); transition-duration: .8s, 1.1s; transition-timing-function: ease, cubic-bezier(.34, 1.45, .64, 1); }
.motion .bib.rv.is-in { transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) rotate(-1.5deg); }
.motion .bib.rv.tilt-ready { transition: transform .25s ease-out; transition-delay: 0s; }
.motion .bib__num { transition: letter-spacing 1.2s cubic-bezier(.2, .7, .1, 1) .3s; }
.motion .bib.rv:not(.is-in) .bib__num { letter-spacing: .25em; }

/* plans and tools rise, featured plan lifts a little further */
.motion .plan--featured.rv.is-in { transform: translateY(-12px); }
@media (max-width: 960px) { .motion .plan--featured.rv.is-in { transform: none; } }
.plan, .tool__img { transition: transform .35s cubic-bezier(.2, .7, .1, 1), box-shadow .35s; }
@media (hover: hover) {
  .plan.is-in:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .45); transition-delay: 0s; }
  .motion .plan--featured.rv.is-in:hover { transform: translateY(-20px); }
  .tool:hover .tool__img { transform: translateY(-6px) rotate(-1deg); }
  .feature:hover .feature__img img { scale: 1.06; }
}
.feature__img { overflow: hidden; }
.feature__img img, .lane img, .tool__img img { transition: scale .8s cubic-bezier(.2, .7, .1, 1); will-change: translate; }
.motion .lane img, .motion .feature__img img { scale: 1.25; }
.motion .tool__img img { margin-bottom: -70px; }
.motion .feature:hover .feature__img img { scale: 1.32; }
.motion .hero__img { scale: 1.08; will-change: translate; }
.motion .hero .wrap { will-change: translate, opacity; }

/* page heads without photo get the sprint too */
@media (prefers-reduced-motion: no-preference) {
  .page-head h1 { animation: sprint .9s cubic-bezier(.2, .7, .1, 1) both; }
  .page-head .lead { animation: settle .7s .35s ease-out both; }
}

/* buttons: fill sweeps in from the left */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .22);
  transform: translateX(-101%) skewX(-20deg); transform-origin: 0 50%;
  transition: transform .45s cubic-bezier(.2, .7, .1, 1);
}
.btn:hover::before { transform: translateX(0) skewX(0); }
.btn--ghost::before { background: rgba(255, 255, 255, .15); }

/* slider price bump */
.bump { display: inline-block; animation: bump .45s cubic-bezier(.34, 1.8, .64, 1); }
@keyframes bump { from { transform: translateY(-18%) scale(1.12); filter: blur(3px); } to { transform: none; filter: none; } }

/* ---------- stadium ticker ---------- */

.ticker {
  --skew: 0deg;
  overflow: hidden; background: var(--rasen); color: var(--nachtrasen);
  border-block: 3px solid var(--nachtrasen);
  padding-block: .9rem;
}
.ticker__track {
  display: flex; width: max-content;
  font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1;
  transform: skewX(var(--skew));
}
.ticker__run { display: flex; animation: ticker 38s linear infinite; }
.ticker span { display: inline-flex; align-items: center; white-space: nowrap; padding-right: 1.1em; }
.ticker span::after {
  content: ""; width: .42em; height: .42em; margin-left: 1.1em; border-radius: 50%;
  border: .09em solid currentColor;
}
.ticker:hover .ticker__run { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- drifting outline type ---------- */

.has-drift { position: relative; overflow: hidden; isolation: isolate; }
.has-drift > .wrap { position: relative; z-index: 1; }
.drift {
  position: absolute; left: 50%; top: 50%; z-index: 0;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 900; line-height: .8;
  font-size: clamp(9rem, 26vw, 24rem); white-space: nowrap;
  color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, .09);
  pointer-events: none; user-select: none;
}
.section--green .drift { -webkit-text-stroke-color: rgba(6, 61, 31, .1); }

@media (prefers-reduced-motion: reduce) {
  .ticker__run { animation: none; }
  .ticker__track { transform: none; }
}
