/* ================================================================
   PORTFOLIO – LORIK BEADINI
   Design: FC Zürich Blau & Weiss · Mobile-First · Premium
   ================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* FC Zürich Farben */
  --fcz-blue:       #0047AB;        /* FCZ Royalblau */
  --fcz-blue-dark:  #003080;        /* Dunkleres Blau für Hover */
  --fcz-blue-deep:  #0D1E3E;        /* Sehr dunkles Navy — NEU: exakter FCZ Token */
  --fcz-blue-mid:   #0d2a50;        /* Mittleres Navy */
  --fcz-blue-card:  #112340;        /* Karten auf dunklem Hintergrund */
  --fcz-blue-card2: #162d52;
  --fcz-blue-border:#1e3d6a;
  --fcz-white:      #ffffff;
  --fcz-off-white:  #f4f8ff;        /* Leicht blau getöntes Weiss */
  --fcz-light-bg:   #eaf1fc;        /* Sehr helles Blau für Cards auf Weiss */

  /* Akzent — NEU: exakte FCZ Token */
  --clr-accent:     #0047AB;
  --clr-accent-2:   #1a6fce;
  --clr-accent-rgb: 0, 71, 171;

  /* Text – dunkel (für weisse Sektionen) */
  --clr-text-dark:   #0c1e3d;
  --clr-text-dark-2: #2e4a6e;
  --clr-text-dark-3: #6b8aaa;

  /* Text – hell (für blaue Sektionen) */
  --clr-text-light:  #dce8f8;
  --clr-text-light-2:#7a9cc0;
  --clr-text-light-3:#3a5a80;

  /* Typografie */
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Abstände */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Radien */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-width: 1100px;
  --nav-h:     64px;
}


/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--fcz-white);
  color: var(--clr-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }


/* ----------------------------------------------------------------
   3. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section      { padding: var(--space-2xl) 0; }

/* Dunkle Sektion – Navy Blau */
.section--blue {
  background: var(--fcz-blue-deep);
}

/* Weisse Sektion */
.section--white {
  background: var(--fcz-white);
}

/* Sehr leicht getönte weisse Sektion */
.section--offwhite {
  background: var(--fcz-off-white);
}


/* ----------------------------------------------------------------
   4. SECTION HEADERS
      Zwei Varianten: auf Weiss (dark) und auf Blau (light)
   ---------------------------------------------------------------- */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
}

/* Auf weissem Hintergrund */
.section--white  .section-title,
.section--offwhite .section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--clr-text-dark);
  margin-bottom: var(--space-lg);
}

/* Auf blauem Hintergrund */
.section--blue .section-label { color: #5aabff; }
.section--blue .section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--fcz-white);
  margin-bottom: var(--space-lg);
}

/* Fallback wenn keine Klasse */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--fcz-white);
  margin-bottom: var(--space-lg);
}


/* ----------------------------------------------------------------
   5. TAGS
   ---------------------------------------------------------------- */
.tag {
  display: inline-block;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--fcz-light-bg);
  color: var(--clr-accent);
  border: 1px solid rgba(0,71,171,0.18);
  transition: background 0.2s, border-color 0.2s;
}
.tag:hover {
  background: rgba(0,71,171,0.12);
  border-color: var(--clr-accent);
}


/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--clr-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--fcz-blue-dark);
  box-shadow: 0 8px 30px rgba(0,71,171,0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--fcz-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn--outline:hover {
  background: rgba(0,71,171,0.08);
  transform: translateY(-2px);
}

/* Weisser Outline-Button auf blauem Hintergrund */
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}


/* ----------------------------------------------------------------
   7. SCROLL REVEAL
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }


/* ----------------------------------------------------------------
   8. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}

/* Weisser oberer Balken – FCZ Stil */
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, #5aabff 50%, var(--fcz-white) 100%);
  z-index: 1;
}

