/* =========================================================================
   Silver Mountain Promotion — Onepager
   CI-Update 2026-05-03: Schwarz / Weiß / Logo-Grau / Petrol-Signal
   Schriften: Anton (Display) · Red Hat Display (Sans, alle Body-Anwendungen)
   Stil: dark plakativ · scharfkantig · Petrol-akzentuiert
   ========================================================================= */

/* ---- Tokens ---- */
:root {
  --c-bg:        #000000;
  --c-bg-2:      #0a0a0a;
  --c-bg-3:      #141414;
  --c-line:      rgba(255,255,255,.08);
  --c-line-2:    rgba(255,255,255,.14);
  --c-text:      #ffffff;
  --c-text-dim:  #b8b8b8;     /* = Logo-Grau, Sekundär-Schrift */
  --c-text-mute: #7a7a7a;

  --c-logo:      #b8b8b8;
  --c-signal:    #0097b2;     /* Signal-Petrol */
  --c-signal-hi: #15b4d0;     /* Hover */
  --c-signal-lo: #006a7d;     /* Active */

  --c-accent:    var(--c-signal);
  --c-accent-hi: #ffffff;

  --c-glow:      rgba(0,151,178,.30);
  --c-glow-soft: rgba(0,151,178,.12);

  --ff-display:  'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --ff-sans:     'Red Hat Display', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --w-container: 1240px;
  --pad-x:       clamp(20px, 4vw, 56px);

  --r-0:  0px;       /* scharfkantig */
  --r-2:  2px;
  --r-4:  4px;

  --t-fast:   .2s cubic-bezier(.2,.7,.2,1);
  --t-mid:    .45s cubic-bezier(.2,.7,.2,1);
  --t-slow:   .9s cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  overflow-x: hidden;
  overscroll-behavior-x: contain;     /* verhindert horizontales Page-Bouncing bei Karussell-Swipes */
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Hintergrund-Gradient global (subtile Petrol-Tiefe auf Schwarz) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(0,151,178,.10), transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, rgba(0,151,178,.06), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(184,184,184,.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--c-signal); color: var(--c-text); }

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--c-signal); color: var(--c-text);
  padding: 8px 14px; font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--w-container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---- Typografie ---- */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin: 0 0 18px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: linear-gradient(90deg, var(--c-signal), transparent);
  transform: translateY(-50%);
}

/* Display-Headlines (Anton) — plakativ, kantig, UPPERCASE */
.section-title, .hero-title, .contact-title {
  font-family: var(--ff-display);
  font-weight: 400;          /* Anton hat nur 400 */
  letter-spacing: 0;
  line-height: 1.0;
  margin: 0 0 24px;
  color: var(--c-text);
  text-transform: uppercase;
}
.section-title { font-size: clamp(36px, 5vw, 64px); }
.section-title em, .hero-title em, .contact-title em {
  font-style: normal;        /* Anton braucht kein italic */
  color: var(--c-signal);
}

.section-sub, .lead {
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text-dim);
  max-width: 640px;
  margin: 0 0 24px;
}
.lead { font-size: 18px; color: var(--c-text); font-weight: 400; }

.section-head { max-width: 760px; margin: 0 0 60px; }
.section-head .section-sub { margin-bottom: 0; }

/* ---- Section Spacing ---- */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--c-line);
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 120px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--c-signal), transparent);
  opacity: .6;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--t-mid), backdrop-filter var(--t-mid), padding var(--t-mid), border-color var(--t-mid);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--c-line);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-text);
}
.brand-mark {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0,151,178,.25));
  transition: transform var(--t-fast), filter var(--t-fast);
}
.brand:hover .brand-mark {
  transform: scale(1.06);
  filter: drop-shadow(0 0 24px rgba(0,151,178,.5));
}

.primary-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.primary-nav a {
  position: relative;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--c-text-dim);
  padding: 10px 14px;
  transition: color var(--t-fast);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--c-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.primary-nav a:hover {
  color: var(--c-text);
}
.primary-nav a:hover::after {
  transform: scaleX(1);
}
.primary-nav a.nav-cta {
  margin-left: 12px;
  padding: 10px 18px;
  border: 1px solid var(--c-signal);
  background: rgba(0,151,178,.08);
  color: var(--c-text);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: all var(--t-fast);
}
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover {
  background: var(--c-signal);
  box-shadow: 0 0 24px var(--c-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--c-text);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 16px var(--pad-x);
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* =========================================================================
   BUTTONS — scharfkantig, Petrol-Primär, Glas-Sekundär
   ========================================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text);
  border-radius: var(--r-0);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}

/* Sweep-Lichtreflex bei Hover (für Glas-Variante) */
.btn-glass::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.btn-glass:hover::after { transform: translateX(120%); }

.btn .btn-label,
.btn .btn-arrow { position: relative; z-index: 2; }
.btn-arrow { transition: transform var(--t-fast); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn:focus-visible {
  outline: 2px solid var(--c-signal);
  outline-offset: 3px;
}

/* Primär — Petrol Solid */
.btn-primary {
  background: var(--c-signal);
  border-color: var(--c-signal);
  color: var(--c-text);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 8px 24px rgba(0,0,0,.4),
    0 0 0 rgba(0,151,178,0);
}
.btn-primary:hover {
  background: var(--c-signal-hi);
  border-color: var(--c-signal-hi);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 14px 32px rgba(0,0,0,.5),
    0 0 40px var(--c-glow);
}
.btn-primary:active {
  background: var(--c-signal-lo);
  border-color: var(--c-signal-lo);
}

/* Sekundär — Glas mit Logo-Grau-Border */
.btn-ghost {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 100%);
  border-color: rgba(184,184,184,.30);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.btn-ghost:hover {
  border-color: var(--c-signal);
  background: rgba(0,151,178,.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 32px var(--c-glow-soft);
}

.btn-large {
  padding: 20px 36px;
  font-size: 14px;
  letter-spacing: .14em;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: hero-float 18s ease-in-out infinite alternate;
}
.hero-glow-1 {
  width: 520px; height: 520px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(0,151,178,.45), transparent 70%);
}
.hero-glow-2 {
  width: 600px; height: 600px;
  bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(0,151,178,.30), transparent 70%);
  animation-delay: -6s;
}
@keyframes hero-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero-title {
  font-size: clamp(40px, 7.5vw, 112px);
  font-weight: 400;
  margin: 12px 0 28px;
  line-height: .95;
  min-height: 2em;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}
