:root {
  --lime: #8fbf01;
  --lime-bright: #a9dd08;
  --orange: #ff6a13;
  --ink: #0a0c0b;
  --ink-soft: #151917;
  --paper: #f3f5ef;
  --white: #ffffff;
  --muted: #667069;
  --line: rgba(10, 12, 11, 0.14);
  --page: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.page-width {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
  padding: 0 max(24px, calc((100vw - var(--page)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 9, 8, 0.36);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(7, 9, 8, 0.94);
}

.brand img {
  width: 218px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav > a:not(.button) {
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--lime-bright);
}

.legal-nav {
  justify-content: flex-end;
}

.nav-instagram,
.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.nav-instagram svg,
.site-footer svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--lime);
  border-radius: 6px;
  color: #101500;
  background: var(--lime);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--lime-bright);
  border-color: var(--lime-bright);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 760px;
  height: 88svh;
  max-height: 920px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.76) 34%, rgba(5, 7, 6, 0.12) 72%, rgba(5, 7, 6, 0.24) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 126px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime-bright);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 5rem;
  line-height: 0.95;
}

.hero__tagline {
  margin: 12px 0 0;
  color: var(--lime-bright);
  font-size: 2rem;
  font-weight: 900;
}

.hero__description {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__facts {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 84px;
  color: var(--white);
  background: rgba(7, 9, 8, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__facts div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts strong {
  color: var(--lime-bright);
  font-size: 1.8rem;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: 108px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  column-gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.cta h2 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1.08;
}

.section-heading > p:last-child,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  min-height: 280px;
  padding: 36px;
  background: var(--white);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 52px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--lime);
}

.feature__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature h3,
.format-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.feature p,
.format-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.teams {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(143, 191, 1, 0.12), transparent 30%),
    linear-gradient(315deg, rgba(255, 106, 19, 0.12), transparent 34%),
    #eef2e7;
}

.teams::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(10, 12, 11, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(90deg, transparent 0 58%, rgba(143, 191, 1, 0.09) 58% 63%, transparent 63%);
}

.teams__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 52px;
  align-items: center;
}

.section-heading--stacked {
  display: block;
  margin-bottom: 0;
}

.section-heading--stacked h2 {
  margin-bottom: 22px;
}

.team-mode-grid {
  display: grid;
  gap: 16px;
}

.team-mode {
  position: relative;
  min-height: 228px;
  padding: 32px;
  border: 1px solid rgba(10, 12, 11, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(10, 12, 11, 0.08);
  overflow: hidden;
}

.team-mode::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border: 20px solid rgba(143, 191, 1, 0.16);
  border-radius: 50%;
  content: "";
}

.team-mode--private::after {
  border-color: rgba(255, 106, 19, 0.18);
}

.team-mode__label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #101500;
  background: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-mode--private .team-mode__label {
  color: var(--white);
  background: var(--ink);
}