.nav.is-scrolled {
  background: rgba(12, 30, 61, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--fcz-blue-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: var(--fcz-white);
  background: var(--clr-accent);
  padding: 0.1em 0.45em;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav__logo:hover { background: var(--fcz-blue-dark); }

.nav__links {
  display: none;
  gap: var(--space-lg);
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--fcz-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--fcz-white); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--fcz-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--fcz-blue-deep);
  padding: var(--space-xl) var(--space-md);
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.nav__links.is-open a {
  font-size: 1.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: var(--fcz-white);
}


/* ----------------------------------------------------------------
   9. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background: var(--fcz-blue-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--fcz-blue-mid);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12,30,61,1) 0%, rgba(12,30,61,0.72) 40%, rgba(12,30,61,0.18) 100%),
    linear-gradient(to right, rgba(12,30,61,0.65) 0%, transparent 65%);
}

/* Weisser Akzent-Streifen – FCZ Farbe */
.hero__accent {
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 45%;
  background: linear-gradient(to bottom, var(--fcz-white), var(--clr-accent));
  z-index: 2;
}

/* FC Zürich Wappen-Platzhalter (dekorativ) */
.hero__badge {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  right: var(--space-md);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__position {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-sm);
  padding: 0.45em 1.1em;
  background: var(--clr-accent);
  border-radius: 100px;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 15vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--fcz-white);
  margin-bottom: var(--space-md);
}
.hero__name--accent {
  display: block;
  color: var(--fcz-white);
  /* Hollow text – nur weisser Outline */
  -webkit-text-stroke: 2px rgba(255,255,255,0.4);
  color: transparent;
}

.hero__slogan {
  font-size: clamp(0.92rem, 2.2vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ----------------------------------------------------------------
   10. ABOUT – WEISSER HINTERGRUND
   ---------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.about__image-wrap {
  position: relative;
  align-self: start;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 360px;
  margin: 0 auto;
  background: var(--fcz-light-bg);
  border: 2px solid rgba(0,71,171,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__image-placeholder.no-img .about__image { display: none; }
.about__image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--clr-text-dark-3);
  text-align: center;
  line-height: 1.4;
}

/* Trikotnummer Badge */
.about__image-badge {
  position: absolute;
  bottom: -16px;
  right: 0;
  background: var(--clr-accent);
  border-radius: var(--radius-md);
  padding: 0.5em 1em;
  box-shadow: 0 4px 16px rgba(0,71,171,0.3);
}
.about__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Bio */
.about__bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text-dark-2);
  margin-bottom: var(--space-lg);
}

/* Details Grid – auf weissem Hintergrund */
.about__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,71,171,0.1);
  border: 1px solid rgba(0,71,171,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.about__detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
  background: var(--fcz-white);
  transition: background 0.2s;
}
.about__detail-item:hover { background: var(--fcz-off-white); }

.about__detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dark-3);
}
.about__detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}

/* Stärken */
.about__strength-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dark-3);
  margin-bottom: var(--space-sm);
}
.about__tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* FCZ Divider zwischen About-Kard & Info */
.about__divider {
  width: 48px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}


/* ----------------------------------------------------------------
   11. HIGHLIGHTS – BLAUE SEKTION
   ---------------------------------------------------------------- */
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.highlight-card {
  background: var(--fcz-blue-card);
  border: 1px solid var(--fcz-blue-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.2);
}

.highlight-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--fcz-blue-mid);
  background-size: cover;
  background-position: center;
}
.highlight-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.25s;
}
.highlight-card__play:hover { background: rgba(0,0,0,0.45); }

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  transition: transform 0.25s var(--ease-spring), background 0.2s;
}
.play-btn span { margin-left: 4px; }
.highlight-card__play:hover .play-btn {
  transform: scale(1.1);
  background: #fff;
}

.highlight-card__video { position: relative; aspect-ratio: 16/9; }
.highlight-card__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.highlight-card__info { padding: var(--space-sm) var(--space-md); }
.highlight-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--fcz-white);
  margin-bottom: 4px;
}
.highlight-card__meta {
  font-size: 0.8rem;
  color: var(--clr-text-light-2);
}