.hero-title .line {
  display: block;
  white-space: nowrap;   /* garantiert: Zeile bricht nie in eine dritte Zeile um */
}

/* =========================================================================
   BURST TEXT-EFFEKT (Canva-Stil „Ausbruch")
   Buchstaben skalieren mit kleinem Overshoot von klein auf groß,
   gestaffelt nacheinander, mit kurzem Petrol-Glow im Pop-Moment.
   .decode-word hält ein ganzes Wort zusammen — bricht nie in der Mitte um.
   ========================================================================= */
.decode-word {
  display: inline-block;
  white-space: nowrap;
}
.decode-char {
  display: inline-block;
  opacity: 0;
  transform: scale(.35);
  transform-origin: center 60%;
  will-change: transform, opacity;
}
.decode-char.is-locked {
  animation: burst-letter 620ms cubic-bezier(.34, 1.56, .64, 1) forwards;
}
@keyframes burst-letter {
  0% {
    opacity: 0;
    transform: scale(.35);
    text-shadow: 0 0 0 rgba(0,151,178,0);
    filter: blur(4px);
  }
  40% {
    opacity: 1;
    text-shadow: 0 0 22px rgba(0,151,178,.65);
    filter: blur(0);
  }
  70% {
    transform: scale(1.10);
    text-shadow: 0 0 14px rgba(0,151,178,.35);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 0 rgba(0,151,178,0);
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .decode-char {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
    text-shadow: none;
  }
}

.hero-sub {
  font-family: var(--ff-sans);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--c-text-dim);
  max-width: 680px;
  margin: 0 0 40px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 80px;
}

/* =========================================================================
   FIGHTER STATS (Hero-Karte mit Roster-Bilanz)
   ========================================================================= */
.fighter-stats {
  position: relative;
  display: block;
  margin-top: 28px;
  padding: 22px 26px 24px;
  border: 1px solid var(--c-line);
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%);
  /* dezenter Petrol-Akzent oben links als sportliches Tag-Element */
  box-shadow: inset 3px 0 0 var(--c-signal);
}
.fighter-stats-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line-2);
}
.fighter-stats-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-signal);
}
.fighter-stats-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--c-text);
  margin: 0;
  line-height: 1.05;
  text-transform: uppercase;
}
.fighter-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 24px;
}
.fighter-stats-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.fighter-stats-item + .fighter-stats-item {
  padding-left: 24px;
  border-left: 1px solid var(--c-line-2);
}
.fighter-stats-num {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--c-text);
  line-height: 1.0;
}
.fighter-stats-lbl {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  line-height: 1.4;
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.section-about {
  position: relative;
  overflow: hidden;
}
/* Berg-Logo als weichgezeichneter Watermark, zentriert hinter dem Text */
.section-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../bilder/logo-mark.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: clamp(620px, 78vw, 1180px);
  opacity: .07;
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}
.section-about > .container { position: relative; z-index: 1; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.col-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.principle {
  position: relative;
  padding: 28px 28px 28px 80px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--c-line);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.principle:hover {
  border-color: var(--c-signal);
  box-shadow: 0 0 40px var(--c-glow-soft);
  transform: translateY(-2px);
}
.principle-num {
  position: absolute;
  top: 22px; left: 24px;
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  color: var(--c-signal);
  letter-spacing: 0;
  line-height: 1;
}
.principle h3 {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-text);
  line-height: 1.2;
}
.principle p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text-dim);
}

/* =========================================================================
   MARKETS
   ========================================================================= */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.market-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.market-tile {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.market-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-signal), transparent);
  transform: scaleX(.3);
  transform-origin: center;
  opacity: .5;
  transition: transform var(--t-mid), opacity var(--t-mid);
}
.market-tile:hover {
  transform: translateY(-4px);
  border-color: var(--c-signal);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 60px var(--c-glow-soft);
}
.market-tile:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.market-tile-feature {
  background:
    linear-gradient(180deg, rgba(0,151,178,.10) 0%, rgba(0,151,178,.02) 100%);
  border-color: rgba(0,151,178,.35);
}
.market-tile-feature::before { transform: scaleX(1); opacity: 1; }

.market-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding: 6px 12px;
  border: 1px solid var(--c-line-2);
  margin-bottom: 24px;
}
.market-num {
  font-family: var(--ff-display);
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--c-text);
  letter-spacing: 0;
}
.market-tile-feature .market-num { color: var(--c-signal); }
.market-unit { font-size: .55em; color: var(--c-signal); margin-left: 4px; }
.market-lbl {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.market-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.market-detail li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--c-text-dim);
}
.market-detail li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--c-signal);
}

.market-sources {
  font-size: 12px;
  color: var(--c-text-mute);
  margin: 0;
  text-align: center;
  letter-spacing: .04em;
}

/* Rich-Bullets (Vietnam/Germany/Europe Datenkarten — Strong + Context-Zeile) */
.market-detail-rich {
  gap: 16px;
}
.market-detail-rich li {
  padding-left: 18px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.4;
  display: block;
}
.market-detail-rich li::before {
  top: 11px;
}
.market-detail-rich li strong {
  font-family: var(--ff-sans);
  font-weight: 700;
  color: var(--c-text);
  display: block;
  margin-bottom: 4px;
}
.market-bullet-context {
  display: block;
  font-size: 12.5px;
  color: var(--c-text-mute);
  line-height: 1.5;
  letter-spacing: .01em;
}

