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

:root {
  --blue-deep: #001F5B;
  --blue-mid: #0047AB;
  --blue-bright: #3B7FFF;
  --blue-light: #82B1FF;
  --gold: #FFC300;
  --gold-dark: #E6A800;
  --white: #FFFFFF;
  --bg: #F0F5FF;
  --text: #0F1A3D;
  --muted: #64748B;
  --card-bg: rgba(255, 255, 255, 0.9);
  --radius: 24px;
  --font: "Outfit", sans-serif;
  --font2: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--blue-deep);
  overflow-x: hidden;
}

/* =========== NAVBAR =========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 31, 91, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 68px;
  height: 68px;
  border-radius: 10px;
}

.nav-logo span {
  font-family: var(--font);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 195, 0, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
}

/* =========== HERO =========== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000D2E 0%, #001F5B 40%, #0A2E6E 70%, #003080 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0047AB, transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #FFC300, transparent);
  bottom: -50px;
  left: -50px;
  animation-delay: 3s;
  opacity: 0.25;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #3B7FFF, transparent);
  top: 50%;
  left: 40%;
  animation-delay: 5s;
  opacity: 0.3;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 60px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 195, 0, 0.15);
  border: 1px solid rgba(255, 195, 0, 0.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, #FFC300, #82B1FF, #FFC300);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.hero-text>p {
  font-family: var(--font2);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}

.stat-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFC300, #E6A800);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(255, 195, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 195, 0, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hero-visual {
  flex-shrink: 0;
  position: relative;
  width: 340px;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  background: linear-gradient(145deg, #1a3a7a, #0d2756);
  border: 2px solid rgba(130, 177, 255, 0.3);
  border-radius: 40px;
  padding: 16px;
  width: 280px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(59, 127, 255, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 12px 16px;
  animation: floatCard 4s ease-in-out infinite;
  min-width: 170px;
}

.fc-1 {
  top: 60px;
  right: -60px;
  animation-delay: 0s;
}

.fc-2 {
  top: 240px;
  left: -70px;
  animation-delay: 1.5s;
}

.fc-3 {
  bottom: 80px;
  right: -50px;
  animation-delay: 3s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fc-icon {
  font-size: 22px;
}

.fc-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}

.fc-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  z-index: 10;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* =========== SECTIONS =========== */
.section {
  padding: 100px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  background: rgba(59, 127, 255, 0.15);
  border: 1px solid rgba(59, 127, 255, 0.3);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title-sm {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  font-family: var(--font2);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* =========== FEATURES =========== */
.features {
  background: var(--bg);
}

.features .section-title,
.features .section-sub {
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid #EBF2FF;
  box-shadow: 0 4px 20px rgba(0, 71, 171, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 71, 171, 0.15);
  border-color: var(--blue-bright);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card p {
  font-family: var(--font2);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* =========== HOW IT WORKS =========== */
.how {
  background: linear-gradient(180deg, #001533 0%, #001F5B 100%);
}

.how .section-title {
  color: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step {
  display: flex;
  align-items: center;
  gap: 60px;
}

.step-reverse {
  flex-direction: row-reverse;
}

.step-number {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  color: rgba(59, 127, 255, 0.15);
  line-height: 1;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.step-content p {
  font-family: var(--font2);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 400px;
}

.step-visual {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  justify-content: center;
}

.step-icon-wrap {
  font-size: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-img {
  width: 130px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* =========== SCREENS =========== */
.screens {
  background: var(--bg);
}

.screens .section-title,
.screens .section-sub {
  color: var(--text);
}

.screens-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.screens-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.screen-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.4s;
}

.screen-item.active {
  opacity: 1;
  transform: scale(1.05);
}

.screen-frame {
  width: 160px;
  height: 290px;
  background: linear-gradient(145deg, #1a3a7a, #0d2756);
  border-radius: 24px;
  padding: 6px;
  border: 2px solid rgba(130, 177, 255, 0.3);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.screen-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.screens-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--blue-mid);
  width: 24px;
}

.screen-nav {
  position: absolute;
  top: 40%;
  background: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.screen-nav.prev {
  left: 0;
}

.screen-nav.next {
  right: 0;
}

/* =========== BADGES / PROGRESSION =========== */
.progression {
  background: linear-gradient(180deg, #001F5B 0%, #000D2E 100%);
}

.progression .section-title {
  color: var(--white);
}

.progression .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.badges-showcase {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
  cursor: default;
  min-width: 200px;
}

.badge-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 195, 0, 0.3);
}

.badge-item.featured {
  border-color: rgba(255, 195, 0, 0.4);
  background: rgba(255, 195, 0, 0.07);
  transform: scale(1.08);
}

.badge-item.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.badge-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  z-index: -1;
}

.badge-glow.beginner {
  box-shadow: 0 0 40px rgba(59, 127, 255, 0.15);
}

.badge-glow.mid {
  box-shadow: 0 0 60px rgba(255, 195, 0, 0.25);
}

.badge-glow.master {
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.25);
}

.badge-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.badge-level {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.badge-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 195, 0, 0.2);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 195, 0, 0.3);
}

.progression-bar-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 40px;
}

.prog-info {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.prog-track {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: visible;
  margin-bottom: 16px;
}

.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #3B7FFF, #FFC300);
  border-radius: 999px;
  width: 0;
  transition: width 1.5s ease;
}

.prog-dots {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.prog-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.prog-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.prog-label {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* =========== CARTES =========== */
.cartes {
  background: var(--bg);
}

.cartes .section-title,
.cartes .section-sub {
  color: var(--text);
}

.cartes-showcase {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.carte-wrap {
  display: flex;
  justify-content: center;
}

.featured-carte .carte-card {
  transform: scale(1.1) translateY(-20px);
}

.carte-card {
  width: 180px;
  background: white;
  border-radius: 20px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 71, 171, 0.15);
  border: 2px solid #EBF2FF;
  transition: all 0.3s;
  cursor: pointer;
}

.carte-card:hover {
  transform: translateY(-12px) rotate(2deg);
}

.featured-carte .carte-card:hover {
  transform: scale(1.1) translateY(-30px) rotate(-2deg);
}

.carte-card.rare {
  border-color: #82B1FF;
  box-shadow: 0 8px 30px rgba(59, 127, 255, 0.2), 0 0 60px rgba(59, 127, 255, 0.08);
}

.carte-card.epic {
  border-color: #C084FC;
  box-shadow: 0 8px 30px rgba(192, 132, 252, 0.2), 0 0 60px rgba(192, 132, 252, 0.08);
}

.carte-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.carte-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.carte-rarity {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.carte-card.rare .carte-rarity {
  color: var(--blue-bright);
}

.carte-card.epic .carte-rarity {
  color: #9333EA;
}

.cartes-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.carte-stat {
  text-align: center;
}

.carte-stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 6px;
}

.carte-stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* =========== GAMIFICATION =========== */
.gamification {
  background: linear-gradient(180deg, #000D2E 0%, #001F5B 100%);
}

.gamif-split {
  display: flex;
  gap: 80px;
  align-items: center;
}

.gamif-text {
  flex: 1;
}

.gamif-text .section-label {
  margin-bottom: 16px;
}

.gamif-text .section-title-sm {
  color: var(--white);
  margin-bottom: 36px;
}

.gamif-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gamif-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.gamif-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gamif-list strong {
  display: block;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
}

.gamif-list p {
  font-family: var(--font2);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.gamif-visual {
  flex-shrink: 0;
  position: relative;
  width: 320px;
}

.gamif-img {
  width: 260px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gamif-float-1,
.gamif-float-2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.gamif-float-1 {
  top: 20px;
  right: -20px;
  animation: floatCard 3s ease-in-out infinite;
}

.gamif-float-2 {
  bottom: 40px;
  left: -20px;
  animation: floatCard 3s ease-in-out infinite 1.5s;
}

/* =========== DOWNLOAD =========== */
.download {
  background: var(--bg);
}

.download-card {
  background: linear-gradient(135deg, #0047AB 0%, #001F5B 100%);
  border-radius: 40px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.download-orb-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.15), transparent);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.download-orb-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 127, 255, 0.2), transparent);
  bottom: -80px;
  left: 200px;
  border-radius: 50%;
}

.download-mascot {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.download-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.download-text h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.download-text p {
  font-family: var(--font2);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font);
}

.dl-btn.android {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.dl-btn.android:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.dl-btn.ios {
  background: var(--gold);
  color: var(--blue-deep);
}

.dl-btn.ios:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 195, 0, 0.35);
}

.dl-small {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 500;
}

.dl-big {
  font-size: 18px;
  font-weight: 900;
}

/* =========== FOOTER =========== */
.footer {
  background: #000D2E;
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 64px;
  border-radius: 8px;
}

.footer-brand span {
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    gap: 60px;
  }

  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .fc-1 {
    right: -20px;
    top: 20px;
  }

  .fc-2 {
    left: -20px;
  }

  .fc-3 {
    right: -10px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    flex-direction: column !important;
    gap: 24px;
    align-items: flex-start;
  }

  .gamif-split {
    flex-direction: column;
  }

  .gamif-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .gamif-img {
    width: 200px;
  }

  .download-card {
    flex-direction: column;
    text-align: center;
    padding: 60px 32px;
  }

  .download-mascot {
    width: 150px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-mobile.open {
    display: flex;
    flex-direction: column;
    background: rgba(0, 31, 91, 0.98);
    padding: 16px 24px 24px;
    gap: 4px;
  }

  .nav-mobile a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .badges-showcase {
    flex-direction: column;
    align-items: center;
  }

  .badge-item.featured {
    transform: scale(1);
  }

  .cartes-showcase {
    flex-direction: column;
    align-items: center;
  }

  .featured-carte .carte-card {
    transform: none;
  }

  .screen-nav {
    display: none;
  }
}