/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Hero stays dark (HERO_DARK.png). Sections below — light & pastel from Ref_2 */
  --color-bg: #f0f7f2;
  --color-bg-section: #ffffff;
  --color-bg-alt: #eaf5ee;
  --color-card: #ffffff;
  --color-card-border: rgba(60,180,100,0.15);
  --color-green: #2db84b;
  --color-green-dark: #1f9e3a;
  --color-green-btn: #2aad42;
  --color-green-light: rgba(45,184,75,0.1);
  --color-gold: #e8a020;
  --color-gold-bg: rgba(255,200,80,0.12);
  --color-text: #1a2e1a;
  --color-text-body: #2c4a2c;
  --color-text-muted: #5a7a5a;
  --color-text-light: #8aaa8a;
  --color-white: #ffffff;
  --color-divider: rgba(45,184,75,0.3);
  --font-main: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Nunito', 'Inter', sans-serif;
  --radius: 18px;
  --radius-sm: 14px;
  --shadow-card: 0 2px 16px rgba(30,100,50,0.08), 0 1px 4px rgba(30,100,50,0.05);
  --shadow-hover: 0 8px 32px rgba(30,100,50,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #e8f5ec; }
::-webkit-scrollbar-thumb { background: var(--color-green); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-green-btn);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(42, 173, 66, 0.4);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.tg-link {
  cursor: pointer;
}

.btn-tg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.btn-tg:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(42, 173, 66, 0.5);
}

.btn-tg:active {
  transform: translateY(0) scale(0.98);
}

.btn-tg svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.btn-tg--large {
  font-size: 1.15rem;
  padding: 18px 44px;
}

.btn-tg--glow {
  animation: btn-glow 2.5s ease-in-out infinite;
}

.btn-tg--blue {
  background: #2563eb;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}

.btn-tg--blue::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}

.btn-tg--blue:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 30px rgba(37,99,235,0.55);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("img/HERO_DARK.png") center center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,10,8,0.55) 0%, rgba(5,10,8,0.28) 40%, rgba(5,10,8,0.72) 88%, rgba(234,245,238,0.3) 100%);
  /* Keep the dimming overlay above particles to avoid "sparkle noise" artifacts (esp. with backdrop-filter). */
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 600px;
  width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 0 60px rgba(61,214,90,0.6), 0 4px 40px rgba(0,0,0,0.7);
  animation: fadeInDown 0.8s ease both;
  margin-bottom: 4px;
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  max-width: 540px;
  width: 100%;
  line-height: 1.6;
  animation: fadeInDown 0.8s ease 0.12s both;
  text-align: center;
}

.hero__subtitle-inner {
  display: inline-block;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 10px 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.hero__gamepad {
  margin: 8px 0;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero__gamepad img {
  width: clamp(180px, 38vw, 260px);
  height: auto;
  animation: float 5s ease-in-out 1.2s infinite;
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.32s both;
}

.hero__cta-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__cta-btns .btn-tg--large {
  font-size: 1rem;
  padding: 15px 26px;
}

.hero__cta-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  transform: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  animation: fadeInUp 1s ease 0.8s both;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

.hero__scroll-hint:hover {
  color: var(--color-green);
  opacity: 1;
}

.hero__scroll-hint:hover .hero__scroll-arrow {
  border-color: var(--color-green);
}

.hero__scroll-arrow {
  position: relative;
  z-index: 0;
  width: 14px;
  height: 14px;
  border-right: 2.5px solid rgba(255,255,255,0.8);
  border-bottom: 2.5px solid rgba(255,255,255,0.8);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce-arrow 1.4s ease-in-out infinite;
  transition: border-color var(--transition);
  border-radius: 0 0 2px 0;
}

.hero__scroll-arrow::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: absolute;
  inset: 0;
  /* Particles should sit above the background image, but below the dark overlay. */
  z-index: 1;
  pointer-events: none;
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

.wave-divider--hero-to-audience {
  display: none;
}

/* Section after a wave gets reduced top padding */
.wave-divider + .section {
  padding-top: 40px;
}

/* Section before a wave gets reduced bottom padding */
.section:has(+ .wave-divider) {
  padding-bottom: 40px;
}

.section.section--before-wave {
  padding-bottom: 40px;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 64px 0;
  background: var(--color-bg-section);
  position: relative;
}

.section--audience {
  background: linear-gradient(180deg, #f5fbf7 0%, #eef7f1 100%);
}

.section--about {
  background: linear-gradient(180deg, #eaf5ee 0%, #f0f9f3 100%);
}

.section--why {
  background: linear-gradient(180deg, #f8fffe 0%, #edf8f2 100%);
}

/* Add a bit more vertical breathing room only for the "Почему стоит подписаться?" block */
.wave-divider + .section--why {
  padding-top: 72px;
}

.section--why.section--before-wave {
  padding-bottom: 108px;
}

.section--why .section__header {
  margin-bottom: 54px;
}

.section--why .why__list {
  gap: 20px;
}

.section--why .why-item {
  padding: 24px 28px;
  gap: 22px;
}

.section--proof {
  background: linear-gradient(180deg, #eaf5ee 0%, #dff0e6 100%);
  padding: 56px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 36px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
}

.section-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), rgba(45,184,75,0.3));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ===== ABOUT SECTION ===== */
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-card);
}

.about__text-block {
  width: 100%;
}

.about__audience-sub {
  margin-top: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.about__audience-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 800;
  color: var(--color-text);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.about__audience-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), rgba(45,184,75,0.3));
  border-radius: 2px;
}