/* Pro-Karte Quellen-Footnote */
.market-tile-sources {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px dashed var(--c-line);
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--c-text-mute);
  letter-spacing: .02em;
}

/* Three-Theses-Block (Pitch-Logik unter den Karten) */
.market-theses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0 24px;
}
.market-thesis {
  position: relative;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.005) 100%);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-signal);
}
.market-thesis-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-signal);
  margin: 0 0 10px;
}
.market-thesis-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-dim);
  margin: 0;
}
.market-thesis-text strong {
  display: block;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

/* Markets — Mobile-Overrides für Rich-Bullets, Source-Footnote, Theses */
@media (max-width: 1024px) {
  .market-detail-rich { gap: 14px; }
  .market-detail-rich li { font-size: 13.5px; }
  .market-detail-rich li strong { font-size: 14px; }
  .market-bullet-context { font-size: 12px; line-height: 1.45; }

  .market-tile-sources {
    margin-top: 22px;
    padding-top: 14px;
    font-size: 10px;
    line-height: 1.55;
  }

  .market-theses {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 20px;
  }
  .market-thesis { padding: 22px 20px; }
  .market-thesis-text { font-size: 13.5px; }
}
@media (max-width: 480px) {
  .market-detail-rich li { font-size: 13px; }
  .market-detail-rich li strong { font-size: 13.5px; }
  .market-bullet-context { font-size: 11.5px; }
  .market-tile-sources { font-size: 9.5px; }
  .market-thesis { padding: 20px 18px; }
  .market-thesis-text { font-size: 13px; }
  .market-thesis-eyebrow { font-size: 10px; }
}

/* Theses-Block für 2 Items (Advisory-Seite: nur Germany + Europe) */
.market-theses-2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .market-theses-2col { grid-template-columns: 1fr; }
}

/* =========================================================================
   NETWORK SECTION (Advisory-Seite — Karten untereinander, breiter)
   ========================================================================= */
.section-network {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,151,178,.020) 50%, transparent 100%);
}

.network-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto 40px;
}

.network-card {
  position: relative;
  padding: 40px 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.030) 0%, rgba(255,255,255,.008) 100%);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.network-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--c-signal), transparent);
}
.network-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-signal);
  box-shadow: 0 18px 50px rgba(0,0,0,.4), 0 0 50px var(--c-glow-soft);
}

.network-card-head {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-line);
}
.network-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-signal);
  padding: 6px 12px;
  border: 1px solid rgba(0,151,178,.4);
  margin-bottom: 16px;
}
.network-card-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
}
.network-sub {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--c-text-mute);
  letter-spacing: .01em;
  max-width: 720px;
}

.network-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.network-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.4;
}
.network-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--c-signal);
}
.network-bullets li strong {
  font-family: var(--ff-sans);
  font-weight: 700;
  color: var(--c-text);
  display: block;
  margin-bottom: 4px;
}
.network-bullet-context {
  display: block;
  font-size: 12.5px;
  color: var(--c-text-mute);
  line-height: 1.5;
  letter-spacing: .01em;
}

.network-card-footnote {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--c-line);
  font-size: 11px;
  color: var(--c-text-mute);
  letter-spacing: .02em;
  font-style: italic;
}

/* Network — Mobile-Overrides */
@media (max-width: 1024px) {
  .network-list { gap: 16px; }
  .network-card { padding: 30px 26px; }
  .network-card-head { margin-bottom: 18px; padding-bottom: 16px; }
  .network-card-head h3 { font-size: 22px; }
  .network-sub { font-size: 13px; }
  .network-bullets { gap: 14px; }
  .network-bullets li { font-size: 13.5px; }
  .network-bullets li strong { font-size: 14px; }
  .network-bullet-context { font-size: 12px; line-height: 1.45; }
  .network-card-footnote { font-size: 10.5px; margin-top: 18px; padding-top: 12px; }
}
@media (max-width: 480px) {
  .network-card { padding: 24px 20px; }
  .network-card-head h3 { font-size: 20px; }
  .network-tag { font-size: 10px; padding: 5px 10px; letter-spacing: .25em; }
  .network-sub { font-size: 12.5px; }
  .network-bullets li { font-size: 13px; }
  .network-bullets li strong { font-size: 13.5px; }
  .network-bullet-context { font-size: 11.5px; }
}

/* =========================================================================
   NETWORK SLIDES (kompakte Karussell-Slides — Lom als Aktiv-Kämpfer-Story)
   ========================================================================= */
.network-slides {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding: 24px;
  padding: 8px 24px 28px;
  margin: 0 -24px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-signal) transparent;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.network-slides.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.network-slides.is-dragging .network-slide {
  pointer-events: none;
}
.network-slides::-webkit-scrollbar { height: 6px; }
.network-slides::-webkit-scrollbar-track { background: transparent; }
.network-slides::-webkit-scrollbar-thumb { background: rgba(0,151,178,.4); border-radius: 3px; }

.network-slide {
  flex: 0 0 clamp(280px, 32%, 360px);
  scroll-snap-align: center;
  position: relative;
  padding: 32px 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.030) 0%, rgba(255,255,255,.008) 100%);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.network-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 60%;
  background: linear-gradient(180deg, var(--c-signal), transparent);
}
.network-slide:hover {
  transform: translateY(-2px);
  border-color: var(--c-signal);
  box-shadow: 0 16px 44px rgba(0,0,0,.4), 0 0 44px var(--c-glow-soft);
}