.highlights__more { text-align: center; }


/* ----------------------------------------------------------------
   12. GALLERY – WEISSER HINTERGRUND
   ---------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.gallery__item {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--fcz-light-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,71,171,0.1);
}
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--wide  { grid-column: span 2; }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery__overlay span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  background: rgba(0,71,171,0.85);
  padding: 0.3em 0.8em;
  border-radius: 4px;
}
.gallery__item:hover .gallery__overlay { background: rgba(0,0,0,0.45); }
.gallery__item:hover .gallery__overlay span { opacity: 1; transform: translateY(0); }


/* ----------------------------------------------------------------
   13. STATS – BLAUE SEKTION
   ---------------------------------------------------------------- */
.stats__season {
  font-size: 0.82rem;
  color: var(--clr-text-light-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -0.8rem;
  margin-bottom: var(--space-xl);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: var(--fcz-blue-card);
  border: 1px solid var(--fcz-blue-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), #5aabff);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.stat-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  background: var(--fcz-blue-card2);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-card__icon { font-size: 1.8rem; margin-bottom: var(--space-sm); line-height: 1; }
.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1;
  color: var(--fcz-white);
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-light-2);
}

/* Skill Bars */
.skills {
  background: var(--fcz-blue-card);
  border: 1px solid var(--fcz-blue-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.skills__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--fcz-white);
  margin-bottom: var(--space-lg);
}
.skills__list { display: flex; flex-direction: column; gap: var(--space-md); }

.skill-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.skill-bar__label { font-size: 0.85rem; font-weight: 600; color: var(--clr-text-light); }
.skill-bar__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #5aabff;
  letter-spacing: 0.05em;
}
.skill-bar__track {
  height: 4px;
  background: var(--fcz-blue-border);
  border-radius: 100px;
  overflow: hidden;
}
.skill-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-accent), #5aabff);
  border-radius: 100px;
  width: 0;
  transition: width 1s var(--ease) 0.3s;
}
.skills.is-visible .skill-bar__fill { width: var(--skill-width); }


/* ----------------------------------------------------------------
   14. CONTACT – WEISSER HINTERGRUND
   ---------------------------------------------------------------- */
.contact__intro {
  font-size: 1rem;
  color: var(--clr-text-dark-2);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.social__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.social-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--fcz-white);
  border: 1.5px solid rgba(0,71,171,0.12);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,71,171,0.05);
}
.social-card:hover {
  border-color: rgba(0,71,171,0.35);
  background: var(--fcz-off-white);
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(0,71,171,0.1);
}

.social-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring);
}
.social-card:hover .social-card__icon { transform: scale(1.08); }

