/* ============================================================
   Sports Gym Witten — Redesign
   Brutalist Boxgym × Cinematic
   ============================================================ */

:root {
  /* Brand colors (tweakable via JS) */
  --red: #e11d2e;
  --red-bright: #ff2a3c;
  --red-deep: #a8121f;
  --red-blood: #7a0a14;

  /* Theme — dark default */
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --surface: #1a1a1a;
  --surface-2: #232323;
  --ink: #f5f4f0;
  --ink-mute: #a0a0a0;
  --ink-faint: #6a6a6a;
  --rule: rgba(255,255,255,0.08);
  --rule-strong: rgba(255,255,255,0.18);

  /* Type */
  --f-display: "Bebas Neue", "Anton", "Archivo Black", system-ui, sans-serif;
  --f-headline: "Archivo", "Inter", system-ui, sans-serif;
  --f-body: "Space Grotesk", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --f-script: "Caveat Brush", "Permanent Marker", cursive;

  /* Density (tweakable) */
  --section-py: 8rem;
  --gap: 2rem;

  /* Misc */
  --container: 1320px;
  --container-narrow: 980px;
}

/* light theme override */
[data-theme="light"] {
  --bg: #f5f4f0;
  --bg-soft: #ebe9e3;
  --surface: #ffffff;
  --surface-2: #f0eee8;
  --ink: #0a0a0a;
  --ink-mute: #555555;
  --ink-faint: #888888;
  --rule: rgba(0,0,0,0.08);
  --rule-strong: rgba(0,0,0,0.18);
}

/* density */
[data-density="compact"] { --section-py: 5rem; --gap: 1.25rem; }
[data-density="airy"]    { --section-py: 11rem; --gap: 2.5rem; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}

/* selection */
::selection { background: var(--red); color: #fff; }

/* container */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: var(--container-narrow); }

/* utility */
.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 600;
  color: var(--red-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red-bright);
}
.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* display heading — heavy condensed */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.005em;
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 11rem);
}
.display em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 400;
}

h2.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.005em;
  font-size: clamp(2.75rem, 7vw, 7rem);
  margin: 0;
}
h3 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0;
  font-weight: 400;
}

p { margin: 0; }
p.lead { font-size: 1.25rem; line-height: 1.4; color: var(--ink-mute); max-width: 56ch; }

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

/* horizontal rule */
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* =========================================================
   BUTTONS — sharp, no rounded corners (brutalist)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  padding: 1.1rem 1.6rem;
  border: 0;
  cursor: pointer;
  transition: all 160ms cubic-bezier(.4,0,.2,1);
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn--primary:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0) scale(0.98); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn--ghost:hover { border-color: var(--red); color: var(--red-bright); }

.btn .arrow { display: inline-block; transition: transform 160ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 600ms cubic-bezier(.4,0,.2,1), visibility 600ms;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  position: relative;
  width: min(420px, 70vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.preloader__fist {
  width: 200px;
  height: 200px;
  position: relative;
  display: grid;
  place-items: center;
}
.preloader__fist img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: punch 0.85s cubic-bezier(.55,.05,.2,1) infinite;
  filter: drop-shadow(0 0 30px rgba(225,29,46,0.4));
}
@keyframes punch {
  0%   { transform: scale(0.85) rotate(-3deg); }
  35%  { transform: scale(1.18) rotate(2deg); }
  60%  { transform: scale(0.95) rotate(-1deg); }
  100% { transform: scale(0.85) rotate(-3deg); }
}
.preloader__bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.preloader__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--red);
  transition: width 120ms linear;
}
.preloader__meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.preloader__meta .pct { color: #fff; font-variant-numeric: tabular-nums; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: padding 280ms ease, background 280ms;
}
[data-theme="light"] .nav { background: rgba(245,244,240,0.8); }
.nav.is-scrolled { padding: 0.65rem 0; }
/* Ghost nav — fully transparent, no chrome at all. Burger / CTA float over content. */
.nav--ghost,
.nav--ghost.is-scrolled,
[data-theme="light"] .nav--ghost {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo img { height: 44px; width: auto; transition: height 280ms; }
.nav.is-scrolled .nav__logo img { height: 36px; }
.nav__links {
  display: none;
}

.nav__cta { display: flex; align-items: center; gap: 0.75rem; }

/* Burger button — always visible (mobile-first) */
.burger {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 180ms cubic-bezier(.32,.72,.24,1);
}
.burger:hover { border-color: var(--red); color: var(--red-bright); }
.burger__lbl { line-height: 1; }
.burger__lines {
  position: relative;
  width: 22px;
  height: 14px;
  display: inline-block;
}
.burger__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms cubic-bezier(.32,.72,.24,1), width 180ms;
}
.burger__lines span:nth-child(1) { top: 3px; }
.burger__lines span:nth-child(2) { bottom: 3px; width: 70%; }
.burger:hover .burger__lines span:nth-child(2) { width: 100%; }