.network-slide-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-signal);
  padding: 5px 11px;
  border: 1px solid rgba(0,151,178,.4);
}
.network-slide-headline {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0;
  color: var(--c-text);
}
.network-slide-headline em {
  font-style: normal;
  color: var(--c-signal);
}
.network-slide-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-text-dim);
  margin: 0;
  flex: 1;
}
.network-slide-context {
  margin: 8px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--c-line);
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}

.network-closing {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text-dim);
}
.network-closing em {
  font-style: italic;
  color: var(--c-text);
}

@media (max-width: 1024px) {
  .network-slide { flex-basis: 78%; padding: 26px 22px 22px; }
  .network-slide-headline { font-size: 22px; }
  .network-slide-text { font-size: 13px; }
  .network-closing { font-size: 14px; margin-top: 20px; }
}
@media (max-width: 480px) {
  .network-slide { flex-basis: 84%; padding: 22px 18px 18px; }
  .network-slide-headline { font-size: 20px; }
  .network-slide-text { font-size: 12.5px; }
  .network-slide-context { font-size: 10px; letter-spacing: .1em; }
}

/* =========================================================================
   ROSTER (Active fighter cards with locked photos + colour-coded record)
   ========================================================================= */
.section-roster {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,151,178,.020) 50%, transparent 100%);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto 32px;
}

.roster-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.030) 0%, rgba(255,255,255,.008) 100%);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
  z-index: 0;
}
.roster-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--c-signal), transparent);
  z-index: 2;
}
.roster-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-signal);
  box-shadow: 0 18px 48px rgba(0,0,0,.45), 0 0 48px var(--c-glow-soft);
}

/* Shine-Hover: glänzender Streifen wandert von links nach rechts beim Hover */
.roster-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(0, 151, 178, 0.22) 52%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 3;
  transition: left 0.85s cubic-bezier(.22,.61,.36,1);
}
.roster-card:hover .roster-shine {
  left: 120%;
}

.roster-photo {
  position: relative;
  width: 100%;
  height: clamp(200px, 22vw, 260px);
  overflow: hidden;
  background: #0a0a0a;
  border-bottom: 1px solid var(--c-line);
}

/* Vier unterschiedliche Gradient-Muster pro Karte (statt grauen Einheitsblock) */
.roster-photo-blur {
  position: absolute;
  inset: -20px;
  filter: blur(28px);
  opacity: .85;
}
.roster-photo-blur-1 {
  background:
    radial-gradient(circle at 30% 25%, rgba(0,151,178,.55), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, #1a1a1c, #0a0a0a);
}
.roster-photo-blur-2 {
  background:
    radial-gradient(circle at 65% 30%, rgba(0,151,178,.45), transparent 55%),
    radial-gradient(circle at 25% 70%, rgba(180,180,180,.20), transparent 55%),
    linear-gradient(160deg, #15151a, #0a0a0a);
}
.roster-photo-blur-3 {
  background:
    radial-gradient(circle at 50% 35%, rgba(0,151,178,.40), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.15), transparent 55%),
    linear-gradient(120deg, #16161a, #0a0a0a);
}
.roster-photo-blur-4 {
  background:
    radial-gradient(circle at 35% 65%, rgba(0,151,178,.50), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(160,160,160,.18), transparent 55%),
    linear-gradient(145deg, #18181c, #0a0a0a);
}

.roster-photo-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0,0,0,.55);
  color: var(--c-text);
  text-align: center;
  padding: 14px;
}
.roster-photo-lock svg {
  color: var(--c-signal);
  opacity: .9;
}
.roster-photo-lock-text {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  max-width: 140px;
  line-height: 1.4;
}

.roster-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 22px 22px 16px;
}
.roster-name {
  font-family: var(--ff-display);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  color: var(--c-text);
}
.roster-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  font-size: 12.5px;
  color: var(--c-text-dim);
  line-height: 1.5;
}
.roster-meta > span { display: block; }
.roster-meta-label {
  display: inline-block;
  min-width: 70px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-right: 8px;
}

.roster-record {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: auto;
  padding: 0 16px 18px;
}
.roster-stat {
  text-align: center;
  padding: 10px 4px;
  border: 1px solid var(--c-line);
  background: rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.roster-stat-num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--c-text);
}
.roster-stat-lbl {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  line-height: 1.1;
}
.roster-stat-win {
  border-color: rgba(74, 222, 128, .35);
  background: rgba(74, 222, 128, .06);
}
.roster-stat-win .roster-stat-num { color: #4ade80; }
.roster-stat-draw {
  border-color: rgba(251, 191, 36, .35);
  background: rgba(251, 191, 36, .06);
}
.roster-stat-draw .roster-stat-num { color: #fbbf24; }
.roster-stat-loss {
  border-color: rgba(248, 113, 113, .35);
  background: rgba(248, 113, 113, .06);
}
.roster-stat-loss .roster-stat-num { color: #f87171; }

.roster-note {
  max-width: 760px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-dim);
  text-align: center;
}
.roster-note strong { color: var(--c-text); }
.roster-note a { color: var(--c-signal); text-decoration: none; border-bottom: 1px solid currentColor; }
.roster-note a:hover { color: var(--c-text); }

/* Roster — Mobile Overrides */
@media (max-width: 1280px) {
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .roster-grid { gap: 14px; }
  .roster-photo { height: clamp(180px, 24vw, 240px); }
  .roster-info { padding: 18px 18px 12px; gap: 10px; }
  .roster-record { padding: 0 14px 14px; gap: 4px; }
  .roster-name { font-size: 22px; }
  .roster-stat { padding: 8px 2px; }
  .roster-stat-num { font-size: 18px; }
  .roster-stat-lbl { font-size: 8.5px; letter-spacing: .06em; }
}
@media (max-width: 640px) {
  .roster-grid { grid-template-columns: 1fr; }
  .roster-photo { height: 200px; }
}
@media (max-width: 480px) {
  .roster-photo { height: 180px; }
  .roster-record { grid-template-columns: repeat(5, 1fr); gap: 3px; padding: 0 12px 12px; }
  .roster-stat { padding: 7px 2px; }
  .roster-stat-num { font-size: 16px; }
  .roster-stat-lbl { font-size: 8px; }
  .roster-meta-label { min-width: 56px; font-size: 10px; }
}

/* =========================================================================
   COMBAT-SPORTS REACH
   ========================================================================= */
.section-reach {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,151,178,.025) 50%, transparent 100%);
}

