/* ═══════════════════════════════════════════════════════════════════
   INDEX.CSS - Landing Page Styles
   Mobile-first | Breakpoints: 700px (tablet), 1280px (desktop)
   Palette: var(--c-bg), var(--c-accent), var(--panel), var(--muted)
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────── CSS Variables ─────────── */
:root {
  /* Hero */
  --idx-hero-min-h: 100vh;
  --idx-hero-py: 80px;
  --idx-hero-trophy-size: 100px;
  --idx-hero-brand-size: 28px;
  --idx-hero-tagline-size: 18px;
  --idx-hero-title-size: 16px;
  --idx-hero-sub-size: 14px;

  /* Sections */
  --idx-section-py: 48px;
  --idx-section-title-size: 22px;

  /* Feature cards */
  --idx-card-gap: 14px;
  --idx-card-icon-size: 56px;
  --idx-card-padding: 20px;
  --idx-card-title-size: 15px;
  --idx-card-desc-size: 12px;

  /* Steps */
  --idx-step-circle: 52px;
  --idx-step-num-size: 22px;
  --idx-step-icon-size: 48px;
  --idx-step-title-size: 14px;
  --idx-step-desc-size: 12px;
  --idx-step-max-w: 220px;

  /* Gameplay */
  --idx-gameplay-img-radius: 14px;

  /* CTA */
  --idx-cta-title-size: 22px;
  --idx-cta-sub-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════════
   0. HEADER TRASPARENTE (solo homepage)
   ═══════════════════════════════════════════════════════════════════ */

.homepage .auth-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.idx-hero {
  position: relative;
  min-height: var(--idx-hero-min-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--idx-hero-py) 20px 40px;
  text-align: center;
  overflow: hidden;
}

/* Background image */
.idx-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-stadium-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

/* Gradient overlay */
.idx-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 24, 32, 0.05) 0%,
    rgba(16, 24, 32, 0.30) 45%,
    rgba(16, 24, 32, 0.70) 80%,
    rgba(16, 24, 32, 0.92) 100%
  );
  z-index: 1;
}

/* Content */
.idx-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
}

/* Trophy icon – transparent PNG, no medallion */
.idx-hero__trophy {
  width: var(--idx-hero-trophy-size);
  height: var(--idx-hero-trophy-size);
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(255, 201, 50, 0.3));
}

/* Brand name – single line on large screens, wraps on small */
.idx-hero__brand {
  margin: 0;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: var(--idx-hero-brand-size);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--c-accent, #FFC932);
  text-shadow: 0 0 30px rgba(255, 201, 50, 0.3);
}

.idx-hero__brand-sub {
  
  font-weight: 700;
}

