/* ============================================================
   FAST BOL — Landing Page Styles
   Design System + Component Styles
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Colors — derived from new FAST BOL identity */
  --navy-900: #0A1E33;
  --navy-800: #0d2742;
  --navy-700: #103052;
  --navy-600: #143a61;
  --navy-500: #1f5999;
  --navy-400: #2977cc;
  --navy-300: #5c99d6;
  --navy-200: #a3c2e6;
  --navy-100: #d8e6f5;
  --navy-50: #ebf2fa;
  
  --blue-600: #0036cc;
  --blue-500: #0041F2;
  --blue-400: #3367f5;
  --blue-100: #cce0ff;
  
  --lime-600: #a7d126;
  --lime-500: #BFEB30;
  --lime-400: #ccf056;
  --lime-100: #f2fce6;

  /* Neutrals */
  --neutral-900: #050f1a;
  --neutral-800: #0f1c29;
  --neutral-700: #263545;
  --neutral-600: #4a5c70;
  --neutral-500: #6b7d91;
  --neutral-400: #93a5b8;
  --neutral-300: #bac7d6;
  --neutral-200: #d6e0eb;
  --neutral-100: #eef3f7;
  --neutral-50: #f7fafc;

  --white: #ffffff;
  --black: #000000;

  /* Semantic */
  --color-primary: var(--blue-500);
  --color-primary-dark: var(--blue-600);
  --color-primary-darker: var(--navy-900);
  --color-accent: var(--lime-500);
  --color-accent-hover: var(--lime-600);
  --color-brand-dark: var(--navy-900);
  --color-bg: var(--neutral-50);
  --color-text: var(--neutral-800);
  --color-text-light: var(--neutral-500);
  --color-text-inverse: var(--white);

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.6rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 6rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;

  /* Layout */
  --max-width: 1320px;
  --header-height: 72px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85em 2em;
  border-radius: 3px;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  font-size: var(--text-sm);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--navy-900);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
}

.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background-color: var(--white);
  color: var(--navy-900);
}

.btn--outline-dark {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn--large {
  padding: 1em 2.5em;
  font-size: var(--text-base);
}

/* --- Label/Tag --- */
.label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.label--bar {
  padding-left: var(--space-lg);
  position: relative;
}

.label--bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--color-accent);
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: var(--white);
  border-bottom: 1px solid var(--neutral-100);
  transition: background-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 96px;
  width: auto;
  mix-blend-mode: multiply;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header-nav__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-700);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
  padding: var(--space-xs) 0;
}

.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--duration-normal) var(--ease-out);
}

.header-nav__link:hover,
.header-nav__link:focus-visible {
  color: var(--navy-900);
}

.header-nav__link:hover::after,
.header-nav__link:focus-visible::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy-900);
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
  transform-origin: center;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle.is-active span {
  background-color: var(--white);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
  background-color: var(--color-brand-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Overlay: gradient from bottom-left */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      to right,
      rgba(10, 30, 51, 0.85) 0%,
      rgba(10, 30, 51, 0.4) 55%,
      rgba(10, 30, 51, 0.15) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 30, 51, 0.9) 0%,
      rgba(10, 30, 51, 0.5) 30%,
      transparent 60%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  max-width: 720px;
}

/* Gold accent line above content */
.hero__content::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: var(--space-xl);
}

.hero__label {
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-5xl);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__description {
  font-size: var(--text-lg);
  color: var(--neutral-300);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(1rem, 3vh, 2rem);
  right: clamp(1.5rem, 3vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--neutral-400);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background-color: var(--neutral-400);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about {
  padding: clamp(4rem, 10vh, 8rem) 0;
  background-color: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 5px solid var(--white);
}

.about__content {
  max-width: 540px;
}

.about__label {
  margin-bottom: var(--space-lg);
}

.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--space-xl);
}

.about__title em {
  font-style: normal;
  color: var(--color-primary);
}

.about__text {
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.about__text:last-of-type {
  margin-bottom: var(--space-2xl);
}

.about__stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--neutral-100);
}

