/* ============================================================
   PROSKILLZ — Stylesheet
   Aesthetic: Stadium Tunnel / Editorial Performance
   Palette: Pure Black + Bone White + Matte Gold
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- Tokens --- */
:root {
  --black: #050505;
  --ink: #0b0b0b;
  --smoke: #131313;
  --slate: #1c1c1c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --bone: #f5f1ea;
  --white: #ffffff;
  --mute: #7a7a7a;
  --mute-2: #4a4a4a;

  --gold: #c9a24a;
  --gold-bright: #f4d67a;
  --gold-deep: #8b6f2f;
  --gold-grad: linear-gradient(135deg, #8b6f2f 0%, #c9a24a 35%, #f4d67a 60%, #c9a24a 85%, #8b6f2f 100%);

  --display: 'Archivo Black', 'Impact', sans-serif;
  --headline: 'Barlow Condensed', 'Oswald', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 76px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--black);
  color: var(--bone);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
ul, ol { list-style: none; }

/* --- Subtle grain overlay (global) --- */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --- Layout --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled { background: rgba(5,5,5,0.88); }
.nav__inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 18px;
}
.nav__brand img { width: 36px; height: 36px; object-fit: contain; filter: invert(1); }
.nav__brand span { color: var(--white); }
.nav__brand em { color: var(--gold); font-style: normal; }

.nav__links {
  display: flex; gap: 6px;
  justify-content: center;
}
.nav__link {
  font-family: var(--headline);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  position: relative;
  color: var(--bone);
  transition: color .25s var(--ease);
}
.nav__link::before {
  content: '';
  position: absolute;
  left: 16px; bottom: 6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-bright); }