@media (max-width: 600px) {
  .burger__lbl { display: none; }
  .burger { padding: 0.65rem 0.7rem; }
  .nav__cta-btn { padding: 0.7rem 0.95rem; font-size: 11px; }
}

/* =========================================================
   FULLSCREEN MENU — "Curtain Slam"
   ========================================================= */
.menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  pointer-events: none;
}
.menu.is-open { pointer-events: auto; }

/* Red diagonal slam panels */
.menu__slam {
  position: absolute;
  inset: 0;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 720ms cubic-bezier(0.85, 0, 0.15, 1);
  z-index: 1;
}
.menu__slam--2 {
  background: #0a0a0a;
  transition: clip-path 720ms cubic-bezier(0.85, 0, 0.15, 1) 120ms;
  z-index: 2;
}
.menu.is-open .menu__slam {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.menu.is-closing .menu__slam {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 520ms cubic-bezier(0.85, 0, 0.15, 1) 200ms;
}
.menu.is-closing .menu__slam--2 {
  transition: clip-path 520ms cubic-bezier(0.85, 0, 0.15, 1);
}

/* Preview image stack */
.menu__preview {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 280ms;
  pointer-events: none;
}
.menu.is-open .menu__preview { opacity: 1; transition-delay: 700ms; }
.menu__preview-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 480ms cubic-bezier(.32,.72,.24,1), transform 720ms cubic-bezier(.32,.72,.24,1);
  filter: contrast(1.05) saturate(0.92);
}
.menu__preview-img.is-active {
  opacity: 0.85;
  transform: scale(1);
}
.menu__preview-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0a0a0a 0%, rgba(10,10,10,0.85) 45%, rgba(10,10,10,0.35) 80%, rgba(10,10,10,0.6) 100%),
    radial-gradient(60% 70% at 80% 90%, rgba(225,29,46,0.25), transparent 60%);
}

/* Content layer */
.menu__content {
  position: relative;
  z-index: 4;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.5rem 2.5rem 2rem;
  color: #f5f4f0;
  box-sizing: border-box;
}

/* Header */
.menu__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  transition: opacity 320ms ease 500ms;
}
.menu.is-open .menu__head { opacity: 1; }
.menu.is-closing .menu__head { opacity: 0; transition-delay: 0ms; }
.menu__head-tag { justify-self: start; }
.menu__head-mid { justify-self: center; }
.menu__close {
  justify-self: end;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 180ms;
}
.menu__close:hover { border-color: var(--red-bright); background: var(--red); transform: rotate(90deg); }

/* Menu list */
.menu__list {
  list-style: none;
  margin: auto 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.menu__item {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 520ms cubic-bezier(.32,.72,.24,1) var(--delay, 0ms),
    transform 620ms cubic-bezier(.32,.72,.24,1) var(--delay, 0ms);
}
.menu__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.menu.is-open .menu__item {
  opacity: 1;
  transform: translateY(0);
}
.menu.is-closing .menu__item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(.5,.0,.75,0);
}

.menu__item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 1.5rem;
  padding: 1.4rem 0.5rem;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.menu__item-idx {
  grid-row: 1 / 3;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  align-self: start;
  padding-top: 0.65rem;
  min-width: 2rem;
  transition: color 200ms;
}
.menu__item-label {
  grid-row: 1;
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 9vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  overflow: hidden;
  display: block;
}
.menu__item-text {
  display: inline-block;
  transition: transform 380ms cubic-bezier(.32,.72,.24,1), color 240ms;
  position: relative;
}
/* Outlined sister text — second "ghost" copy that shows when item NOT hovered */
.menu__item-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  color: transparent;
  opacity: 0;
  transition: opacity 280ms;
  pointer-events: none;
}
.menu__item-desc {
  grid-row: 2;
  grid-column: 2;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.menu__item-arrow {
  grid-row: 1;
  grid-column: 3;
  align-self: center;
  color: var(--red-bright);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 280ms, transform 380ms cubic-bezier(.32,.72,.24,1);
}

/* Hover behavior — active item highlights, others dim */
.menu__list.has-hover .menu__item:not(.is-active) .menu__item-text {
  color: transparent;
}
.menu__list.has-hover .menu__item:not(.is-active) .menu__item-text::after {
  opacity: 0.8;
}
.menu__list.has-hover .menu__item:not(.is-active) .menu__item-desc { opacity: 0.3; }
.menu__list.has-hover .menu__item:not(.is-active) .menu__item-idx { color: rgba(255,255,255,0.2); }

.menu__item.is-active .menu__item-text { transform: translateX(18px); color: #fff; }
.menu__item.is-active .menu__item-idx { color: var(--red-bright); }
.menu__item.is-active .menu__item-arrow { opacity: 1; transform: translateX(0); }
.menu__item.is-active a { background: linear-gradient(90deg, rgba(225,29,46,0.0) 0%, rgba(225,29,46,0.08) 100%); }

/* Footer */
.menu__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 480ms ease 800ms,
    transform 520ms cubic-bezier(.32,.72,.24,1) 800ms;
}
.menu.is-open .menu__foot { opacity: 1; transform: translateY(0); }
.menu.is-closing .menu__foot {
  opacity: 0;
  transition: opacity 200ms ease;
}
.menu__foot-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.5rem;
}
.menu__foot-col p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.menu__foot-col a { color: inherit; transition: color 160ms; }
.menu__foot-col a:hover { color: var(--red-bright); }
.menu__foot-social { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
.menu__foot-social a {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}
.menu__foot-social a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--red-bright);
  transition: width 200ms;
}
.menu__foot-social a:hover::after { width: 100%; }

