/* =====================================================================
   TLAP SPORTS — Design System
   Entwurf / Designvorschlag, gestaltet von FM-Squared
   Light + Dark Mode, responsive, sport first.
   ===================================================================== */

/* ----------  DESIGN TOKENS  ---------- */
:root {
  /* Brand red scale (abgeleitet aus dem TLAP Logo) */
  --red-950: #3a0a0a;
  --red-900: #4e0f0f;
  --red-800: #6b1414;
  --red-700: #8a1818;   /* Primärrot, Logoton */
  --red-600: #a81c22;
  --red-500: #c81f2d;   /* Energie Akzent */
  --red-400: #e23744;
  --red-300: #f06b74;

  --brand: var(--red-600);
  --brand-strong: var(--red-700);
  --brand-bright: var(--red-500);

  --grad-brand: linear-gradient(135deg, #e23744 0%, #c81f2d 38%, #8a1818 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(226,55,68,.18), rgba(138,24,24,.10));

  /* Typo */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-stencil: "Oswald", "Archivo", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Spacing rhythm */
  --section-y: clamp(64px, 9vw, 132px);
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* DARK (default) */
:root,
[data-theme="dark"] {
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --surface: #16161b;
  --surface-2: #1c1c22;
  --surface-3: #232329;
  --elevated: #1a1a20;
  --text: #f4f4f7;
  --text-dim: #aeaeb8;
  --text-mute: #7c7c87;
  --border: rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);
  --hairline: rgba(255,255,255,.06);
  --shadow-1: 0 2px 8px rgba(0,0,0,.5);
  --shadow-2: 0 18px 50px rgba(0,0,0,.55);
  --shadow-red: 0 18px 50px rgba(200,31,45,.32);
  --glass: rgba(12,12,15,.72);
  --hero-veil: linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.78) 55%, var(--bg) 100%);
  --on-brand: #ffffff;
  --img-soft: .92;
  color-scheme: dark;
}

/* LIGHT */
[data-theme="light"] {
  --bg: #ffffff;
  --bg-2: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #f3f4f7;
  --surface-3: #eceef3;
  --elevated: #ffffff;
  --text: #14141a;
  --text-dim: #4b515c;
  --text-mute: #5f6672;
  --border: rgba(13,15,25,.10);
  --border-strong: rgba(13,15,25,.18);
  --hairline: rgba(13,15,25,.07);
  --shadow-1: 0 2px 10px rgba(20,22,40,.06);
  --shadow-2: 0 20px 50px rgba(22,25,45,.12);
  --shadow-red: 0 20px 48px rgba(200,31,45,.22);
  --glass: rgba(255,255,255,.78);
  --hero-veil: linear-gradient(180deg, rgba(10,11,15,.5) 0%, rgba(10,11,15,.62) 52%, rgba(10,11,15,.5) 80%, var(--bg) 100%);
  --on-brand: #ffffff;
  --img-soft: 1;
  color-scheme: light;
}

/* ----------  RESET  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brand-bright); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--red-500); color: #fff; }

/* ----------  TYPOGRAPHY  ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.4vw, 6rem);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.h-xl { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.02; text-transform: uppercase; letter-spacing: -.02em; }
.h-lg { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.h-md { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--text-dim); line-height: 1.65; }
.muted { color: var(--text-dim); }
.mute2 { color: var(--text-mute); }

.eyebrow {
  font-family: var(--font-stencil);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .78rem;
  color: var(--brand-bright);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--grad-brand);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-strong);
}

/* ----------  LAYOUT  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: clamp(44px, 6vw, 80px); }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.bg-alt { background: var(--bg-2); }
.divider-line { height: 1px; background: var(--border); border: 0; }

/* chevron decorative cluster (logo motif) */
.chevrons { display: inline-flex; gap: 2px; color: var(--brand-bright); }
.chevrons span { width: .55em; height: .55em; border-top: 3px solid currentColor; border-right: 3px solid currentColor; transform: rotate(45deg); display: block; }