.nav__link:hover::before, .nav__link.is-active::before {
  width: calc(100% - 32px);
}
.nav__cta {
  font-family: var(--headline);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav__cta::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  z-index: -1;
}
.nav__cta:hover { color: var(--black); }
.nav__cta:hover::after { transform: translateY(0); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 10px; right: 10px;
  height: 1.5px; background: var(--bone);
  transition: transform .35s var(--ease), opacity .25s;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 24px;
  padding: var(--nav-h) var(--gutter) var(--gutter);
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile a {
  font-family: var(--display);
  font-size: clamp(32px, 8vw, 56px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .nav__cta { font-size: 14px; padding: 16px 28px; margin-top: 16px; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold);
}
.eyebrow--center { justify-content: center; }
.eyebrow--no-line::before { display: none; }

.display {
  font-family: var(--display);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display--xl { font-size: clamp(56px, 12vw, 200px); }
.display--lg { font-size: clamp(44px, 8vw, 120px); }
.display--md { font-size: clamp(36px, 5.5vw, 80px); }
.display--sm { font-size: clamp(28px, 4vw, 56px); }

.headline {
  font-family: var(--headline);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.headline--lg { font-size: clamp(32px, 5vw, 64px); }
.headline--md { font-size: clamp(24px, 3.5vw, 40px); }
.headline--sm { font-size: clamp(18px, 2vw, 24px); }

.body-lg { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: rgba(245,241,234,0.85); }
.body { font-size: 16px; line-height: 1.65; color: rgba(245,241,234,0.78); }
.body-sm { font-size: 14px; line-height: 1.6; color: rgba(245,241,234,0.7); }

.label-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  text-stroke: 1.5px var(--gold);
}
.gold { color: var(--gold-bright); }
.gold-grad {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--headline);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 32px;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.btn__arrow {
  width: 18px; height: 10px;
  display: inline-block; position: relative;
  transition: transform .35s var(--ease);
}
.btn__arrow::before {
  content: ''; position: absolute; inset: 0;
  background: currentColor;
  clip-path: polygon(0 45%, 78% 45%, 78% 0, 100% 50%, 78% 100%, 78% 55%, 0 55%);
}
.btn:hover .btn__arrow { transform: translateX(6px); }

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: var(--gold-bright); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
}
.btn--outline-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.btn--outline-gold:hover { color: var(--black); }
.btn--outline-gold:hover::before { transform: translateY(0); }

/* ============================================================
   HERO (index)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 162, 74, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 162, 74, 0.08), transparent 50%),
    var(--black);
}
.hero__spot {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 214, 122, 0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  transition: opacity .4s var(--ease);
  opacity: 0;
}
.hero:hover .hero__spot { opacity: 1; }

.hero__grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.hero__edge {
  position: absolute;
  top: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--mute);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex; align-items: center; gap: 16px;
}
.hero__edge--left { left: 0; }
.hero__edge--right { right: 0; }
.hero__edge::before, .hero__edge::after {
  content: ''; width: 1px; height: 48px;
  background: var(--line-strong);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(60px, 14vw, 230px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero__title .line:nth-child(2) span { animation-delay: 0.25s; }
.hero__title .line:nth-child(3) span { animation-delay: 0.4s; }

.hero__title .line--offset { padding-left: clamp(40px, 8vw, 120px); }
.hero__title .line--outline { color: transparent; -webkit-text-stroke: 1.5px var(--gold); }
.hero__title .underscore {
  display: inline-block; height: 6px; background: var(--gold);
  width: clamp(60px, 12vw, 200px);
  margin-bottom: 0.18em;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: clamp(32px, 5vw, 64px);
  align-items: end;
}
.hero__tagline {
  font-family: var(--headline);
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.3;
  color: rgba(245, 241, 234, 0.85);
  max-width: 480px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero__tagline strong { color: var(--gold-bright); font-weight: 500; }

.hero__cta-row {
  display: flex; flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.7s forwards;
}

.hero__stats {
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 28px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.9s forwards;
}
.hero__stat { padding-right: 16px; }
.hero__stat + .hero__stat { border-left: 1px solid var(--line); padding-left: 24px; }
.hero__stat-num {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--gold-bright);
  line-height: 1;
}
.hero__stat-num sub {
  font-family: var(--mono);
  font-size: 0.4em;
  color: var(--mute);
  vertical-align: middle;
  padding-left: 6px;
}
.hero__stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 12px;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s var(--ease) infinite;
}

@keyframes rise {
  to { transform: translateY(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
  background: linear-gradient(to right, var(--ink), var(--black), var(--ink));
}
.marquee__track {
  display: flex;
  flex-shrink: 0;
  animation: marquee 35s linear infinite;
  gap: 64px;
  padding-right: 64px;
}
.marquee__item {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee__item::after {
  content: '★';
  color: var(--gold);
  font-size: 0.6em;
}
.marquee__item--outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-head {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 74, 0.12), transparent 55%),
    var(--black);
}
.page-head__inner {
  display: grid;
  gap: 24px;
}
.page-head__title {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.page-head__sub {
  font-family: var(--headline);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  max-width: 640px;
  color: rgba(245, 241, 234, 0.7);
  line-height: 1.4;
}
.page-head__crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; align-items: center; gap: 12px;
}
.page-head__crumb span { color: var(--gold); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sec-head--split {
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .sec-head--split { grid-template-columns: 1.4fr 1fr; gap: 60px; }
}

/* ============================================================
   USP / FEATURES GRID
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.usp {
  background: var(--black);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background .35s var(--ease);
}
.usp:hover { background: var(--ink); }
.usp__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.usp__title {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.usp__text { color: rgba(245, 241, 234, 0.7); font-size: 15px; line-height: 1.55; }
.usp__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-family: var(--display);
}

/* ============================================================
   PRICING / PAKETE
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .pricing { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.tier {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--ink);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.tier:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.tier::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--line-strong);
  transition: background .35s var(--ease);
}
.tier:hover::before { background: var(--gold); }

.tier__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tier__name {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 44px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.tier__price {
  margin-top: 28px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--bone);
}
.tier__price sub {
  font-family: var(--mono);
  font-size: 0.28em;
  color: var(--mute);
  vertical-align: middle;
  padding-left: 8px;
  letter-spacing: 0.2em;
}
.tier__tagline {
  font-family: var(--headline);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 24px;
  line-height: 1.3;
}
.tier__list {
  display: flex; flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex: 1;
}
.tier__list li {
  display: flex; gap: 14px;
  font-size: 14.5px;
  color: rgba(245, 241, 234, 0.82);
  line-height: 1.4;
}
.tier__list li::before {
  content: '✓';
  color: var(--gold);
  font-family: var(--display);
  flex-shrink: 0;
  width: 18px;
}
.tier__footer {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.tier__note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.tier__cta {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  display: inline-flex; align-items: center; gap: 12px;
  transition: color .25s var(--ease);
}
.tier__cta::after {
  content: '→';
  transition: transform .3s var(--ease);
}
.tier__cta:hover { color: var(--gold-bright); }
.tier__cta:hover::after { transform: translateX(6px); }

/* Featured tier */
.tier--featured {
  background: linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
  border-color: rgba(201, 162, 74, 0.4);
  position: relative;
}
.tier--featured::before { background: var(--gold); }
.tier--featured::after {
  content: 'EMPFEHLUNG';
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  padding: 5px 10px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}

.tier--elite {
  background:
    radial-gradient(ellipse at top right, rgba(201, 162, 74, 0.15), transparent 50%),
    var(--ink);
  border-color: rgba(201, 162, 74, 0.25);
}
.tier--elite .tier__name {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   COACH FEATURE
   ============================================================ */
.coach {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .coach { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}
.coach__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
}
.coach__visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 162, 74, 0.2), transparent 50%),
    linear-gradient(135deg, #1a1a1a, #050505);
}
.coach__visual::after {
  content: 'NW';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 240px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201, 162, 74, 0.45);
  letter-spacing: -0.04em;
}
.coach__badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
}
.coach__role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.coach__name {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
}
.coach__num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}

