:root {
  --pff-bg: #0b1320;
  --pff-bg-2: #121c2e;
  --pff-panel: rgba(12, 20, 36, 0.72);
  --pff-text: #ffffff;
  --pff-muted: #9aa6b8;
  --pff-blue: #2f6fed;
  --pff-blue-2: #1e5ae8;
  --pff-yellow: #e8b923;
  --pff-purple: #7c5cff;
  --pff-green: #1f9d6a;
  --pff-radius: 14px;
  --pff-nav-h: 88px;
  --pff-header-top: 1.15rem;
  --pff-font: "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
  --pff-nav-bg: linear-gradient(90deg, rgba(12,18,32,.96) 0%, rgba(12,18,32,.78) 33%, rgba(12,18,32,.55) 100%);
  --pff-nav-fg: #ffffff;
  --pff-drop-bg: rgba(18, 24, 38, .97);
  --pff-drop-fg: rgba(255,255,255,.9);
}

html.light {
  --pff-bg: #f3f6fb;
  --pff-bg-2: #ffffff;
  --pff-panel: rgba(255, 255, 255, 0.82);
  --pff-text: #0f1c2e;
  --pff-muted: #5b677a;
  --pff-nav-bg: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 33%, rgba(255,255,255,.72) 100%);
  --pff-nav-fg: #0f1c2e;
  --pff-drop-bg: rgba(255,255,255,.98);
  --pff-drop-fg: #0f1c2e;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  margin: 0;
  padding: 0;
  background: transparent;
}
html.light { color-scheme: light; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--pff-font);
  background: var(--pff-bg);
  color: var(--pff-text);
  min-height: 100vh;
  transition: background-color .25s ease, color .25s ease;
  background-image:
    repeating-linear-gradient(
      -28deg,
      transparent 0,
      transparent 48px,
      rgba(255,255,255,0.015) 48px,
      rgba(255,255,255,0.015) 49px
    );
}
html.light body {
  background-image:
    repeating-linear-gradient(
      -28deg,
      transparent 0,
      transparent 48px,
      rgba(15,28,46,0.03) 48px,
      rgba(15,28,46,0.03) 49px
    );
}

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

