/* The Football Pathway — Website Styles
   Design B "Performance": Under-Armour-Vibe. Drei Farben tragen die Marke:
   Schwarz, Weiss, Orange. Scharfe Kanten, technische Labels, orange als Skalpell.
   Schriften: Oswald (Headlines), JetBrains Mono (Labels), Inter (Text). */

:root {
  --bg: #0B0B0C;
  --panel: #0F0F11;
  --card: #0F0F11;
  --white: #FFFFFF;
  --grey: #8B8B90;
  /* Marken-Akzent = Orange (Variablenname bleibt --red, steuert die ganze Seite) */
  --red: #FF6A00;
  --red-dark: #E05A00;
  --line: rgba(255, 255, 255, 0.10);
  --maxw: 1220px;
  --cond: 'Oswald', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark, .num, .step h3, .camp h3, .school h3, .ath .name, .cta h2 {
  font-family: var(--cond);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

a { color: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 92px 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
}
.eyebrow::before { content: "[ "; }
.eyebrow::after { content: " ]"; }

h2 { font-size: clamp(34px, 5vw, 60px); line-height: 0.98; margin-bottom: 40px; }

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 11, 12, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.wordmark {
  font-family: var(--cond); font-weight: 700; font-size: 19px; letter-spacing: 1px;
  text-decoration: none; color: var(--white); display: inline-flex; align-items: center; gap: 9px;
}
.wordmark::before {
  content: ""; width: 13px; height: 19px; background: var(--red);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%); display: inline-block;
}
nav.links {
  display: flex; align-items: center; gap: 26px;
  font-family: var(--cond); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 14px;
}
nav.links a { color: #CFCFD2; text-decoration: none; transition: color .2s; }
nav.links a:hover { color: var(--white); }
nav.links a.btn { color: #0B0B0C; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .2s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 15px; padding: 15px 30px; border-radius: 0; text-decoration: none;
  transition: all .18s; cursor: pointer; border: 2px solid transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%);
}
.btn-primary { background: var(--red); color: #0B0B0C; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 11px 20px; font-size: 13px; clip-path: none; }

/* ---------- Hero (Home) ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: flex-end; padding: 0 0 92px; position: relative; overflow: hidden;
  background:
    linear-gradient(to top, rgba(11,11,12,0.96) 0%, rgba(11,11,12,0.5) 55%, rgba(11,11,12,0.35) 100%),
    repeating-linear-gradient(115deg, #1a1a1c 0 60px, #141416 60px 120px);
  background-size: cover; background-position: center;
}
/* Echtes Hero-Foto: horizontaler Verlauf, damit Text links liegt und Foto rechts durchkommt (Split-Optik) */
.hero--photo { background-image:
    linear-gradient(90deg, rgba(11,11,12,0.94) 0%, rgba(11,11,12,0.6) 42%, rgba(11,11,12,0.2) 100%),
    linear-gradient(to top, rgba(11,11,12,0.85), rgba(11,11,12,0.2) 60%),
    var(--hero-img); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: 0.45; pointer-events: none; z-index: 1;
}
.hero::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 9%; width: 6px;
  background: var(--red); transform: skewX(-14deg); z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero .photo-note {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.16); font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .2em; text-align: center; line-height: 1.9; z-index: 1;
}
.hero h1 { font-size: clamp(46px, 6.6vw, 94px); line-height: 0.94; max-width: 14ch; }
.hero h1 span { color: var(--red); }
.hero p { color: #D5D5D8; max-width: 520px; margin: 24px 0 34px; font-weight: 500; }
.hero .btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Flacher Hero fuer Unterseiten */
.hero-flat {
  padding: 150px 0 60px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; background: var(--panel);
}
.hero-flat::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px; opacity: 0.5; pointer-events: none;
}
.hero-flat .container { position: relative; z-index: 2; }
.hero-flat h1 { font-size: clamp(38px, 5.4vw, 68px); line-height: 1; }
.hero-flat h1 span { color: var(--red); }
.hero-flat p { color: var(--grey); max-width: 620px; margin-top: 18px; }

/* ---------- Credential-Bar (Leagues + NCAA) ---------- */
.cred { background: var(--red); }
.cred .row { display: flex; align-items: stretch; flex-wrap: wrap; }
.cred .lead {
  font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 22px; display: flex; align-items: center; background: #0B0B0C; color: var(--red); font-weight: 700;
}
.cred .items { display: flex; flex: 1; flex-wrap: wrap; }
.cred .items span {
  font-family: var(--cond); font-weight: 700; text-transform: uppercase; font-size: 19px; letter-spacing: 1px;
  padding: 16px 26px; border-right: 2px solid rgba(11,11,12,0.22); color: #0B0B0C; display: flex; align-items: center;
}

/* ---------- What We Do (Spec-Cards) ---------- */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 0; padding: 34px 28px 40px; position: relative; }
.step .num { font-size: 64px; color: var(--red); display: block; margin-bottom: 14px; line-height: 1; }
.step h3 { font-size: 26px; margin-bottom: 12px; }
.step p { color: var(--grey); font-size: 15px; }