/* ----------  BUTTONS  ---------- */
.btn {
  --bg-btn: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-display); font-weight: 700;
  font-size: .98rem; letter-spacing: .01em;
  padding: .92em 1.5em; border-radius: var(--r-pill);
  background: var(--bg-btn); color: var(--text);
  border: 1px solid var(--border-strong);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: var(--grad-brand); color: var(--on-brand);
  border: none; box-shadow: 0 8px 26px rgba(200,31,45,.32);
}
.btn-primary:hover { box-shadow: 0 14px 38px rgba(200,31,45,.45); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--brand-bright); }
.btn-lg { padding: 1.08em 1.9em; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-white { background: #fff; color: #111; border: none; }
.btn-white:hover { box-shadow: 0 14px 38px rgba(0,0,0,.25); }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-display); font-weight: 700; color: var(--brand-bright); }
.link-arrow svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.tag {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; font-weight: 600;
  padding: .42em .8em; border-radius: var(--r-pill);
  background: var(--grad-brand-soft); color: var(--brand-bright);
  border: 1px solid rgba(200,31,45,.28);
}

/* ====================================================================
   HEADER / NAV
   ==================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--glass);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 34px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: .02em; line-height: 1; }
.brand .wordmark b { color: var(--brand-bright); }
.brand .sub { display: block; font-family: var(--font-stencil); font-size: .6rem; letter-spacing: .4em; color: var(--text-mute); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: .55em .85em; border-radius: var(--r-pill); color: var(--text-dim);
  transition: color .25s, background .25s; position: relative;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.current { color: var(--text); }
.nav-links a.current::after { content: ""; position: absolute; left: .9em; right: .9em; bottom: .12em; height: 2px; border-radius: 2px; background: var(--grad-brand); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 42px; height: 42px; border-radius: var(--r-pill);
  border: 1px solid var(--border-strong); display: grid; place-items: center;
  color: var(--text); transition: border-color .25s, background .25s, transform .4s var(--ease);
  flex: none;
}
.theme-toggle:hover { border-color: var(--brand-bright); background: var(--surface-2); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .ico-moon { display: none; }
[data-theme="light"] .theme-toggle .ico-sun { display: none; }
[data-theme="light"] .theme-toggle .ico-moon { display: block; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--border-strong); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; transition: transform .3s var(--ease), opacity .2s; }

/* mobile drawer: scrollbarer Inhalt + fest verankerter Aktionsbereich unten */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg); padding: 84px 0 0;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%); transition: transform .45s var(--ease-out);
  visibility: hidden;
}
.mobile-menu .mm-scroll {
  flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: 0 var(--gutter) 22px;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
html:has(.mobile-menu.open) { overflow: hidden; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem;
  padding: .62em 0; border-bottom: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a .num { font-family: var(--font-stencil); font-size: .74rem; color: var(--brand-bright); letter-spacing: .1em; }
.mobile-menu .mm-cta { margin-top: 22px; }

/* ====================================================================
   HERO
   ==================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(48px, 8vw, 96px); padding-top: 120px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(.25) contrast(1.05); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--hero-veil); }
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 80% 10%, rgba(200,31,45,.30), transparent 55%);
  mix-blend-mode: screen;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: #fff; margin: 18px 0 0; max-width: 16ch; }
.hero h1 .text-grad { -webkit-text-stroke: 0; }
[data-theme="light"] .hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.86); max-width: 54ch; margin-top: 22px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-stencil); letter-spacing: .25em; font-size: .65rem; text-transform: uppercase; }
.hero-scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.55); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-badges .pill { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(6px); }

/* stat strip */
.statstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-block: 1px solid var(--border); }
.statstrip .stat { background: var(--bg); padding: clamp(22px, 3vw, 38px) clamp(16px, 2vw, 28px); text-align: center; }
.statstrip .num { font-family: var(--font-stencil); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1; color: var(--text); }
.statstrip .num b { color: var(--brand-bright); }
.statstrip .lbl { font-size: .82rem; color: var(--text-dim); margin-top: 10px; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-stencil); }