.container {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header — floating capsule with clear top breathing room over hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--pff-header-top) .85rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  /* Top gap stays click-through so no black strip */
  pointer-events: none;
}
.site-header .nav-shell,
.site-header .nav-shell * {
  pointer-events: auto;
}
.nav-shell {
  width: min(1360px, 100%);
  margin: 0 auto;
  min-height: var(--pff-nav-h);
  background: var(--pff-nav-bg);
  color: var(--pff-nav-fg);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  border-radius: .65rem .65rem 2.25rem 2.25rem;
  padding: .85rem 1.45rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
  overflow: visible;
}
html.light .nav-shell { box-shadow: 0 12px 36px rgba(15,28,46,.12); }
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  color: inherit;
  /* Desktop: nudge logo slightly inward (right) from capsule edge */
  margin-left: .85rem;
  position: relative;
  z-index: 6;
  isolation: isolate;
}
.brand img {
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  display: block;
  transform-origin: left center;
  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    filter .4s ease,
    max-width .4s ease,
    background-color .25s ease;
  will-change: transform;
}
html.dark .brand img {
  background: rgba(255, 255, 255, .94);
  border-radius: 10px;
  padding: .3rem .55rem;
}
.brand:hover,
.brand:focus-visible {
  z-index: 250;
}
.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.55) translateY(6%);
  max-width: none;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .45));
}
.site-header:has(.brand:hover),
.site-header:has(.brand:focus-visible) {
  z-index: 400;
}
.footer-logo {
  display: inline-flex;
  text-decoration: none;
}
.footer-logo img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
html.light .footer-logo img {
  /* footer stays dark — give logo a light plate for contrast */
  background: rgba(255, 255, 255, .96);
  border-radius: 12px;
  padding: .45rem .7rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: inherit;
  font-weight: 700;
}
.brand-text strong { font-size: .95rem; letter-spacing: .04em; font-weight: 800; }
.brand-text--stacked {
  gap: .05rem;
  font-size: .72rem;
  letter-spacing: .04em;
}
.brand-text--stacked strong {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.05;
}
.brand-text--stacked strong:nth-child(2) {
  font-size: 1.15rem;
  letter-spacing: .12em;
  color: #2f6fed;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex: 1;
  flex-wrap: wrap;
}
.nav-main > li {
  list-style: none;
  position: relative;
  /* Extend hover hit-area so dropdown doesn't vanish in the gap */
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-main, .nav-main ul { margin: 0; padding: 0; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .4rem;
  font-size: .95rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  color: inherit;
  opacity: .96;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { border-bottom-color: var(--pff-blue); opacity: 1; }
.nav-link .caret {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: .7;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  min-width: 230px;
  padding-top: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 200;
}
.dropdown-panel {
  background: var(--pff-drop-bg);
  border: 1px solid rgba(127,127,127,.12);
  border-radius: 14px;
  padding: .55rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.nav-main > li:hover > .dropdown,
.nav-main > li:focus-within > .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: .65rem .85rem;
  border-radius: 10px;
  font-size: .95rem;
  color: var(--pff-drop-fg);
}
.dropdown a:hover { background: rgba(127,127,127,.1); }

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .7rem;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .7rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.social-links {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.social-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  transition:
    transform .25s cubic-bezier(.22,1,.36,1),
    box-shadow .25s ease,
    filter .25s ease,
    opacity .25s ease;
}
.social-link svg {
  width: 1rem;
  height: 1rem;
}
.social-link:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .24);
  filter: saturate(1.08);
}
.social-link.is-disabled {
  opacity: 1;
  pointer-events: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  filter: none;
}
.social-link--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5bd7 100%);
}
.social-link--instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 8%, #fd5949 30%, #d6249f 62%, #285aeb 100%);
}
.social-link--youtube {
  background: linear-gradient(135deg, #ff4e45 0%, #e11d1d 100%);
}
.social-link--twitter {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}
html.light .social-link {
  border-color: rgba(15, 28, 46, .08);
  box-shadow: 0 10px 20px rgba(15, 28, 46, .14);
}
.btn-tv {
  background: var(--pff-blue);
  color: #fff;
  border-radius: 999px;
  padding: .7rem 1.2rem;
  font-size: .92rem;
  font-weight: 700;
}
.btn-tv:hover { background: var(--pff-blue-2); }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  border-radius: 999px;
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}
.icon-btn:hover { background: rgba(127,127,127,.12); }
.icon-btn .icon-sun { display: none; }
html.light .icon-btn .icon-moon { display: none; }
html.light .icon-btn .icon-sun { display: block; }
.lang, .login-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .95rem;
  font-weight: 600;
  color: inherit;
}
.lang svg,
.login-link svg {
  width: 20px;
  height: 20px;
}
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: 0;
  border-radius: 14px;
  color: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 6px 18px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
  transition:
    transform .28s cubic-bezier(.22,1,.36,1),
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}
html.light .menu-toggle {
  background: linear-gradient(145deg, rgba(15,28,46,.06), rgba(15,28,46,.02));
  border-color: rgba(15,28,46,.12);
  box-shadow: 0 6px 16px rgba(15,28,46,.08);
}
.menu-toggle:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(47,111,237,.55);
  background: linear-gradient(145deg, rgba(47,111,237,.28), rgba(47,111,237,.12));
  box-shadow: 0 12px 28px rgba(47,111,237,.28), 0 0 0 4px rgba(47,111,237,.12);
}
.menu-toggle:active {
  transform: translateY(0) scale(.98);
}
.menu-toggle.is-open {
  border-color: rgba(47,111,237,.65);
  background: linear-gradient(145deg, rgba(47,111,237,.35), rgba(30,90,232,.18));
  box-shadow: 0 10px 24px rgba(47,111,237,.32);
}
.menu-toggle__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 18px;
  height: 14px;
  margin: 0 auto;
}
.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform .3s cubic-bezier(.22,1,.36,1),
    opacity .2s ease,
    width .3s ease;
}
.menu-toggle:hover .menu-toggle__bar:nth-child(1) { width: 14px; }
.menu-toggle:hover .menu-toggle__bar:nth-child(3) { width: 14px; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  width: 18px;
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
  width: 18px;
  transform: translateY(-7px) rotate(-45deg);
}