@media (max-width: 720px) {
  .menu__content { padding: 1rem 1.25rem 1.5rem; }
  .menu__head-mid { display: none; }
  .menu__head { grid-template-columns: 1fr auto; }
  .menu__close { width: 48px; height: 48px; }
  .menu__item-label { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .menu__item a { grid-template-columns: auto 1fr; padding: 1rem 0.25rem; gap: 0 1rem; }
  .menu__item-arrow { display: none; }
  .menu__item-idx { padding-top: 0.4rem; font-size: 10px; }
  .menu__foot { grid-template-columns: 1fr; gap: 1.25rem; padding-top: 1.5rem; }
  .menu__preview-img { width: 100%; opacity: 0.25 !important; }
  .menu__item.is-active .menu__item-text { transform: translateX(8px); }
}

/* Short viewports — tighten the list so 7 items + header + footer fit without scrolling.
   Above this height the auto-margin centers the list; below, it stacks tightly from the top. */
@media (max-height: 820px) {
  .menu__list { margin: 1rem 0; }
  .menu__item a { padding: 0.9rem 0.5rem; }
  .menu__item-label { font-size: clamp(1.75rem, 4.2vw, 2.75rem); }
  .menu__item-desc { font-size: 0.8rem; margin-top: 0.15rem; }
  .menu__item-idx { padding-top: 0.35rem; }
  .menu__content { padding: 1.25rem 2.5rem 1.5rem; }
  .menu__foot { padding-top: 1.25rem; }
}
@media (max-height: 640px) {
  .menu__list { margin: 0.5rem 0; }
  .menu__item a { padding: 0.55rem 0.5rem; }
  .menu__item-label { font-size: clamp(1.4rem, 3.6vw, 2rem); }
  .menu__item-desc { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* extra bottom padding clears the absolutely positioned .hero__stats bar */
  padding-bottom: 11rem;
  padding-top: 8rem;
}
@media (max-width: 760px) {
  .hero { padding-bottom: 15rem; }
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video video,
.hero__video .video-placeholder,
.hero__placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* placeholder treatment until the real Hallenbild is delivered */
.hero__video--placeholder { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__placeholder-img { filter: grayscale(0.4) brightness(0.7) contrast(1.05); }
.hero__placeholder-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  background: rgba(225,29,46,0.85);
  color: #fff;
  border-radius: 2px;
}
.video-placeholder {
  background:
    linear-gradient(135deg, rgba(225,29,46,0.15), transparent 50%),
    radial-gradient(circle at 30% 40%, #2a1a1a 0%, #0a0a0a 70%);
  display: grid;
  place-items: center;
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 30%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero__title {
  color: #fff;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(105%);
  animation: rise 900ms cubic-bezier(.32,.72,.24,1) forwards;
}
.hero__title .word:nth-child(2) { animation-delay: 120ms; }
.hero__title .word:nth-child(3) { animation-delay: 240ms; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero__copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__copy p {
  color: rgba(245,244,240,0.85);
  font-size: 1.05rem;
  max-width: 52ch;
}
.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* stats bar at bottom of hero */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-strong);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
}
.hero__stats > div {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__stats > div:last-child { border-right: 0; }
.hero__stats .num {
  font-family: var(--f-display);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.hero__stats .num em { font-family: var(--f-script); color: var(--red); font-style: normal; }
.hero__stats .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 760px) {
  .hero__copy { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats > div:nth-child(2) { border-right: 0; }
  .hero__stats > div:nth-child(1), .hero__stats > div:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* =========================================================
   SECTION: UNTERSTÜTZUNG (Support)
   ========================================================= */
.support {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.support__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.support__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface);
}
.support__media video,
.support__media .video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(225,29,46,0.2));
  pointer-events: none;
}
.support__media-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  background: var(--red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
}

/* "Freigewischt" frame — bg-colored cover with hand-wiped organic cutout */
.support__media--wiped { background: var(--bg); }
.support__media--wiped::after { content: none; }
.support__media--wiped .wipe-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  display: block;
  overflow: visible;
  color: var(--bg);
}
.support__media--wiped .wipe-cover {
  fill: var(--bg);
}

/* Thin red 1px stroke frame with offset corner ticks */
.support__media--framed { background: var(--bg); overflow: visible; }
.support__media--framed::after { content: none; }
.support__media--framed video,
.support__media--framed .video-placeholder { position: relative; z-index: 1; }
.support__media-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  outline: 1px solid var(--red);
  outline-offset: 12px;
}
.support__media-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--red);
}
.support__media-corner--tl { top: -19px; left: -19px; border-right: 0; border-bottom: 0; }
.support__media-corner--tr { top: -19px; right: -19px; border-left: 0; border-bottom: 0; }
.support__media-corner--bl { bottom: -19px; left: -19px; border-right: 0; border-top: 0; }
.support__media-corner--br { bottom: -19px; right: -19px; border-left: 0; border-top: 0; }
@media (max-width: 760px) {
  .support__media-frame { outline-offset: 7px; }
  .support__media-corner { width: 18px; height: 18px; }
  .support__media-corner--tl { top: -14px; left: -14px; }
  .support__media-corner--tr { top: -14px; right: -14px; }
  .support__media-corner--bl { bottom: -14px; left: -14px; }
  .support__media-corner--br { bottom: -14px; right: -14px; }
}
.support__body { display: flex; flex-direction: column; gap: 2rem; }
.support__features {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}
.support__feature {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.support__feature:last-child { border-bottom: 1px solid var(--rule); }
.support__feature .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
  padding-top: 0.5rem;
}
.support__feature h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.support__feature p { color: var(--ink-mute); font-size: 0.98rem; max-width: 48ch; }

