:root {
  --color-black: #080808;
  --color-surface: #0f0f0f;
  --color-white: #ffffff;
  --color-silver: #c0c0c0;
  --color-muted: #6b6b6b;
  --color-red: #c41e3a;
  --color-red-hover: #a91830;
  --color-red-dark: #821325;
  --oef-cta-red: linear-gradient(90deg, var(--color-red-dark) 0%, var(--color-red) 58%, var(--color-red) 100%);
  --color-border: rgba(255, 255, 255, 0.1);
  --font-primary: "Inter", sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 5rem;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

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

body {
  font-family: var(--font-primary);
  background: var(--color-black);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main {
  flex: 1 0 auto;
}

.container {
  width: min(100% - clamp(1.25rem, 3vw, 2.5rem), 80rem);
  margin-inline: auto;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
p {
  margin: 0;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  overflow: visible;
  padding: 0;
  margin: 0;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  overflow: visible;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-self: start;
  grid-column: 1;
}

.header__logo img {
  width: 2.25rem;
  height: 2.25rem;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.header__logo-oef {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.header__logo-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
}

.nav {
  position: relative;
}

.nav__shell {
  transition:
    background 0.4s var(--ease-out),
    padding 0.4s var(--ease-out),
    border-radius 0.4s var(--ease-out);
}

@media (min-width: 901px) {
  .header--at-top .header__inner {
    position: static;
  }

  .header__logo,
  .header__actions {
    position: relative;
    z-index: 102;
  }

  .header--at-top + .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    height: auto;
    transform: none;
    z-index: 101;
    pointer-events: none;
    visibility: visible;
    opacity: 1;
    background: transparent;
  }

  .header--at-top + .nav .nav__shell {
    margin: 0;
    padding: 1.3125rem 2.25rem 1.5rem;
    background: var(--color-silver);
    border: none;
    border-radius: 0 0 1.375rem 1.375rem;
    box-shadow: none;
    pointer-events: auto;
    will-change: transform;
    position: relative;
    z-index: 1;
  }

  .header--at-top + .nav .nav__link {
    pointer-events: auto;
  }

  .header--scroll-detaching + .nav .nav__shell {
    transition: none;
  }

  .header--at-top + .nav .nav__link {
    color: var(--color-black);
  }

  .header--at-top + .nav .nav__link:hover {
    color: var(--color-red);
  }
}

.nav__mobile-cta {
  display: none;
}

@media (min-width: 901px) {
  .nav__mobile-cta {
    display: none !important;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 250ms ease, opacity 250ms ease;
}

.nav__link:hover {
  color: var(--color-red);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
  grid-column: 3;
}

.header-cta {
  position: relative;
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
}

.header-cta__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}

.header-cta__ring text,
.header-cta__text {
  fill: var(--color-white);
  font-family: var(--font-primary);
  font-size: 10.25px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-cta__btn {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  transition: background 250ms ease, transform 250ms var(--ease-out);
}

.header-cta:hover .header-cta__btn {
  background: var(--color-red-hover);
  transform: scale(1.06);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 202;
  position: relative;
}

.nav-toggle__line {
  display: block;
  width: 1.375rem;
  height: 2px;
  min-height: 2px;
  flex-shrink: 0;
  background-color: var(--color-white);
  border-radius: 1px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(255, 255, 255, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(196, 30, 58, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, var(--color-black) 100%);
}

.hero__side {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero__side--left {
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(5rem, 12vh, 8rem);
}

.hero__plus {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-white);
}

.hero__traits {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.hero__traits li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero__traits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.625rem;
  height: 1px;
  background: var(--color-red);
  transform: translateY(-50%);
}

.hero__side--right {
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(5rem, 12vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero__dots {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__dots span.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

.hero__coords {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: right;
  color: var(--color-white);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 7.5rem;
  max-width: 54rem;
}

.hero__label {
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title-line--accent {
  color: var(--color-red);
}

.hero__tagline {
  margin-bottom: 2.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
}

/* OEF CTA Button */

.oef-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-sizing: border-box;
  width: clamp(17.5rem, 90vw, 23.25rem);
  max-width: 100%;
  min-width: 0;
  height: clamp(52px, 12vw, 62px);
  padding: 0 clamp(3.5rem, 12vw, 5.25rem) 0 clamp(1.25rem, 4vw, 2.125rem);
  color: var(--color-black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.085em;
  font-size: clamp(0.625rem, 2.4vw, 0.8125rem);
  font-weight: 850;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.15) 40%,
      transparent 70%
    ),
    linear-gradient(135deg, #d8d8d8 0%, var(--color-silver) 50%, #b5b5b5 100%);
  border: none;
  outline: none;
  border-radius: 28px 0 28px 0;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    color 0.4s ease;
}

.oef-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--oef-cta-red);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.oef-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.oef-cta__red-shape {
  position: absolute;
  right: clamp(-2.5rem, -8vw, -38px);
  top: 50%;
  z-index: 1;
  width: clamp(88px, 22vw, 116px);
  height: clamp(88px, 22vw, 116px);
  background: var(--oef-cta-red);
  border-radius: 999px 0 999px 999px;
  transform: translateY(-50%) rotate(45deg);
  transition:
    opacity 0.24s ease,
    right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.oef-cta__text {
  position: relative;
  z-index: 3;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
}

.oef-cta__arrow {
  position: absolute;
  right: clamp(1.125rem, 4vw, 1.625rem);
  top: 50%;
  z-index: 3;
  width: clamp(28px, 7vw, 34px);
  height: clamp(28px, 7vw, 34px);
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: clamp(1.125rem, 3.5vw, 1.375rem);
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.oef-cta:hover {
  color: var(--color-white);
  transform: translateY(-3px);
  border-radius: 0 28px 0 28px;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.oef-cta:hover::before {
  transform: scaleX(1);
}

.oef-cta:hover::after {
  transform: translateX(120%);
  transition-delay: 0.08s;
}

.oef-cta:hover .oef-cta__red-shape {
  opacity: 0;
  right: -12px;
  width: 150px;
  height: 150px;
}

.oef-cta:hover .oef-cta__arrow {
  transform: translateY(-50%) translateX(8px);
}

.oef-cta:active {
  transform: translateY(-1px);
}

.oef-cta:focus-visible {
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.55),
    0 0 0 4px rgba(196, 30, 58, 0.22);
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: opacity 250ms ease;
}

.hero__scroll:hover {
  opacity: 0.75;
}

.hero__scroll svg {
  color: var(--color-white);
  animation: bounce 2s ease-in-out infinite;
}

/* Hero Ticker */

.hero__ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: var(--color-silver);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.hero__ticker-group {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  padding: 0.9375rem 1.375rem;
  white-space: nowrap;
}

.hero__ticker-group span:not(.hero__ticker-sep) {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-black);
}

.hero__ticker-sep {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-red);
}

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

/* Sections */

.section {
  padding: clamp(4rem, 8vh, 6rem) 0;
  background: var(--color-black);
}

.section__header {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.section__label {
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-white);
  max-width: 52rem;
  margin-inline: auto;
}

.section__actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.section__actions .oef-cta {
  margin-bottom: 0;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 250ms ease, gap 250ms var(--ease-out);
}

.section-cta span {
  color: var(--color-red);
  font-size: 1.125rem;
  transition: transform 250ms var(--ease-out);
}

.section-cta:hover {
  color: var(--color-white);
  opacity: 0.85;
}

.section-cta:hover span {
  transform: translateX(4px);
}

/* Problem */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.problem-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(155deg, #d0d0d0 0%, var(--color-silver) 50%, #a3a3a3 100%);
  border: none;
  border-radius: 0 1.25rem 0 1.25rem;
  text-align: left;
  color: var(--color-black);
  box-shadow:
    0 18px 44px rgba(192, 192, 192, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 52px rgba(192, 192, 192, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.problem-card__index {
  display: block;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-red);
  transition: color 280ms ease;
}

.problem-card:hover .problem-card__index {
  color: var(--color-red-dark);
}

.problem-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 600;
  color: var(--color-black);
}

/* Section variants */

.section--surface {
  background: var(--color-surface);
}

.section--cta {
  padding-bottom: clamp(4rem, 8vh, 5.5rem);
}

.section--center .split-block {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.section--center .split-block__header {
  text-align: center;
}

.section--center .split-block__header .section__text {
  margin-inline: auto;
}

.section--center .check-list {
  align-items: center;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
}

.section--center .check-list li {
  padding-left: 0;
  padding-top: 0.875rem;
  text-align: center;
}

.section--center .check-list li::before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.section--center .section-note {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  border-left: none;
  border-top: 3px solid var(--color-silver);
}

.section--center .teaser-block,
.section--center .teaser-block--reverse {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.section--center .teaser-block__header {
  text-align: center;
}

.section--center .teaser-block__header .section__text {
  margin-inline: auto;
}

.section--center .teaser-block__actions {
  justify-content: center;
  width: 100%;
  padding-bottom: 0;
}

/* Pillars */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.pillar-card,
.card--silver {
  padding: 2rem 1.5rem 1.75rem;
  background: linear-gradient(155deg, #d0d0d0 0%, var(--color-silver) 50%, #a3a3a3 100%);
  border: none;
  border-radius: 0 1.25rem 0 1.25rem;
  text-align: left;
  color: var(--color-black);
  box-shadow:
    0 18px 44px rgba(192, 192, 192, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease;
}

.pillar-card:hover,
.card--silver:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 52px rgba(192, 192, 192, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.pillar-card__num,
.card--silver .card__num {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-red);
}

.pillar-card__title,
.card--silver .card__title,
.card--silver h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-black);
}

.pillar-card p,
.card--silver p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 600;
  color: var(--color-black);
}

/* Lösung */

.solution-block {
  display: grid;
  grid-template-columns: 1fr min(34vw, 21rem);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  width: 100%;
}

.solution-block__pillars {
  grid-template-columns: repeat(2, 1fr);
}

.solution-block__media {
  justify-self: end;
  width: 100%;
  max-width: 21rem;
  aspect-ratio: 4 / 5;
  border-radius: 0 1.375rem 0 1.375rem;
  overflow: hidden;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 45%
    ),
    linear-gradient(145deg, rgba(192, 192, 192, 0.22) 0%, var(--color-surface) 100%);
  border: 2px solid var(--color-silver);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.solution-block__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zielgruppe */

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  text-align: left;
}

.split-block__header {
  margin-bottom: 0;
  text-align: left;
}

.split-block__header .section__text {
  margin-inline: 0;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--color-white);
  text-align: left;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.625rem;
  height: 1px;
  background: var(--color-red);
  transform: none;
}

.check-list--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem clamp(2rem, 4vw, 3.5rem);
  width: 100%;
}

#zielgruppe .section-note {
  text-align: center;
  margin-inline: auto;
  max-width: 44rem;
  border-left: none;
  border-top: 3px solid var(--color-silver);
}

.section-note {
  margin: 2.5rem 0 0;
  padding: 1.25rem 1.5rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-white);
  text-align: left;
  border-top: none;
  border-left: 3px solid var(--color-silver);
  background: rgba(192, 192, 192, 0.08);
  box-shadow: none;
}

/* Steps */

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  height: 100%;
  padding: 1.75rem 1.25rem;
  border-radius: 0 1.25rem 0 1.25rem;
  text-align: left;
  color: var(--color-black);
}

.step-card.card--silver {
  border: none;
  box-shadow:
    0 18px 44px rgba(192, 192, 192, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease;
}

.step-card.card--silver:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 52px rgba(192, 192, 192, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.step-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  line-height: 1;
  color: var(--color-red);
  min-width: 2.5rem;
}

.step-card__title {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
}

.step-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 600;
  color: var(--color-black);
}

/* Teaser blocks */

.teaser-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: end;
  width: 100%;
  text-align: left;
}

.teaser-block--reverse {
  grid-template-columns: 1fr auto;
}

.teaser-block__header {
  margin-bottom: 0;
  max-width: none;
  text-align: left;
}

.teaser-block__header .section__text {
  margin-inline: 0;
}

.teaser-block__actions {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0.25rem;
}

.oef-cta--compact {
  width: clamp(15rem, 85vw, 21rem);
  max-width: 100%;
}

.oef-cta--wide {
  width: clamp(17rem, 92vw, 25rem);
  padding-right: clamp(4.25rem, 14vw, 6rem);
}

.oef-cta--wide .oef-cta__arrow {
  right: clamp(1.375rem, 4.5vw, 1.875rem);
}

.page-home .oef-cta {
  width: clamp(18rem, 94vw, 27rem);
  padding-right: clamp(4.5rem, 15vw, 6.5rem);
}

/* Transformationen / Vorher-Nachher */

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  width: 100%;
}

.transform-item {
  margin: 0;
}

.transform-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: 0;
}