.follow-bar {
  width: min(420px, calc(100% - 2rem));
  margin: .75rem auto 0;
  background: rgba(18,24,36,.85);
  border-radius: 999px;
  padding: .45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pff-muted);
}
.follow-bar a { opacity: .85; }
.follow-bar a:hover { opacity: 1; color: #fff; }

/* Hero — full viewport banner + background slider */
.hero {
  --hero-pad-x: clamp(.85rem, 2.4vw, 1.75rem);
  --hero-pad-bottom: clamp(2.75rem, 5vh, 4rem);
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  /* Pull hero under floating header so top gap shows photo, not black strip */
  margin-top: calc(-1 * (var(--pff-nav-h) + var(--pff-header-top, 1.15rem) + .35rem));
  padding:
    calc(var(--pff-nav-h) + var(--pff-header-top, 1.15rem) + clamp(1.5rem, 4vh, 2.75rem))
    var(--hero-pad-x)
    var(--hero-pad-bottom);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a1220;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transition-property: opacity, visibility, transform, filter;
  transition-duration: var(--hero-transition-ms, 1400ms);
  transition-timing-function: cubic-bezier(.33, 1, .32, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transform: scale(1);
  filter: blur(0) brightness(1);
  clip-path: none;
}
.hero-slide.is-leaving {
  z-index: 0;
  opacity: 0;
  transform: scale(1.03);
  filter: blur(10px) brightness(.85);
}

/* Soft cinematic crossfade (default seamless switch) */
.hero[data-transition="fade"] .hero-slide,
.hero[data-transition="blur"] .hero-slide {
  transform: scale(1.035);
  filter: blur(14px) brightness(.78);
}
.hero[data-transition="fade"] .hero-slide.is-active,
.hero[data-transition="blur"] .hero-slide.is-active {
  transform: scale(1);
  filter: blur(0) brightness(1);
}
.hero[data-transition="fade"] .hero-slide.is-leaving,
.hero[data-transition="blur"] .hero-slide.is-leaving {
  opacity: 0;
  transform: scale(1.045);
  filter: blur(18px) brightness(.7);
}

/* Ken Burns zoom in */
.hero[data-transition="zoom"] .hero-slide.is-active .hero-slide__media {
  animation: heroKenBurns var(--hero-kenburns-ms, 8s) ease-out forwards;
}
.hero[data-transition="zoom"] .hero-slide {
  transform: scale(1.08);
}
.hero[data-transition="zoom"] .hero-slide.is-active {
  transform: scale(1);
}

/* Cinematic zoom out */
.hero[data-transition="zoom_out"] .hero-slide {
  transform: scale(1);
  filter: brightness(.7);
}
.hero[data-transition="zoom_out"] .hero-slide.is-active {
  transform: scale(1.08);
  filter: brightness(1);
}
.hero[data-transition="zoom_out"] .hero-slide.is-leaving {
  transform: scale(1.16);
  opacity: 0;
  filter: brightness(.55);
}

/* Slide horizontal */
.hero[data-transition="slide"] .hero-slide {
  transform: translateX(10%) scale(1.02);
}
.hero[data-transition="slide"] .hero-slide.is-active {
  transform: translateX(0) scale(1);
}
.hero[data-transition="slide"] .hero-slide.is-leaving {
  opacity: 0;
  transform: translateX(-8%) scale(1.01);
}

/* Slide up */
.hero[data-transition="slide_up"] .hero-slide {
  transform: translateY(12%) scale(1.03);
}
.hero[data-transition="slide_up"] .hero-slide.is-active {
  transform: translateY(0) scale(1);
}
.hero[data-transition="slide_up"] .hero-slide.is-leaving {
  opacity: 0;
  transform: translateY(-8%) scale(1.02);
}

/* Soft blur dissolve (alias handled with fade above) */

/* Diagonal wipe */
.hero[data-transition="wipe"] .hero-slide {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  opacity: 1;
  transform: none;
}
.hero[data-transition="wipe"] .hero-slide.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.hero[data-transition="wipe"] .hero-slide.is-leaving {
  opacity: 1;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

/* Circle reveal */
.hero[data-transition="reveal"] .hero-slide {
  clip-path: circle(0% at 50% 50%);
  opacity: 1;
  transform: scale(1.05);
}
.hero[data-transition="reveal"] .hero-slide.is-active {
  clip-path: circle(80% at 50% 50%);
  transform: scale(1);
}
.hero[data-transition="reveal"] .hero-slide.is-leaving {
  opacity: 1;
  clip-path: circle(0% at 50% 50%);
}

/* 3D flip */
.hero[data-transition="flip"] {
  perspective: 1400px;
}
.hero[data-transition="flip"] .hero-slide {
  transform: rotateY(28deg) scale(1.04);
  transform-origin: center center;
  opacity: 0;
}
.hero[data-transition="flip"] .hero-slide.is-active {
  transform: rotateY(0deg) scale(1);
  opacity: 1;
}
.hero[data-transition="flip"] .hero-slide.is-leaving {
  transform: rotateY(-24deg) scale(1.02);
  opacity: 0;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform calc(var(--hero-kenburns-ms, 8s) * .85) ease-out;
}
.hero-slide.is-active .hero-slide__media {
  transform: scale(1);
}
.hero-slide__video {
  object-position: center center;
}
@keyframes heroKenBurns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(5, 10, 20, .62) 0%, rgba(5, 10, 20, .28) 42%, transparent 68%),
    linear-gradient(0deg, rgba(8, 14, 26, .55) 0%, rgba(8, 14, 26, .18) 38%, transparent 62%),
    radial-gradient(120% 80% at 80% 20%, rgba(47, 111, 237, .18), transparent 55%);
}
.hero-slider-glow {
  position: absolute;
  inset: auto -10% -18% auto;
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,111,237,.28) 0%, transparent 68%);
  filter: blur(8px);
  opacity: .85;
  animation: heroGlowPulse 7s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(740px, 64%);
  max-width: none;
  min-height: clamp(180px, 24vh, 280px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(
    145deg,
    rgba(8, 14, 26, .52) 0%,
    rgba(18, 28, 48, .28) 55%,
    rgba(12, 20, 36, .38) 100%
  );
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border-radius: clamp(18px, 2.4vw, 26px);
  padding: clamp(1.45rem, 3.4vw, 2.85rem) clamp(1.25rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  transition: opacity .45s ease, transform .45s ease;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2f6fed, rgba(47,111,237,.15));
}
.hero-card.is-switching {
  opacity: .35;
  transform: translateY(10px) scale(.985);
}
.hero-eyebrow {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(.72rem, 1.1vw, .82rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-card h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.55rem, 3.2vw, 2.55rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .015em;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .32);
  animation: heroTitleIn .7s cubic-bezier(.22,1,.36,1) both;
}
.hero-card.is-switching h1,
.hero-card.is-switching .hero-eyebrow,
.hero-card.is-switching .hero-actions {
  animation: none;
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}
.hero-meta {
  display: inline-flex;
  align-items: baseline;
  gap: .28rem;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-meta__index { color: #fff; font-size: .95rem; }
.hero-meta__sep { opacity: .55; }
.hero-controls,
.hero-slider-dots,
.hero-slider-nav,
.hero-progress,
.hero-meta {
  display: none !important;
}
.hero-slider-dots {
  display: flex;
  gap: .4rem;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  transition: transform .25s ease, background .25s ease, width .25s ease;
}
.hero-slider-dot.is-active {
  width: 26px;
  background: #fff;
}
.hero-slider-dot:hover {
  background: rgba(255,255,255,.8);
}
.hero-slider-nav {
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.hero-slider-nav:hover {
  background: rgba(47, 111, 237, .7);
  border-color: rgba(47, 111, 237, .9);
  transform: scale(1.06);
}
.hero-slider-nav:active {
  transform: scale(.96);
}
.hero-slider-nav--prev,
.hero-slider-nav--next { left: auto; right: auto; }
.hero-progress {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.hero-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #2f6fed, #7c5cff 70%, #fff);
}
.hero-progress__bar.is-running {
  animation: heroProgress var(--hero-progress-ms, 6500ms) linear forwards;
}
@keyframes heroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide__media,
  .hero-card,
  .hero-card h1,
  .hero-slider-glow,
  .hero-progress__bar {
    animation: none !important;
    transition: none !important;
  }
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: .7rem 1.25rem;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  transition:
    transform .28s cubic-bezier(.22,1,.36,1),
    box-shadow .28s ease,
    background .28s ease,
    color .28s ease,
    gap .28s ease;
}
.btn-pill.dark { background: #fff; color: #111; }
.btn-pill .arrow {
  font-size: .95rem;
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.btn-pill:hover {
  transform: translateY(-3px);
  gap: .7rem;
  background: var(--pff-blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(47,111,237,.38);
}
.btn-pill:hover .arrow {
  transform: translate(3px, -3px);
}
.btn-pill:active {
  transform: translateY(-1px) scale(.98);
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.eyebrow {
  margin: 0 0 .35rem;
  color: var(--pff-muted);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.sponsors { text-align: center; padding-top: 1.5rem; }
.sponsors-label {
  color: var(--pff-muted);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1.25rem;
}
.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.sponsor-card {
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  min-width: 220px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-card img { max-height: 56px; width: auto; }

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
}
.news-feature {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.news-feature-media {
  background: #fff;
  border-radius: 14px;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.news-feature-media.is-logo img { width: 55%; height: auto; object-fit: contain; }
.news-meta { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: .28rem .5rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.date-muted { color: var(--pff-muted); font-size: .82rem; text-transform: uppercase; }
.news-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 800;
}
.news-title:hover { color: #c9d7ff; }
.news-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.news-card { display: flex; flex-direction: column; gap: .55rem; }
.news-card-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #1a2436;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card h3 {
  margin: 0;
  font-size: .92rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 800;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: 2;
}
.news-list-item h3 {
  margin: .35rem 0 0;
  font-size: .9rem;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Competitions */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.comp-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.comp-card:hover { transform: translateY(-3px); border-color: rgba(47,111,237,.45); }
.comp-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.comp-body { padding: 1rem 1rem 1.15rem; }
.comp-body h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.25;
}
.comp-meta { color: var(--pff-muted); font-size: .8rem; margin-bottom: .55rem; }
.tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag {
  font-size: .68rem;
  padding: .2rem .45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}

/* Athletes */
.athlete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.athlete-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: .9rem;
  align-items: center;
}
.athlete-card img {
  width: 84px; height: 84px;
  border-radius: 999px;
  object-fit: cover;
  background: #1a2436;
}
.athlete-card h3 {
  margin: 0 0 .25rem;
  font-size: 1rem;
  text-transform: uppercase;
}
.athlete-card p { margin: 0; color: var(--pff-muted); font-size: .82rem; }
.rank-pill {
  display: inline-block;
  margin-top: .45rem;
  background: var(--pff-blue);
  border-radius: 999px;
  padding: .15rem .55rem;
  font-size: .72rem;
  font-weight: 800;
}

/* TV banner */
.tv-banner {
  margin: 1rem 0 2rem;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(237, 239, 240, 0.72);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border: 1px solid rgba(237, 239, 240, 0.55);
  box-shadow: 0 12px 36px rgba(8, 14, 26, .12);
  color: #0f1c2e;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 280px;
}
.tv-copy { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.tv-copy .eyebrow {
  color: rgba(15, 28, 46, .55);
}
.tv-copy h2 {
  margin: .4rem 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1.15;
  color: #0f1c2e;
}
.tv-media {
  background: center/cover no-repeat;
  min-height: 240px;
}

/* Inner pages */
.page-hero {
  padding: 4.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(18,28,46,.9), transparent);
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
}
.content-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 1.5rem;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
}
.article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  max-height: 420px;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: #070d18;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 1.5rem;
}
.footer-brand img { height: 48px; margin-bottom: .75rem; }
.footer-col h4 {
  margin: 0 0 .85rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pff-muted);
}
.footer-col a {
  display: block;
  margin-bottom: .45rem;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--pff-muted);
  font-size: .78rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .news-grid, .comp-grid, .athlete-grid, .tv-banner, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-side { grid-template-columns: 1fr; }
  .news-list { grid-column: auto; }
  .brand { margin-left: 0; }
  .nav-main { display: none; }
  .nav-shell {
    position: relative;
    flex-wrap: nowrap;
    gap: .7rem;
    padding: .7rem 1rem;
    min-height: 76px;
  }
  .nav-end {
    margin-left: auto;
    gap: .45rem;
  }
  .nav-actions {
    gap: .4rem;
  }
  .social-links {
    gap: .35rem;
  }
  .brand img {
    height: 46px;
    max-width: min(190px, 40vw);
  }
  .btn-tv {
    padding: .6rem 1rem;
    font-size: .88rem;
  }
  /* Hamburger stays with actions on the far right */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }
  .nav-shell.is-open .nav-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + .5rem);
    left: .75rem; right: .75rem;
    background: #12182a;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: .75rem;
    z-index: 120;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }
  html.light .nav-shell.is-open .nav-main {
    background: #ffffff;
    color: #0f1c2e;
    border-color: rgba(15,28,46,.1);
    box-shadow: 0 18px 40px rgba(15,28,46,.16);
  }
  .nav-shell.is-open .nav-main > li {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .nav-shell.is-open .nav-link {
    width: 100%;
    padding: .85rem .75rem;
    color: inherit;
    opacity: 1;
    border-bottom: 1px solid rgba(127,127,127,.14);
    border-radius: 0;
  }
  .nav-shell.is-open .nav-main > li:last-child .nav-link {
    border-bottom: 0;
  }
  .nav-shell.is-open .nav-link:hover,
  .nav-shell.is-open .nav-link.is-active {
    border-bottom-color: var(--pff-blue);
    color: var(--pff-blue);
  }
  .nav-shell.is-open .dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding-top: 0;
  }
  .nav-shell.is-open .nav-main > li:hover > .dropdown,
  .nav-shell.is-open .nav-main > li:focus-within > .dropdown {
    display: block;
  }
  .nav-shell.is-open .dropdown-panel {
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 .35rem .75rem;
  }
  .nav-shell.is-open .dropdown a {
    color: inherit;
    opacity: .88;
    padding: .55rem .65rem;
  }
  .nav-shell.is-open .dropdown a:hover {
    background: rgba(47,111,237,.12);
    color: var(--pff-blue);
  }
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-end;
    padding-bottom: clamp(2.75rem, 5vh, 4rem);
  }
  .hero-card {
    width: min(640px, 88%);
    min-height: clamp(170px, 24vh, 250px);
  }
  .hero-card h1 {
    max-width: 20ch;
    font-size: clamp(1.4rem, 3.6vw, 2rem);
  }
  .hero-controls {
    bottom: clamp(.9rem, 2.2vh, 1.35rem);
  }
}

