/* Renaldo styles — custom layer on top of Tailwind */
:root {
  /* Basis = früherer Primary-Hover; Hover noch eine Stufe dunkler */
  --brand-orange: #E76B45;
  --brand-orange-mediumlight: #F09878;
  --brand-orange-dark: #B8522E;
  --brand-orange-hover: #9A3F22;
  --brand-orange-extralight: #FCEAE3;
  --brand-purple: #8561C7;
  --brand-purple-light: #D2C2E9;
  --brand-dark: #1C1F2D;
  --brand-dark-700: #3C3E43;
  --brand-dark-500: #757575;
  --brand-dark-100: #E3E3E3;
  --brand-bg: #FBF9F5;
  --brand-sand-50: #F4F0EB;
  --brand-sand-100: #EAE2D9;
  --brand-green-dark: #298969;
  --brand-green-light: #E3F1DC;
  --accent: var(--brand-orange);
  --accent-soft: var(--brand-orange-extralight);
  --accent-dark: var(--brand-orange-dark);
}

[data-accent="purple"] {
  --accent: var(--brand-purple);
  --accent-soft: var(--brand-purple-light);
  --accent-dark: #6B49AD;
}

@font-face {
  font-family: "Work Sans";
  src: local("Work Sans"), local("WorkSans-Regular");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: #FBF9F5 !important;
  background: var(--brand-bg);
  color: var(--brand-dark-700);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
}
body.menu-open { overflow: hidden; }

h1, h2, h3, h4 { color: var(--brand-dark); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { line-height: 1.6; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
}

.tabular { font-variant-numeric: tabular-nums; }

.container-x { max-width: 1152px; margin: 0 auto; padding: 0 1.25rem; }
.container-x-wide { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container-x, .container-x-wide { padding: 0 2rem; } }

.section { padding: 6rem 0; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-tight { padding: 4rem 0; }

.divider { border: 0; border-top: 1px solid var(--brand-dark-100); }

/* Rechtstexte (Impressum, Datenschutz) */
.legal-content { max-width: 720px; margin-inline: auto; }
.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0 2rem;
  letter-spacing: -0.02em;
}
.legal-h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 2.25rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.legal-h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p,
.legal-content li { line-height: 1.65; }
.legal-content code {
  font-size: 0.9em;
  padding: 0.12em 0.4em;
  border-radius: 0.25rem;
  background: var(--brand-sand-100);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.legal-content ul { margin: 0.5rem 0 1rem; padding-left: 1.25rem; }
.legal-content li { margin: 0.35rem 0; }
.legal-stand {
  color: var(--brand-dark-500);
  font-size: 0.875rem;
  margin-top: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px; font-weight: 600; font-size: 0.9375rem;
  border-radius: 999px; transition: all 200ms ease; cursor: pointer;
  border: 1px solid transparent; gap: 0.5rem; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--brand-orange-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--brand-dark); border-color: var(--brand-dark); }
.btn-secondary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { color: var(--brand-dark); }
.btn-ghost:hover { background: var(--brand-sand-50); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 0.875rem; }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--brand-dark-100);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 200ms ease;
}
.card-hover:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-flat { background: var(--brand-sand-50); border: 0; }

/* Header
   backdrop-filter must NOT live on .site-header: it makes fixed descendants use the
   header as their containing block (~72px tall), so .mobile-menu collapses/clips. */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid var(--brand-dark-100);
}
.site-header-backdrop {
  position: absolute; left: 0; right: 0; top: 0; height: 72px;
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms ease, visibility 0s;
}
.site-header-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.site-nav { display: none; gap: 1rem; align-items: center; }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav a {
  font-size: 0.9375rem; color: var(--brand-dark-700);
  padding: 0.5rem 0.875rem; border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--brand-dark); background: var(--brand-sand-50); }