.social-card__icon--ig  { background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); color: #fff; }
.social-card__icon--tt  { background: #010101; color: #fff; border: 1px solid #2a2a2a; }
.social-card__icon--yt  { background: #ff0000; color: #fff; }
.social-card__icon--mail { background: var(--fcz-light-bg); color: var(--clr-accent); border: 1px solid rgba(0,71,171,0.15); }

.social-card__info  { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.social-card__platform {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dark-3);
}
.social-card__handle { font-size: 1rem; font-weight: 700; color: var(--clr-text-dark); }

.social-card__arrow {
  font-size: 1.2rem;
  color: var(--clr-text-dark-3);
  transition: color 0.2s, transform 0.2s var(--ease);
}
.social-card:hover .social-card__arrow {
  color: var(--clr-accent);
  transform: translateX(4px);
}


/* ----------------------------------------------------------------
   15. FCZ STRIPE DIVIDER
       Blau-Weiss-Blau Balken zwischen Sektionen
   ---------------------------------------------------------------- */
.fcz-stripe {
  height: 6px;
  background: linear-gradient(90deg,
    var(--fcz-blue-deep) 0%,
    var(--clr-accent) 30%,
    var(--fcz-white) 50%,
    var(--clr-accent) 70%,
    var(--fcz-blue-deep) 100%
  );
}


/* ----------------------------------------------------------------
   16. FOOTER – NAVY BLAU
   ---------------------------------------------------------------- */
.footer {
  background: var(--fcz-blue-deep);
  border-top: 3px solid var(--clr-accent);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--fcz-white);
  letter-spacing: 0.1em;
  background: var(--clr-accent);
  padding: 0.1em 0.5em;
  border-radius: var(--radius-sm);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer__logo:hover { opacity: 1; }

.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-text-light-2);
  letter-spacing: 0.08em;
}
.footer__social { display: flex; gap: var(--space-md); }
.footer__social-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--clr-text-light-2);
  padding: 0.5em 1em;
  border: 1px solid var(--fcz-blue-border);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social-link:hover {
  color: var(--fcz-white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}
.footer__copy {
  font-size: 0.72rem;
  color: var(--clr-text-light-3);
}
.footer__credit {
  font-size: 0.68rem;
  color: var(--clr-text-light-3);
  opacity: 0.6;
  margin-top: 4px;
}


/* ----------------------------------------------------------------
   17. WERDEGANG TIMELINE
   ---------------------------------------------------------------- */
.timeline {
  margin-top: var(--space-xl);
  background: var(--fcz-blue-card);
  border: 1px solid var(--fcz-blue-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--fcz-white);
  margin-bottom: var(--space-lg);
}

.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertikale Linie */
.timeline__list::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-accent), rgba(0,71,171,0.2));
}

.timeline__item {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

/* Punkt auf der Linie */
.timeline__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fcz-blue-mid);
  border: 2px solid var(--fcz-blue-border);
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
}

.timeline__dot--active {
  background: var(--clr-accent);
  border-color: #5aabff;
  box-shadow: 0 0 0 4px rgba(0,71,171,0.25);
}

.timeline__item:hover .timeline__dot {
  border-color: var(--clr-accent-2);
}

.timeline__body {
  flex: 1;
  padding-top: 0;
}

.timeline__year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5aabff;
  display: block;
  margin-bottom: 4px;
}

.timeline__club {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--fcz-white);
  margin-bottom: 6px;
}

.timeline__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--clr-text-light-2);
}

/* „Aktuell"-Badge */
.timeline__badge {
  display: inline-block;
  margin-top: 8px;
  padding: 0.25em 0.75em;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
}