.reach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.reach-col {
  position: relative;
  padding: 44px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.reach-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--c-signal), transparent);
}
.reach-col:hover {
  border-color: var(--c-signal);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 60px var(--c-glow-soft);
}

.reach-head {
  margin-bottom: 32px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
}
.reach-kicker {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-signal);
  padding: 4px 10px;
  border: 1px solid var(--c-signal);
  margin-bottom: 14px;
}
.reach-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  min-height: 2.1em;
}
.reach-sub {
  margin: 0;
  font-size: 14px;
  color: var(--c-text-mute);
  letter-spacing: .04em;
}

.stat-list {
  display: grid;
  grid-template-rows: repeat(3, 96px);
  gap: 0;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--c-line);
}
.stat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border-bottom: 1px solid var(--c-line);
}
.stat-list li:last-child { border-bottom: 0; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1;
  color: var(--c-signal);
  letter-spacing: 0;
}
.stat-lbl {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  text-align: right;
  flex: 1;
  max-width: 200px;
}

.proof-list { display: flex; flex-direction: column; gap: 10px; }
.proof-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-dim);
}
.proof-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--c-signal);
}
.proof-list strong { color: var(--c-text); font-weight: 700; }

.reach-closing {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  text-align: center;
  color: var(--c-text-dim);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0;
}
.reach-closing em {
  font-style: normal;
  color: var(--c-signal);
}

/* =========================================================================
   OFFER CARDS
   ========================================================================= */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.offer-card {
  position: relative;
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,151,178,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid);
  pointer-events: none;
}
.offer-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,151,178,.20), transparent 70%);
  filter: blur(40px);
  top: -100px; right: -100px;
  opacity: 0;
  transition: opacity var(--t-mid), transform var(--t-mid);
  pointer-events: none;
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-signal);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 80px var(--c-glow-soft);
}
.offer-card:hover::before { opacity: 1; }
.offer-card:hover .offer-glow { opacity: 1; transform: scale(1.2); }

.offer-num {
  font-family: var(--ff-display);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  color: var(--c-signal);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0;
  line-height: 1;
}
.offer-card h3 {
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.2;
}
.offer-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-dim);
}

/* =========================================================================
   ROLES
   ========================================================================= */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.role-card {
  position: relative;
  padding: 44px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--c-line);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.role-card:hover {
  border-color: var(--c-signal);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 60px var(--c-glow-soft);
}
.role-card-feature {
  background: linear-gradient(180deg, rgba(0,151,178,.10), rgba(0,151,178,.02));
  border-color: rgba(0,151,178,.35);
}

.role-card header { margin-bottom: 28px; }
.role-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 12px;
}
.role-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--c-line);
}
.role-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--c-text-dim);
}
.role-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--c-signal);
}

.role-revenue {
  font-family: var(--ff-sans);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin: 0;
  font-weight: 600;
}
.role-revenue span {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--c-signal);
  margin-right: 10px;
  letter-spacing: 0;
  text-transform: none;
}

/* =========================================================================
   PILOT
   ========================================================================= */
.pilot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.pilot-item {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--c-line);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.pilot-item:hover {
  transform: translateY(-3px);
  border-color: var(--c-signal);
  box-shadow: 0 0 50px var(--c-glow-soft);
}

.pilot-step {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: var(--c-signal);
  flex-shrink: 0;
  letter-spacing: 0;
}

.pilot-body { flex: 1; }
.pilot-body h3 {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}
.pilot-date {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-signal);
  margin: 0 0 14px;
  font-weight: 700;
}
.pilot-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-dim);
}

.pilot-note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-mute);
  margin: 0;
  letter-spacing: .04em;
}

/* =========================================================================
   CONTACT — 2-Spalten-Layout (Info links, Form rechts)
   ========================================================================= */
.section-contact { padding-bottom: clamp(100px, 12vw, 160px); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(0,0,0,.45);
  border: 1px solid var(--c-line-2);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
a.contact-info-item:hover {
  border-color: var(--c-signal);
  background: rgba(0,151,178,.05);
  transform: translateX(2px);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--c-line-2);
  color: var(--c-signal);
}
a.contact-info-item:hover .contact-info-icon {
  border-color: var(--c-signal);
  background: rgba(0,151,178,.08);
}
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.contact-info-label {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.contact-info-value {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  word-break: break-word;
}

.contact-hours {
  padding: 24px 24px;
  background: rgba(0,0,0,.45);
  border: 1px solid var(--c-line-2);
  margin-top: auto;
}
.contact-hours h4 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 14px;
  color: var(--c-text);
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--c-text-dim);
}
.contact-hours-row:last-child { border-bottom: 0; }
.contact-hours-row span:last-child {
  color: var(--c-text);
  font-weight: 600;
}

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

/* Contact-Info als horizontale Bar (oben in der Sektion) */
.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.005) 100%);
  border: 1px solid var(--c-line);
  padding: 18px;
}
.contact-info-bar .contact-info-list { display: contents; }
.contact-info-bar .contact-info-item {
  padding: 10px 14px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--c-line);
  margin: 0;
  flex-direction: row;
  gap: 12px;
}
.contact-info-bar .contact-info-item:first-child { border-left: 0; }
.contact-info-bar .contact-info-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.contact-info-bar .contact-info-label {
  font-size: 9.5px;
  letter-spacing: .14em;
}
.contact-info-bar .contact-info-value {
  font-size: 13px;
  word-break: break-word;
}

