/* ══════════════════════════════════════════════
   Periplo — Website Styles
   Design: warm, playful, Nunito font, app-coherent
   ══════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --primary: #FF6B35;
  --primary-light: #FF8F5E;
  --primary-dark: #E55A2B;
  --gold: #F7C948;
  --accent: #00B4D8;
  --success: #2DC653;
  --error: #FF4757;
  --purple: #7B2FF7;

  --bg: #FFFFFF;
  --bg-warm: #FFF8F0;
  --bg-cream: #FFF7F0;
  --bg-subtle: #F8F9FA;
  --text: #1A1A2E;
  --text-secondary: #6C757D;
  --text-tertiary: #ADB5BD;
  --border: #E9ECEF;
  --divider: #F1F3F5;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --font: 'Nunito', sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Universe colors */
  --c-animaux: #1B7A34;
  --c-dinosaures: #C44D1A;
  --c-ocean: #0077B6;
  --c-espace: #1E3A5F;
  --c-corps: #B33975;
  --c-terre: #8B4513;
  --c-histoire: #5A1DB5;
  --c-inventions: #E67E22;
  --c-sciences: #0E7E7A;
  --c-culture: #9B59B6;
  --c-nature: #2D8B46;
  --c-societe: #E74C3C;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn--sm { padding: 8px 20px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 17px; }

/* ─── Section Headers ─── */
.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 22px;
}
.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--primary); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__lang {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav__lang:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 0;
}

@media (max-width: 768px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  overflow: hidden;
  background: var(--bg-warm);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -100px; right: -100px;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: var(--accent);
  bottom: -150px; left: -100px;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: var(--gold);
  top: 40%; left: 30%;
}
.hero__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title--accent {
  color: var(--primary);
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 40px;
}
.hero__stat { text-align: left; }
.hero__stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hero__stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__phone {
  position: relative;
  z-index: 2;
}
.hero__phone-frame {
  width: 280px;
  height: 560px;
  background: #1A1A2E;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(0,0,0,0.1);
}
.hero__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #1A1A2E;
  position: relative;
}
.hero__phone-screen .hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__phone-screen .hero-slide.active { opacity: 1; }

/* Floating bubbles */
.hero__bubble {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
  overflow: hidden;
}
.hero__bubble img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.hero__bubble--1 { top: 5%; left: -5%; animation-delay: 0s; }
.hero__bubble--2 { top: 15%; right: -10%; animation-delay: 0.8s; }
.hero__bubble--3 { bottom: 25%; left: -15%; animation-delay: 1.6s; }
.hero__bubble--4 { bottom: 5%; right: -5%; animation-delay: 2.4s; }
.hero__bubble--5 { top: 50%; left: -20%; animation-delay: 3.2s; }

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

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { margin-top: 40px; }
  .hero__phone-frame { width: 240px; height: 480px; }
  .hero__bubble { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 16px 40px; }
  .hero__stats { gap: 24px; }
  .hero__stat-number { font-size: 28px; }
  .hero__ctas { flex-direction: column; align-items: center; }
}

/* ═══════════════ UNIVERSES ═══════════════ */
.universes {
  padding: 100px 0;
  background: var(--bg);
}
.universes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.universe-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  overflow: hidden;
}
.universe-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--universe-color);
  border-radius: 0 4px 4px 0;
}
.universe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--universe-color);
}
.universe-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--universe-color) 10%, white);
}
.universe-card__info { flex: 1; min-width: 0; }
.universe-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.universe-card__count {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .universes__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .universes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .universes__grid { grid-template-columns: 1fr; }
}

/* ═══════════════ PREVIEW ═══════════════ */
.preview {
  padding: 100px 0;
  background: var(--bg-warm);
}
.preview__carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  scrollbar-width: none;
}
.preview__carousel::-webkit-scrollbar { display: none; }
.preview-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.preview-card__img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--preview-bg, #505050);
}
.preview-card__body { padding: 20px; }
.preview-card__universe {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.preview-card__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}
.preview-card__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.preview__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.preview__dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .preview-card { flex: 0 0 85vw; }
}

/* ═══════════════ FEATURES ═══════════════ */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: 16px;
}
.feature-card__icon--success {
  background: rgba(45, 198, 83, 0.1);
  color: var(--success);
}
.feature-card__icon--gold {
  background: rgba(247, 201, 72, 0.15);
  color: var(--gold);
}
.feature-card__icon--accent {
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent);
}
.feature-card__icon svg {
  width: 28px;
  height: 28px;
}
.feature-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.feature-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ═══════════════ GAMES ═══════════════ */
.games {
  padding: 100px 0;
  background: var(--bg-warm);
}
.games__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.game-type {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.game-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.game-type__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary);
}
.game-type__icon svg {
  width: 28px;
  height: 28px;
}
.game-type__name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.game-type__count {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

@media (max-width: 768px) {
  .games__showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .game-type { padding: 16px; }
}
@media (max-width: 400px) {
  .games__showcase { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════ DID YOU KNOW ═══════════════ */
.didyouknow {
  padding: 100px 0;
  background: var(--bg);
}
.dyk__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dyk-card {
  background: #FFFDE7;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transform: rotate(var(--rot, -0.5deg));
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.dyk-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.dyk-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.dyk-card__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
}
.dyk-card__source {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .dyk__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ═══════════════ SAFETY ═══════════════ */
.safety {
  padding: 100px 0;
  background: var(--bg-warm);
}
.safety__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.safety__text .section-header { text-align: left; margin-bottom: 32px; }
.safety__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.safety__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.safety__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.safety__check svg {
  width: 16px;
  height: 16px;
}
.safety__list strong {
  font-size: 16px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}
.safety__list p {
  font-size: 14px;
  color: var(--text-secondary);
}
.safety__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety__shield {
  opacity: 0.9;
  animation: float 5s ease-in-out infinite;
  color: var(--success);
}

@media (max-width: 768px) {
  .safety__layout { grid-template-columns: 1fr; }
  .safety__visual { display: none; }
}

/* ═══════════════ CTA ═══════════════ */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #C43A00 100%);
  text-align: center;
  color: white;
}
.cta__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta__desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: all var(--transition);
  color: white;
}
.store-badge:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.store-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-badge__icon svg { width: 28px; height: 28px; }
.store-badge__text { text-align: left; }
.store-badge__small { display: block; font-size: 11px; opacity: 0.8; font-weight: 600; }
.store-badge__name { font-size: 18px; font-weight: 800; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  padding: 40px 0;
  background: var(--text);
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__brand .nav__logo-icon { color: var(--primary); }
.footer__brand .nav__logo-text { color: white; }
.footer__tagline {
  font-size: 13px;
  margin-left: 8px;
  opacity: 0.6;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition);
}
.footer__links a:hover { color: white; }
.footer__copy {
  font-size: 13px;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-direction: column; gap: 12px; }
}

/* ═══════════════ LEGAL PAGES ═══════════════ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-page h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}
.legal-page .date {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 22px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--primary);
}
.legal-page h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-page p,
.legal-page li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; }
.legal-page ul li { list-style: disc; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.legal-page table th,
.legal-page table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 15px;
  text-align: left;
}
.legal-page table th {
  background: var(--bg-subtle);
  font-weight: 700;
  color: var(--text);
}
.legal-page table td {
  color: var(--text-secondary);
}
.legal-page .highlight-box {
  background: var(--bg-warm);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 20px 0;
}
.legal-page .highlight-box p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 600;
}

/* ═══════════════ ANIMATIONS ═══════════════ */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}