.site-nav a.is-active { font-weight: 500; }
.site-nav a[aria-current="page"] {
  color: var(--brand-dark); font-weight: 500;
  background: var(--brand-sand-100);
}
.header-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer;
}
.menu-toggle-icon {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 22px; height: 16px;
}
.menu-toggle-bar {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--brand-dark);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .menu-toggle-bar { transition-duration: 0.01ms; }
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Dim nur unter der Nav-Leiste (Bar bleibt sichtbar, nicht überlagert) */
.mobile-menu-scrim {
  position: fixed; top: 72px; right: 0; bottom: 0; left: 0; z-index: 88;
  background: rgba(28, 31, 45, 0.46);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 520ms;
}
body.menu-open .mobile-menu-scrim {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}
@media (min-width: 1024px) {
  .mobile-menu-scrim { display: none !important; }
}

.mobile-menu {
  position: fixed; top: 72px; right: 0; bottom: 0; left: auto;
  z-index: 92;
  width: min(22rem, calc(100vw - clamp(0.75rem, 5vw, 1.5rem)));
  padding-top: 1.5rem;
  background: var(--brand-bg);
  box-shadow: -12px 0 48px -16px rgba(28, 31, 45, 0.22);
  transform: translate3d(100%, 0, 0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: max(3rem, env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-scrim {
    transition-duration: 0.01ms !important;
  }
  body.menu-open .mobile-menu nav a,
  body.menu-open .mobile-menu .mobile-cta {
    animation: none !important;
  }
}
.mobile-menu nav {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.35rem;
}
.mobile-menu nav a {
  font-size: 1.5rem; font-weight: 400; color: var(--brand-dark-700);
  padding: 0.5rem 0.875rem; border-radius: 999px;
  max-width: 100%;
  transition: background-color 180ms ease, color 180ms ease;
}
.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible,
.mobile-menu nav a.is-active {
  color: var(--brand-dark);
  background: var(--brand-sand-50);
}
.mobile-menu nav a.is-active { font-weight: 500; }
.mobile-menu nav a[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 500;
  background: var(--brand-sand-100);
}
@media (prefers-reduced-motion: no-preference) {
  body.menu-open .mobile-menu nav a {
    animation: mobile-nav-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  body.menu-open .mobile-menu nav a:nth-child(1) { animation-delay: 0.04s; }
  body.menu-open .mobile-menu nav a:nth-child(2) { animation-delay: 0.07s; }
  body.menu-open .mobile-menu nav a:nth-child(3) { animation-delay: 0.1s; }
  body.menu-open .mobile-menu nav a:nth-child(4) { animation-delay: 0.13s; }
  body.menu-open .mobile-menu nav a:nth-child(5) { animation-delay: 0.16s; }
  body.menu-open .mobile-menu nav a:nth-child(6) { animation-delay: 0.19s; }
  body.menu-open .mobile-menu nav a:nth-child(7) { animation-delay: 0.22s; }
  body.menu-open .mobile-menu nav a:nth-child(8) { animation-delay: 0.25s; }
  body.menu-open .mobile-menu .mobile-cta {
    animation: mobile-nav-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
  }
}
@keyframes mobile-nav-in {
  from { opacity: 0; transform: translate3d(16px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.mobile-menu .mobile-cta { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--brand-dark); font-size: 1.25rem; letter-spacing: -0.02em; text-decoration: none; }
.logo-mark { width: 28px; height: 28px; }
.logo-img { height: 32px; width: auto; display: block; }
.logo-img-dark { filter: brightness(0) invert(1); }
.site-footer .logo-img { height: 36px; }
@media (min-width: 768px) {
  .logo-img { height: 36px; }
}

/* Hero */
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

/* Visual placeholders (mock app screens) */
.mockup-frame {
  background: #fff;
  border: 1px solid var(--brand-dark-100);
  border-radius: 1.5rem;
  padding: 0.75rem;
  box-shadow: 0 24px 60px -30px rgba(28,31,45,0.25);
}
.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--brand-dark-100);
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 999px; background: var(--brand-sand-100); }
.mockup-screen {
  background: var(--brand-sand-50);
  border-radius: 1rem;
  overflow: hidden;
}

/* Phone frame */
.phone {
  width: 100%; max-width: 320px; aspect-ratio: 9/19;
  background: var(--brand-dark);
  border-radius: 2.5rem;
  padding: 0.5rem;
  box-shadow: 0 30px 70px -30px rgba(28,31,45,0.4);
  margin: 0 auto;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--brand-bg);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}

/* Striped placeholder */
.placeholder-stripes {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--brand-sand-50) 0px, var(--brand-sand-50) 8px,
    var(--brand-sand-100) 8px, var(--brand-sand-100) 16px
  );
}

