@import url("/fonts/fonts.css");

:root {
  --bg: #09090b;
  --panel: #161c29;
  --panel-dark: #11161f;
  --line: #3a383c;
  --text: #fff;
  --muted: #b4b4b4;
  --green: #b2fe3b;
  --max: 1360px;
  color-scheme: dark;
  font-family: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(17, 22, 31, .94);
  backdrop-filter: blur(14px);
}

.nav__logo img { width: min(292px, 56vw); height: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 16px; font-weight: 700; }
.nav__links a:first-child { color: var(--text); }
.nav__contact, .button { border-radius: 999px; background: var(--green); color: var(--bg); }
.nav__contact { min-height: 33px; padding: 7px 19px; }
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
}
.nav__toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .18s ease, opacity .14s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  backdrop-filter: blur(0);
  cursor: pointer;
  transition: opacity .24s ease, background .24s ease, backdrop-filter .24s ease;
}
.mobile-menu.is-open .mobile-menu__backdrop {
  background: rgba(0, 0, 0, .62);
  opacity: 1;
  backdrop-filter: blur(6px);
}
.mobile-menu__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(84vw, 360px);
  height: 100dvh;
  overflow-y: auto;
  padding: calc(22px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0 22px 22px 0;
  background:
    linear-gradient(145deg, rgba(178, 254, 59, .055), transparent 34%),
    linear-gradient(180deg, rgba(8, 17, 30, .985), rgba(6, 8, 13, .985) 72%, rgba(10, 11, 13, .985));
  box-shadow: 24px 0 80px rgba(0, 0, 0, .54), 1px 0 0 rgba(178, 254, 59, .06);
  transform: translateX(-100%);
  transition: transform .24s cubic-bezier(.22, 1, .36, 1);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding-bottom: 20px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
}
.mobile-menu__brand img {
  width: min(188px, calc(84vw - 96px));
  height: auto;
}
.mobile-menu__close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
}
.mobile-menu__close::before,
.mobile-menu__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.mobile-menu__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-menu__nav {
  display: grid;
  gap: 9px;
}
.mobile-menu__nav a {
  min-height: 52px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .035);
  color: var(--text);
  font-size: .98rem;
  font-weight: 500;
}
.mobile-menu__nav a::after {
  content: "›";
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}
body.mobile-menu-open { overflow: hidden; }

.hero {
  position: relative;
  min-height: 629px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 67px 24px 40px;
  text-align: center;
  background: #050507;
  overflow: hidden;
}