.transform-photo {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 11.5rem;
  aspect-ratio: 4 / 5;
  border-radius: 0 1rem 0 1rem;
  overflow: hidden;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 45%
    ),
    linear-gradient(145deg, rgba(192, 192, 192, 0.22) 0%, var(--color-surface) 100%);
  border: 2px solid var(--color-silver);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.transform-photo--after {
  border-color: rgba(196, 30, 58, 0.45);
}

.transform-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transform-photo__label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  padding: 0.375rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-silver);
  border-radius: 0 0.5rem 0 0.5rem;
}

.transform-photo--after .transform-photo__label {
  color: var(--color-white);
  background: var(--color-red);
}

.transform-pair__arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(2.25rem, 5vw, 2.75rem);
  height: clamp(2.25rem, 5vw, 2.75rem);
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(196, 30, 58, 0.35);
}

.transform-pair__arrow svg {
  display: block;
}

.transform-item__caption {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0.85;
  text-align: center;
}

.transform-item__caption strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-white);
  opacity: 1;
}

/* Transformation stories (Erfolge page) */

.transform-stories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem);
}

.transform-story {
  display: grid;
  grid-template-columns: min(22rem, 42vw) 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.transform-story--reverse {
  grid-template-columns: 1fr min(22rem, 42vw);
}

.transform-story--reverse .transform-story__visual {
  order: 2;
}

.transform-story--reverse .transform-story__content {
  order: 1;
}

.transform-story__visual {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.transform-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1rem;
  list-style: none;
  padding: 0;
}

.transform-story__meta span {
  padding: 0.375rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-silver);
  border-radius: 0 0.5rem 0 0.5rem;
}