/* ---------- Stats (Spec-Bar) ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr 1.6fr; border: 1px solid var(--line); background: var(--panel); }
.stat { padding: 34px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stats .num { font-size: clamp(48px, 7vw, 84px); color: var(--red); line-height: 0.9; }
.stat .lead { font-family: var(--cond); font-weight: 700; text-transform: uppercase; color: var(--red); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.1; }
.stat .label { color: #C7C7CA; font-family: var(--mono); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-top: 12px; line-height: 1.5; }

/* ---------- Camps ---------- */
.camp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.camp { background: var(--panel); border: 1px solid var(--line); border-radius: 0; overflow: hidden; transition: border-color .2s; }
.camp:hover { border-color: rgba(255, 106, 0, 0.55); }
.camp .img {
  aspect-ratio: 16/10; background: repeating-linear-gradient(45deg, #191919 0 26px, #141414 26px 52px);
  background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  border-bottom: 1px solid var(--line);
}
.camp .body { padding: 22px; }
.camp h3 { font-size: 25px; margin-bottom: 6px; }
.camp .meta { color: var(--grey); font-family: var(--mono); font-size: 12px; letter-spacing: 1px; margin-bottom: 16px; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; font-family: var(--mono); font-size: 11px; text-transform: uppercase; font-weight: 700;
  letter-spacing: .12em; padding: 5px 11px; border-radius: 2px; border: 1.5px solid; margin-bottom: 16px;
}
.badge.open { color: #0B0B0C; background: var(--red); border-color: var(--red); }
.badge.soon { color: var(--white); border-color: var(--line); background: transparent; }
.badge.full { color: var(--grey); border-color: var(--grey); }
.badge.interested { color: var(--red); border-color: var(--red); }
.badge.committed { background: var(--red); border-color: var(--red); color: #0B0B0C; }

/* ---------- Athletes ---------- */
.ath-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ath {
  position: relative; aspect-ratio: 3/4; border-radius: 0; overflow: hidden;
  background: repeating-linear-gradient(135deg, #1d1d1f 0 26px, #161618 26px 52px);
  background-size: cover; background-position: center; border: 1px solid var(--line);
}
.ath:not(.empty)::after {
  content: ""; position: absolute; top: 0; right: 0; width: 32px; height: 32px;
  background: var(--red); clip-path: polygon(100% 0, 0 0, 100% 100%); z-index: 2;
}
.ath .grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 55%); }
.ath .info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; z-index: 2; }
.ath .name { font-size: 22px; }
.ath .sub { color: var(--red); font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.ath .badge { position: absolute; top: 12px; left: 12px; margin: 0; }
.ath .photo-note {
  position: absolute; top: 40%; width: 100%; text-align: center; color: rgba(255,255,255,0.18);
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; line-height: 1.7;
}
.ath.empty {
  border: 1px dashed var(--line); background: none; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  text-align: center; padding: 20px;
}

/* ---------- Schools (USA) ---------- */
.school-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-bottom: 60px; }
.school { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 0; padding: 24px; }
.school .logo { height: 44px; margin-bottom: 16px; display: flex; align-items: center; color: rgba(255,255,255,0.75); font-family: var(--cond); font-weight: 700; text-transform: uppercase; font-size: 16px; }
.school h3 { font-size: 21px; margin-bottom: 6px; }
.school .meta { color: var(--grey); font-family: var(--mono); font-size: 12px; letter-spacing: 1px; margin-bottom: 14px; }
.school .level { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }

/* ---------- Partners ---------- */
.partners { display: flex; flex-wrap: wrap; border: 1px solid var(--line); }
.plogo {
  padding: 26px 40px; display: flex; align-items: center; color: #D0D0D3;
  font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 16px;
  border-right: 1px solid var(--line); transition: color .2s; text-decoration: none;
}
.plogo img { height: 34px; width: auto; filter: grayscale(1) brightness(2); }
.plogo:hover { color: var(--red); }

/* ---------- CTA-Band ---------- */
.cta { background: var(--red); color: #0B0B0C; position: relative; overflow: hidden; border: 0; }
.cta::before { content: ""; position: absolute; right: -60px; top: -30px; bottom: -30px; width: 220px; background: #0B0B0C; transform: skewX(-14deg); opacity: 0.12; z-index: 1; }
.cta .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta h2 { margin: 0; color: #0B0B0C; font-size: clamp(32px, 5.5vw, 64px); }
.cta .btn { background: #0B0B0C; color: var(--white); border-color: #0B0B0C; }
.cta .btn:hover { background: #000; }

/* ---------- Form embed (Tally) ----------
   Weisse Karte unter dem Formular, sonst sind die dunklen Fragetexte auf dunklem
   Hintergrund unlesbar. Oben ein oranger Akzentstreifen. */
.form-wrap { max-width: 760px; margin: 0 auto; background: #ffffff; border-radius: 0; border-top: 4px solid var(--red); padding: 30px 34px; box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5); }
.form-wrap iframe { width: 100%; border: 0; background: transparent; }
.form-fallback { background: #f4f4f5; border: 1px solid #e4e4e7; padding: 28px; text-align: center; color: #18181b; font-family: 'Inter', sans-serif; }
.form-fallback a { color: var(--red-dark); font-weight: 700; }

/* ---------- Rechts-Seiten ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 32px; }
.legal h2 { font-size: 24px; margin: 40px 0 16px; }
.legal p, .legal li { color: var(--grey); font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--red); }
.legal .note { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 0; padding: 16px 20px; margin: 24px 0; color: var(--grey); font-size: 15px; }

/* ---------- Footer ---------- */
footer { padding: 46px 0; color: var(--grey); font-family: var(--mono); font-size: 12px; letter-spacing: 0.5px; border-top: 1px solid var(--line); }
footer .container { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer a { color: var(--grey); text-decoration: none; }
footer a:hover { color: var(--red); }

/* ---------- Scroll-Fade ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Empty state ---------- */
.empty-note { color: rgba(255,255,255,0.35); font-family: var(--mono); font-size: 14px; }

/* ---------- Mobile ---------- */
@media (max-width: 820px) {
  section { padding: 60px 0; }
  .hero { min-height: 78vh; padding-bottom: 54px; }
  .hero::after { display: none; }
  /* Hochformat: vertikaler Verlauf statt Split. Foto oben sichtbar, Text unten auf Dunkel. */
  .hero--photo {
    background-image:
      linear-gradient(to top, rgba(11,11,12,0.97) 0%, rgba(11,11,12,0.82) 34%, rgba(11,11,12,0.32) 100%),
      var(--hero-img);
    background-position: center 24%;
  }
  .hero h1 { font-size: clamp(38px, 11vw, 60px); }
  .hero p { font-size: 15px; }
  .cards3, .stats, .camp-grid, .school-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .ath-grid { grid-template-columns: repeat(2, 1fr); }
  .cred .lead { width: 100%; }
  .burger { display: block; }
  nav.links {
    position: fixed; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(11,11,12,0.98); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  nav.links.open { max-height: 360px; }
  nav.links a { padding: 16px 24px; width: 100%; border-top: 1px solid var(--line); }
  nav.links a.btn { margin: 16px 24px; width: calc(100% - 48px); text-align: center; justify-content: center; }
}