.about__stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.about__stat-label {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
  font-weight: 600;
}


/* ============================================================
   COMMUNITY SECTION
   ============================================================ */

.community {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.community__header {
  max-width: 600px;
  margin-bottom: clamp(2rem, 5vh, 4rem);
}

.community__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--space-lg);
}

.community__subtitle {
  color: var(--neutral-600);
  font-size: var(--text-lg);
  line-height: 1.6;
}

/* Mosaic layout — intentionally asymmetric */
.community__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.community__mosaic-item {
  overflow: hidden;
  position: relative;
}

.community__mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.community__mosaic-item:hover img {
  transform: scale(1.04);
}

.community__mosaic-item:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  aspect-ratio: 16 / 9;
}

.community__mosaic-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  aspect-ratio: 1 / 1;
}

.community__mosaic-item:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 2 / 3;
  aspect-ratio: 3 / 4;
}

.community__mosaic-item:nth-child(4) {
  grid-column: 5 / 13;
  grid-row: 2 / 3;
  aspect-ratio: 2 / 1;
}

.community__quote {
  margin-top: clamp(2rem, 5vh, 4rem);
  padding: var(--space-2xl) 0;
  padding-left: var(--space-2xl);
  border-left: 3px solid var(--color-accent);
  border-top: none;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
}

.community__quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: var(--text-5xl);
  color: var(--color-primary);
  line-height: 0.6;
  flex-shrink: 0;
  opacity: 0.3;
}

.community__quote-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  color: var(--neutral-700);
  line-height: 1.3;
  max-width: 700px;
  font-style: italic;
}


/* ============================================================
   SPORTS SECTION
   ============================================================ */

.sports {
  padding: clamp(4rem, 10vh, 8rem) 0;
  background-color: var(--color-brand-dark);
  color: var(--white);
}

.sports__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-2xl);
  margin-bottom: clamp(2rem, 5vh, 4rem);
  flex-wrap: wrap;
}

.sports__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.05;
  text-transform: uppercase;
}

.sports__header-text {
  color: var(--neutral-400);
  max-width: 400px;
  line-height: 1.6;
}

/* Asymmetric grid for sports */
.sports__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.sport-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.sport-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.sport-card:hover .sport-card__image {
  transform: scale(1.05);
}

.sport-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 51, 0.85) 0%,
    rgba(10, 30, 51, 0.1) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 2vw, 1.5rem);
  transition: background var(--duration-normal) var(--ease-out);
}

.sport-card:hover .sport-card__overlay {
  background: linear-gradient(
    to top,
    rgba(20, 58, 97, 0.9) 0%,
    rgba(20, 58, 97, 0.2) 60%
  );
}

.sport-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sport-card__tag {
  font-size: var(--text-xs);
  color: var(--lime-500);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

/* Grid placement — asymmetric */
.sport-card:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 2;
  aspect-ratio: 4 / 3;
}

.sport-card:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
  aspect-ratio: 4 / 3;
}

.sport-card:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 2 / 3;
  aspect-ratio: 3 / 4;
}

.sport-card:nth-child(4) {
  grid-column: 5 / 9;
  grid-row: 2 / 3;
  aspect-ratio: 3 / 4;
}

.sport-card:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
  aspect-ratio: 3 / 4;
}

/* Additional sports as text list below */
.sports__more {
  margin-top: clamp(2rem, 4vh, 3rem);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.sports__more-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-400);
  flex-shrink: 0;
}

.sports__more-list {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.sports__more-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-300);
  padding: 0.4em 0.9em;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.sports__more-item:hover {
  border-color: var(--lime-500);
  color: var(--lime-500);
}


/* ============================================================
   BENEFITS SECTION
   ============================================================ */

.benefits {
  padding: clamp(4rem, 10vh, 8rem) 0;
  background-color: var(--white);
}

.benefits__layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.benefits__header {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.benefits__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--space-lg);
}

.benefits__intro {
  color: var(--neutral-600);
  line-height: 1.6;
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  border: 1px solid var(--neutral-100);
  background-color: var(--color-bg);
  border-radius: 4px;
  align-items: start;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  border-color: var(--color-primary);
}