@media (max-width: 880px) {
  .support__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* =========================================================
   SECTION: GEMEINSCHAFT (Community)
   ========================================================= */
.community {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.community__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.community__quote {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-left: 2.5rem;
}
.community__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 4px;
  background: var(--red);
}
.community__quote cite {
  display: block;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--ink-faint);
}

.community__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.community__card {
  padding: 3rem 2rem;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 280ms;
  cursor: pointer;
}
.community__card:last-child { border-right: 0; }
.community__card:hover { background: rgba(225,29,46,0.04); }
.community__card .idx {
  font-family: var(--f-display);
  font-size: 5rem;
  color: var(--red);
  line-height: 0.9;
  display: block;
  margin-bottom: 1.5rem;
  transition: transform 280ms cubic-bezier(.32,.72,.24,1);
}
.community__card:hover .idx { transform: translateX(8px); }
.community__card h3 { margin-bottom: 1rem; font-size: 1.75rem; }
.community__card p { color: var(--ink-mute); font-size: 0.98rem; }
.community__card::after {
  content: "→";
  position: absolute;
  top: 3rem;
  right: 2rem;
  font-family: var(--f-mono);
  color: var(--ink-faint);
  transition: color 200ms, transform 200ms;
}
.community__card:hover::after { color: var(--red); transform: translateX(4px); }

@media (max-width: 880px) {
  .community__header { grid-template-columns: 1fr; gap: 2rem; }
  .community__cards { grid-template-columns: 1fr; }
  .community__card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .community__card:last-child { border-bottom: 0; }
}

/* =========================================================
   SECTION: PUSH YOUR LIMITS
   ========================================================= */
.limits {
  padding: var(--section-py) 0 calc(var(--section-py) * 0.4);
  background: var(--bg);
  position: relative;
}
.limits__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}
.limits__media {
  position: relative;
  overflow: visible;
  background: transparent;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  isolation: isolate;
}
/* Soft red shine behind the cutout figure — hides the edge halo of the
   transparent PNG by surrounding it with a low-opacity red gradient that
   fades to fully transparent before reaching the container edges. */
.limits__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 70% at 50% 55%,
      rgba(225, 29, 46, 0.38) 0%,
      rgba(225, 29, 46, 0.22) 35%,
      rgba(225, 29, 46, 0.08) 65%,
      rgba(225, 29, 46, 0) 85%);
  filter: blur(28px);
}
.limits__media video,
.limits__media .video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.limits__media-figure {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,0.45));
}

.limits__features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.limits__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1.05rem;
}
.limits__features li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--red);
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

@media (max-width: 880px) {
  .limits__grid { grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
  .limits__media { min-height: 70vh; aspect-ratio: auto; }
  .limits__media-figure { object-position: center center; }
}

/* big marquee */
.marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1.5rem 0;
}
.marquee__track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--f-display);
  font-size: 3rem;
  text-transform: uppercase;
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track .dot {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   BENEFITS — Stay healthy / balanced / strong
   ========================================================= */
.benefits {
  padding: var(--section-py) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.benefits::before {
  content: "";
  position: absolute;
  top: 18%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(225,29,46,0.08), transparent 60%);
  pointer-events: none;
}
.benefits__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: end;
  margin-bottom: 3rem;
}
.benefits__intro > .eyebrow { grid-column: 1; }
.benefits__intro > .section-title { grid-column: 1; grid-row: 2; }
.benefits__intro > .lead { grid-column: 2; grid-row: 2; padding-bottom: 0.4rem; }