.transform-story__meta span:first-child {
  color: var(--color-white);
  background: var(--color-red);
}

.transform-story__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.transform-story__text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-white);
  opacity: 0.9;
}

.transform-story__details {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 1rem;
}

.transform-story__details dt {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
}

.transform-story__details dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-white);
}

.transform-story__quote {
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-black);
  background: linear-gradient(155deg, #d0d0d0 0%, var(--color-silver) 50%, #a3a3a3 100%);
  border-radius: 0 1rem 0 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Coach block */

.coach-block {
  display: grid;
  grid-template-columns: 1fr min(36vw, 22rem);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
}

.coach-block__header {
  margin-bottom: 0;
  text-align: left;
}

.coach-block__header .section__text {
  margin-inline: 0;
  max-width: none;
}

.coach-block__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

.coach-block__media {
  justify-self: end;
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 1;
  border-radius: 0 1.375rem 0 1.375rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(192, 192, 192, 0.18) 0%, var(--color-surface) 100%);
  border: 2px solid var(--color-silver);
}

.coach-block__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.faq-item {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 1rem 0 1rem;
  overflow: hidden;
  text-align: left;
  transition: border-color 250ms ease;
}

.faq-item[open] {
  border-color: rgba(192, 192, 192, 0.4);
  box-shadow: none;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  transition: opacity 250ms ease;
  text-align: left;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-red);
  transition: transform 250ms var(--ease-out);
  margin-left: 0;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:hover {
  opacity: 0.9;
}