/* ====================================================================
   GENERIC CARDS
   ==================================================================== */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 32px); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s, background .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-2); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--brand-bright); border: 1px solid rgba(200,31,45,.22);
  margin-bottom: 18px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: .96rem; }
.card-topbar::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--grad-brand);
  transition: width .45s var(--ease);
}
.card-topbar:hover::before { width: 100%; }

/* feature media card */
.feature-card { padding: 0; display: flex; flex-direction: column; }
.feature-card .media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.feature-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-card:hover .media img { transform: scale(1.06); }
.feature-card .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35)); opacity: .0; transition: opacity .3s; }
.feature-card:hover .media::after { opacity: 1; }
.feature-card .body { padding: clamp(20px, 2.4vw, 28px); }
.feature-card .body .kicker { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--brand-bright); }
.feature-card .body h3 { margin: 8px 0 8px; font-size: 1.22rem; }
.feature-card .body p { color: var(--text-dim); font-size: .95rem; }

/* ====================================================================
   SPORTS (all-sports section)
   ==================================================================== */
.sports-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.sport-pill {
  position: relative; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--surface); padding: 22px 20px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s, background .3s;
  overflow: hidden;
}
.sport-pill:hover { transform: translateY(-5px); border-color: var(--brand-bright); box-shadow: var(--shadow-2); }
.sport-pill .s-ico { width: 40px; height: 40px; color: var(--text); }
.sport-pill h4 { font-size: 1.05rem; font-family: var(--font-display); }
.sport-pill .s-state { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; color: var(--text-mute); }
.sport-pill.live { border-color: rgba(200,31,45,.4); background: linear-gradient(160deg, rgba(200,31,45,.12), var(--surface)); }
.sport-pill.live .s-ico { color: var(--brand-bright); }
.sport-pill.live .s-state { color: var(--brand-bright); }
.sport-pill .glow { position: absolute; right: -30px; bottom: -30px; width: 110px; height: 110px; background: radial-gradient(circle, rgba(200,31,45,.5), transparent 70%); filter: blur(8px); opacity: 0; transition: opacity .4s; }
.sport-pill:hover .glow { opacity: .55; }
.sport-pill.soon { opacity: .92; }
.sport-pill.soon .s-ico { color: var(--text-mute); }

/* ====================================================================
   ROAD TO NFL  (bubbles + flying football)
   ==================================================================== */
.road {
  background:
    radial-gradient(80% 60% at 15% 0%, rgba(138,24,24,.20), transparent 60%),
    radial-gradient(70% 60% at 90% 100%, rgba(200,31,45,.16), transparent 60%),
    var(--bg-2);
  overflow: hidden;
}
.road-head { text-align: center; max-width: 720px; margin: 0 auto clamp(20px, 4vw, 50px); }
.road-head .story { font-family: var(--font-stencil); letter-spacing: .3em; text-transform: uppercase; color: var(--text-mute); font-size: .72rem; }
.road-head h2 { margin-top: 14px; }
.road-head h2 em { font-style: normal; color: var(--brand-bright); }