/* Reveal animation */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: #fff;
  border-top: 1px solid var(--brand-dark-100);
  box-shadow: 0 -8px 24px -12px rgba(28,31,45,0.15);
  transform: translateY(110%); transition: transform 240ms ease;
  padding-top: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: calc(1.125rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }
.sticky-cta.is-visible { transform: none; }
.sticky-cta-row { display: flex; gap: 0.5rem; align-items: center; }
.sticky-cta .btn { flex: 1; height: 48px; font-size: 0.875rem; padding: 0 16px; }
.sticky-cta-close { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--brand-dark-500); cursor: pointer; }

/* Tag/pill */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.04em;
}

/* Stat */
.kpi-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--brand-dark); letter-spacing: -0.02em; line-height: 1; }
.kpi-label { font-size: 0.875rem; color: var(--brand-dark-500); margin-top: 0.5rem; }

/* Feature row (zigzag) */
.feature-row { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .feature-row.reverse > :first-child { order: 2; }
}

/* Marquee */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 3rem; animation: marquee 28s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--brand-dark-100); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; background: transparent; border: 0; text-align: left; cursor: pointer; font-size: 1.0625rem; font-weight: 500; color: var(--brand-dark); gap: 1rem; }
.faq-icon { width: 28px; height: 28px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--brand-dark-100); border-radius: 999px; transition: all 200ms; }
.faq-item.is-open .faq-icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 240ms ease; }
.faq-panel-inner { padding: 0 0 1.25rem; color: var(--brand-dark-700); max-width: 60ch; }

/* Animated mock visuals (CSS placeholders for videos) */
.mock-anim {
  position: relative; width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--brand-sand-50), #fff);
  border-radius: 1.5rem; overflow: hidden;
  border: 1px solid var(--brand-dark-100);
}
.mock-pulse::before {
  content: ""; position: absolute; inset: -50%;
  background: radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 60%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(0.9); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }

/* Footer */
.site-footer { background: var(--brand-dark); color: #BDBFC7; padding: 5rem 0 2rem; }
.site-footer h4 { color: #fff; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 1.25rem; }
.site-footer a { color: #BDBFC7; transition: color 200ms; }
.site-footer a:hover { color: #fff; }
.site-footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .site-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; border-top: 1px solid #2A2D3A; margin-top: 3rem; padding-top: 2rem; font-size: 0.8125rem; }

/* Newsletter card */
.newsletter-card {
  background: var(--brand-sand-50);
  border: 1px solid var(--brand-dark-100);
  border-radius: 1.25rem; padding: 1.5rem;
}

/* Audience splitter cards */
.audience-card {
  display: flex; flex-direction: column; gap: 1rem;
  background: #fff;
  border: 2px solid var(--brand-dark-100);
  border-radius: 1.25rem; padding: 2rem;
  transition: all 240ms ease;
  position: relative;
  overflow: hidden;
}
.audience-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.audience-card .arrow { transition: transform 240ms; }
.audience-card:hover .arrow { transform: translateX(4px); }
.audience-card.purple:hover { border-color: var(--brand-purple); }
.audience-card.purple .pill { background: var(--brand-purple-light); color: #553a89; }
.audience-card-subtitle {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--brand-dark-500);
  margin: 0.35rem 0 0;
  max-width: 100%;
}
.audience-card.purple .audience-card-subtitle { color: #5c4a78; }

/* Press marquee (logo bar) — zwei .press-set, Animation −50% = eine nahtlose Periode */
.press-bar { padding-top: 3rem; padding-bottom: 3rem; }
.press-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.press-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
}
.press-set {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex: 0 0 auto;
}
@media (prefers-reduced-motion: no-preference) {
  .press-track {
    animation: press-scroll 32s linear infinite;
    will-change: transform;
  }
  .press-marquee:hover .press-track { animation-play-state: paused; }
}
@media (prefers-reduced-motion: reduce) {
  .press-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    row-gap: 1.5rem;
    column-gap: 2.5rem;
  }
  .press-track .press-set[aria-hidden="true"] { display: none; }
}
.press-logo {
  flex: 0 0 auto;
  display: inline-flex; align-items: center;
  height: 44px;
  filter: grayscale(0.15);
  opacity: 0.85;
  transition: opacity 200ms, filter 200ms;
}
.press-logo:hover { opacity: 1; filter: none; }
.press-logo svg { height: 36px; width: auto; display: block; }
@keyframes press-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Hero illustration (homepage) */
.hero-illustration {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 1.5rem; overflow: hidden;
  background: var(--brand-sand-50);
  box-shadow: 0 24px 60px -24px rgba(28,31,45,0.18);
}
.hero-illustration > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  display: block;
}
.hero-illustration-overlay {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; justify-content: flex-end;
  padding: 1.75rem; gap: 0.5rem; pointer-events: none;
}
.hero-illustration-overlay > * { pointer-events: auto; }

/* Video placeholder ("Format A" hero loop look) */
.video-placeholder {
  position: relative; width: 100%; aspect-ratio: 4/5;
  background: var(--brand-dark);
  border-radius: 1.5rem; overflow: hidden;
  color: #fff;
}
.video-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 30% 20%, rgba(231, 107, 69, 0.45), transparent 60%),
              radial-gradient(600px 300px at 80% 90%, rgba(133,97,199,0.3), transparent 60%);
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-3%, 2%); } }
.video-placeholder .play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: transparent; border: 0; cursor: pointer;
}
.video-placeholder .play-btn span {
  width: 72px; height: 72px; border-radius: 999px; background: rgba(255,255,255,0.95);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-dark);
}