.faq-item__answer {
  padding: 0 1.75rem 1.375rem;
}

.faq-item__answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--color-white);
}

/* Final CTA */

.final-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 1.5rem 0 1.5rem;
  text-align: center;
  overflow: hidden;
  box-shadow: none;
  width: 100%;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-red);
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  color: var(--color-white);
}

.final-cta__text {
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 36rem;
  font-size: clamp(0.9375rem, 2.8vw, 1rem);
  line-height: 1.7;
  font-weight: 500;
  color: var(--color-white);
}

.final-cta .section__label {
  color: var(--color-red);
}

.final-cta .oef-cta {
  margin-bottom: 0;
  margin-inline: auto;
}

/* Footer */

.footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(-0.5rem, -1vw, 0);
  padding-top: clamp(3.5rem, 8vh, 5rem);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.38) 0%,
      rgba(255, 255, 255, 0.1) 32%,
      transparent 58%
    ),
    linear-gradient(155deg, #d0d0d0 0%, var(--color-silver) 50%, #a3a3a3 100%);
  border-top-left-radius: clamp(2rem, 5vw, 3rem);
  border-top-right-radius: 0;
  color: var(--color-black);
  overflow: hidden;
  box-shadow:
    0 -20px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.footer__red {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 0;
  width: clamp(260px, 58vw, 680px);
  height: clamp(260px, 58vw, 680px);
  background: var(--oef-cta-red);
  border-radius: 999px 0 999px 999px;
  transform: translate(46%, -50%) rotate(45deg);
  pointer-events: none;
}

.footer__social {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.125rem);
  transform: translateY(-50%);
}

.footer__social-link {
  display: grid;
  place-items: center;
  width: clamp(3.5rem, 9vw, 5.5rem);
  height: clamp(3.5rem, 9vw, 5.5rem);
  color: var(--color-white);
  transition: transform 280ms var(--ease-out), opacity 280ms ease;
}

.footer__social-link svg {
  width: 100%;
  height: 100%;
}

.footer__social-link:hover {
  transform: scale(1.06);
  opacity: 0.92;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  color: var(--color-black);
}

.footer__logo img {
  width: 2.25rem;
  height: 2.25rem;
  filter: brightness(0);
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer__logo-oef {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--color-black);
}

.footer__logo-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-black);
  opacity: 1;
}

.footer__desc {
  margin: 0;
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-black);
  opacity: 0.85;
}

.footer__nav-title {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red);
}

.footer__nav ul,
.footer__contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a,
.footer__contact a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.85;
  transition: opacity 250ms ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  opacity: 1;
  color: var(--color-red);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-black);
  opacity: 0.65;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__legal a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.65;
  transition: opacity 250ms ease, color 250ms ease;
}

.footer__legal a:hover {
  opacity: 1;
  color: var(--color-red);
}

.footer__legal-btn {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 250ms ease, color 250ms ease;
}

.footer__legal-btn:hover {
  opacity: 1;
  color: var(--color-red);
}

.footer__credit {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(1.25rem, 3vh, 1.75rem);
  text-align: center;
}

.footer__credit-text {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-black);
  opacity: 0.55;
}

.footer__credit-text a {
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.75;
  transition: opacity 250ms ease, color 250ms ease;
}

.footer__credit-text a:hover {
  opacity: 1;
  color: var(--color-red);
}