/* Highlight der aktuellen Station */
.timeline__item--current .timeline__body {
  background: rgba(0,71,171,0.12);
  border: 1px solid rgba(0,71,171,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-left: -var(--space-sm);
}


/* ----------------------------------------------------------------
   18. RESPONSIVE: TABLET >= 640px
   ---------------------------------------------------------------- */
@media (min-width: 640px) {
  .highlights__grid     { grid-template-columns: repeat(2, 1fr); }
  .stats__grid          { grid-template-columns: repeat(4, 1fr); }
  .profile-grid         { grid-template-columns: repeat(3, 1fr); }
  .strength-grid        { grid-template-columns: repeat(4, 1fr); }
  .social__grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid        { grid-auto-rows: 220px; gap: 12px; }
}


/* ----------------------------------------------------------------
   19. RESPONSIVE: DESKTOP >= 960px
   ---------------------------------------------------------------- */
@media (min-width: 960px) {
  .nav__links  { display: flex; }
  .nav__burger { display: none; }

  .hero__name { font-size: clamp(5rem, 10vw, 9.5rem); }

  .about__grid {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
  .about__image-placeholder { max-width: 100%; margin: 0; }

  .highlights__grid { grid-template-columns: repeat(3, 1fr); }
  .profile-grid     { grid-template-columns: repeat(6, 1fr); }
  .strength-grid    { grid-template-columns: repeat(5, 1fr); }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
  }

  .social__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


/* ----------------------------------------------------------------
   20. PERFORMANCE – GPU-Hints
       Nur auf Elementen setzen, die wirklich animiert werden.
   ---------------------------------------------------------------- */
.hero__bg,
.hero__content,
.reveal,
.highlight-card,
.gallery__item,
.stat-card,
.profile-card,
.strength-tile,
.social-card {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* iOS-Momentum-Scroll */
html, body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Verhindert Layout-Shift bei Bildern */
img {
  content-visibility: auto;
}

/* Body wenn Overlay offen ist: kein Scrollen der Seite */
body.overlay-open {
  overflow: hidden;
}


/* ----------------------------------------------------------------
   21. HERO – WOW ANIMATIONEN
       Elemente erscheinen gestaffelt wenn .hero--loaded gesetzt wird.
       (wird per JS auf der <section class="hero"> gesetzt)
   ---------------------------------------------------------------- */

/* Startzustand aller Hero-Elemente */
.hero__bg {
  transform-origin: center;
  transition: transform 0.1ms linear; /* wird per JS übersteuert */
}

.hero__position,
.hero__slogan,
.hero__cta,
.hero__scroll-hint,
.hero__badge {
  opacity: 0;
}

/* HINTERGRUND: Zoom-Out beim Laden (leichter Ken-Burns-Effekt) */
.hero--loaded .hero__bg {
  animation: heroBgReveal 1.8s var(--ease) forwards;
}
@keyframes heroBgReveal {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1)    translate3d(0, 0, 0); }
}

/* BADGE: Fade-in */
.hero--loaded .hero__badge {
  animation: fadeUp 0.5s var(--ease) 0.1s forwards;
}

/* POSITION-BADGE: Slide von links */
.hero--loaded .hero__position {
  animation: slideRight 0.6s var(--ease) 0.25s forwards;
}

/* SLOGAN: Fade nach oben */
.hero--loaded .hero__slogan {
  animation: fadeUp 0.6s var(--ease) 0.65s forwards;
}

/* CTA-BUTTONS: Fade nach oben */
.hero--loaded .hero__cta {
  animation: fadeUp 0.6s var(--ease) 0.82s forwards;
}

/* SCROLL HINT: Fade */
.hero--loaded .hero__scroll-hint {
  animation: fadeUp 0.5s var(--ease) 1.1s forwards;
}

/* Keyframes */
@keyframes slideRight {
  from { opacity: 0; transform: translate3d(-36px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0,    0, 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0,    0); }
}

/* Akzentlinie zeichnet sich von oben nach unten */
.hero__accent {
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
}
.hero--loaded .hero__accent {
  animation: accentDraw 0.9s var(--ease) 0.15s forwards;
}
@keyframes accentDraw {
  from { transform: scaleY(0); opacity: 1; }
  to   { transform: scaleY(1); opacity: 1; }
}


/* ----------------------------------------------------------------
   22. SCROLL-REVEAL – Verbesserte Varianten
   ---------------------------------------------------------------- */

/* Standard: fade + translate Y (bereits vorhanden, bleibt) */

/* Variante: fade von links (für Textelemente) */
.reveal-left {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Variante: fade von rechts (für Bild-Elemente) */
.reveal-right {
  opacity: 0;
  transform: translate3d(30px, 0, 0);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


/* ----------------------------------------------------------------
   23. VIDEOS-OVERLAY
       Slide-up Panel mit Video-Grid.
       Aktiviert durch #open-videos Button.
   ---------------------------------------------------------------- */

/* Dunkler Backdrop */
.videos-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 36, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.videos-overlay.is-open ~ .videos-backdrop,
.videos-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Overlay Panel */
.videos-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2100;
  max-height: 92svh;
  background: var(--fcz-blue-deep);
  border-top: 3px solid var(--clr-accent);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  overflow: hidden;
}

.videos-overlay.is-open {
  transform: translate3d(0, 0, 0);
}

/* Drag-Handle (optisch) */
.videos-overlay__handle {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

/* Header */
.videos-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--fcz-blue-border);
  flex-shrink: 0;
}

.videos-overlay__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--fcz-white);
}

.videos-overlay__subtitle {
  font-size: 0.78rem;
  color: var(--clr-text-light-2);
  margin-top: 2px;
}

