@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────── */
:root {
  --red:       #E8001D;
  --red-dim:   #B50017;
  --black:     #0C0C0C;
  --ink:       #141414;
  --panel:     #1A1A1A;
  --rule:      rgba(255,255,255,0.08);
  --muted:     #888;
  --light:     #D4D4D4;
  --white:     #FFFFFF;
  --wa:        #25D366;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── TYPOGRAPHY ─────────────────────────── */
.display {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.92;
  letter-spacing: 0.01em;
}
.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.label--light { color: var(--muted); }

/* ─── TICKER ─────────────────────────────── */
.ticker {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 50;
}
.ticker__track {
  display: inline-flex;
  animation: slide 30s linear infinite;
  will-change: transform;
}
.ticker__item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  padding: 0 1.8rem;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.ticker__item::after {
  content: '›';
  color: rgba(255,255,255,0.35);
  font-size: 1rem;
}
@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NAV ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(12,12,12,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.3s;
}
.nav.scrolled { border-color: rgba(232,0,29,0.3); }

/* logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__badge {
  width: 38px; height: 38px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.nav__wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.nav__wordmark em {
  font-style: normal;
  color: var(--red);
}

/* links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  transition: color 0.15s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a.active { border-bottom: 1px solid var(--red); padding-bottom: 2px; }

/* right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__ig {
  color: var(--muted);
  font-size: 1.15rem;
  transition: color 0.15s;
}
.nav__ig:hover { color: var(--white); }
.nav__cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 92% 100%, 0 100%);
  display: inline-block;
}
.nav__cta:hover { background: var(--red-dim); color: var(--white); }

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all 0.25s;
}

/* mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--ink);
  border-bottom: 2px solid var(--red);
  padding: 1.75rem 2.5rem 2rem;
  z-index: 890;
  flex-direction: column;
  gap: 1.25rem;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
}
.nav__drawer a:last-child { border: none; padding: 0; }
.nav__drawer a span { color: var(--red); }

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 68px 2.5rem 0;
  background: var(--black);
}

/* diagonal slash BG */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 130%;
  background: var(--red);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.07;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, var(--black) 45%, transparent 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 0 6rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
}

.hero__h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 14vw, 12rem);
  line-height: 0.88;
  margin-bottom: 0.1em;
}
.hero__h1 .slash {
  color: var(--red);
  font-size: 0.65em;
  line-height: 1;
  display: inline-block;
  transform: translateY(-0.05em);
}
.hero__h1 .line2 {
  display: block;
  color: var(--white);
}

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--light);
  max-width: 480px;
  line-height: 1.75;
  margin: 2rem 0 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__bar {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero__stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}
.hero__stat-l {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 95% 100%, 0 100%);
}
.btn--red:hover { background: var(--red-dim); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--white); }
.btn--wa {
  background: var(--wa);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 95% 100%, 0 100%);
}
.btn--wa:hover { background: #1ebe5d; color: var(--white); }
.btn--wa svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

/* ─── SLASH DIVIDER ──────────────────────── */
.slash-divider {
  background: var(--red);
  overflow: hidden;
  padding: 11px 0;
  position: relative;
}
.slash-divider::before,
.slash-divider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  background: var(--black);
  z-index: 2;
}
.slash-divider::before { left: -1px; clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%); }
.slash-divider::after  { right: -1px; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%); }
.slash-divider__track {
  display: inline-flex;
  animation: slide 22s linear infinite;
  white-space: nowrap;
}
.slash-divider__item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  padding: 0 1.5rem;
  color: rgba(255,255,255,0.85);
}
.slash-divider__item + .slash-divider__item::before {
  content: '/';
  margin-right: 1.5rem;
  color: rgba(255,255,255,0.3);
}

/* ─── SECTIONS ───────────────────────────── */
.section { padding: 6rem 2.5rem; }
.section__inner { max-width: 1240px; margin: 0 auto; }
.section--panel { background: var(--panel); }
.section--ink   { background: var(--ink); }

.section__head {
  margin-bottom: 3.5rem;
}
.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  margin-top: 0.5rem;
}
.section__title em {
  font-style: normal;
  color: var(--red);
}
.section__lead {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--light);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 1rem;
}

/* ─── SPORT CARDS ────────────────────────── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.sport-card {
  padding: 2.5rem 1.75rem 2rem;
  border-right: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  cursor: default;
}
.sport-card:last-child { border-right: none; }
.sport-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.sport-card:hover { background: rgba(255,255,255,0.03); }
.sport-card:hover::before { transform: scaleX(1); }

.sport-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.sport-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.sport-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.sport-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── MANIFESTO ──────────────────────────── */
.manifesto-pull {
  border-left: 3px solid var(--red);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 2.5rem 0;
}
.manifesto-pull p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.01em;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 3rem;
  border: 1px solid var(--rule);
}
.pillar {
  background: var(--ink);
  padding: 2.25rem 2rem;
  position: relative;
}
.pillar__n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(232,0,29,0.12);
  line-height: 1;
  position: absolute;
  top: 1.25rem; right: 1.5rem;
}
.pillar__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.pillar__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CONTACT ────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.form__group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--red);
}
.form__group select option { background: var(--panel); }
.form__group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.form-success {
  display: none;
  border: 1px solid rgba(37,211,102,0.3);
  padding: 2rem;
  text-align: center;
  background: rgba(37,211,102,0.06);
}
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--wa);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.88rem; color: var(--light); }

.contact-info { }
.contact-info__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
}
.contact-info__lead {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-of-type { border: none; }
.contact-row__icon {
  width: 38px; height: 38px;
  background: rgba(232,0,29,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--red);
  flex-shrink: 0;
}
.contact-row__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-row__value { font-size: 0.92rem; color: var(--white); margin-top: 1px; }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  padding: 3.5rem 2.5rem 2rem;
}
.footer__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.footer__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.footer__brand em { font-style: normal; color: var(--red); }
.footer__tagline {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__socials a {
  width: 34px; height: 34px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--muted);
  transition: all 0.15s;
}
.footer__socials a:hover { background: var(--red); color: var(--white); }
.footer__col-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__links a {
  font-size: 0.87rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  max-width: 1240px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(136,136,136,0.55);
}
.footer__sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(136,136,136,0.35);
}

/* ─── PARTNER STRIP ──────────────────────── */
.partners {
  padding: 2.5rem 2.5rem;
  border-top: 1px solid var(--rule);
}
.partners__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partners__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.partners__logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.partners__logos img {
  height: 36px;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.2s;
}
.partners__logos img:hover { opacity: 0.8; }

/* ─── WA FLOAT ───────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 9999;
  width: 54px; height: 54px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float__ring {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,0.45);
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─── SCROLL REVEAL ──────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .sport-card:nth-child(3) { border-right: none; }
}
@media (max-width: 900px) {
  .nav__links, .nav__right .nav__ig { display: none; }
  .nav__burger { display: flex; }
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .nav__drawer { padding: 1.5rem 1.25rem; }
  .sports-grid { grid-template-columns: 1fr 1fr; }
  .sport-card:nth-child(2n) { border-right: none; }
  .sport-card:nth-child(3) { border-right: 1px solid var(--rule); }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero { padding: 68px 1.25rem 0; }
}

@media (max-width: 640px) {
  .hero {
    background-position: right center !important;
  }
}

@media (max-width: 640px) {
  .hero {
    background-position: 85% center !important;
  }
}

@media (max-width: 640px) {
  .hero {
    background-position: right center !important;
  }
}

@media (max-width: 640px) {

  .hero {

    background-position: 80% center !important;

  }

}