@media (max-width: 1024px) {
  .pillar-grid:not(.solution-block__pillars) {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid:not(.solution-block__pillars) {
    grid-template-columns: 1fr;
  }

  .solution-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-block__media {
    order: -1;
    justify-self: center;
    max-width: 18rem;
  }

  .solution-block__pillars {
    grid-template-columns: 1fr;
  }

  .check-list--split {
    grid-template-columns: 1fr;
  }

  .split-block {
    grid-template-columns: 1fr;
  }

  .split-block__header {
    text-align: center;
  }

  .split-block__header .section__text {
    margin-inline: auto;
  }

  .check-list li {
    text-align: left;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .teaser-block,
  .teaser-block--reverse {
    grid-template-columns: 1fr;
  }

  .teaser-block__header {
    text-align: center;
  }

  .teaser-block__header .section__text {
    margin-inline: auto;
  }

  .teaser-block__actions {
    width: 100%;
    justify-content: center;
  }

  .transform-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .transform-pair {
    gap: 0.625rem;
  }

  .transform-photo {
    max-width: none;
  }

  .transform-pair__arrow {
    width: 2rem;
    height: 2rem;
  }

  .transform-pair__arrow svg {
    width: 22px;
    height: 22px;
  }

  .coach-block {
    grid-template-columns: 1fr;
  }

  .coach-block__media {
    justify-self: center;
    max-width: 18rem;
    order: -1;
  }

  .coach-block__header {
    text-align: center;
  }

  .coach-block__header .section__text {
    margin-inline: auto;
  }

  .coach-block__actions {
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__desc {
    margin-inline: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer {
    border-top-left-radius: 1.75rem;
  }

  .footer__red {
    width: clamp(200px, 68vw, 320px);
    height: clamp(200px, 68vw, 320px);
    transform: translate(44%, -50%) rotate(45deg);
  }

  .footer__social {
    right: 1rem;
    gap: 0.75rem;
  }

  .footer__social-link {
    width: clamp(3.25rem, 16vw, 4.5rem);
    height: clamp(3.25rem, 16vw, 4.5rem);
  }

  .footer__credit {
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .footer__legal {
    gap: 1rem 1.25rem;
  }

  .section__header {
    margin-bottom: 2rem;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Mobile */

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .header {
    z-index: 201;
    background: transparent;
  }

  body.nav-open .header__logo,
  body.nav-open .header__actions {
    position: relative;
    z-index: 202;
  }

  .section {
    padding: clamp(3.5rem, 8vh, 5rem) 0;
  }

  .container {
    width: min(100% - 1.5rem, 80rem);
  }

  .hero__content {
    padding: calc(var(--header-height) + 1.5rem) 1rem 6.5rem;
  }

  .hero__title-line {
    font-size: clamp(2.5rem, 11vw, 3.75rem);
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .header__actions {
    grid-column: 2;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.52);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease, visibility 320ms ease;
  }

  .nav__shell {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 66.666%;
    height: 100%;
    min-height: 100dvh;
    min-height: 100svh;
    margin: 0;
    padding: calc(var(--header-height) + 2rem) 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-black);
    border: none;
    border-left: 3px solid var(--color-silver);
    border-radius: clamp(22px, 5vw, 28px) 0 clamp(22px, 5vw, 28px) 0;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 380ms var(--ease-out);
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav.is-open .nav__shell {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex: 0 1 auto;
  }

  .nav__link {
    display: block;
    padding: 1.125rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--color-white);
  }

  .nav__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    min-height: 3.25rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 999px;
    transition: background 250ms ease;
  }

  .nav__mobile-cta:hover {
    background: var(--color-red-hover);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    width: 4.5rem;
    height: 4.5rem;
  }

  .header-cta__btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero__side {
    display: none;
  }

  .hero__content .oef-cta,
  .final-cta .oef-cta,
  .teaser-block__actions .oef-cta {
    width: min(100%, 19rem);
    height: clamp(48px, 11vw, 56px);
  }

  .page-home .oef-cta,
  .page-home .hero__content .oef-cta,
  .page-home .final-cta .oef-cta,
  .page-home .section__actions .oef-cta {
    width: min(100%, 24rem);
    padding-right: clamp(3.75rem, 13vw, 5.75rem);
  }

  .final-cta .oef-cta--wide {
    width: min(100%, 23rem);
    padding-right: clamp(3.75rem, 13vw, 5.5rem);
  }

  .final-cta {
    padding: 2rem 1rem;
  }

  .oef-cta--compact {
    width: min(100%, 17.5rem);
  }

  .oef-cta--wide {
    width: min(100%, 22rem);
    padding-right: clamp(3.75rem, 13vw, 5.5rem);
  }

  .coach-block--page .page-hero__actions .oef-cta--wide {
    width: min(100%, 23rem);
  }

  .hero__side--left,
  .hero__side--right {
    bottom: 4.5rem;
  }

  .hero__ticker-group {
    gap: 2rem;
    padding: 0.8125rem 1rem;
  }

  .hero__ticker-group span:not(.hero__ticker-sep) {
    font-size: 0.625rem;
  }

  .hero__tagline {
    font-size: 0.625rem;
    line-height: 1.6;
    max-width: 20rem;
  }

  .section__actions .section-cta {
    justify-content: center;
    text-align: center;
    max-width: min(100%, 22rem);
    line-height: 1.5;
  }

  .section__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .section__text {
    font-size: 0.9375rem;
  }

  .section-note {
    font-size: 0.875rem;
    padding-inline: 0.5rem;
  }
}

.nav__link.is-active {
  color: var(--color-red);
}

@media (min-width: 901px) {
  .header--at-top + .nav .nav__link.is-active {
    color: var(--color-red);
  }
}

/* Inner pages */

.page-hero {
  padding: calc(var(--header-height) + clamp(2.5rem, 6vh, 4rem)) 0 clamp(3rem, 6vh, 4.5rem);
}

.page-hero__header {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  color: var(--color-white);
}

.page-hero__lead {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-white);
}

.page-hero__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.coach-block--page {
  align-items: center;
}

.coach-block--page .page-hero__header {
  text-align: left;
  margin-inline: 0;
  max-width: none;
}

.coach-block--page .page-hero__actions {
  justify-content: flex-start;
}

.container--narrow {
  width: min(100% - 1.5rem, 42rem);
}

.container--wide {
  width: min(100% - 1.5rem, 56rem);
}

.module-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.module-list li {
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 0.875rem 0 0.875rem;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr min(34vw, 21rem);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.content-split--reverse {
  grid-template-columns: min(34vw, 21rem) 1fr;
}

.content-split--reverse .content-split__body {
  order: 2;
}

.content-split--reverse .content-split__media {
  order: 1;
}

.content-split__header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.content-split__header .section__text {
  margin-inline: 0;
}

.content-split__media {
  width: 100%;
  max-width: 21rem;
  justify-self: end;
  aspect-ratio: 4 / 5;
  border-radius: 0 1.375rem 0 1.375rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(192, 192, 192, 0.18) 0%, var(--color-surface) 100%);
  border: 2px solid var(--color-silver);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.value-card__title {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-card__num {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-red);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ref-card {
  padding: 2rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 1.25rem 0 1.25rem;
}

.ref-card__meta {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
}

.ref-card__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.ref-card__details {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 1rem;
}

.ref-card__details div {
  margin: 0;
}

.ref-card__details dt {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-silver);
}

.ref-card__details dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-white);
}

.ref-card__quote {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-white);
  opacity: 0.9;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 1.25rem 0 1.25rem;
  overflow: hidden;
}

.article-card__media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(192, 192, 192, 0.15) 0%, var(--color-surface) 100%);
  border-bottom: 1px solid var(--color-border);
}