.road-track { position: relative; max-width: 980px; margin: 0 auto; }
/* connector svg sits behind bubbles */
.road-track .road-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: visible; }
.road-svg .road-base { fill: none; stroke: var(--border-strong); stroke-width: 3; stroke-dasharray: 2 12; stroke-linecap: round; }
.road-svg .road-prog { fill: none; stroke: url(#roadGrad); stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(200,31,45,.6)); }

.bubbles { position: relative; z-index: 1; display: flex; flex-direction: column; gap: clamp(26px, 5vw, 60px); }
.bubble-row { display: flex; }
.bubble-row.right { justify-content: flex-end; }
.bubble-row.left { justify-content: flex-start; }

.bubble {
  position: relative; width: min(440px, 86%);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 6px;
  padding: 24px 26px; box-shadow: var(--shadow-1);
  transition: transform .5s var(--ease-out), border-color .5s, box-shadow .5s, background .5s;
}
.bubble-row.right .bubble { border-radius: var(--r-xl) var(--r-xl) 6px var(--r-xl); }
.bubble::before { /* the round node where the ball lands, sits on top center */
  content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-2); border: 3px solid var(--border-strong); z-index: 2; transition: all .5s var(--ease);
}
.bubble .b-year { font-family: var(--font-stencil); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: .9; color: var(--text); letter-spacing: .01em; }
.bubble .b-club { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; margin-top: 8px; text-transform: uppercase; letter-spacing: .01em; }
.bubble .b-text { color: var(--text-dim); font-size: .94rem; margin-top: 8px; }
.bubble .b-badge { position: absolute; top: -14px; right: 20px; }
.bubble-row.right .bubble .b-badge { right: auto; left: 20px; }

.bubble.active {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(200,31,45,.55);
  box-shadow: var(--shadow-red);
  background: linear-gradient(150deg, rgba(200,31,45,.10), var(--surface));
}
.bubble.active::before { background: var(--brand-bright); border-color: var(--red-300); box-shadow: 0 0 0 6px rgba(200,31,45,.22); }
.bubble.active .b-year { color: var(--brand-bright); }

/* the flying football */
.football {
  position: absolute; top: 0; left: 0; z-index: 3; width: 46px; height: 46px;
  offset-rotate: auto; offset-distance: 0%;
  pointer-events: none; will-change: offset-distance;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.45));
}
.football .ball-spin { width: 100%; height: 100%; animation: ballspin 1.1s linear infinite; }
@keyframes ballspin { to { transform: rotate(360deg); } }
.football .trail { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(200,31,45,.55), transparent 65%); filter: blur(6px); transform: scale(1.7); z-index: -1; }

@media (prefers-reduced-motion: reduce) {
  .football .ball-spin { animation: none; }
}

/* mobile road: single column with a left rail, ball flies beside the cards */
@media (max-width: 760px) {
  .road-track { max-width: 520px; }
  .bubbles { padding-left: 30px; }
  .bubble-row, .bubble-row.right, .bubble-row.left { justify-content: flex-start; }
  .bubble { width: 100%; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 6px !important; }
  .bubble::before { top: 26px; left: -15px; transform: translateX(-50%); }
  .bubble .b-badge, .bubble-row.right .bubble .b-badge { left: auto; right: 16px; }
}

/* ====================================================================
   PRICING
   ==================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.price-card {
  position: relative; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.price-card .pc-media { position: relative; aspect-ratio: 21 / 9; overflow: hidden; }
.price-card .pc-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.price-card .pc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,.1), rgba(10,10,12,.78)); }
.price-card .pc-media .pc-name { position: absolute; left: 24px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em; font-size: 1.3rem; }
.price-card .pc-body { padding: clamp(22px, 2.6vw, 32px); display: flex; flex-direction: column; gap: 18px; flex: 1; }
.price-card .price { display: flex; align-items: baseline; gap: 8px; }
.price-card .price .amt { font-family: var(--font-stencil); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; color: var(--text); }
.price-card .price .per { color: var(--text-dim); font-size: .95rem; }
.price-card .price-sub { color: var(--text-dim); font-size: .92rem; margin-top: 10px; }
.price-card.featured { border-color: rgba(200,31,45,.45); box-shadow: var(--shadow-red); }
.price-card .feat-list { display: flex; flex-direction: column; gap: 12px; }
.price-card .feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--text); }
.price-card .feat-list svg { width: 20px; height: 20px; color: var(--brand-bright); flex: none; margin-top: 1px; }
.price-card .pc-foot { margin-top: auto; }

/* ====================================================================
   FOUNDERS / TEAM
   ==================================================================== */
.founders { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.founders .f-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.founders .f-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.founders .f-media .f-tag { position: absolute; left: 18px; bottom: 18px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr)); gap: 16px; }
.member { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.member:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-1); }
.member .m-ava { width: 54px; height: 54px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 14px; }
.member h4 { font-size: 1.05rem; }
.member .m-role { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; color: var(--brand-bright); margin-top: 4px; }
.member ul { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.member ul li { font-size: .86rem; color: var(--text-dim); padding-left: 16px; position: relative; }
.member ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-bright); }