/* „Was ist Renaldo?“ — Pitch-Block (luftigeres Layout) */
.section.pitch-section {
  background: var(--brand-dark);
  color: #fff;
  padding-top: clamp(5.5rem, 11vw, 11rem);
  padding-bottom: clamp(5.5rem, 11vw, 11rem);
}
@media (min-width: 1024px) {
  .section.pitch-section {
    padding-top: clamp(6.5rem, 12vw, 12.5rem);
    padding-bottom: clamp(6.5rem, 12vw, 12.5rem);
  }
}
.pitch-section-inner {
  max-width: 1180px;
  margin-inline: auto;
}
.pitch-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.75rem, 6vw, 5.5rem);
}
@media (min-width: 1024px) {
  .pitch-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: clamp(3.25rem, 5.5vw, 6.5rem);
    align-items: start;
  }
}
.pitch-eyebrow { color: var(--accent); margin-bottom: 0; }
.pitch-title {
  color: #fff;
  margin: 1.35rem 0 0;
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
}
.pitch-lead {
  color: #C8CAD4;
  font-size: clamp(1.0625rem, 1.35vw, 1.3125rem);
  line-height: 1.68;
  margin: 1.85rem 0 0;
  max-width: 52ch;
}
.pitch-roles {
  list-style: none;
  padding: 0;
  margin: 2.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pitch-roles li {
  margin: 0;
  padding: 1.1rem 1.35rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D8DAE3;
  font-size: 1rem;
  line-height: 1.55;
  position: relative;
  padding-left: 2.5rem;
}
.pitch-roles li::before {
  content: "→";
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}
.pitch-roles strong {
  color: #fff;
  font-weight: 600;
}
.pitch-cta {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .pitch-cta { margin-top: 2.75rem; }
}
.pitch-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .pitch-media {
    justify-content: flex-end;
    align-items: flex-start;
  }
}
.video-placeholder.pitch-video {
  width: 100%;
  max-width: min(100%, 38rem);
  aspect-ratio: 16 / 10;
  border-radius: 1.25rem;
}
@media (min-width: 1024px) {
  .video-placeholder.pitch-video {
    max-width: none;
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}
.pitch-video-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

/* Ribbon for pricing card highlight */
.ribbon {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}

/* Small bits */
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { display: flex; gap: 0.625rem; align-items: flex-start; padding: 0.4rem 0; }
.list-check svg { flex: 0 0 auto; margin-top: 4px; color: var(--accent); }
.list-check li:not(:has(svg))::before {
  content: "\2713"; flex: 0 0 auto;
  color: var(--accent); font-weight: 700;
  width: 1rem; line-height: 1.5;
}
.price-card[data-accent="purple"] .list-check li:not(:has(svg))::before { color: var(--brand-purple); }

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

/* Skip link */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--brand-dark); color: #fff; padding: 0.5rem 1rem; border-radius: 0.5rem; z-index: 99; }