.article-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.article-card__meta {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
}

.article-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-white);
}

.article-card .section-cta {
  margin-top: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-black);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(0, 1.35fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-trust__header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.contact-trust__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
}

.contact-trust__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
}

.contact-trust__intro {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-white);
}

.contact-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  flex: 1;
}

.contact-trust__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.125rem 1rem;
  text-align: left;
  color: var(--color-black);
}

.contact-trust__item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.contact-trust__item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 600;
  opacity: 0.85;
}

.contact-trust__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 50%;
}

.contact-trust__badges {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-top: 1px solid var(--color-border);
}

.contact-trust__badges li {
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 1.5rem 0 1.5rem;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-form-card__header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.contact-form-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.contact-form-card__lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.8;
}

.contact-form__optional {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.65;
}

.contact-form__fieldset {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease;
}

.contact-form__radio:has(input:checked) {
  border-color: rgba(196, 30, 58, 0.55);
  background: rgba(196, 30, 58, 0.12);
}

.contact-form__radio input {
  accent-color: var(--color-red);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--color-white);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 0.75rem 0 0.75rem;
  transition: border-color 250ms ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(196, 30, 58, 0.55);
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-white);
}

.contact-form__checkbox a {
  color: var(--color-red);
  text-decoration: underline;
}

.contact-form__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-form__submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-form__note {
  margin: 0;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-white);
  opacity: 0.75;
}