/* Tagline – motto principale */
.idx-hero__tagline {
  margin: 4px 0 0;
  font-size: var(--idx-hero-tagline-size);
  font-weight: 700;
  font-style: italic;
  color: var(--c-text, #eaeaea);
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Subtitle */
.idx-hero__subtitle {
  margin: 0;
  font-size: var(--idx-hero-sub-size);
  color: var(--muted, #9aa6bb);
  font-weight: 400;
  line-height: 1.5;
}

/* CTA button */
.idx-hero-cta {
  margin-top: 8px;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 14px;
  letter-spacing: 0.3px;
}

/* Login prompt */
.idx-hero__login {
  margin: 0;
  font-size: 13px;
  color: var(--muted, #9aa6bb);
}

.idx-hero__login a {
  color: var(--c-accent, #FFC932);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.idx-hero__login a:hover {
  color: #ffe066;
}

/* Scroll indicator */
.idx-hero__scroll {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.idx-hero__scroll:hover {
  opacity: 1;
}

.idx-hero__scroll-chevron {
  width: 24px;
  height: 24px;
  border-left: 2px solid var(--c-accent, #FFC932);
  border-bottom: 2px solid var(--c-accent, #FFC932);
  transform: translateY(0) rotate(-45deg);
  animation: idx-bounce 2s ease-in-out infinite;
}

@keyframes idx-bounce {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50%      { transform: translateY(8px) rotate(-45deg); }
}


/* ═══════════════════════════════════════════════════════════════════
   2. SECTIONS - Common
   ═══════════════════════════════════════════════════════════════════ */

.idx-section {
  padding: var(--idx-section-py) 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.idx-section__title {
  margin: 0 0 32px;
  font-size: var(--idx-section-title-size);
  font-weight: 800;
  color: var(--c-text, #eaeaea);
  text-align: center;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

/* Gold accent underline */
.idx-section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--c-accent, #FFC932);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* Separator between sections */
.idx-divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 201, 50, 0.2) 50%,
    transparent 100%
  );
}


/* ═══════════════════════════════════════════════════════════════════
   3. FEATURE CARDS
   ═══════════════════════════════════════════════════════════════════ */

.idx-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--idx-card-gap);
}

.idx-feature-card {
  background: linear-gradient(165deg, rgba(26, 40, 54, 0.8) 0%, rgba(16, 24, 32, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: var(--idx-card-padding);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (hover: hover) and (pointer: fine) {
  .idx-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 201, 50, 0.3);
    box-shadow: 0 8px 32px rgba(255, 201, 50, 0.1);
  }

  .idx-feature-card:hover .idx-feature-card__icon {
    box-shadow: 0 0 24px rgba(255, 201, 50, 0.25);
  }
}

.idx-feature-card__icon {
  width: var(--idx-card-icon-size);
  height: var(--idx-card-icon-size);
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 201, 50, 0.08);
  border: 1px solid rgba(255, 201, 50, 0.2);
  transition: box-shadow 0.25s ease;
  overflow: hidden;
}

/* Icon image inside the card */
.idx-feature-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.idx-feature-card__title {
  margin: 0 0 8px;
  font-size: var(--idx-card-title-size);
  font-weight: 700;
  color: var(--c-accent, #FFC932);
}

.idx-feature-card__desc {
  margin: 0;
  font-size: var(--idx-card-desc-size);
  color: var(--muted, #9aa6bb);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════════════════
   4. STEPS - How It Works
   ═══════════════════════════════════════════════════════════════════ */

.idx-steps-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.idx-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

/* Vertical connector line (mobile) */
.idx-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: repeating-linear-gradient(
    to bottom,
    var(--c-accent, #FFC932) 0px,
    var(--c-accent, #FFC932) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.idx-step__circle {
  width: var(--idx-step-circle);
  height: var(--idx-step-circle);
  border-radius: 50%;
  border: 2px solid var(--c-accent, #FFC932);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--idx-step-num-size);
  font-weight: 800;
  color: var(--c-accent, #FFC932);
  background: rgba(255, 201, 50, 0.06);
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
}

/* First step has stronger glow */
.idx-step:first-child .idx-step__circle {
  box-shadow: 0 0 20px rgba(255, 201, 50, 0.25);
}

.idx-step__icon {
  margin-top: 10px;
  width: var(--idx-step-icon-size);
  height: var(--idx-step-icon-size);
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50%);
}

.idx-step__title {
  margin: 10px 0 4px;
  font-size: var(--idx-step-title-size);
  font-weight: 700;
  color: var(--c-text, #eaeaea);
}

.idx-step__desc {
  margin: 0;
  font-size: var(--idx-step-desc-size);
  color: var(--muted, #9aa6bb);
  line-height: 1.5;
  max-width: var(--idx-step-max-w);
}


/* ═══════════════════════════════════════════════════════════════════
   5. GAMEPLAY PREVIEW
   ═══════════════════════════════════════════════════════════════════ */

.idx-gameplay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.idx-gameplay__img-wrap {
  width: 100%;
  max-width: 560px;
  border-radius: var(--idx-gameplay-img-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.idx-gameplay__img {
  width: 100%;
  height: auto;
  display: block;
}

.idx-gameplay__text {
  text-align: center;
  max-width: 500px;
}

.idx-gameplay__title {
  margin: 0 0 12px;
  font-size: var(--idx-section-title-size);
  font-weight: 800;
  color: var(--c-text, #eaeaea);
}

.idx-gameplay__desc {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted, #9aa6bb);
  line-height: 1.6;
}

.idx-gameplay__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idx-gameplay__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text, #eaeaea);
  text-align: left;
}

.idx-gameplay__point::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 201, 50, 0.12);
  color: var(--c-accent, #FFC932);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════════
   5b. FAQ Section
   ═══════════════════════════════════════════════════════════════════ */

.idx-faq {
    padding: 40px 16px;
    max-width: 800px;
    margin: 0 auto;
}

.idx-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.idx-faq__item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border, rgba(255,255,255,0.12));
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.idx-faq__item[open] {
    border-color: var(--c-accent, #FFC932);
}

.idx-faq__question {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text, #eaeaea);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.idx-faq__question::-webkit-details-marker {
    display: none;
}

.idx-faq__question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--c-accent, #FFC932);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.idx-faq__item[open] .idx-faq__question::after {
    transform: rotate(45deg);
}

.idx-faq__answer {
    padding: 0 18px 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted, #9aa6bb);
}


/* ═══════════════════════════════════════════════════════════════════
   5c. SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════════ */

.idx-social-proof {
    padding: 40px 16px;
    text-align: center;
}

.idx-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.idx-proof-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border, rgba(255,255,255,0.12));
    border-radius: 12px;
    padding: 20px 12px;
    transition: border-color 0.3s;
}

.idx-proof-stat:hover {
    border-color: var(--c-accent, #FFC932);
}

.idx-proof-stat__number {
    display: block;
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--c-accent, #FFC932), #e6a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
}

.idx-proof-stat__label {
    display: block;
    font-size: 13px;
    color: var(--muted, #9aa6bb);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════════════════════════
   6. CTA FINALE
   ═══════════════════════════════════════════════════════════════════ */

.idx-cta {
  position: relative;
  padding: 56px 16px 64px;
  text-align: center;
  overflow: hidden;
  border-top: 2px solid rgba(255, 201, 50, 0.2);
}

/* Background image */
.idx-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/community-network-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.idx-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 24, 32, 0.50) 0%,
    rgba(16, 24, 32, 0.40) 50%,
    rgba(16, 24, 32, 0.65) 100%
  );
  z-index: 1;
}

.idx-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.idx-cta__title {
  margin: 0;
  font-size: var(--idx-cta-title-size);
  font-weight: 800;
  color: var(--c-text, #eaeaea);
  line-height: 1.2;
}

.idx-cta__subtitle {
  margin: 0;
  font-size: var(--idx-cta-sub-size);
  color: var(--muted, #9aa6bb);
}

.idx-cta-btn {
  margin-top: 8px;
  padding: 16px 44px;
  font-size: 17px;
  border-radius: 14px;
  letter-spacing: 0.3px;
  animation: idx-cta-pulse 3s ease-in-out infinite;
}

@keyframes idx-cta-pulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(255, 177, 0, 0.35); }
  50%      { box-shadow: 0 8px 28px rgba(255, 177, 0, 0.5); }
}

.idx-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-accent, #FFC932);
  background: rgba(255, 201, 50, 0.1);
  border: 1px solid rgba(255, 201, 50, 0.25);
  border-radius: 20px;
}


/* ═══════════════════════════════════════════════════════════════════
   6b. RESPONSIVE - Large mobile (412px+)
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 412px) {
  :root {
    --idx-hero-tagline-size: 22px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   7. RESPONSIVE - Tablet (700px+)
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 700px) {
  :root {
    --idx-hero-trophy-size: 130px;
    --idx-hero-brand-size: 40px;
    --idx-hero-tagline-size: 26px;
    --idx-hero-title-size: 20px;
    --idx-hero-sub-size: 16px;

    --idx-section-py: 64px;
    --idx-section-title-size: 28px;

    --idx-card-gap: 18px;
    --idx-card-icon-size: 64px;
    --idx-card-padding: 24px;
    --idx-card-title-size: 16px;
    --idx-card-desc-size: 13px;

    --idx-step-circle: 64px;
    --idx-step-num-size: 26px;
    --idx-step-icon-size: 64px;
    --idx-step-title-size: 16px;
    --idx-step-desc-size: 13px;
    --idx-step-max-w: 260px;

    --idx-cta-title-size: 28px;
    --idx-cta-sub-size: 16px;
  }

  /* Brand: single line on tablet+ */
  .idx-hero__brand {
    white-space: nowrap;
  }
  .idx-hero__brand-sub {
    display: inline;
  }

  /* Features: 2 columns */
  .idx-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Steps: horizontal, aligned top */
  .idx-steps-row {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }

  .idx-step {
    flex: 1;
    max-width: 200px;
    padding: 0 12px;
  }

  /* Horizontal connector line */
  .idx-step:not(:last-child)::after {
    top: calc(var(--idx-step-circle) / 2);
    bottom: auto;
    left: calc(50% + var(--idx-step-circle) / 2 + 8px);
    width: calc(100% - var(--idx-step-circle) - 16px);
    height: 2px;
    transform: none;
    background: repeating-linear-gradient(
      to right,
      var(--c-accent, #FFC932) 0px,
      var(--c-accent, #FFC932) 6px,
      transparent 6px,
      transparent 12px
    );
  }

  /* Social Proof */
  .idx-social-proof {
    padding: 60px 24px;
  }
  .idx-proof-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }
  .idx-proof-stat {
    padding: 28px 16px;
  }
  .idx-proof-stat__label {
    font-size: 14px;
  }

  /* FAQ */
  .idx-faq {
    padding: 60px 24px;
  }
  .idx-faq__question {
    font-size: 16px;
    padding: 16px 20px;
  }
  .idx-faq__answer {
    font-size: 15px;
    padding: 0 20px 16px;
  }

  /* Gameplay: side by side */
  .idx-gameplay {
    flex-direction: row;
    text-align: left;
  }

  .idx-gameplay__img-wrap {
    flex: 0 0 55%;
    max-width: none;
  }

  .idx-gameplay__text {
    text-align: left;
    flex: 1;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   8. RESPONSIVE - Desktop (1280px+)
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 1280px) {
  :root {
    
    --idx-hero-trophy-size: 160px;
    --idx-hero-brand-size: 64px;
    --idx-hero-tagline-size: 30px;
    --idx-hero-title-size: 22px;
    --idx-hero-sub-size: 18px;

    --idx-section-py: 80px;
    --idx-section-title-size: 34px;

    --idx-card-gap: 22px;
    --idx-card-icon-size: 72px;
    --idx-card-padding: 28px;
    --idx-card-title-size: 17px;
    --idx-card-desc-size: 14px;

    --idx-step-circle: 80px;
    --idx-step-num-size: 32px;
    --idx-step-icon-size: 80px;
    --idx-step-title-size: 18px;
    --idx-step-desc-size: 15px;
    --idx-step-max-w: 300px;

    --idx-cta-title-size: 36px;
    --idx-cta-sub-size: 17px;
  }

  /* Social Proof */
  .idx-social-proof {
    padding: 80px 32px;
  }
  .idx-proof-grid {
    max-width: 900px;
    gap: 20px;
  }

  /* FAQ */
  .idx-faq {
    padding: 80px 32px;
  }

  /* Features: 4 columns */
  .idx-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Steps: more space */
  .idx-step {
    max-width: 320px;
  }

  /* Gameplay: tilt effect */
  .idx-gameplay__img-wrap {
    transform: perspective(1200px) rotateY(-2deg);
    transition: transform 0.4s ease;
  }

  @media (hover: hover) {
    .idx-gameplay__img-wrap:hover {
      transform: perspective(1200px) rotateY(0deg);
    }
  }

  .idx-gameplay__title {
    font-size: 32px;
  }

  .idx-gameplay__desc {
    font-size: 15px;
  }

  .idx-gameplay__point {
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   9. ACCESSIBILITY & REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   10. SMOOTH SCROLL
   ═══════════════════════════════════════════════════════════════════ */

.homepage {
  scroll-behavior: smooth;
}


/* ═══════════════════════════════════════════════════════════════════
   11. FOCUS VISIBLE (WCAG 2.4.7)
   ═══════════════════════════════════════════════════════════════════ */

/* CTA buttons */
.idx-hero-cta:focus-visible,
.idx-cta-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 201, 50, 0.4);
}

/* Sign In link */
.idx-hero__login a:focus-visible {
  outline: 2px solid var(--c-accent, #FFC932);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Scroll indicator */
.idx-hero__scroll:focus-visible {
  outline: 2px solid var(--c-accent, #FFC932);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Feature cards (when tabbed into) */
.idx-feature-card:focus-within {
  border-color: rgba(255, 201, 50, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 201, 50, 0.15);
}

/* CTA badge link */
.idx-cta__badge:focus-visible {
  outline: 2px solid var(--c-accent, #FFC932);
  outline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════════════
   12. ACCESSIBILITY & REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════ */

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

  .idx-hero__trophy,
  .idx-hero__scroll-chevron,
  .idx-cta-btn {
    animation: none !important;
  }

  .idx-feature-card,
  .idx-gameplay__img-wrap,
  .idx-proof-stat {
    transition: none !important;
    transform: none !important;
  }
}