/* Zwei Forms nebeneinander (Fighter + Sponsor) */
.contact-forms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.contact-form-fighter .form { border-color: rgba(0,151,178,.35); }
.contact-form-sponsor .form { border-color: rgba(255,255,255,.18); }

.form-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-signal);
  padding: 5px 11px;
  border: 1px solid rgba(0,151,178,.4);
  margin-bottom: 6px;
}
.contact-form-sponsor .form-tag {
  color: var(--c-text);
  border-color: rgba(255,255,255,.4);
}

/* Mobile-Overrides für Contact-Bar + 2-Form-Grid */
@media (max-width: 1024px) {
  .contact-info-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px;
  }
  .contact-info-bar .contact-info-item {
    border-left: 0;
    padding: 8px 10px;
  }
  .contact-info-bar .contact-info-item:nth-child(odd) {
    border-right: 1px solid var(--c-line);
  }

  .contact-forms-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .contact-info-bar {
    grid-template-columns: 1fr;
  }
  .contact-info-bar .contact-info-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--c-line);
  }
  .contact-info-bar .contact-info-item:last-child { border-bottom: 0; }
}

/* =========================================================================
   FORM (Pattern aus NDS adaptiert auf Silver-Mountain-CI)
   ========================================================================= */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--c-line-2);
  border-radius: 0;
  text-align: left;
  flex: 1;
}
.form h3 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--c-text);
  margin: 0;
}
.form > p {
  font-family: var(--ff-sans);
  color: var(--c-text-mute);
  font-size: 13px;
  margin: 0 0 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* Spezifischere Selektoren via .form-Prefix damit User-Agent-Defaults sicher überschrieben werden */
.form .form-input,
.form .form-select,
.form .form-textarea,
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  padding: 13px 15px;
  background-color: rgba(0,0,0,.55);
  background-image: none;
  border: 1px solid var(--c-line-2);
  border-radius: 0;
  color: #ffffff;
  font-family: var(--ff-sans);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t-fast), background-color var(--t-fast);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
}
.form .form-input::placeholder,
.form .form-textarea::placeholder,
.form textarea::placeholder,
.form input::placeholder {
  color: #7a7a7a;
  opacity: 1;
}
.form .form-input:focus,
.form .form-select:focus,
.form .form-textarea:focus,
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--c-signal);
  background-color: rgba(0,0,0,.7);
}
.form .form-textarea,
.form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.55;
}
.form .form-select,
.form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,151,178,0.7)' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  color: #7a7a7a;
}
.form .form-select option,
.form select option {
  background-color: #000000;
  color: #ffffff;
}

/* Autofill-Override (Chrome/Edge/Safari) — sonst überlagert Browser mit weißem Background */
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active,
.form textarea:-webkit-autofill,
.form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(10,10,10,.95) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  border: 1px solid var(--c-line-2) !important;
  transition: background-color 9999s ease-in-out 0s;
}
.form-consent {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-text-dim);
  line-height: 1.55;
  cursor: pointer;
  margin-top: 4px;
  width: 100%;
}
.form-consent > span {
  flex: 1 1 auto;
  min-width: 0;
}
/* Eigene Checkbox — Browser-Default ist auf schwarzem Form-Hintergrund unsichtbar.
   Hier: 20×20 Box mit Petrol-Border, beim Checken petrol gefüllt + weißes Häkchen. */
.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  background: rgba(0,0,0,.6);
  border: 1.5px solid var(--c-signal);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.form-consent input[type="checkbox"]:hover {
  border-color: var(--c-signal-hi);
  background: rgba(0,151,178,.15);
}
.form-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--c-signal-hi);
  outline-offset: 2px;
}
.form-consent input[type="checkbox"]:checked {
  background: var(--c-signal);
  border-color: var(--c-signal);
}
.form-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent a {
  color: var(--c-signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-consent a:hover { color: var(--c-signal-hi); }
.form button[type="submit"] {
  margin-top: 10px;
  align-self: stretch;
  justify-content: center;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--c-line);
  background: rgba(0,0,0,.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-mark { width: 56px; height: 56px; object-fit: contain; opacity: .95; }
.footer-fineprint {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: var(--c-text-mute);
  margin: 0;
  letter-spacing: .04em;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-text-dim);
  letter-spacing: .04em;
  font-weight: 500;
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--c-signal); }
.footer-copy {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: var(--c-text-mute);
  margin: 0;
  letter-spacing: .04em;
  text-align: right;
}

/* =========================================================================
   SUB-PAGES — Impressum, Datenschutz
   ========================================================================= */
.sub-page-hero {
  position: relative;
  padding: clamp(120px, 16vw, 180px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.sub-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 70% -20%, rgba(0,151,178,.18), transparent 60%),
    radial-gradient(600px 400px at -10% 50%, rgba(0,151,178,.10), transparent 60%);
  pointer-events: none;
}
.sub-page-hero > .container { position: relative; z-index: 1; }
.sub-page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  margin: 16px 0 18px;
}
.sub-page-hero p {
  font-family: var(--ff-sans);
  font-size: 16px;
  color: var(--c-text-dim);
  max-width: 720px;
  margin: 0;
  line-height: 1.65;
}