.contact-form__flash {
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-form__flash--success {
  background: rgba(34, 120, 70, 0.12);
  border: 1px solid rgba(34, 120, 70, 0.3);
  color: #b8e6c8;
}

.contact-form__flash--error {
  background: rgba(180, 40, 40, 0.1);
  border: 1px solid rgba(180, 40, 40, 0.28);
  color: #f0b4b4;
}

.contact-form__field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.direct-contact {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.direct-contact--cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.direct-contact--cards > li {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.oef-cta--neutral {
  color: var(--color-black);
}

.oef-cta.oef-cta--neutral.oef-cta--wide {
  padding-right: clamp(1.25rem, 4vw, 2.125rem);
}

.oef-cta--neutral::before,
.oef-cta--neutral::after,
.oef-cta--neutral .oef-cta__red-shape,
.oef-cta--neutral .oef-cta__arrow {
  display: none;
}

.oef-cta--neutral:hover {
  color: var(--color-black);
}

.oef-cta--neutral:hover::before {
  transform: scaleX(0);
}

.direct-contact__cta.oef-cta,
.direct-contact__cta.oef-cta .oef-cta__text {
  color: var(--color-black);
}

.direct-contact__cta.oef-cta:hover,
.direct-contact__cta.oef-cta:hover .oef-cta__text {
  color: var(--color-black);
}

.direct-contact__cta.oef-cta {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(0.625rem, 2.4vw, 0.8125rem);
  font-weight: 850;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.direct-contact__cta .oef-cta__text {
  text-align: center;
}

.direct-contact li:not(.direct-contact__card) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--color-white);
}

.direct-contact span:not(.oef-cta__text) {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: var(--color-silver);
}

.direct-contact:not(.direct-contact--cards) a {
  color: var(--color-white);
  font-weight: 600;
}

.legal-page__content p {
  margin: 0 0 1.1rem;
  color: var(--color-text-muted, rgba(255, 255, 255, 0.78));
  line-height: 1.7;
}

.article-detail__media {
  margin: 0 0 2rem;
  border-radius: 0 18px 0 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.05);
}

.article-detail__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail__content p {
  font-size: 1.05rem;
}

.category-card.is-active {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

@media (min-width: 1025px) {
  .page-kontakt .contact-trust {
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0 1.5rem 0 1.5rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  }

  .page-kontakt .contact-trust__header {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .page-kontakt .contact-trust__item {
    padding: 1rem 1.125rem;
    border-radius: 0 1rem 0 1rem;
  }

  .page-kontakt .contact-trust__badges {
    margin-top: auto;
  }
}

@media (max-width: 1024px) {
  .module-list,
  .value-grid,
  .article-grid,
  .article-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .module-list,
  .value-grid,
  .category-grid,
  .article-grid,
  .article-grid--featured {
    grid-template-columns: 1fr;
  }

  .content-split,
  .content-split--reverse {
    grid-template-columns: 1fr;
  }

  .content-split__media,
  .content-split--reverse .content-split__media {
    order: -1;
    justify-self: center;
    max-width: 18rem;
  }

  .content-split--reverse .content-split__body {
    order: 0;
  }

  .coach-block--page {
    grid-template-columns: 1fr;
  }

  .coach-block--page .coach-block__media {
    order: -1;
    justify-self: center;
  }

  .coach-block--page .page-hero__header,
  .coach-block--page .page-hero__actions {
    text-align: center;
    justify-content: center;
  }

  .transform-story,
  .transform-story--reverse {
    grid-template-columns: 1fr;
  }

  .transform-story--reverse .transform-story__visual,
  .transform-story--reverse .transform-story__content {
    order: unset;
  }

  .transform-story__visual {
    position: static;
  }

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

  .page-kontakt .contact-trust {
    padding: 1.5rem 1.125rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0 1.25rem 0 1.25rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  }

  .page-kontakt .page-hero__header {
    max-width: 34rem;
    padding-inline: 0.25rem;
  }

  .page-kontakt .contact-layout {
    gap: 2rem;
    max-width: 28rem;
    margin-inline: auto;
  }

  .page-kontakt .contact-trust {
    text-align: center;
  }

  .page-kontakt .contact-trust__header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .page-kontakt .contact-trust__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.125rem;
  }

  .page-kontakt .contact-trust__item strong {
    font-size: 0.875rem;
  }

  .page-kontakt .contact-trust__badges {
    align-items: stretch;
    gap: 0.625rem;
  }

  .page-kontakt .contact-trust__badges li {
    border-left: none;
  }

  .page-kontakt .contact-form-card {
    padding: 1.5rem 1.125rem;
    border-radius: 0 1.25rem 0 1.25rem;
  }

  .page-kontakt .contact-form__fieldset {
    text-align: center;
    gap: 1.5rem;
  }

  .page-kontakt .contact-form__fieldset .contact-form__label {
    display: block;
  }

  .page-kontakt .contact-form__radios {
    justify-content: center;
  }

  .page-kontakt .contact-form__actions {
    width: 100%;
  }

  .page-kontakt .contact-form__submit.oef-cta--wide {
    width: min(100%, 23rem);
    max-width: 100%;
  }

  .page-kontakt .contact-form__note {
    max-width: 20rem;
    line-height: 1.55;
  }

  .page-kontakt .section__header {
    text-align: center;
    margin-inline: auto;
  }

  .page-kontakt .direct-contact--cards {
    max-width: 22rem;
    margin-inline: auto;
  }

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

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

@media (max-width: 380px) {
  .oef-cta {
    width: 100%;
    height: auto;
    min-height: 48px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .oef-cta__text {
    white-space: normal;
  }
}

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

  .header-cta__ring {
    animation: none;
  }

  .hero__scroll svg {
    animation: none;
  }

  .hero__ticker-track {
    animation: none;
  }

  .oef-cta:hover,
  .header-cta:hover .header-cta__btn,
  .problem-card:hover,
  .pillar-card:hover,
  .faq-item:hover,
  .step-card:hover {
    transform: none;
  }
}

html.page-transition-lock {
  overflow: hidden;
}

/* Page transition overlay */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.page-transition.is-active,
html.page-transition-pending .page-transition {
  visibility: visible;
  opacity: 1;
}

.page-transition__base {
  position: absolute;
  inset: 0;
  background: var(--color-black);
  opacity: 0;
}

.page-transition__mixer {
  position: absolute;
  inset: -8%;
  opacity: 0;
  will-change: transform, opacity;
}

.page-transition__red {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 78%;
  height: 78%;
  background:
    radial-gradient(ellipse 72% 68% at 68% 72%, rgba(255, 255, 255, 0.14) 0%, transparent 58%),
    var(--oef-cta-red);
  border-radius: 999px 0 999px 999px;
  transform: rotate(42deg);
  mix-blend-mode: normal;
  will-change: transform, opacity, filter;
}

.page-transition__silver {
  position: absolute;
  left: -10%;
  top: -12%;
  width: 88%;
  height: 88%;
  background:
    radial-gradient(ellipse 70% 64% at 32% 28%, rgba(255, 255, 255, 0.55) 0%, transparent 62%),
    linear-gradient(138deg, #f0f0f0 0%, var(--color-silver) 48%, #a3a3a3 100%);
  border-radius: 0 999px 999px 999px;
  transform: rotate(-18deg);
  mix-blend-mode: soft-light;
  opacity: 0.82;
  will-change: transform, opacity, filter;
}

.page-transition__haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 48%, rgba(192, 192, 192, 0.38) 0%, transparent 68%),
    radial-gradient(ellipse 70% 62% at 72% 78%, rgba(196, 30, 58, 0.32) 0%, transparent 72%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%, rgba(130, 19, 37, 0.18) 100%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

html.page-transition-pending .page-transition__base {
  opacity: 1;
}

html.page-transition-pending .page-transition__mixer {
  opacity: 1;
}

html.page-transition-pending .page-transition__red {
  transform: rotate(42deg) scale(1.08);
  opacity: 1;
  filter: blur(0);
}

html.page-transition-pending .page-transition__silver {
  transform: rotate(-18deg) scale(1);
  opacity: 0.82;
  filter: blur(6px);
}

html.page-transition-pending .page-transition__haze {
  opacity: 0.42;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition,
  .page-transition__mixer,
  .page-transition__red,
  .page-transition__silver,
  .page-transition__haze {
    transition: none !important;
    animation: none !important;
  }
}

/* Cookie Consent */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding: 1rem clamp(1rem, 3vw, 1.5rem) calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(calc(110% + 1rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 380ms var(--ease-out), opacity 380ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  isolation: isolate;
  border: none;
  border-radius: clamp(22px, 4vw, 28px) 0 clamp(22px, 4vw, 28px) 0;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.15) 40%,
      transparent 70%
    ),
    linear-gradient(135deg, #d8d8d8 0%, var(--color-silver) 50%, #b5b5b5 100%);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.cookie-banner__content,
.cookie-banner__actions {
  position: relative;
  z-index: 1;
}

@media (min-width: 901px) {
  .cookie-banner__actions {
    min-width: 16.5rem;
  }

  .cookie-banner .oef-cta--cookie,
  .cookie-banner .oef-cta--cookie-secondary {
    min-width: 16.5rem;
    max-width: 22rem;
  }
}

.cookie-banner__label,
.cookie-modal__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
}

.cookie-banner__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-black);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.78);
  max-width: 42rem;
}

.cookie-banner__text a {
  color: var(--color-red);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  min-width: min(100%, 15rem);
}

.cookie-banner__link {
  padding: 0.25rem;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}

.cookie-banner__link:hover {
  color: var(--color-black);
}

.cookie-banner .oef-cta--cookie-secondary {
  color: var(--color-black);
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.35);
}

