/* Flappy Copa — Landing (página inicial) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  --lp-header: #0a4d32;
  --lp-header-dark: #073d28;
  --lp-green-text: #0a3d24;
  --lp-yellow: #ffd400;
  --lp-yellow-light: #ffe566;
  --lp-yellow-shadow: #c9a800;
  --lp-text: #ffffff;
  --lp-text-muted: rgba(255, 255, 255, 0.88);
  --lp-glass: rgba(6, 40, 28, 0.55);
  --lp-glass-border: rgba(255, 255, 255, 0.18);

  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-text);
  background-color: #0d5c4a;
  background-image: url('../../assets/landing-bg.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.landing-page #main {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(11, 61, 145, 0.08);
  border: 1px solid rgba(11, 61, 145, 0.12);
  margin-bottom: 1rem;
}

.section-tag--green {
  color: var(--brand-green);
  background: rgba(0, 151, 57, 0.08);
  border-color: rgba(0, 151, 57, 0.15);
}

.section-tag--yellow {
  color: #9a7b00;
  background: rgba(255, 212, 0, 0.2);
  border-color: rgba(255, 212, 0, 0.35);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin: 0 0 0.75rem;
}

.section-desc {
  margin: 0;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-yellow) 50%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[style*="--delay"] {
  transition-delay: var(--delay, 0s);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-900);
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffe566 0%, var(--brand-yellow) 40%, transparent 41%),
    linear-gradient(160deg, var(--brand-green) 0%, #007a2f 100%);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--brand-yellow);
  flex-shrink: 0;
  position: relative;
}

.logo__icon::after {
  content: '🐦';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}

.logo__icon[style],
.logo--has-image .logo__icon {
  background-image: url('../../assets/bird.png');
  background-size: cover;
  background-position: center;
}

.logo--has-image .logo__icon::after {
  display: none;
}

.logo--lg .logo__icon {
  width: 96px;
  height: 96px;
  border-width: 3px;
  box-shadow: var(--shadow-md);
}

.logo--lg {
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.35rem;
}

.logo--lg .logo__text {
  font-size: 1.5rem;
}

.logo__text strong {
  color: var(--brand-green);
}

.logo__icon--sm {
  width: 32px;
  height: 32px;
}

/* Buttons */
body.landing-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

body.landing-page .btn:hover {
  transform: translateY(-1px);
}

body.landing-page .btn:active {
  transform: translateY(0);
}

body.landing-page .btn--yellow {
  color: var(--lp-green-text);
  background: linear-gradient(180deg, var(--lp-yellow-light) 0%, var(--lp-yellow) 55%, #f0c800 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 4px 0 var(--lp-yellow-shadow),
    0 8px 20px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

body.landing-page .btn--yellow:hover {
  background: linear-gradient(180deg, #fff4a8 0%, var(--lp-yellow-light) 55%, var(--lp-yellow) 100%);
  box-shadow:
    0 4px 0 var(--lp-yellow-shadow),
    0 12px 28px rgba(0, 0, 0, 0.3);
}

body.landing-page .btn--yellow:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 var(--lp-yellow-shadow),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

body.landing-page .btn--header {
  padding: 0.5rem 1.15rem;
  font-size: 0.88rem;
  border-radius: 999px;
  box-shadow:
    0 3px 0 var(--lp-yellow-shadow),
    0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Header — barra superior */
body.landing-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: visible;
  background: linear-gradient(
    180deg,
    #0f6b45 0%,
    var(--lp-header) 38%,
    var(--lp-header-dark) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 0.9rem 0;
}

body.landing-page .site-header__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.03) 28%,
    transparent 55%
  );
  pointer-events: none;
}

body.landing-page .site-header__accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 212, 0, 0.15) 15%,
    rgba(255, 212, 0, 0.65) 50%,
    rgba(255, 212, 0, 0.15) 85%,
    transparent 100%
  );
  pointer-events: none;
}