.profile { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(20px, 2.6vw, 30px); }
.profile .p-photo { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; }
.profile .p-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile h3 { font-size: 1.5rem; }
.profile .p-role { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .14em; color: var(--brand-bright); font-size: .78rem; margin: 6px 0 16px; }
.career { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.career li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 11px 0; border-top: 1px solid var(--hairline); align-items: baseline; }
.career li .yr { font-family: var(--font-stencil); font-weight: 600; color: var(--brand-bright); font-size: .88rem; letter-spacing: .04em; }
.career li .cl { font-weight: 500; }

/* ====================================================================
   TESTIMONIAL
   ==================================================================== */
.testi { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.testi .quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 2.4vw, 1.85rem); line-height: 1.35; letter-spacing: -.01em; }
.testi .quote .big { font-family: var(--font-stencil); color: var(--brand-bright); font-size: 3rem; line-height: 0; vertical-align: -.35em; margin-right: .1em; }
.testi .by { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.testi .by .badge { width: 50px; height: 50px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; }
.testi .by .who b { display: block; font-family: var(--font-display); }
.testi .by .who span { color: var(--text-dim); font-size: .88rem; }
.testi-side { background: var(--grad-brand); border-radius: var(--r-lg); padding: 32px; color: #fff; }
.testi-side .rate { display: flex; gap: 4px; margin-bottom: 14px; }
.testi-side .rate svg { width: 22px; height: 22px; }
.testi-side p { color: rgba(255,255,255,.92); }

/* ====================================================================
   LOGO MARQUEE
   ==================================================================== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee .m-item { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--text-mute); letter-spacing: .02em; opacity: .7; white-space: nowrap; transition: color .3s, opacity .3s; }
.marquee .m-item:hover { color: var(--text); opacity: 1; }
[data-theme="light"] .marquee .m-item { color: var(--text-dim); opacity: .82; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; grid-auto-rows: 150px; }
.gallery .g-item { border-radius: var(--r-md); overflow: hidden; position: relative; }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: grayscale(.15); }
.gallery .g-item:hover img { transform: scale(1.08); }
.gallery .g-a { grid-column: span 5; grid-row: span 2; }
.gallery .g-b { grid-column: span 4; grid-row: span 2; }
.gallery .g-c { grid-column: span 3; }
.gallery .g-d { grid-column: span 3; }
.gallery .g-e { grid-column: span 7; }
.gallery .g-f { grid-column: span 5; }

/* ====================================================================
   CTA BANNER
   ==================================================================== */
.cta-banner { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(40px, 6vw, 80px); text-align: center; isolation: isolate; }
.cta-banner::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--grad-brand); }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 120% at 50% -20%, rgba(255,255,255,.25), transparent 60%); }
.cta-banner h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 18px auto 0; }
.cta-banner .hero-cta { justify-content: center; }
.cta-watermark { position: absolute; right: -3%; bottom: -36%; font-family: var(--font-display); font-weight: 900; font-size: 22vw; color: rgba(255,255,255,.10); z-index: -1; line-height: 1; pointer-events: none; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: clamp(48px, 6vw, 80px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--text-dim); font-size: .94rem; max-width: 34ch; }
.foot-col h5 { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; color: var(--text-mute); margin-bottom: 16px; }
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: var(--text-dim); font-size: .94rem; transition: color .25s; }
.foot-col a:hover { color: var(--brand-bright); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--text-dim); transition: all .25s; }
.socials a:hover { color: #fff; background: var(--grad-brand); border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); color: var(--text-mute); font-size: .85rem; }
.footer-bottom .fb-credit b { color: var(--text-dim); }

/* ====================================================================
   LEGAL / CONTENT PAGE TEMPLATE
   ==================================================================== */
.page-hero { padding: 130px 0 0; }
.page-hero .container { padding-bottom: clamp(28px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; }
.page-hero .crumbs { display: flex; gap: 8px; align-items: center; color: var(--text-mute); font-size: .85rem; margin-bottom: 18px; font-family: var(--font-stencil); letter-spacing: .08em; text-transform: uppercase; }
.page-hero .crumbs a:hover { color: var(--brand-bright); }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.legal-toc { position: sticky; top: 100px; border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; background: var(--surface); }
.legal-toc h5 { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--text-mute); margin-bottom: 14px; }
.legal-toc ul { display: flex; flex-direction: column; gap: 3px; }
.legal-toc a { display: block; font-size: .9rem; color: var(--text-dim); padding: 7px 12px; border-radius: 8px; border-left: 2px solid transparent; transition: all .2s; }
.legal-toc a:hover, .legal-toc a.active { color: var(--text); background: var(--surface-2); border-left-color: var(--brand-bright); }

.legal-body { max-width: 78ch; }
.legal-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 48px 0 16px; scroll-margin-top: 100px; padding-top: 8px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.18rem; margin: 30px 0 12px; font-family: var(--font-display); font-weight: 700; }
.legal-body p, .legal-body li { color: var(--text-dim); font-size: .98rem; line-height: 1.75; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { margin: 0 0 18px; display: flex; flex-direction: column; gap: 9px; }
.legal-body ul li { padding-left: 22px; position: relative; }
.legal-body ul li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--brand-bright); transform: rotate(45deg); }
.legal-body a { color: var(--brand-bright); word-break: break-word; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong, .legal-body b { color: var(--text); }
.legal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px 26px; margin: 22px 0; }
.legal-card .lc-grid { display: grid; grid-template-columns: 180px 1fr; gap: 8px 20px; }
.legal-card .lc-grid dt { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: .92rem; }
.legal-card .lc-grid dd { color: var(--text-dim); font-size: .94rem; }
.legal-updated { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--text-mute); margin-bottom: 24px; }