.videos-overlay__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--fcz-blue-border);
  color: var(--fcz-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
  flex-shrink: 0;
}
.videos-overlay__close:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

/* Scrollbarer Bereich */
.videos-overlay__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: var(--space-md);
  flex: 1;
}

/* Video-Grid */
.videos-overlay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Video-Karte im Overlay */
.video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;          /* TikTok/Reels-Format */
  background: var(--fcz-blue-card);
  border: 1px solid var(--fcz-blue-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.2s;
}

/* Quer-Format Karte (16:9) kann als Abwechslung eingefügt werden */
.video-thumb--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.video-thumb:hover {
  transform: scale(0.97);
  border-color: rgba(255,255,255,0.2);
}
.video-thumb:active {
  transform: scale(0.94);
}

/* Overlay-Gradient auf Thumb */
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,30,61,0.9) 0%, transparent 50%);
  z-index: 1;
}

/* Play-Button zentriert */
.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-thumb__play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease-spring), background 0.2s;
}
.video-thumb:hover .video-thumb__play-btn {
  transform: scale(1.12);
  background: #fff;
}
.video-thumb__play-btn span { margin-left: 3px; }

/* Titel unten links */
.video-thumb__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 8px;
  z-index: 2;
}
.video-thumb__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}
.video-thumb__meta {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Desktop: breiteres Grid */
@media (min-width: 640px) {
  .videos-overlay__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .videos-overlay {
    max-height: 88svh;
    left: 5%;
    right: 5%;
    border-radius: 20px 20px 0 0;
  }
}
@media (min-width: 960px) {
  .videos-overlay__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .videos-overlay {
    left: 10%;
    right: 10%;
  }
}


/* ----------------------------------------------------------------
   24. MOBILE UX – Daumen-optimierte Touch-Targets
   ---------------------------------------------------------------- */

/* Alle interaktiven Elemente: minimum 44x44px Touch-Target */
.btn,
.social-card,
.highlight-card__play,
.nav__burger,
.footer__social-link,
.videos-overlay__close {
  min-height: 44px;
  min-width: 44px;
}

/* CTA-Buttons auf Mobile: full-width für leichteres Tippen */
@media (max-width: 400px) {
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }
}


/* ================================================================
   NEU: SELECTION + SCROLLBAR
   ================================================================ */