body.landing-page .site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.landing-page .site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 38px;
  overflow: visible;
  transition: opacity 0.2s ease;
}

body.landing-page .site-header__logo:hover {
  opacity: 0.9;
}

body.landing-page .site-header__logo-img {
  display: block;
  width: auto;
  height: 38px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
  transform: scale(4.2);
  transform-origin: left center;
}

body.landing-page .site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.landing-page .header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.52rem 1.05rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

body.landing-page .header-btn__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

body.landing-page .header-btn__icon svg {
  width: 100%;
  height: 100%;
}

body.landing-page .header-btn__label {
  line-height: 1;
}

body.landing-page .header-btn--ghost {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.landing-page .header-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

body.landing-page .header-btn--primary {
  color: #063d28;
  background: linear-gradient(165deg, #fff0a0 0%, #ffd400 45%, #e8be00 100%);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 2px 0 #b89600,
    0 6px 18px rgba(255, 212, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

body.landing-page .header-btn--primary:hover {
  background: linear-gradient(165deg, #fff8c8 0%, #ffe033 45%, #ffd400 100%);
  transform: translateY(-1px);
  box-shadow:
    0 3px 0 #b89600,
    0 10px 24px rgba(255, 212, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.landing-page .header-btn:active {
  transform: translateY(1px);
}

body.landing-page .header-btn--primary:active {
  box-shadow:
    0 1px 0 #b89600,
    0 4px 12px rgba(255, 212, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

body.landing-page .btn--play {
  display: flex;
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  margin-inline: auto;
  padding: 1.05rem 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow:
    0 6px 0 var(--lp-yellow-shadow),
    0 14px 32px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(255, 212, 0, 0.35);
  animation: cta-attention 1.6s ease-in-out infinite;
}

body.landing-page .btn--play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(255, 212, 0, 0.55);
  z-index: -1;
  animation: cta-ring 1.6s ease-out infinite;
  pointer-events: none;
}

@keyframes cta-attention {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 6px 0 var(--lp-yellow-shadow),
      0 14px 32px rgba(0, 0, 0, 0.35),
      0 0 24px rgba(255, 212, 0, 0.3);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
      0 10px 0 var(--lp-yellow-shadow),
      0 22px 40px rgba(0, 0, 0, 0.4),
      0 0 40px rgba(255, 212, 0, 0.55);
  }
}

@keyframes cta-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

body.landing-page .btn--play:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 8px 0 var(--lp-yellow-shadow),
    0 20px 44px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(255, 212, 0, 0.6);
}

body.landing-page .btn--play:hover::after {
  animation-play-state: paused;
  opacity: 0;
}

body.landing-page .btn--play:active {
  transform: translateY(3px);
  box-shadow:
    0 3px 0 var(--lp-yellow-shadow),
    0 8px 20px rgba(0, 0, 0, 0.25);
}

body.landing-page .btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

body.landing-page .btn--xl {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* Hero */
body.landing-page .hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(4.75rem, 10vw, 5.75rem) 0 clamp(2rem, 5vw, 3rem);
}

body.landing-page .hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 35, 25, 0.15) 0%,
    transparent 28%,
    transparent 62%,
    rgba(4, 25, 18, 0.35) 100%
  );
}

body.landing-page .hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100%, 520px);
  margin-inline: auto;
}

body.landing-page .hero__brand-logo {
  width: min(92vw, 420px);
  height: auto;
  margin: 0 auto -10.75rem;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
}

body.landing-page .hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: -0.35rem;
}

body.landing-page .hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

body.landing-page .hero__eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin: 0;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-yellow);
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body.landing-page .hero__subtitle {
  font-size: clamp(0.92rem, 2.6vw, 1.05rem);
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 38ch;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

body.landing-page .hero__subtitle strong {
  color: #fff;
  font-weight: 600;
}

body.landing-page .hero__actions {
  width: 100%;
  margin-top: 1.15rem;
}

body.landing-page .hero__perks {
  list-style: none;
  margin: 1.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}

body.landing-page .hero__perk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  padding: 0.34rem clamp(0.45rem, 1.2vw, 0.62rem);
  border-radius: 999px;
  font-size: clamp(0.6rem, 1.65vw, 0.72rem);
  font-weight: 600;
  color: #fff;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  flex: 0 1 auto;
}