@media (max-width: 880px) {
  .benefits__intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .benefits__intro > .eyebrow,
  .benefits__intro > .section-title,
  .benefits__intro > .lead { grid-column: 1; grid-row: auto; }
}

/* Disciplines strip */
.benefits__disciplines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 1.5rem 1.25rem;
  margin: 0 0 4rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
}
.benefits__disciplines .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}

/* Horizontal stripes */
.benefits__stripes {
  display: grid;
  gap: 0;
}
.benefits__stripe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--rule);
  align-items: center;
  position: relative;
  transition: background 320ms;
}
.benefits__stripe:last-child { border-bottom: 1px solid var(--rule); }
.benefits__stripe:hover { background: linear-gradient(90deg, rgba(225,29,46,0.04), transparent 60%); }

.benefits__stripe-l {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 2rem;
  align-items: end;
}
.benefits__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red-bright);
  padding-top: 0.5rem;
  align-self: start;
}
.benefits__lockup {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}
.benefits__script {
  font-family: var(--f-script);
  color: var(--red);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  transform: rotate(-3deg) translateX(0.5rem);
  transform-origin: left bottom;
  margin-bottom: -0.5rem;
}
.benefits__word {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: transform 380ms cubic-bezier(.32,.72,.24,1), color 240ms;
}
.benefits__stripe:hover .benefits__word { transform: translateX(8px); }

.benefits__stripe-r {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefits__stripe-r p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 52ch;
}
.benefits__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.benefits__tags li {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--rule-strong);
  background: var(--surface);
}

@media (max-width: 880px) {
  .benefits__stripe {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.5rem 0;
  }
  .benefits__stripe-l { grid-template-columns: 1fr; gap: 0.5rem; }
  .benefits__num { padding-top: 0; }
}
/* =========================================================
   HALLE — full-bleed gym interior reveal
   ========================================================= */
.halle {
  padding: 2rem 0 0;
  background: var(--bg);
  overflow: hidden;
}
.halle__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.halle__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.08);
}
.halle__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.05) 55%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.35) 0%, transparent 40%);
  pointer-events: none;
}
.halle__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  color: #fff;
}
.halle__caption .kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  display: block;
  margin-bottom: 0.6rem;
}
.halle__caption h3 {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0;
  color: #fff;
}
.halle__caption-r { text-align: right; }
.halle__addr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.4rem;
  transition: border-color 200ms, color 200ms, transform 200ms;
}
.halle__addr svg { transition: transform 200ms; }
.halle__addr:hover { border-color: var(--red-bright); color: var(--red-bright); }
.halle__addr:hover svg { transform: translate(3px, -3px); }

.halle__corner {
  position: absolute;
  z-index: 2;
  color: var(--red);
  pointer-events: none;
}
.halle__corner--tl { top: 1rem; left: 1rem; }
.halle__corner--tr { top: 1rem; right: 1rem; }
.halle__corner--bl { bottom: 1rem; left: 1rem; }
.halle__corner--br { bottom: 1rem; right: 1rem; }

@media (max-width: 720px) {
  .halle__caption {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .halle__caption-r { text-align: left; }
  .halle__corner { display: none; }
}

/* =========================================================
   KIDS — Nachwuchs-Spezialität
   ========================================================= */
.kids {
  padding: 2rem 0 var(--section-py);
  background: var(--bg);
  position: relative;
}
.kids__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: end;
  margin-bottom: 3rem;
}
.kids__header > .eyebrow { grid-column: 1; }
.kids__header > .section-title { grid-column: 1; grid-row: 2; }
.kids__header > .lead { grid-column: 2; grid-row: 2; padding-bottom: 0.4rem; }

.kids__header .section-title em {
  font-family: var(--f-script);
  color: #f59e0b;
  text-transform: none;
  font-style: normal;
}

.kids__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  margin-bottom: 0;
}
.kids__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.kids__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 45%, rgba(10,10,10,0.85) 100%),
    linear-gradient(90deg, transparent 35%, rgba(245,158,11,0.12) 100%);
  pointer-events: none;
}
.kids__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.kids__caption-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.kids__caption-tag .dot {
  width: 7px;
  height: 7px;
  background: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245,158,11,0.5);
  animation: kidsPulse 2s ease-in-out infinite;
}
@keyframes kidsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}
.kids__caption h3 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 0.95;
  max-width: 28ch;
  color: #fff;
  margin: 0;
}