.hero > :not(.bg-slideshow) { position: relative; z-index: 1; }
.bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050507;
  pointer-events: none;
}
.bg-slideshow__track {
  position: absolute;
  inset: 0;
}
.bg-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}
.bg-slideshow__slide.is-active { opacity: 1; }
.bg-slideshow__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px) brightness(0.72) saturate(1.02) contrast(1.02);
  transform: scale(1.1);
}
.bg-slideshow__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.18) 0%, rgba(4, 6, 8, 0.46) 42%, rgba(4, 6, 8, 0.84) 100%),
    radial-gradient(circle at 50% 8%, rgba(202, 255, 27, 0.08), transparent 38%),
    radial-gradient(circle at 14% 18%, rgba(77, 127, 232, 0.12), transparent 26%);
}
.hero__eyebrow { margin: 0 0 28px; color: var(--green); font-size: 18px; font-weight: 500; letter-spacing: 9px; }
h1, h2 { margin: 0; font-family: Archivo, Inter, sans-serif; font-weight: 900; letter-spacing: 0; }
.hero h1 { max-width: 100%; font-size: clamp(3.05rem, 4.65vw, 4.85rem); line-height: .98; font-weight: 600; letter-spacing: -.06em; text-wrap: balance; }
.hero h1 span, h2 span, .launch span, .free-band span, .sport-note span { color: var(--green); }
.hero h1 span { display: block; }
.hero__copy { max-width: 476px; margin: 24px 0; color: rgba(255, 255, 255, .68); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(.92rem, 1.15vw, 1.05rem); font-weight: 500; line-height: 22px; letter-spacing: -.01em; }
.hero__copy strong { color: #fff; font-weight: 700; }
.hero__copy--free { margin-top: -10px; color: #fff; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 7px 19px; border: 0; font: 800 18px/1 Inter, sans-serif; cursor: pointer; }
.hero__sports { display: flex; gap: 11px; margin-top: 52px; }
.hero__sport {
  position: relative;
  width: 47px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  outline: none;
}
.hero__sport img { width: 47px; height: 47px; }
.hero__sport::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(17, 22, 31, .96);
  color: var(--text);
  font: 700 12px/1 Inter, sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .15s ease, transform .15s ease;
}
.hero__sport:hover::after,
.hero__sport:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.section, .split, .clubs { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 72px 0; }
.split, .clubs { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split h2, .solution h2, .clubs h2 { font-size: clamp(34px, 3.4vw, 48px); line-height: 52px; }
.copy-stack { display: grid; gap: 14px; margin-top: 24px; }
.copy-stack p { max-width: 620px; margin: 0; color: var(--muted); font-size: 18px; font-weight: 500; line-height: 26px; }
.copy-stack strong { color: #fff; font-weight: 800; }

.check-list { display: grid; gap: 17px; padding: 0; margin: 38px 0 0; list-style: none; }
.check-list li { position: relative; min-height: 24px; padding-left: 36px; font-size: 16px; font-weight: 500; line-height: 24px; }
.check-list--warn li { color: rgba(255, 255, 255, .68); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; font-weight: 500; line-height: 22px; letter-spacing: -.16px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 999px; background: var(--green); color: #0d111a; font-size: 13px; font-weight: 800; }
.check-list--warn li::before {
  content: "";
  background: url("/images/landing/problem-alert.svg") center / contain no-repeat;
  border: 0;
  color: transparent;
}

.media-card { width: 100%; border-radius: 20px; object-fit: cover; }
.split .media-card { width: min(520px, 100%); height: 420px; justify-self: start; object-fit: cover; object-position: center top; border-radius: 20px; }
.solution { position: relative; z-index: 1; min-height: 514px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; padding: 58px max(24px, calc((100vw - var(--max)) / 2)); background: var(--panel); overflow: visible; }
.solution__phone { min-height: 398px; position: relative; }
.solution__phone img { position: absolute; left: calc(6% + 80px); top: -190px; width: min(456px, 40vw); transform: rotate(-27deg); }
.solution > div:not(.solution__phone) { position: relative; z-index: 2; }
.solution__phone { z-index: 3; }
.solution p, .clubs p { color: var(--muted); font-size: 18px; font-weight: 500; line-height: 26px; }
.solution .check-list { width: min(379px, 100%); padding: 30px; border: .5px solid var(--line); border-radius: 20px; background: var(--bg); }

.publics { text-align: center; }
.publics > h2 { max-width: 904px; margin: 0 auto 37px; font-family: Inter, sans-serif; font-size: clamp(28px, 3vw, 38px); font-weight: 800; line-height: 44px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.faq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.audience-grid article, .faq-grid article, .sport-note, .free-band { border: .5px solid var(--line); border-radius: 20px; background: var(--panel); }
.audience-grid article { min-height: 218px; display: grid; align-content: center; justify-items: center; padding: 29px; }
.audience-grid img { width: 65px; height: 65px; margin-bottom: 13px; object-fit: contain; }
.audience-grid strong { color: var(--green); font-size: 32px; font-weight: 800; }
.audience-grid p, .free-band p, .faq-grid p { margin: 14px 0 0; color: var(--muted); font-size: 18px; line-height: 24px; }
.sport-note { margin: 14px 0 10px; padding: 25px; font-size: 18px; font-weight: 800; }
.free-band { margin-top: 12px; padding: 34px 20px; }
.free-band strong { display: block; font-family: Archivo, Inter, sans-serif; font-size: clamp(32px, 3.5vw, 48px); line-height: 52px; }

.clubs {
  position: relative;
  width: 100%;
  min-height: 560px;
  padding: 78px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(9, 9, 11, .9) 0%, rgba(9, 9, 11, .72) 42%, rgba(9, 9, 11, .32) 100%),
    url("/images/landing/clubes-bg-poster.jpg") center / cover no-repeat;
}
.clubs > div { position: relative; z-index: 1; }
.clubs__laptop { position: relative; z-index: 1; width: min(650px, 100%); justify-self: end; }
.clubs .media-card { height: 427px; }
.clubs .check-list li { width: min(379px, 100%); min-height: 49px; display: flex; align-items: center; padding-left: 54px; border: .5px solid var(--line); border-radius: 15px; background: var(--bg); }
.clubs .check-list li::before { left: 18px; top: 12px; }

.sponsors {
  width: 100%;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, .92) 0%, rgba(9, 9, 11, .78) 46%, rgba(9, 9, 11, .24) 100%),
    url("/images/landing/sponsors-padel.webp") center / cover no-repeat;
}
.sponsors__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sponsors h2 { max-width: 820px; font-size: clamp(34px, 3.4vw, 48px); line-height: 52px; }
.sponsors__label { margin: 0 0 10px; color: var(--green); font-size: clamp(24px, 2.2vw, 30px); font-weight: 500; line-height: 1; }
.sponsors__cta { margin-top: 28px; }
.sponsors .media-card { width: min(520px, 100%); height: 420px; justify-self: start; object-position: center; }

.launch { min-height: 298px; display: grid; place-items: center; align-content: center; gap: 24px; padding: 60px 24px; text-align: center; background: linear-gradient(180deg, rgba(9, 9, 11, .42), rgba(9, 9, 11, .78)), url("/images/landing/hero-bg.png") center bottom / cover no-repeat; }
.launch h2, .contact h2 { font-size: clamp(32px, 3.5vw, 48px); line-height: 52px; }
.launch__copy { max-width: 760px; margin-top: -6px; justify-items: center; }
.launch__copy p { max-width: 760px; }
.faq h2 { color: var(--green); font-family: Inter, sans-serif; font-size: 38px; font-weight: 800; line-height: 44px; text-align: center; }
.faq-grid { margin-top: 15px; }
.faq-grid article { min-height: 121px; padding: 26px 30px; }
.faq-grid strong { font-size: 18px; font-weight: 800; }

.contact { min-height: 516px; display: grid; place-items: center; align-content: center; padding: 60px 24px; text-align: center; background: linear-gradient(180deg, rgba(9, 9, 11, .1), rgba(9, 9, 11, .68)), url("/images/landing/contact-bg.png") center bottom / cover no-repeat; }
.contact-form { width: min(762px, 100%); display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 23px; justify-items: center; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #3f3f3e; border-radius: 14px; background: var(--panel-dark); color: var(--text); font: 500 14px/20px Inter, sans-serif; padding: 16px; }
.contact-form textarea { grid-column: 1 / -1; min-height: 107px; resize: vertical; }
.contact-form__trap { position: absolute; left: -10000px; width: 1px !important; height: 1px; opacity: 0; pointer-events: none; }
.contact-form__status { grid-column: 1 / -1; min-height: 22px; margin: 8px 0 0; color: var(--muted); font: 500 14px/20px Inter, sans-serif; }
.contact-form button { grid-column: 1 / -1; margin-top: 32px; }

.footer { min-height: 71px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px max(24px, calc((100vw - var(--max)) / 2)); background: var(--panel-dark); color: var(--muted); font-size: 14px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 30px; font-weight: 700; }

.wp-call {
  position: fixed;
  right: -15px;
  bottom: 25px;
  z-index: 1000;
  width: 162px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 9px 0 0 9px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, .08) 0 8px 24px 0;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.wp-call img {
  width: 52px;
  height: 48px;
  padding: 8px 10px;
  background: #22c6a8;
  object-fit: contain;
}
.wp-call span {
  display: block;
  width: 110px;
  margin: -2px 0 0;
  padding: 0 12px 0 15px;
  color: #8a8a8a;
  font-size: 15px;
  font-weight: 400;
  line-height: 14px;
}
.wp-call strong {
  color: #8a8a8a;
  font-size: 21px;
  font-weight: 700;
  line-height: 19px;
}

@media (max-width: 900px) {
  .nav { min-height: 56px; align-items: center; justify-content: center; flex-direction: row; gap: 0; padding-top: 0; padding-bottom: 0; }
  .nav__logo img { width: min(218px, 62vw); height: auto; }
  .nav__links { display: none; }
  .nav__toggle { position: absolute; left: 12px; display: inline-flex; }
  .hero { min-height: 590px; padding-top: 56px; }
  .hero h1 { max-width: 11ch; font-size: clamp(2.15rem, 10vw, 3.35rem); }
  .hero__copy { font-size: 16px; line-height: 22px; letter-spacing: -.16px; }
  .hero__copy--free { margin-top: -10px; }
  .hero__copy br { display: none; }
  .split, .solution, .clubs, .sponsors__inner, .audience-grid, .faq-grid, .contact-form { grid-template-columns: 1fr; }
  .section, .split { width: min(var(--max), calc(100% - 56px)); }
  .solution { padding-right: 28px; padding-left: 28px; }
  .clubs { width: 100%; padding-right: 28px; padding-left: 28px; }
  section.sponsors { width: 100%; padding: 52px 28px; }
  .section { padding: 52px 0; }
  .solution__phone { min-height: 364px; }
  .solution__phone img { left: 50%; top: -170px; width: min(352px, 74vw); transform: translateX(-50%) rotate(-18deg); }
  .solution__phone { z-index: 3; }
  .solution > div:not(.solution__phone) { z-index: 2; margin-top: -46px; }
  .contact-form textarea { grid-column: auto; }
  .footer { flex-direction: column; align-items: flex-start; }
  .sponsors__inner { width: 100%; padding: 0; }
  .clubs__laptop { justify-self: center; }
}

@media (max-width: 520px) {
  .section, .split { width: min(var(--max), calc(100% - 58px)); }
  .solution { padding-right: 29px; padding-left: 29px; }
  .clubs { width: 100%; padding-right: 29px; padding-left: 29px; }
  section.sponsors { width: 100%; padding-right: 29px; padding-left: 29px; }
  .sponsors__inner { width: 100%; padding-right: 0; padding-left: 0; }
  .solution__phone { min-height: 364px; }
  .solution > div:not(.solution__phone) { margin-top: -46px; }
  .split .media-card, .clubs .media-card, .sponsors .media-card { height: auto; }
  .split h2, .solution h2, .clubs h2, .launch h2, .contact h2 { line-height: 1.08; }
  .sponsors h2 { line-height: 1.08; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.4rem); line-height: .92; font-weight: 700; letter-spacing: -.055em; }
  .publics > h2 { line-height: 1.15; }
}