.about__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
  padding: 0 0 16px 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-card-border);
}

.about__intro strong {
  color: var(--color-green-dark);
  font-weight: 800;
}

.about__checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  margin: 0 -8px;
  min-height: 56px;
  box-shadow: none;
  transition: background var(--transition);
}

.check-item:last-child {
  border-bottom: none;
}

.check-item:hover {
  background: var(--color-green-light);
}

.check-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(61,214,90,0.3);
}

.check-item__icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-item__text {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.6;
  padding-top: 4px;
}

/* ===== AUDIENCE CARDS ===== */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.audience-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(45,184,75,0.3);
}

.audience-card--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.audience-card__btn {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-green-dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.audience-card--link:hover .audience-card__btn {
  color: var(--color-green);
}

.audience-card__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-bottom: 14px;
}

.audience-card__img-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(30,100,50,0.15));
}

.audience-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.audience-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}


/* ===== CAROUSEL SECTION ===== */
.section--carousel {
  background: linear-gradient(180deg, #0f2318 0%, #0c1c13 50%, #091508 100%);
  padding: 56px 0 100px;
  overflow: hidden;
  position: relative;
  margin-top: -3px;
}

.section--why + .wave-divider {
  margin-bottom: -2px;
}

.section--carousel .section__header {
  margin-bottom: 32px;
}

.section__title--light {
  color: #fff;
}

.section-divider--light {
  background: linear-gradient(90deg, var(--color-green), rgba(45,184,75,0.3));
}

.carousel__subtitle {
  margin-top: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.carousel__outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
}

.carousel__track-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
}

.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  background: transparent;
  box-shadow: 0 3px 16px rgba(0,0,0,0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  line-height: 0;
}

.carousel__slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
  flex-shrink: 0;
  transform: scale(1.008);
  transform-origin: top center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.carousel__slide-caption {
  padding: 0 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  line-height: 1.35;
  background: rgba(0,0,0,0.62);
  text-align: center;
  height: 70px;
  min-height: 70px;
  display: grid;
  place-items: center;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 4;
  flex-shrink: 0;
}

.carousel__btn:hover {
  background: var(--color-green);
  transform: translateY(-50%) scale(1.1);
}

.carousel__btn--prev { left: 4px; }
.carousel__btn--next { right: 4px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.carousel__wave-bottom {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel__wave-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.carousel__dot--active {
  background: var(--color-green);
  transform: scale(1.3);
}

/* 3D carousel mode (desktop experiment, enabled by JS class on section) */
.section--carousel.carousel--3d .carousel__track-wrap {
  overflow: visible;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.section--carousel.carousel--3d .carousel__track {
  position: relative;
  transform: none !important;
  transition: none;
  transform-style: preserve-3d;
  min-height: 550px;
}

.section--carousel.carousel--3d .carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0 auto;
  transition: transform 0.52s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.42s ease;
  will-change: transform, opacity;
  filter: brightness(0.68) saturate(0.86);
}

.section--carousel.carousel--3d .carousel__slide.is-active {
  pointer-events: auto;
  filter: none;
}

/* ===== WHY SECTION ===== */
.why__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(45,184,75,0.3);
}

.why-item__img-wrap {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__img-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

.why-item__body {
  flex: 1;
  min-width: 0;
}

.why-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.why-item__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.why-item--highlight {
  background: linear-gradient(135deg, #fffbf0 0%, #fff5e0 100%);
  border-color: rgba(232,160,32,0.25);
}

.why-item--highlight .why-item__title {
  color: var(--color-gold);
}

/* ===== SOCIAL PROOF ===== */
.proof__banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 32px rgba(30,100,50,0.15);
}

.proof__banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d5c20 0%, #0a4a18 40%, #083d13 70%, #052e0d 100%);
  z-index: 0;
}

.proof__banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 120%, rgba(255,255,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% -10%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.proof__banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.proof__banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof__label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
}

.proof__counter-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 6px 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.proof__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100%;
}