.coach__quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 32px;
}
.coach__quote em { color: var(--gold-bright); font-style: normal; }
.coach__bio { max-width: 520px; }

/* ============================================================
   PILLARS / METHODOLOGY
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}
.pillar {
  background: var(--black);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease);
}
.pillar:hover { background: var(--ink); }
.pillar__num {
  font-family: var(--display);
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 74, 0.5);
  line-height: 1;
  position: absolute;
  top: 20px; right: 28px;
  pointer-events: none;
}
.pillar__title {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  text-transform: uppercase;
  margin-top: auto;
  color: var(--white);
}
.pillar__text {
  color: rgba(245,241,234, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================================
   GALERIE GRID
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1080px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
.gallery--feat {
  grid-template-columns: repeat(6, 1fr);
}
.gallery--feat .gframe:nth-child(1) { grid-column: span 4; grid-row: span 2; aspect-ratio: 16/13; }
.gallery--feat .gframe:nth-child(2) { grid-column: span 2; }
.gallery--feat .gframe:nth-child(3) { grid-column: span 2; }
@media (max-width: 720px) {
  .gallery--feat { grid-template-columns: 1fr; }
  .gallery--feat .gframe { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
}

.gframe {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  isolation: isolate;
}
.gframe::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #1a1a1a, #050505);
}
.gframe__art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 120px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 74, 0.4);
  letter-spacing: -0.04em;
  transition: transform .8s var(--ease);
}
.gframe:hover .gframe__art { transform: scale(1.06); }
.gframe__img,
.gframe__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.gframe:hover .gframe__img,
.gframe:hover .gframe__video { transform: scale(1.06); }

.gframe__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.92));
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gframe:hover .gframe__overlay { opacity: 1; }
.gframe__tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.gframe__cap {
  font-family: var(--headline);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.gframe__badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  padding: 5px 9px;
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  text-transform: uppercase;
  z-index: 2;
}
.gframe__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.gframe__play::before {
  content: '';
  width: 0; height: 0;
  border-left: 16px solid var(--black);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.gframe:hover .gframe__play { transform: translate(-50%, -50%) scale(1.1); background: var(--gold-bright); }

/* ============================================================
   LIGHTBOX (Galerie-Fullscreen-View)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__stage {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img,
.lightbox__video {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0,0,0,0.7);
  background: #050505;
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  background: rgba(5,5,5,0.6);
  cursor: pointer;
  z-index: 2;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lightbox__close::before,
.lightbox__close::after {
  content: '';
  position: absolute;
  width: 22px; height: 1.5px;
  background: var(--gold);
  top: 50%; left: 50%;
  transition: background .25s var(--ease);
}
.lightbox__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.lightbox__close:hover { background: var(--gold); transform: rotate(90deg); }
.lightbox__close:hover::before,
.lightbox__close:hover::after { background: var(--black); }
@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ============================================================
   FORM
   ============================================================ */