body.landing-page .hero__perk-icon {
  font-size: 0.72rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Cards grid */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card,
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 61, 145, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.85rem;
}

.feature-card__title,
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
}

.feature-card__text,
.benefit-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.08), rgba(0, 151, 57, 0.08));
}

.benefit-card__icon {
  font-size: 1.5rem;
}

.benefits {
  background: var(--white);
}

/* Referral */
.referral__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 55%, #063060 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.referral__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 212, 0, 0.15), transparent 50%);
  pointer-events: none;
}

.referral__content {
  position: relative;
  z-index: 1;
}

.referral__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.referral__text {
  margin: 0 0 1.25rem;
  opacity: 0.9;
  line-height: 1.65;
}

.referral__list {
  margin: 0 0 1.75rem;
  padding-left: 1.25rem;
  opacity: 0.88;
}

.referral__list li {
  margin-bottom: 0.4rem;
}

.referral__visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.referral__phone {
  width: 200px;
  height: 340px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 1.5rem 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

.referral__phone-screen {
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.referral__phone-label {
  font-size: 0.8rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.referral__phone-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-yellow);
}

.referral__coin {
  position: absolute;
  font-size: 2rem;
  animation: float 5s ease-in-out infinite;
}

.referral__coin--1 { top: 10%; left: 10%; animation-delay: -1s; }
.referral__coin--2 { top: 20%; right: 5%; animation-delay: -2.5s; }
.referral__coin--3 { bottom: 15%; left: 20%; animation-delay: -4s; }

/* Timeline */
.timeline-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
  max-width: 640px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-green), var(--brand-yellow));
  border-radius: 3px;
  opacity: 0.25;
}

.timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1rem 0;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible .timeline__item {
  opacity: 1;
  transform: translateX(0);
}

.timeline__marker {
  display: grid;
  place-items: center;
  z-index: 1;
}

.timeline__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  box-shadow: 0 6px 16px rgba(11, 61, 145, 0.3);
  border: 3px solid var(--white);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--gray-900);
}

.timeline__text {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.timeline__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 3rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer__link {
  font-size: 0.92rem;
  transition: color var(--transition);
}

.site-footer__link:hover {
  color: var(--brand-yellow);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.social-btn:hover {
  background: rgba(255, 212, 0, 0.2);
  transform: translateY(-2px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  opacity: 0.65;
}

.site-footer__disclaimer {
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  body.landing-page .site-header__logo {
    height: 32px;
  }

  body.landing-page .site-header__logo-img {
    height: 32px;
    max-width: none;
    transform: scale(3.55);
  }

  body.landing-page .site-header__nav {
    gap: 0.4rem;
    padding: 0.22rem;
  }

  body.landing-page .header-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    gap: 0.32rem;
  }

  body.landing-page .header-btn__icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  body.landing-page .hero__brand-logo {
    width: min(88vw, 320px);
    margin-bottom: -7.25rem;
  }

  body.landing-page .hero__subtitle {
    margin-top: 0.85rem;
  }

  body.landing-page .hero__actions {
    margin-top: 1rem;
  }

  body.landing-page .hero__perks {
    gap: 0.3rem;
    margin-top: 1.5rem;
  }

  body.landing-page .btn--play {
    width: min(100%, 290px);
  }
}

@media (max-width: 900px) {
  .referral__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .referral__list {
    text-align: left;
    display: inline-block;
  }

  .referral__visual {
    min-height: 220px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__links,
  .site-footer__social {
    justify-content: center;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .timeline__item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.landing-page .btn--play,
  body.landing-page .btn--play::after {
    animation: none !important;
  }
}