.benefit-item__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-4xl);
  color: var(--lime-500);
  line-height: 0.9;
  text-align: left;
  user-select: none;
}

.benefit-item__content {
  max-width: 100%;
}

.benefit-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.benefit-item__text {
  color: var(--neutral-500);
  line-height: 1.6;
  font-size: var(--text-base);
}


/* ============================================================
   HOW TO JOIN SECTION
   ============================================================ */

.join {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background-color: var(--color-bg);
}

.join__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto clamp(2rem, 5vh, 4rem);
}

.join__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--space-md);
}

.join__subtitle {
  color: var(--neutral-500);
  font-size: var(--text-lg);
}

.join__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line between steps */
.join__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background-color: var(--navy-200);
  z-index: 0;
}

.join__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.join__step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.join__step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
}

.join__step-text {
  color: var(--neutral-500);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 240px;
}


/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  position: relative;
  padding: clamp(5rem, 12vh, 10rem) 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__badge {
  display: inline-block;
  margin-bottom: var(--space-xl);
}

.cta-section__badge img {
  height: 72px;
  width: auto;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--space-lg);
}

.cta-section__title em {
  font-style: normal;
  color: var(--color-accent);
}

.cta-section__text {
  color: var(--neutral-600);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  /* Fundo e padding movidos para as faixas (bands) */
}

.footer__brand-band {
  background-color: var(--white);
  padding: clamp(2rem, 4vh, 3rem) 0;
}

.footer__main-band {
  background-color: var(--navy-900);
  padding: clamp(3rem, 6vh, 5rem) 0 0;
  color: var(--neutral-300);
}

.footer__spacer {
  display: none;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vh, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-lg);
}

.footer__description {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--navy-900);
}

.footer__column-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  transition: color var(--duration-fast) var(--ease-out);
  padding: var(--space-xs) 0;
}

.footer__link:hover {
  color: var(--lime-500);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--neutral-500);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--navy-900);
  border: 1px solid rgba(10,30,51,0.2);
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  color: var(--white);
  background-color: var(--lime-500);
  border-color: var(--lime-500);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background-color: var(--color-brand-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal) var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-menu__link:hover {
  color: var(--color-accent);
}

.mobile-menu__cta {
  margin-top: var(--space-lg);
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet and below */
@media (max-width: 1024px) {
  .header-nav__list {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-nav .btn {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__visual {
    max-width: 500px;
  }

  .about__image-accent {
    bottom: -1rem;
    right: -1rem;
    width: 45%;
  }

  .about__content {
    max-width: 100%;
  }

  .benefits__layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .benefits__header {
    position: static;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Medium screens */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .hero__content {
    padding-bottom: clamp(2rem, 6vh, 4rem);
  }

  .hero__scroll {
    display: none;
  }

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

  .community__mosaic-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .community__mosaic-item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .community__mosaic-item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .community__mosaic-item:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .community__quote {
    flex-direction: column;
    gap: var(--space-md);
  }

  .community__quote-text {
    font-size: var(--text-xl);
  }

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

  .sport-card:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .sport-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .sport-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .sport-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .sport-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .sports__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .join__steps {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 360px;
  }

  .join__steps::before {
    display: none;
  }

  .join__step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-lg);
    padding: 0;
  }

  .join__step-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .about__stats {
    gap: var(--space-xl);
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__brand {
    max-width: 100%;
  }
}

/* Small screens */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .about__image-accent {
    display: none;
  }

  .about__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

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

  .community__mosaic-item:nth-child(2),
  .community__mosaic-item:nth-child(3) {
    aspect-ratio: 16 / 9;
  }

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

  .sport-card:nth-child(n) {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }

  .sports__more {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .benefit-item__number {
    text-align: left;
    width: auto;
    font-size: var(--text-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Ultrawide */
@media (min-width: 1600px) {
  :root {
    --max-width: 1440px;
  }
}

@media (min-width: 2000px) {
  :root {
    --max-width: 1600px;
  }
}