.form {
  display: grid;
  gap: 32px;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .form__grid--2 { grid-template-columns: 1fr 1fr; }
}
.field {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
}
.form__grid--2 .field:nth-child(odd) { border-right: 1px solid var(--line); }
@media (max-width: 720px) {
  .form__grid--2 .field:nth-child(odd) { border-right: none; }
}
.field__label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  color: var(--white);
  padding: 4px 0;
  background: transparent;
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute-2); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field--full { grid-column: 1 / -1 !important; }
.field--wide { grid-column: 1 / -1; }
.field:focus-within { background: var(--ink); }

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  cursor: pointer;
  padding-right: 28px;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23c9a24a' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.field select option {
  background-color: #0b0b0b;
  color: var(--white);
}
.field select:invalid,
.field select option[value=""] {
  color: var(--mute-2);
}

.choice-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
}
.choice {
  cursor: pointer;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--ink);
  display: flex; flex-direction: column; gap: 8px;
  transition: all .3s var(--ease);
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__name {
  font-family: var(--display); font-size: 22px; text-transform: uppercase;
  color: var(--white);
}
.choice__price { font-family: var(--mono); font-size: 14px; color: var(--gold); letter-spacing: 0.1em; }
.choice:hover { border-color: var(--line-strong); }
.choice:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,74,0.08), transparent);
}
.choice:has(input:checked) .choice__name { color: var(--gold-bright); }

/* ============================================================
   STATS BAR (counter-up)
   ============================================================ */
.statbar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
@media (min-width: 720px) {
  .statbar { grid-template-columns: repeat(4, 1fr); }
}
.statbar__item {
  background: var(--black);
  padding: 44px 24px;
  text-align: center;
}
.statbar__num {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  color: var(--gold-bright);
  line-height: 1;
}
.statbar__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 14px;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta {
  text-align: center;
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta::before {
  content: 'PROSKILLZ';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(120px, 28vw, 480px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 74, 0.07);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.cta__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.cta__title {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta__sub {
  font-family: var(--headline);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--bone);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ============================================================
   TIMETABLE (Pakete page extras)
   ============================================================ */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--line);
}
.table th, .table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--ink);
}
.table td:first-child {
  font-family: var(--headline);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.table td.price {
  font-family: var(--display);
  color: var(--gold-bright);
  font-size: 18px;
}
.table tr:hover td { background: var(--ink); }
.table-wrap { overflow-x: auto; }

/* ============================================================
   CONTACT BLOCKS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.cblock {
  padding: 36px 32px;
  background: var(--ink);
  border: 1px solid var(--line);
  transition: border-color .35s var(--ease);
}
.cblock:hover { border-color: var(--line-strong); }
.cblock__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 22px;
}
.cblock__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cblock__value {
  font-family: var(--headline);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cblock__value a:hover { color: var(--gold-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer__brand-name {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer__tag {
  font-family: var(--headline);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-family: var(--headline);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bone);
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--gold-bright); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* ============================================================
   FIELD / PITCH DECORATION (SVG-based)
   ============================================================ */
.pitch-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' fill='none' stroke='%23c9a24a' stroke-width='1'><rect x='8' y='8' width='784' height='484'/><line x1='400' y1='8' x2='400' y2='492'/><circle cx='400' cy='250' r='70'/><rect x='8' y='150' width='110' height='200'/><rect x='8' y='200' width='40' height='100'/><rect x='682' y='150' width='110' height='200'/><rect x='752' y='200' width='40' height='100'/><circle cx='400' cy='250' r='3' fill='%23c9a24a'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .hero__edge { display: none; }
  .hero__title .line--offset { padding-left: 0; }
  .hero__stats { grid-template-columns: 1fr; gap: 24px; }
  .hero__stat + .hero__stat { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 20px; }
}

@media (max-width: 540px) {
  .footer__bottom { justify-content: center; text-align: center; }
  .tier__footer { flex-direction: column; align-items: flex-start; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee__track { animation: none; }
}