/* Age group cards row */
.kids__groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.kids__group {
  background: var(--surface);
  padding: 2rem 1.75rem;
  border-top: 3px solid #f59e0b;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 280ms cubic-bezier(.32,.72,.24,1), background 280ms;
}
.kids__group:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}
.kids__group--cta {
  border-top-color: var(--red);
  background: linear-gradient(140deg, rgba(225,29,46,0.08), var(--surface) 60%);
}
.kids__group-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.kids__group h4 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  letter-spacing: 0;
}
.kids__group-age {
  font-family: var(--f-display);
  font-size: 2.5rem;
  line-height: 0.9;
  color: #f59e0b;
  letter-spacing: -0.01em;
}
.kids__group--cta .kids__group-age,
.kids__group--cta h4 + p { color: var(--ink-mute); }
.kids__group p {
  color: var(--ink-mute);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .kids__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .kids__header > .eyebrow,
  .kids__header > .section-title,
  .kids__header > .lead { grid-column: 1; grid-row: auto; }
  .kids__groups { grid-template-columns: 1fr; }
  .kids__caption h3 { font-size: 1.1rem; }
  .kids__caption { padding: 1rem 1.25rem 1.25rem; }
}

.kursplan {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
}
.kursplan__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.kursplan__table {
  border: 1px solid var(--rule);
  background: var(--bg);
  overflow: hidden;
}
.kursplan__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--rule);
}
.kursplan__row:last-child { border-bottom: 0; }
.kursplan__day {
  padding: 1.25rem 1.25rem;
  font-family: var(--f-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
  letter-spacing: 0.04em;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.kursplan__day:last-child { border-right: 0; }
.kursplan__day .date {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  font-weight: normal;
}

.kursplan__slot {
  padding: 1.25rem;
  border-right: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
  text-align: left;
  font-family: var(--f-body);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  min-height: 110px;
}
.kursplan__slot:last-child { border-right: 0; }
.kursplan__slot:hover {
  background: rgba(225,29,46,0.08);
}
.kursplan__slot[data-type="kids"]   { border-left: 3px solid #f59e0b; }
.kursplan__slot[data-type="jugend"] { border-left: 3px solid #3b82f6; }
.kursplan__slot[data-type="k1"]     { border-left: 3px solid var(--red); }
.kursplan__slot[data-type="boxen"]  { border-left: 3px solid #fff; }
.kursplan__slot .time {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.kursplan__slot .name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.kursplan__slot .age {
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.kursplan__slot .add {
  position: absolute;
  bottom: 0.75rem;
  right: 0.85rem;
  font-family: var(--f-mono);
  font-size: 16px;
  color: var(--ink-faint);
  opacity: 0;
  transition: opacity 160ms;
}
.kursplan__slot:hover .add { opacity: 1; color: var(--red); }

.kursplan__legend {
  margin-top: 1.25rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.kursplan__legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.kursplan__legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
}

@media (max-width: 880px) {
  .kursplan__header { grid-template-columns: 1fr; }
  .kursplan__row { grid-template-columns: 1fr; }
  .kursplan__day { border-right: 0; border-bottom: 1px solid var(--rule); }
  .kursplan__slot { border-right: 0; }
}

/* =========================================================
   MODAL — Calendar
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
  animation: fadeIn 280ms cubic-bezier(.32,.72,.24,1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  animation: scaleIn 320ms cubic-bezier(.32,.72,.24,1);
}
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  line-height: 1;
}
.modal__close:hover { color: var(--red); }
.modal h3 { margin-bottom: 0.5rem; font-size: 1.6rem; }
.modal__sub { color: var(--ink-mute); margin-bottom: 1.75rem; font-size: 0.95rem; }
.modal__options { display: grid; gap: 0.5rem; }
.modal__option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 160ms;
}
.modal__option:hover { border-color: var(--red); background: var(--surface-2); }
.modal__option svg { color: var(--red); flex-shrink: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #000;
  color: var(--ink);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--rule);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand img { height: 80px; width: auto; margin-bottom: 1.5rem; }
.footer__brand p { color: var(--ink-mute); max-width: 32ch; font-size: 0.95rem; line-height: 1.6; }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  transition: all 160ms;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin: 0 0 1.5rem;
  font-weight: 600;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__col a, .footer__col li { font-size: 0.95rem; color: var(--ink-mute); transition: color 160ms; }
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(.32,.72,.24,1), transform 800ms cubic-bezier(.32,.72,.24,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* =========================================================
   CHATBOT — floating widget (bottom-right)
   ========================================================= */
.chatbot-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px -8px rgba(225,29,46,0.55), 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 200ms cubic-bezier(.32,.72,.24,1), background 200ms, box-shadow 200ms;
}
.chatbot-fab:hover { background: var(--red-bright); transform: translateY(-2px) scale(1.04); }
.chatbot-fab:active { transform: translateY(0) scale(0.96); }
.chatbot-fab.is-open { background: #1a1a1a; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.chatbot-fab__dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 12px; height: 12px;
  background: #fff;
  border: 3px solid var(--red);
  border-radius: 50%;
  animation: fabPulse 1.6s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.chatbot {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 150;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 140px));
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity 240ms cubic-bezier(.32,.72,.24,1), transform 280ms cubic-bezier(.32,.72,.24,1);
  box-shadow: 0 24px 64px -12px rgba(0,0,0,0.7);
  overflow: hidden;
}
.chatbot.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot__head {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.chatbot__head-l { display: flex; align-items: center; gap: 0.75rem; }
.chatbot__avatar {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1;
}
.chatbot__pulse {
  position: absolute;
  inset: -4px;
  border: 1.5px solid var(--red);
  opacity: 0;
  animation: chatPulse 2s ease-out infinite;
}
@keyframes chatPulse {
  0% { opacity: 0.7; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.4); }
}
.chatbot__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.chatbot__sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2px;
}
.chatbot__status {
  width: 7px; height: 7px;
  background: #16d166;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22,209,102,0.5);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,209,102,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(22,209,102,0); }
}
.chatbot__close {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}
.chatbot__close:hover { color: var(--red); }

.chatbot__list {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rule-strong) transparent;
}
.chatbot__list::-webkit-scrollbar { width: 6px; }
.chatbot__list::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 6px; }

.chatbot__msg {
  max-width: 88%;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  line-height: 1.45;
  position: relative;
  animation: msgIn 280ms cubic-bezier(.32,.72,.24,1);
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.chatbot__msg p { margin: 0; white-space: pre-wrap; }
.chatbot__msg-tag {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.3rem;
}
.chatbot__msg--assistant {
  background: var(--surface);
  border-left: 2px solid var(--red);
  align-self: flex-start;
  color: var(--ink);
}
.chatbot__msg--user {
  background: var(--red);
  color: #fff;
  align-self: flex-end;
  font-weight: 500;
}
.chatbot__msg--user p { font-weight: 500; }

.chatbot__typing { display: inline-flex; gap: 4px; padding: 4px 0; }
.chatbot__typing i {
  width: 6px; height: 6px;
  background: var(--ink-mute);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chatbot__typing i:nth-child(2) { animation-delay: 0.15s; }
.chatbot__typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.1rem 0.5rem;
}
.chatbot__quick button {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--ink-mute);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  transition: all 160ms;
}
.chatbot__quick button:hover {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(225,29,46,0.06);
}

.chatbot__form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.chatbot__form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 160ms;
}
.chatbot__form input:focus { border-color: var(--red); }
.chatbot__form input::placeholder { color: var(--ink-faint); }
.chatbot__form button {
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 160ms, transform 160ms;
}
.chatbot__form button:hover:not(:disabled) { background: var(--red-bright); }
.chatbot__form button:disabled { opacity: 0.4; cursor: not-allowed; }
.chatbot__form button:active:not(:disabled) { transform: scale(0.94); }

.chatbot__foot {
  padding: 0.5rem 1.1rem 0.75rem;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  background: var(--bg);
}

/* Consent-Gate: Chat erst nach Bestätigung von Datenschutz + KI-Hinweis + 24h-Speicherung */
.chatbot__consent {
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid var(--rule);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.chatbot__consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--f-body);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft, var(--ink));
  cursor: pointer;
}
.chatbot__consent-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--red);
  cursor: pointer;
}
.chatbot__consent-check a { color: var(--red); text-decoration: underline; }
.chatbot__consent-btn {
  align-self: stretch;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 0.7rem 1rem;
  font-family: var(--f-display, var(--f-body));
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms, opacity 160ms;
}
.chatbot__consent-btn:hover:not(:disabled) { background: var(--red-bright); }
.chatbot__consent-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Move FAB away from tweaks toolbar on small screens */
@media (max-width: 600px) {
  .chatbot-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .chatbot { right: 16px; bottom: 84px; }
}