::selection { background: #0047AB; color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D1E3E; }
::-webkit-scrollbar-thumb { background: #0047AB; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #1a6fce; }


/* NEU: SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, #0047AB, #5aabff);
  transition: width 0.1s linear;
  pointer-events: none;
}


/* NEU: HERO CANVAS */
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}


/* NEU: FILM GRAIN */
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.hero__grain::after {
  content: '';
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E") center / 256px 256px;
  opacity: 0.45;
  animation: grain 0.6s steps(3) infinite;
}
@keyframes grain {
  0%  { transform: translate(0, 0); }
  20% { transform: translate(-4%, 6%); }
  40% { transform: translate(-8%, -4%); }
  60% { transform: translate(4%, 8%); }
  80% { transform: translate(8%, -2%); }
  100%{ transform: translate(-2%, 4%); }
}


/* NEU: HERO WATERMARK */
.hero__watermark {
  position: absolute; bottom: -8%; right: -3%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40vw; line-height: 1; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
  transform: rotate(-15deg); z-index: 1;
  white-space: nowrap;
}


/* NEU: ABOUT WATERMARK */
.about__watermark {
  position: absolute; bottom: -5%; right: -2%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 35vw; line-height: 1;
  color: rgba(0,71,171,0.04);
  pointer-events: none; user-select: none;
  transform: rotate(-10deg); z-index: 0;
  white-space: nowrap;
}
/* Make about section position:relative for watermark */
.about.section { position: relative; overflow: hidden; }


/* NEU: HERO SPLIT TEXT — initial states */
.hero__name { opacity: 1; } /* override any reveal */
.hero__name-line {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 16vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--fcz-white);
}
.hero__name-line--outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.35);
  color: transparent;
}
/* Each character span */
.hero__name-line .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(-60px, 0, 0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.hero__name-line[data-direction="right"] .char {
  transform: translate3d(60px, 0, 0);
}
.hero--loaded .hero__name-line .char {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


/* NEU: GLITCH ANIMATION on BEADINI */
@keyframes glitch1 {
  0%, 100% { clip-path: inset(0 0 100% 0); transform: translate3d(0,0,0); }
  20%       { clip-path: inset(20% 0 55% 0); transform: translate3d(-6px, 0, 0); }
  40%       { clip-path: inset(60% 0 20% 0); transform: translate3d(6px, 0, 0); }
  60%       { clip-path: inset(35% 0 40% 0); transform: translate3d(-3px, 0, 0); }
  80%       { clip-path: inset(80% 0 5% 0); transform: translate3d(3px, 0, 0); }
}
@keyframes glitch2 {
  0%, 100% { clip-path: inset(0 0 100% 0); transform: translate3d(0,0,0); }
  25%       { clip-path: inset(50% 0 30% 0); transform: translate3d(8px, 0, 0); }
  50%       { clip-path: inset(10% 0 70% 0); transform: translate3d(-8px, 0, 0); }
  75%       { clip-path: inset(75% 0 10% 0); transform: translate3d(4px, 0, 0); }
}
.hero__name-line--glitch { position: relative; }
.hero__name-line--glitch::before,
.hero__name-line--glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: inherit; line-height: inherit; letter-spacing: inherit;
  -webkit-text-stroke: inherit; color: inherit;
  pointer-events: none;
  opacity: 0;
}
.hero__name-line--glitch::before { color: rgba(0,100,255,0.7); }
.hero__name-line--glitch::after  { color: rgba(255,255,255,0.5); }
.hero__name-line--glitch.glitch-play::before {
  opacity: 1;
  animation: glitch1 0.22s steps(2) 1;
}
.hero__name-line--glitch.glitch-play::after {
  opacity: 1;
  animation: glitch2 0.22s steps(2) 1 0.03s;
}


/* NEU: ABOUT PHOTO — diagonal clip-path + 3D tilt */
.about__image-clip {
  clip-path: polygon(0 0, 100% 0, 100% 82%, 88% 100%, 0 100%);
  border-radius: 0 !important;
}
.about__image-tilt {
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: box-shadow 0.3s;
  cursor: default;
}
.about__image-tilt:hover {
  box-shadow: 0 24px 60px rgba(0,71,171,0.25);
}


/* NEU: TAG TOOLTIPS */
.tag { position: relative; }
.tag[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(6px);
  background: #0D1E3E;
  color: #dce8f8;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  line-height: 1.4; white-space: nowrap;
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid #1e3d6a;
  pointer-events: none;
  opacity: 0; z-index: 200;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.tag[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  border: 5px solid transparent;
  border-top-color: #1e3d6a;
  pointer-events: none; opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.tag[data-tooltip]:hover::after,
.tag[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* NEU: HIGHLIGHT CARDS — glassmorphism + flip-in + 3D tilt */
.highlight-card {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08) !important;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(15deg);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease),
              box-shadow 0.3s, border-color 0.3s;
}
.highlight-card.is-flipped {
  transform: perspective(1000px) rotateX(0deg);
  opacity: 1;
}
/* When tilt is active (JS sets inline style, so we only set base transition) */
.highlight-card.card-tilt {
  /* transition overridden by JS lerp */
}
/* Play button 360 rotation */
.highlight-card__play:hover .play-btn {
  transform: scale(1.2) rotate(360deg);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
}


/* NEU: STAT CARDS — SVG ring + glow + diagonal stripes */
.stats.section--blue {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 28px,
    rgba(255,255,255,0.012) 28px, rgba(255,255,255,0.012) 29px
  );
}
.stat-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}
.stat-ring-wrap {
  position: relative; width: 80px; height: 80px;
  margin-bottom: 8px; flex-shrink: 0;
}
.stat-ring {
  width: 80px; height: 80px;
  overflow: visible;
}
.stat-ring__track {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 4;
}
.stat-ring__progress {
  fill: none;
  stroke: url(#ring-gradient);
  stroke-width: 4;
  stroke-dasharray: 175.93;
  stroke-dashoffset: 175.93;
  stroke-linecap: round;
  transform-origin: center;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
}
/* Add this gradient SVG def via JS */
.stat-card__inner {
  display: flex; flex-direction: column; align-items: center;
  position: absolute; inset: 0;
  justify-content: center;
}
.stat-card:hover {
  box-shadow: 0 0 24px rgba(0,71,171,0.5), 0 0 48px rgba(0,71,171,0.2) !important;
  border-color: rgba(0,71,171,0.6) !important;
}


/* ----------------------------------------------------------------
   STRENGTH TILE GRID
   ---------------------------------------------------------------- */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.strength-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  background: var(--fcz-light-bg);
  border: 1px solid rgba(0,71,171,0.12);
  border-radius: var(--radius-md);
  cursor: default;
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s var(--ease);
  min-height: 90px;
}
.strength-tile:hover {
  background: rgba(0,71,171,0.09);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}