.cookie-banner .oef-cta--cookie-secondary:hover {
  color: var(--color-black);
  border-color: rgba(196, 30, 58, 0.45);
  background: rgba(255, 255, 255, 0.55);
}

.oef-cta--cookie {
  width: 100%;
  min-width: 12rem;
  max-width: 18rem;
  height: clamp(46px, 10vw, 52px);
  margin-bottom: 0;
  font-size: 0.625rem;
  padding-right: clamp(3rem, 10vw, 4.25rem);
}

.oef-cta--cookie-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: none;
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

.oef-cta--cookie-secondary::before,
.oef-cta--cookie-secondary::after,
.oef-cta--cookie-secondary .oef-cta__red-shape {
  display: none;
}

.oef-cta--cookie-secondary:hover {
  color: var(--color-white);
  border-color: rgba(196, 30, 58, 0.55);
  background: rgba(196, 30, 58, 0.1);
  transform: translateY(-1px);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.cookie-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: min(90dvh, 40rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 1.5rem 0 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.cookie-modal__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
}

.cookie-modal__lead {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-modal__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

.cookie-option {
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 0 0.875rem 0 0.875rem;
}

.cookie-option--locked {
  background: rgba(192, 192, 192, 0.08);
}

.cookie-option__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.cookie-option__title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.cookie-option__badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-silver);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.cookie-option__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  display: block;
  width: 2.75rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: background 200ms ease, border-color 200ms ease;
}

.cookie-toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.125rem;
  height: 1.125rem;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 200ms ease, background 200ms ease;
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--color-red);
  border-color: var(--color-red);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(1.25rem);
}

.cookie-toggle input:focus-visible + .cookie-toggle__track {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.cookie-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cookie-modal__actions .oef-cta--cookie {
  max-width: 22rem;
}

@media (max-width: 900px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: clamp(1.25rem, 4vw, 1.5rem) clamp(1.15rem, 4vw, 1.35rem);
  }

  .cookie-banner__actions {
    align-items: center;
    width: 100%;
  }

  .oef-cta--cookie {
    max-width: 100%;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}