@media (max-width: 720px) {
  .news-grid, .comp-grid, .athlete-grid, .tv-banner, .footer-grid, .news-side {
    grid-template-columns: 1fr;
  }
  .site-header {
    padding: var(--pff-header-top) .55rem 0;
  }
  :root {
    --pff-header-top: .9rem;
  }
  .nav-shell {
    gap: .4rem;
    padding: .55rem .7rem;
    min-height: 70px;
  }
  .brand img {
    height: 40px;
    max-width: min(150px, 38vw);
  }
  .brand:hover img,
  .brand:focus-visible img {
    transform: scale(1.45) translateY(4%);
  }
  .nav-end { gap: .3rem; }
  .nav-actions { gap: .2rem; }
  .social-link {
    width: 2rem;
    height: 2rem;
  }
  .social-link svg {
    width: .92rem;
    height: .92rem;
  }
  .nav-actions .login-link span,
  .lang span { display: none; }
  .btn-tv { display: none; }
  .icon-btn {
    width: 40px;
    height: 40px;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
  }
  .hero {
    align-items: flex-end;
    padding-bottom: clamp(2.5rem, 5vh, 3.75rem);
  }
  .hero-slider-overlay {
    background:
      linear-gradient(180deg, rgba(5, 10, 20, .2) 0%, transparent 28%),
      linear-gradient(0deg, rgba(8, 14, 26, .72) 0%, rgba(8, 14, 26, .28) 46%, transparent 70%),
      linear-gradient(90deg, rgba(5, 10, 20, .35) 0%, transparent 60%);
  }
  .hero-card {
    width: min(100%, 100%);
    min-height: clamp(168px, 28vh, 260px);
    padding: 1.35rem 1.2rem 1.4rem;
    border-radius: 18px;
    gap: .85rem;
  }
  .hero-card h1 {
    font-size: clamp(1.28rem, 6.2vw, 1.7rem);
    max-width: none;
    line-height: 1.12;
  }
  .hero-eyebrow {
    letter-spacing: .14em;
  }
  .hero-actions {
    width: 100%;
    justify-content: space-between;
    gap: .65rem;
  }
  .hero-controls {
    justify-content: center;
    gap: .45rem;
    padding: .45rem .7rem;
  }
  .hero-slider-glow {
    width: 70vw;
    height: 70vw;
    opacity: .55;
  }
  .brand-text--stacked strong { font-size: .65rem; }
  .brand-text--stacked strong:nth-child(2) { font-size: 1rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .social-links {
    gap: .25rem;
  }
  .brand img {
    height: 34px;
    max-width: min(128px, 42vw);
  }
  .brand:hover img,
  .brand:focus-visible img {
    transform: scale(1.35) translateY(3%);
  }
}