/* =========================================================
   PROBETRAINING MODAL
   ========================================================= */
.pt-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  animation: ptFade 220ms ease;
}
@keyframes ptFade { from { opacity: 0; } to { opacity: 1; } }
.pt-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  padding: 3rem 2.5rem 2.5rem;
  animation: ptScale 280ms cubic-bezier(0.32,0.72,0.24,1);
}
@keyframes ptScale {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pt-close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-mute);
  cursor: pointer;
  transition: all 160ms;
}
.pt-close:hover { color: var(--red); border-color: var(--red); }

.pt-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.pt-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.pt-title--sm { font-size: clamp(1.8rem, 3.5vw, 2.3rem); }
.pt-title em { color: var(--red); font-style: normal; }
.pt-lead {
  color: var(--ink-mute);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  max-width: 56ch;
}
.pt-lead em { color: var(--red); font-style: normal; font-weight: 600; }
.pt-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin: 0 0 1.5rem;
}

.pt-paths { display: grid; gap: 0.6rem; }
.pt-path {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 200ms, background 200ms, transform 200ms;
}
.pt-path:hover, .pt-path:focus-visible {
  border-color: var(--red);
  background: var(--surface-2);
  transform: translateX(2px);
  outline: none;
}
.pt-path-idx {
  font-family: var(--f-display);
  font-size: 2.4rem;
  line-height: 0.8;
  color: var(--red);
  letter-spacing: 0.02em;
}
.pt-path-body { display: grid; gap: 0.25rem; min-width: 0; }
.pt-path-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}
.pt-path-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pt-path-desc { color: var(--ink-mute); font-size: 0.9rem; line-height: 1.5; margin-top: 0.4rem; }
.pt-path-age {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.35rem;
}
.pt-path-arrow { color: var(--ink-mute); transition: color 160ms, transform 160ms; }
.pt-path:hover .pt-path-arrow { color: var(--red); transform: translateX(4px); }