.legal {
  padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 10vw, 120px);
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-dim);
}
.legal .container { max-width: 880px; }
.legal h2 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--c-text);
  margin: 48px 0 16px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  margin: 28px 0 10px;
  letter-spacing: 0;
}
.legal p { margin: 0 0 14px; }
.legal p:last-child { margin-bottom: 0; }
.legal ul, .legal ol {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}
.legal ul li, .legal ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1px;
  background: var(--c-signal);
}
.legal ol { counter-reset: legal; }
.legal ol li {
  counter-increment: legal;
}
.legal ol li::before {
  content: counter(legal) '.';
  position: absolute;
  left: 0; top: 0;
  color: var(--c-signal);
  font-weight: 700;
}
.legal a {
  color: var(--c-signal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--t-fast);
}
.legal a:hover { color: var(--c-signal-hi); }
.legal strong { color: var(--c-text); font-weight: 700; }
.legal .legal-stand {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-text-mute);
  font-style: italic;
}
.legal .placeholder {
  color: var(--c-signal);
  background: rgba(0,151,178,.08);
  padding: 1px 6px;
  font-weight: 600;
  border: 1px dashed rgba(0,151,178,.4);
}

/* =========================================================================
   REVEAL-ON-SCROLL
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   CAROUSEL DOTS — Pagination unter Mobile-Karussells
   ========================================================================= */
.carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
/* Always-on Dots (Network-Slides, Desktop und Mobile) */
.carousel-dots-always {
  display: flex !important;
}
.carousel-dot {
  width: 22px;
  height: 3px;
  background: rgba(255,255,255,.18);
  border: 0;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t-fast), width var(--t-fast);
}
.carousel-dot.is-active {
  background: var(--c-signal);
  width: 36px;
}
.carousel-dot:hover { background: rgba(0,151,178,.5); }
.carousel-dot.is-active:hover { background: var(--c-signal-hi); }
.carousel-dot:focus-visible {
  outline: 2px solid var(--c-signal);
  outline-offset: 4px;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  /* Vertikal gestapelt — Two-Col, Contact, Footer */
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-hours { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-brand { align-items: center; }
  .footer-copy { text-align: center; }

  /* =============================================================
     KARUSSELLS — Karten unter About / Markets / Reach / Offer / Roles / Pilot
     - horizontal scroll-snap, Center-Alignment
     - beidseitiger Peek (~9vw) damit Ränder der Nachbar-Karten sichtbar
     - Padding so dass auch erste/letzte Karte mittig einrastet
     ============================================================= */
  .col-cards[data-carousel],
  .market-grid,
  .reach-cols,
  .offer-grid,
  .roles-grid,
  .pilot-list {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;                  /* Hover-Glows dürfen nicht abgeschnitten werden */
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;       /* Swipe bleibt im Karussell, geht nicht an Seite */
    -webkit-overflow-scrolling: touch;
    /* 9vw beidseitiges Padding lässt erste/letzte Karte mittig einrasten und
       erzeugt den Peek auf die Nachbarkarte. Negativer Margin sprengt den
       Container-Padding-Bereich, sodass das Karussell die volle Bildschirmbreite nutzt. */
    padding: 8px 9vw 14px;
    margin: -8px calc(-1 * var(--pad-x)) 0;
    /* Scrollbar visuell aus */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .col-cards[data-carousel]::-webkit-scrollbar,
  .market-grid::-webkit-scrollbar,
  .reach-cols::-webkit-scrollbar,
  .offer-grid::-webkit-scrollbar,
  .roles-grid::-webkit-scrollbar,
  .pilot-list::-webkit-scrollbar { display: none; }

  .col-cards[data-carousel] > *,
  .market-grid > *,
  .reach-cols > *,
  .offer-grid > *,
  .roles-grid > *,
  .pilot-list > * {
    scroll-snap-align: center;
    scroll-snap-stop: always;             /* verhindert Multi-Card-Skip beim schnellen Swipe */
    min-width: 0;
    cursor: pointer;                       /* Hinweis: Tap auf Peek-Karte zentriert sie */
  }

  /* Reveal-Karten in Karussells dürfen nicht initial 28px nach unten sein,
     sonst wackelt das Karussell vertikal — direkt sichtbar */
  .col-cards[data-carousel] > .reveal,
  .market-grid > .reveal,
  .reach-cols > .reveal,
  .offer-grid > .reveal,
  .roles-grid > .reveal,
  .pilot-list > .reveal {
    opacity: 1;
    transform: none;
  }

  /* Dots erst auf Mobile sichtbar */
  .carousel-dots { display: flex; }
}

/* =========================================================================
   MOBILE — Tablet & Phone (<= 768px)
   ========================================================================= */
@media (max-width: 768px) {
  /* Header / Nav */
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header { padding: 12px 0; }
  .site-header.is-scrolled { padding: 8px 0; }
  .brand-mark { width: 38px; height: 38px; }

  /* Sektion-Padding kompakter — mehr Inhalt sichtbar pro Scroll */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; max-width: 100%; }

  /* Hero */
  .hero { padding: 96px 0 56px; min-height: auto; }
  .hero-title { font-size: clamp(36px, 8vw, 60px); line-height: .95; margin-bottom: 22px; }
  .hero-sub { font-size: 16px; line-height: 1.55; margin-bottom: 32px; max-width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 48px; }
  .hero-cta .btn { justify-content: center; }
  .fighter-stats {
    margin-top: 24px;
    padding: 18px 18px 6px;
  }
  .fighter-stats-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .fighter-stats-title { font-size: 22px; }
  .fighter-stats-eyebrow { font-size: 10px; }
  .fighter-stats-grid {
    grid-template-columns: 1fr;     /* Mobil: vertikal gestapelt mit horizontalen Trennlinien */
    gap: 0;
  }
  .fighter-stats-item {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--c-line-2);
    gap: 16px;
  }
  .fighter-stats-item + .fighter-stats-item {
    padding-left: 0;                /* keine Spalten-Border auf Mobile */
    border-left: 0;
  }
  .fighter-stats-item:last-child { border-bottom: 0; }
  .fighter-stats-num { font-size: 32px; line-height: 1; }
  .fighter-stats-lbl { font-size: 11px; text-align: right; }
  .hero-scroll { display: none; }
  /* Glows auf Mobil dezenter — Performance + Lesbarkeit */
  .hero-glow { opacity: .35; filter: blur(60px); }
  .hero-glow-1 { width: 360px; height: 360px; }
  .hero-glow-2 { width: 420px; height: 420px; }

  /* About — Watermark passt sich an Mobile-Viewport an */
  .section-about::after {
    background-size: clamp(380px, 130vw, 720px);
    background-position: center 30%;
    opacity: .09;
    filter: blur(4px);
  }
  .principle { padding: 24px 24px 24px 24px; }
  .principle-num { position: static; display: block; margin-bottom: 8px; font-size: 32px; }

  /* Markets, Reach, Offer, Roles, Pilot — Karten-Padding kompakter */
  .market-tile { padding: 28px 22px; }
  .reach-col { padding: 22px 18px; }
  .offer-card { padding: 30px 24px; }
  .role-card { padding: 28px 22px; }
  .pilot-item { padding: 26px 22px; flex-direction: column; gap: 10px; align-items: flex-start; }
  .pilot-step { font-size: 36px; }

  /* =============================================================
     REACH — Germany 2025: Karte muss vollständig auf einen Screen passen.
     Stats werden zu kompaktem 3-Spalten-Block, alle Größen gestaucht.
     ============================================================= */
  .section-reach .section-head { margin-bottom: 24px; }
  .section-reach .section-sub { font-size: 14px; line-height: 1.5; }

  .reach-head { margin-bottom: 14px; }
  .section-reach .reach-head h3 { font-size: 22px; line-height: 1.1; min-height: 0; }
  .section-reach .reach-sub { font-size: 12px; }
  .section-reach .reach-kicker {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 10px;
    letter-spacing: .28em;
  }

  .section-reach .stat-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .section-reach .reach-head {
    min-height: 0;
  }
  .section-reach .stat-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 0;
    border-bottom: 0;
  }
  .section-reach .stat-num {
    font-size: 26px;
    line-height: 1;
  }
  .section-reach .stat-lbl {
    font-size: 9.5px;
    letter-spacing: .08em;
    line-height: 1.25;
    text-align: left;
    max-width: 100%;
  }

  .section-reach .proof-list { gap: 6px; }
  .section-reach .proof-list li {
    font-size: 12px;
    line-height: 1.45;
    padding-left: 16px;
  }
  .section-reach .proof-list li::before {
    top: 7px;
    width: 8px;
  }

  .reach-closing {
    font-size: 22px;
    line-height: 1.2;
    margin-top: 28px;
  }

  /* Roles Revenue-Block leichter lesbar */
  .role-revenue { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
  .role-revenue span { margin-right: 0; }

  /* Contact */
  .contact-info-item { padding: 16px 18px; gap: 14px; }
  .contact-info-icon { width: 40px; height: 40px; }
  .contact-info-value { font-size: 14px; }
  .contact-hours { padding: 22px 20px; }
  .form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  /* Footer-Nav vertikal mit Tap-Targets */
  .footer-nav { flex-direction: column; gap: 0; width: 100%; }
  .footer-nav a {
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--c-line);
    width: 100%;
  }
  .footer-nav a:last-child { border-bottom: 0; }
  .footer-mark { width: 64px; height: 64px; }

  /* Touch-Geräte: keine "stuck"-Hover-Effekte nach Tap */
  @media (hover: none) {
    .market-tile:hover,
    .offer-card:hover,
    .role-card:hover,
    .pilot-item:hover,
    .principle:hover,
    .reach-col:hover,
    .contact-item:hover,
    .btn-glass:hover {
      transform: none;
    }
  }
}