.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.proof__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.proof__stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.proof__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.proof__quote {
  margin-top: 20px;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 340px;
  border-left: 3px solid var(--color-green);
  padding-left: 14px;
  text-align: left;
  align-self: flex-start;
}

.proof__cta-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.proof__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.proof__cta-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.proof__cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}


/* ===== FOOTER ===== */
.footer {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.footer__content {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0d1a10 0%, #060d09 100%);
  padding: 32px 0 28px;
  border-top: 1px solid rgba(45,184,75,0.2);
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 24px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 4px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  transition: color var(--transition);
}

.footer__link:hover {
  color: #4ade80;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(42,173,66,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(42,173,66,0.7), 0 0 60px rgba(42,173,66,0.2); }
}

/* Scroll reveal (progressive enhancement) */
.reveal {
  opacity: 1;
  transform: none;
}

.js.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

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

@media (prefers-reduced-motion: reduce) {
  .js.reveal-enabled .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-tg--glow,
  .hero__gamepad img,
  .hero__scroll-arrow {
    animation: none !important;
  }
}

/* Stagger */
.about__checklist .check-item:nth-child(1) { transition-delay: 0.05s; }
.about__checklist .check-item:nth-child(2) { transition-delay: 0.12s; }
.about__checklist .check-item:nth-child(3) { transition-delay: 0.19s; }
.why__list .why-item:nth-child(1) { transition-delay: 0.05s; }
.why__list .why-item:nth-child(2) { transition-delay: 0.12s; }
.why__list .why-item:nth-child(3) { transition-delay: 0.19s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero__cta-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__cta-btns .btn-tg--large {
    width: 100%;
    max-width: 320px;
  }

  .carousel__btn {
    display: none;
  }

  .carousel__outer {
    padding: 0;
  }

  .carousel__track-wrap {
    max-width: 360px;
  }

  .carousel__slide img {
    height: 360px;
  }

  .carousel__slide-caption {
    height: 66px;
    min-height: 66px;
    font-size: 0.8rem;
  }

  .proof__cta-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .proof__cta-btns .btn-tg {
    width: 100%;
    max-width: 300px;
  }

  .hero {
    padding: 80px 16px 90px;
    min-height: 560px;
    justify-content: flex-start;
  }

  .hero__title {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero__subtitle {
    width: min(86vw, 420px);
    max-width: 86vw;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle-inner {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }

  .hero__gamepad img {
    width: clamp(140px, 45vw, 200px);
  }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn-tg--large {
    font-size: 1rem;
    padding: 16px 28px;
  }

  .check-item {
    padding: 12px 8px;
    margin: 0 -8px;
  }

  .why-item {
    padding: 16px 16px;
    gap: 14px;
  }

  .why-item__img-wrap {
    width: 52px;
    height: 52px;
  }

  .why-item__img-wrap img {
    width: 48px;
    height: 48px;
  }

  .section--why {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .wave-divider + .section--why {
    padding-top: 58px;
  }

  .section--why.section--before-wave {
    padding-bottom: 82px;
  }

  .section--why .section__header {
    margin-bottom: 36px;
  }

  .section--why .why__list {
    gap: 16px;
  }

  .section--why .why-item {
    padding: 20px 16px;
  }

  .section {
    padding: 48px 0;
  }

  .proof__banner {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .carousel__track-wrap {
    max-width: 330px;
  }
}

@media (max-width: 380px) {
  .carousel__track-wrap {
    max-width: 300px;
  }

  .hero__title { font-size: 3rem; }
  .btn-tg--large { padding: 14px 22px; font-size: 0.95rem; }
}

@media (max-width: 340px) {
  .carousel__track-wrap {
    max-width: 276px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .hero {
    min-height: 700px;
  }

  .section {
    padding: 80px 0;
  }

}

@media (min-width: 1024px) {
  .container {
    max-width: 820px;
  }

  .section--carousel .container {
    max-width: 980px;
  }

  .section--carousel .carousel__track-wrap {
    max-width: 520px;
  }

  .section--carousel .carousel__outer {
    padding: 0 42px;
  }

  .hero {
    min-height: 100vh;
  }

  .audience__grid {
    gap: 24px;
  }

  .why__list {
    gap: 16px;
  }

}