.strength-tile__icon {
  font-size: 1.5rem;
  line-height: 1;
}
.strength-tile__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-text-dark);
  text-align: center;
  line-height: 1.2;
}

/* Tooltip reuse for strength-tile */
.strength-tile[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--fcz-blue-deep);
  color: #fff;
  font-size: 0.72rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  max-width: 200px;
  white-space: normal;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.strength-tile[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 5px solid transparent;
  border-top-color: var(--fcz-blue-deep);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.strength-tile[data-tooltip]:hover::after,
.strength-tile[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ----------------------------------------------------------------
   PROFILE GRID (replaces stat cards)
   ---------------------------------------------------------------- */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: var(--space-xl);
}

.profile-card {
  background: var(--fcz-blue-card);
  border: 1px solid var(--fcz-blue-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  background: var(--fcz-blue-card2);
}
.profile-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-light-2);
  margin-bottom: 6px;
}
.profile-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: var(--fcz-white);
  line-height: 1;
}

/* NEU: GALLERY MASONRY */
.gallery__masonry {
  columns: 2; column-gap: 10px;
}
.gallery__item {
  display: block !important;
  break-inside: avoid;
  margin-bottom: 10px;
  height: 220px;
  cursor: pointer;
  border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,71,171,0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.gallery__item--h1 { height: 160px; }
.gallery__item--h2 { height: 220px; }
.gallery__item--h3 { height: 300px; }
.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,71,171,0.2);
  z-index: 2;
}
.gallery__zoom-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(0,71,171,0.8);
  border-radius: 50%;
  transform: scale(0.7) rotate(-10deg);
  transition: transform 0.3s var(--ease-spring);
}
.gallery__item:hover .gallery__overlay { background: rgba(0,0,0,0.45); }
.gallery__item:hover .gallery__zoom-icon {
  transform: scale(1) rotate(0deg);
}
/* Gallery stagger handled in JS */
.gallery__item.reveal {
  transform: translateY(20px) scale(0.98);
  opacity: 0;
}
.gallery__item.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (min-width: 640px) { .gallery__masonry { columns: 2; column-gap: 12px; } }
@media (min-width: 960px) { .gallery__masonry { columns: 3; column-gap: 16px; } }


/* NEU: LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.is-open {
  opacity: 1; pointer-events: all;
}
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 18, 36, 0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lightbox__content {
  position: relative; z-index: 1;
  max-width: 92vw; max-height: 88svh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img {
  max-width: 100%; max-height: 88svh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-spring);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.lightbox__nav {
  position: absolute; top: 50%; z-index: 2;
  transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}
.lightbox__nav:hover { background: rgba(0,71,171,0.5); transform: translateY(-50%) scale(1.1); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }


/* NEU: CARD 3D TILT (base style — transforms applied by JS) */
.card-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}