/* empty state (Abonnement) */
.empty-state { text-align: center; max-width: 520px; margin: 60px auto; padding: clamp(36px, 5vw, 56px); border: 1px dashed var(--border-strong); border-radius: var(--r-lg); background: var(--surface); }
.empty-state .es-ico { width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; background: var(--grad-brand-soft); color: var(--brand-bright); }
.empty-state .es-ico svg { width: 36px; height: 36px; }

/* coming soon */
.coming { min-height: 100svh; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; }
.coming .c-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(70% 60% at 50% 0%, rgba(200,31,45,.22), transparent 60%), var(--bg); }
.coming .c-inner { position: relative; z-index: 1; max-width: 640px; padding: 40px var(--gutter); }
.coming .big-soon { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 12vw, 9rem); line-height: .9; text-transform: uppercase; letter-spacing: -.03em; }

/* ====================================================================
   SCROLL REVEAL
   ==================================================================== */
.reveal { transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
/* responsive overrides for inline grid layouts used across pages */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-actions .btn-cta-desktop { display: none; }
  .nav-toggle { display: block; }
  .founders { grid-template-columns: 1fr; }
  .testi { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 130px 1fr; gap: 22px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  [style*="repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="1.1fr .9fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .statstrip { grid-template-columns: repeat(2, 1fr); }
  .statstrip .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 120px; }
  .gallery > div { grid-column: span 6 !important; grid-row: span 1 !important; }
  .gallery .g-a { grid-column: span 12 !important; grid-row: span 2 !important; }
  [style*="repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .profile { grid-template-columns: 104px 1fr; gap: 18px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile .p-photo { max-width: 150px; }
  .gallery > div { grid-column: span 12 !important; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 360px) {
  .container { padding-inline: 16px; }
  .eyebrow { font-size: .72rem; letter-spacing: .26em; }
  .statstrip .num { font-size: clamp(1.7rem, 8vw, 3.4rem); }
}

/* utilities */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.center { text-align: center; } .w-full { width: 100%; }
.stack-sm { display: flex; flex-direction: column; gap: 10px; }
.row-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.hide-mobile { } @media (max-width: 760px) { .hide-mobile { display: none !important; } }