.pt-form-wrap, .pt-done { display: block; }
.pt-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 1rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color 160ms;
}
.pt-back:hover { color: var(--red); }

.pt-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.5rem 0 1.75rem;
}
.pt-field { display: grid; gap: 0.35rem; }
.pt-field--full { grid-column: 1 / -1; }
.pt-field span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pt-field input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 160ms, background 160ms;
}
.pt-field input:focus {
  outline: none;
  border-color: var(--red);
  background: var(--surface-2);
}
.pt-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.pt-fine { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; }

.pt-done { text-align: left; }
.pt-check {
  display: inline-grid; place-items: center;
  color: var(--red);
  margin-bottom: 1rem;
}
.pt-done .btn { margin-top: 0.5rem; }
.pt-done .pt-lead strong { color: var(--ink); }

@media (max-width: 600px) {
  .pt-modal { padding: 2.5rem 1.25rem 1.5rem; }
  .pt-path { grid-template-columns: 44px 1fr; padding: 1.1rem 1rem; gap: 0.9rem; }
  .pt-path-arrow { display: none; }
  .pt-path-idx { font-size: 1.9rem; }
  .pt-path-title { font-size: 1.25rem; }
  .pt-form { grid-template-columns: 1fr; }
}

/* =========================================================
   ALL-IN MITGLIEDSCHAFT
   ========================================================= */
.allin { padding: var(--section-py) 0; background: var(--bg); }
.allin__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.allin__header .lead { margin: 0; max-width: 52ch; }
.allin__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.allin__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease;
}
.allin__card:hover { transform: translateY(-4px); border-color: var(--red); }
.allin__card.is-featured { border-color: var(--red); }
.allin__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
}

/* Black plate with Erstlaufzeit display — echoes the print/banner artwork */
.allin__plate {
  background: #0c0c0c;
  color: #fff;
  padding: 2.25rem 1.5rem 1.75rem;
  display: grid;
  gap: 0.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.allin__card.is-featured .allin__plate { background: linear-gradient(180deg, #181818 0%, #0c0c0c 100%); }
.allin__plate::after {
  /* faint diagonal red sheen, fades to transparent like the brand accents */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 110%, rgba(225,29,46,0.22), transparent 60%);
  pointer-events: none;
}
.allin__plate-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 1;
}
.allin__plate-headline {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}
.allin__plate-unit { font-size: 0.7em; color: var(--red); }
.allin__plate-price {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
}

.allin__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
}
.allin__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0;
}
.allin__name span { color: var(--red); }
.allin__sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: -0.3rem 0 0.4rem;
}
.allin__list { list-style: none; padding: 0; margin: 0 0 0.5rem; display: grid; gap: 0.45rem; }
.allin__list li { font-size: 0.9rem; color: var(--ink-mute); line-height: 1.4; }
.allin__list li strong { color: var(--ink); font-weight: 600; }
.allin__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 0;
  padding: 0.5rem 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms;
}
.allin__cta:hover { border-bottom-color: var(--red); }
.allin__cta .arrow { transition: transform 200ms; }
.allin__cta:hover .arrow { transform: translateX(3px); }

.allin__included {
  margin-top: 3rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.allin__included-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.allin__included ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 2rem;
}
.allin__included li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.allin__included svg { color: var(--red); flex-shrink: 0; }

.allin__fineprint {
  margin: 1.5rem 0 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  max-width: 80ch;
  line-height: 1.7;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .allin__grid { grid-template-columns: repeat(2, 1fr); }
  .allin__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .allin__included { grid-template-columns: 1fr; gap: 1rem; }
  .allin__included ul { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .allin__grid { grid-template-columns: 1fr; }
}