/* Pricing grid */
.pricing-grid {
  display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center;
}
.pricing-grid > .price-card {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 360px;
}
.price-card {
  background: #fff; border: 1px solid var(--brand-dark-100); border-radius: 1.25rem;
  padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; position: relative;
}
.price-card-head { display: flex; flex-direction: column; gap: 0.25rem; min-height: 6.5rem; }
.price-card-head p { margin: 0.5rem 0 0; line-height: 1.45; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: 0 12px 28px -16px rgba(231, 107, 69, 0.45); }
.price-card .price { display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; row-gap: 0.1rem; }
.price-card .price .tabular { font-size: 2rem; font-weight: 700; color: var(--brand-dark); line-height: 1.1; white-space: nowrap; }
.price-card .price .cycle { font-size: 0.8125rem; color: var(--brand-dark-500); }
.price-card .list-check { list-style: none; padding: 0; margin: 0; flex: 1; font-size: 0.9375rem; display: flex; flex-direction: column; gap: 0.1rem; }
.price-card[data-accent="purple"] .list-check svg { color: var(--brand-purple); }
.price-card h3 { margin: 0.25rem 0 0; font-size: 1.25rem; }

/* Billing toggle */
.billing-btn {
  border: none; background: transparent; padding: 0.5rem 1rem; border-radius: 999px;
  cursor: pointer; font-size: 0.875rem; color: var(--brand-dark-500); font-weight: 500;
  font-family: inherit;
}
.billing-btn.active { background: var(--brand-dark); color: #fff; }
.billing-toggle[data-accent="purple"] .billing-btn.active { background: var(--brand-purple); }

/* Comparison table */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.cmp-table th, .cmp-table td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--brand-dark-100); }
.cmp-table th:first-child, .cmp-table td:first-child { font-weight: 500; color: var(--brand-dark); }
.cmp-table th:not(:first-child), .cmp-table td:not(:first-child) { text-align: center; color: var(--brand-dark-500); }
.cmp-table thead th { background: var(--brand-sand-50); font-weight: 600; color: var(--brand-dark); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cmp-table tbody tr:hover { background: var(--brand-sand-50); }

/* Stub page hero */
.stub-hero {
  padding: 5rem 0 4rem; background: var(--brand-bg);
}

/* How-it-works steps (warum-renaldo) */
.how-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25rem; grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 720px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .how-steps { grid-template-columns: repeat(4, 1fr); } }
.how-steps > li {
  background: #fff; border: 1px solid var(--brand-dark-100); border-radius: 1.25rem;
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; position: relative;
}
.how-steps .how-num {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.how-steps h3 { margin: 0; font-size: 1.125rem; }
.how-steps p { margin: 0; color: var(--brand-dark-700); font-size: 0.9375rem; line-height: 1.55; }

/* Before/After columns */
.before-after {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
@media (min-width: 800px) { .before-after { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.ba-col {
  border-radius: 1.25rem; padding: 1.75rem 1.5rem;
  border: 1px solid var(--brand-dark-100);
}
.ba-col ul { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.6rem; }
.ba-col li {
  position: relative; padding-left: 1.6rem; color: var(--brand-dark-700);
  font-size: 0.9375rem; line-height: 1.5;
}
.ba-col li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 0.85rem; height: 0.85rem; border-radius: 999px;
}
.ba-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}
.ba-before { background: #fff; }
.ba-before .ba-label { background: var(--brand-sand-100); color: var(--brand-dark-700); }
.ba-before li::before { background: var(--brand-dark-100); }
.ba-before li { text-decoration: line-through; text-decoration-color: var(--brand-dark-100); text-decoration-thickness: 1px; }
.ba-after { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.ba-after .ba-label { background: var(--accent); color: #fff; }
.ba-after li { color: rgba(255,255,255,0.88); }
.ba-after li::before {
  background: var(--accent);
  box-shadow: inset 0 0 0 2px var(--brand-dark);
}

/* Avatars */
.avatar {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem; letter-spacing: 0.02em;
}
.avatar-lg { width: 72px; height: 72px; font-size: 1.5rem; }

/* Coach certificate card */
.coach-cert-card {
  background: #fff; border: 1px solid var(--brand-dark-100); border-radius: 1.25rem;
  padding: 2rem 1.75rem; max-width: 360px; width: 100%;
  display: flex; flex-direction: column; gap: 0.5rem;
  box-shadow: 0 24px 48px -32px rgba(28,31,45,0.25);
  position: relative;
}
.coach-cert-ribbon {
  position: absolute; top: -0.6rem; right: 1.5rem;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.coach-cert-seal { color: var(--accent); margin-bottom: 0.25rem; }
.coach-cert-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand-dark-500);
}
.coach-cert-name {
  font-family: "Playfair Display", "Work Sans", serif;
  font-size: 1.625rem; font-weight: 600; color: var(--brand-dark);
  border-bottom: 1px solid var(--brand-dark-100); padding-bottom: 0.75rem; margin-bottom: 0.25rem;
}
.coach-cert-meta { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.875rem; color: var(--brand-dark-700); }
.coach-cert-meta > div::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.coach-cert-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--brand-dark-100);
}

/* Coach modules */
.coach-modules { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .coach-modules { grid-template-columns: repeat(2, 1fr); } }
.coach-module {
  background: #fff; border: 1px solid var(--brand-dark-100); border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.coach-module-head { display: flex; flex-direction: column; gap: 0.5rem; }
.coach-module h3 { margin: 0; font-size: 1.25rem; }
.coach-module > p { margin: 0; color: var(--brand-dark-700); }

/* Role cards */
.role-card {
  display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1.5rem;
}
.role-card .role-meta { flex: 1; }
.role-arrow {
  color: var(--accent); font-weight: 600; flex: 0 0 auto;
  white-space: nowrap;
}
.role-tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.875rem;
}
.role-tags span {
  font-size: 0.75rem; padding: 0.25rem 0.6rem; border-radius: 999px;
  background: var(--brand-sand-50); color: var(--brand-dark-700);
}

/* Scroll-Fortschritt (lange Seiten) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 60;
  pointer-events: none;
  background: transparent;
  overflow: hidden;
}
.scroll-progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--brand-purple));
  opacity: 0.85;
}

/* Homepage: Audience-Hinweis nach Scroll-Pause */
.audience-hint {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 85;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}
.audience-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.menu-open .audience-hint { display: none; }
.audience-hint-panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--brand-dark-100);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem 1.35rem;
  box-shadow: 0 20px 50px -20px rgba(28, 31, 45, 0.35);
}
.audience-hint-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-sand-50);
  color: var(--brand-dark-700);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.audience-hint-title {
  margin: 0 2rem 0.25rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
}
.audience-hint-sub {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--brand-dark-500);
  line-height: 1.45;
}
.audience-hint-cards {
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .audience-hint-cards { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}
.audience-hint-card {
  display: block;
  padding: 0.65rem 0.5rem;
  border-radius: 0.625rem;
  background: var(--brand-sand-50);
  border: 1px solid var(--brand-dark-100);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: var(--brand-dark);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.audience-hint-card:hover {
  border-color: var(--accent);
  background: #fff;
}
.audience-hint-card.purple {
  background: var(--brand-purple-light);
  border-color: rgba(133, 97, 199, 0.35);
  color: #553a89;
}
.audience-hint-card.purple:hover {
  border-color: var(--brand-purple);
}

/* Exit-Intent (Landingpages) */
.exit-intent {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(28, 31, 45, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.exit-intent.is-open {
  opacity: 1;
  pointer-events: auto;
}
.exit-intent-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px -24px rgba(28, 31, 45, 0.4);
  border: 1px solid var(--brand-dark-100);
}
.exit-intent-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-sand-50);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--brand-dark-700);
}
.exit-intent-dialog h2 {
  margin: 0 2.25rem 0.75rem 0;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
}
.exit-intent-dialog p {
  margin: 0 0 1.25rem;
  color: var(--brand-dark-700);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.exit-intent-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.exit-intent-actions .btn { width: 100%; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