/* =========================================================================
   MOBILE — Phone klein (<= 480px)
   ========================================================================= */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }

  .hero { padding: 88px 0 48px; }
  .hero-title { font-size: clamp(32px, 9.5vw, 44px); line-height: .94; }
  .hero-sub { font-size: 15px; }
  .fighter-stats { padding: 16px 16px 4px; }
  .fighter-stats-title { font-size: 20px; }
  .fighter-stats-num { font-size: 28px; }
  .fighter-stats-lbl { font-size: 10px; letter-spacing: .12em; }

  /* Watermark noch kleiner und höher gesetzt für kleine Screens */
  .section-about::after {
    background-size: clamp(280px, 145vw, 560px);
    background-position: center 25%;
    opacity: .10;
  }

  .section-title { font-size: clamp(34px, 9vw, 48px); }
  .contact-title { font-size: clamp(36px, 10vw, 56px); }
  .role-card h3 { font-size: clamp(24px, 7vw, 30px); }
  .section-reach .reach-head h3 { font-size: 20px; }
  .market-num { font-size: clamp(56px, 16vw, 80px); }
  .stat-num { font-size: clamp(34px, 10vw, 46px); }
  .section-reach .stat-num { font-size: 24px; }
  .section-reach .stat-lbl { font-size: 9px; }
  .pilot-step { font-size: 32px; }

  .market-tile, .role-card, .pilot-item { padding: 24px 18px; }
  .reach-col { padding: 18px 16px; }
  .offer-card { padding: 26px 20px; }
  .principle { padding: 20px; }
  .contact-card { padding: 44px 22px; }

  .btn { padding: 14px 22px; font-size: 13px; gap: 10px; letter-spacing: .10em; }
  .btn-large { padding: 16px 26px; }
}

/* =========================================================================
   DSGVO — lokale Fonts (Google-CDN raus, alle Verbindungen bleiben on-server)
   ========================================================================= */
@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
/* Red Hat Display — Variable Font, eine Datei deckt 400/500/600/700 ab */
@font-face {
  font-family: 'Red Hat Display';
  src: url('../fonts/red-hat-display-latin.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