.team-mode h3 {
  max-width: 430px;
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.team-mode p {
  position: relative;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.formats {
  color: var(--white);
  background: var(--ink-soft);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.6);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.format-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0d100e;
}

.format-card__copy {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-height: 148px;
}

.format-card__number {
  flex: 0 0 auto;
  color: var(--lime-bright);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.4rem;
}

.format-card__label {
  margin-bottom: 6px !important;
  color: var(--orange) !important;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.format-card p:not(.format-card__label) {
  color: rgba(255, 255, 255, 0.58);
}

.bracket {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 42px minmax(90px, 1fr) 42px minmax(80px, 0.8fr);
  align-items: center;
  min-height: 250px;
  padding: 24px;
  border-radius: 6px;
  background: #181c19;
  overflow-x: auto;
}

.bracket__round {
  display: grid;
  gap: 12px;
}

.bracket__round span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-left: 3px solid var(--lime);
  background: #242a25;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
}

.bracket__round--middle {
  gap: 62px;
}

.bracket__round--final span {
  border-left-color: var(--orange);
  color: var(--white);
}

.bracket__lines {
  height: 130px;
  border-top: 2px solid rgba(143, 191, 1, 0.65);
  border-right: 2px solid rgba(143, 191, 1, 0.65);
  border-bottom: 2px solid rgba(143, 191, 1, 0.65);
}

.bracket__lines--short {
  height: 80px;
}

.standings {
  padding: 14px 18px;
  border-radius: 6px;
  background: #181c19;
}

.standings > div {
  display: grid;
  grid-template-columns: 52px minmax(140px, 1fr) 45px 52px;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.standings > div:last-child {
  border-bottom: 0;
}

.standings__head {
  color: var(--lime-bright) !important;
  font-size: 0.72rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.standings strong {
  color: var(--white);
}

.cta {
  background: var(--white);
}

.cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: center;
}

.cta h2 {
  max-width: 700px;
  margin-bottom: 18px;
}

.cta__actions {
  display: grid;
  gap: 12px;
}

.button--whatsapp {
  color: var(--white);
  border-color: #1ca653;
  background: #1ca653;
}

.button--whatsapp:hover {
  border-color: #168944;
  background: #168944;
}

.privacy {
  background:
    linear-gradient(145deg, rgba(143, 191, 1, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(255, 106, 19, 0.08), transparent 30%),
    #f8faf5;
}

.legal-main .privacy {
  min-height: calc(100vh - 164px);
  padding-top: 154px;
}

.privacy__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.privacy__intro {
  position: sticky;
  top: 98px;
}

.privacy__intro h1,
.privacy__intro h2 {
  margin: 0 0 16px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: 1.08;
}

.privacy__intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.privacy__content {
  display: grid;
  gap: 14px;
}

.privacy__content article {
  padding: 22px 24px;
  border: 1px solid rgba(10, 12, 11, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(10, 12, 11, 0.06);
}

.privacy__content h2,
.privacy__content h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.privacy__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: #070908;
}

.site-footer__layout {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 30px;
  align-items: center;
}

.site-footer img {
  width: 210px;
  height: auto;
}

.site-footer__copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.privacy-link {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: baseline;
  justify-content: flex-start;
  margin-left: 0;
  color: var(--lime-bright);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: #1ca653;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 24px;
    color: var(--white);
    background: rgba(7, 9, 8, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a:not(.nav-instagram) {
    min-height: 44px;
  }

  .nav-instagram {
    justify-self: start;
  }

  .menu-button {
    display: block;
  }

  .legal-nav {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .legal-nav > a:not(.button) {
    display: none;
  }

  .feature-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .privacy__layout,
  .teams__layout,
  .cta__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .privacy__intro {
    position: static;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 2.5rem;
  }

  .cta__actions {
    max-width: 460px;
  }
}

@media (max-width: 680px) {
  .page-width {
    width: min(calc(100% - 32px), var(--page));
  }

  .site-header {
    height: 70px;
    padding-inline: 16px;
  }

  .brand img {
    width: 174px;
  }

  .hero {
    min-height: 720px;
    height: 92svh;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(5, 7, 6, 0.96), rgba(5, 7, 6, 0.62)), linear-gradient(0deg, rgba(5, 7, 6, 0.78), transparent 60%);
  }

  .hero__content {
    padding-top: 120px;
    padding-bottom: 208px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero__tagline {
    max-width: 320px;
    font-size: 1.45rem;
  }

  .hero__description {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__actions {
    display: grid;
    max-width: 320px;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    justify-content: flex-start;
    min-height: 52px;
    padding: 10px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero__facts strong {
    width: 34px;
    font-size: 1.35rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 2.1rem;
  }

  .feature {
    min-height: auto;
    padding: 26px;
  }

  .feature__icon {
    margin-bottom: 30px;
  }

  .team-mode {
    min-height: auto;
    padding: 24px;
  }

  .team-mode h3 {
    font-size: 1.38rem;
  }

  .format-card {
    padding: 18px;
  }

  .format-card__copy {
    min-height: auto;
    margin-bottom: 28px;
  }

  .bracket {
    grid-template-columns: 96px 34px 96px 34px 88px;
    padding: 16px;
  }

  .standings {
    overflow-x: auto;
  }

  .standings > div {
    min-width: 430px;
  }

  .site-footer__layout {
    grid-template-columns: 1fr auto;
  }

  .site-footer__copy {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
