/* ========================================
   OrBrain Landing Page — Pastel Candy Style
   Matches UI concept: frosted glass, glossy orbs, 3D buttons
   ======================================== */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  /* ── Palette P (from JSX mockups) ── */
  --red-l:#FF6B6B; --red-b:#E8272C; --red-d:#B01E22;
  --orange-l:#FFAB4F; --orange-b:#FF8514; --orange-d:#CC6600;
  --yellow-l:#FFE566; --yellow-b:#FFCC02; --yellow-d:#D4A800;
  --green-l:#8EE85C; --green-b:#5CBF2A; --green-d:#3D8F1A;
  --blue-l:#6BB5FF; --blue-b:#2B7FE0; --blue-d:#1A5DAA;
  --violet-l:#C47EFF; --violet-b:#9333CF; --violet-d:#6B20A0;
  --pink-l:#FFA0C8; --pink-b:#E8508A; --pink-d:#C03070;
  --teal-l:#6EE8D0; --teal-b:#2BC4A0; --teal-d:#1A9070;

  /* ── Category colors ── */
  --cat-memory: var(--pink-b);
  --cat-memory-l: var(--pink-l);
  --cat-memory-d: var(--pink-d);
  --cat-logic: var(--green-b);
  --cat-logic-l: var(--green-l);
  --cat-logic-d: var(--green-d);
  --cat-vision: var(--violet-b);
  --cat-vision-l: var(--violet-l);
  --cat-vision-d: var(--violet-d);
  --cat-spatial: var(--teal-b);
  --cat-spatial-l: var(--teal-l);
  --cat-spatial-d: var(--teal-d);
  --cat-speed: var(--orange-b);
  --cat-speed-l: var(--orange-l);
  --cat-speed-d: var(--orange-d);

  /* ── Background gradient (from JSX) ── */
  --bg-gradient: linear-gradient(160deg, #F2D0E8 0%, #DCC0F4 25%, #BAD8F2 50%, #F4ECCE 75%, #FAD0D8 100%);
  --text-dark: #2D1260;
  --text-mid: #5A3D8A;
  --text-dim: #8B6FAF;

  /* ── Frost card ── */
  --frost-bg: rgba(255,255,255,0.68);
  --frost-border: rgba(255,255,255,0.8);
  --frost-shadow: 0 8px 32px rgba(80,40,130,0.09), inset 0 1px 0 rgba(255,255,255,0.9);

  /* ── Motion ── */
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Radii ── */
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 26px;

  /* ── Fonts ── */
  --font-display: 'Lilita One', 'Fredoka', cursive;
  --font-body: 'Fredoka', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* iOS Safari fix: fixed bg causes paint issues */
@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

/* ========================================
   FOCUS — keyboard accessibility
   ======================================== */
:focus { outline: none; }

:focus-visible {
  outline: 3px solid var(--violet-b);
  outline-offset: 3px;
  border-radius: 6px;
}

.btn:focus-visible,
.nav__cta:focus-visible,
.library__filter:focus-visible {
  outline-offset: 4px;
}

.bfq-slider:focus-visible {
  outline: none;
}
.bfq-slider:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(147, 51, 207, 0.35), 0 4px 10px rgba(107,32,160,0.35);
}
.bfq-slider:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(147, 51, 207, 0.35), 0 4px 10px rgba(107,32,160,0.35);
}

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--violet-b);
  color: white;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  transition: top 0.2s;
  box-shadow: 0 6px 20px rgba(107, 32, 160, 0.4);
}

.skip-link:focus {
  top: 16px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION TITLES --- */
.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text-dark);
  text-shadow: 0 2px 0 rgba(0,0,0,0.04);
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 48px;
}

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

@keyframes shimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(350%); }
}

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(147,51,207,0.2); }
  50% { box-shadow: 0 0 40px rgba(147,51,207,0.4); }
}

@keyframes float-up {
  0% { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(-100vh); opacity: 0; }
}


/* ========================================
   3D BUTTONS — Candy Crush style
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 400;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.18s var(--bounce);
}

.btn--primary {
  background: linear-gradient(145deg, var(--violet-l) 0%, var(--violet-b) 55%, var(--violet-d) 100%);
  color: white;
  box-shadow:
    0 6px 0 var(--violet-d),
    0 10px 20px rgba(107, 32, 160, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Glossy highlight on top */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.03));
  border-radius: var(--radius-md) var(--radius-md) 80px 80px;
  pointer-events: none;
}

/* Shimmer sweep */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 35%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 0 var(--violet-d),
    0 14px 28px rgba(107, 32, 160, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn--primary:active {
  transform: translateY(4px) scale(0.97);
  box-shadow:
    0 2px 0 var(--violet-d),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn--ghost {
  background: var(--frost-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-dark);
  border: 1px solid var(--frost-border);
  box-shadow: var(--frost-shadow);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(80,40,130,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

/* ========================================
   NAV — Frosted
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 16px rgba(80,40,130,0.06);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 24px rgba(80,40,130,0.1);
}

.nav__container {
  max-width: 1120px;
  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: 10px;
}

.nav__logo-icon { font-size: 1.6rem; }

.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(107, 32, 160, 0.18));
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--violet-b);
  text-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav__links { display: flex; gap: 28px; }

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav__link:hover { color: var(--violet-b); }

.nav__cta {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 8px 22px;
  background: linear-gradient(145deg, var(--violet-l), var(--violet-b), var(--violet-d));
  color: white;
  border-radius: var(--radius-sm);
  transition: all 0.18s var(--bounce);
  box-shadow: 0 4px 0 var(--violet-d), 0 6px 16px rgba(107,32,160,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.nav__cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  border-radius: var(--radius-sm) var(--radius-sm) 60px 60px;
  pointer-events: none;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--violet-d), 0 8px 20px rgba(107,32,160,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}

.nav__cta--mobile { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   BOKEH PARTICLES (global)
   ======================================== */
.bokeh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bokeh__dot {
  position: absolute;
  bottom: -20px;
  left: var(--x, 50%);
  width: var(--size, 12px);
  height: var(--size, 12px);
  border-radius: 50%;
  background: var(--color, #C47EFF);
  opacity: 0;
  animation: float-up var(--dur, 18s) ease-in var(--delay, 0s) infinite;
}

/* ========================================
   HERO — Split layout
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero__text {
  flex: 1;
  min-width: 0;
}

.mascot {
  margin-bottom: 20px;
  animation: bob 3s ease-in-out infinite;
}

.mascot--animated {
  width: 200px;
  height: 200px;
  animation: none; /* let the iframe handle its own animation */
  position: relative;
  margin-left: -20px; /* compensate iframe internal padding */
}

.mascot__iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  pointer-events: none; /* purely decorative — user can't interact */
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-shadow: 0 2px 0 rgba(0,0,0,0.04);
}

.hero__title--accent {
  background: linear-gradient(135deg, var(--violet-b), var(--pink-b), var(--orange-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 14px;
  line-height: 1.7;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Phone Mockup ── */
.hero__phone {
  flex-shrink: 0;
  animation: bob 4s ease-in-out infinite;
  animation-delay: -1s;
}

.phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: #1A1030;
  padding: 12px;
  box-shadow:
    0 8px 0 #0D0820,
    0 20px 60px rgba(45,18,96,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}

.phone-frame__screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(160deg, #F2D0E8, #DCC0F4, #BAD8F2, #F4ECCE);
  position: relative;
}

.phone-frame__screenshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
}

/* ========================================
   SOCIAL PROOF (stats bar)
   ======================================== */
.proof {
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}

.proof__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--frost-bg);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--frost-shadow);
  transition: transform 0.3s var(--bounce);
}

.proof__item:hover {
  transform: translateY(-4px);
}

.proof__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  display: block;
}

.proof__label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ========================================
   CATEGORIES — 3D pressable cards (like JSX CatCard)
   ======================================== */
.categories {
  padding: 100px 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  border: none;
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.18s var(--bounce);
}

/* Per-category 3D gradient + shadow */
.category-card[data-category="memory"] {
  background: linear-gradient(145deg, var(--pink-l), var(--pink-b) 55%, var(--pink-d));
  box-shadow: 0 6px 0 var(--pink-d), 0 10px 20px rgba(192, 48, 112, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  color: white;
}
.category-card[data-category="logic"] {
  background: linear-gradient(145deg, var(--green-l), var(--green-b) 55%, var(--green-d));
  box-shadow: 0 6px 0 var(--green-d), 0 10px 20px rgba(61, 143, 26, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  color: white;
}
.category-card[data-category="vision"] {
  background: linear-gradient(145deg, var(--violet-l), var(--violet-b) 55%, var(--violet-d));
  box-shadow: 0 6px 0 var(--violet-d), 0 10px 20px rgba(107, 32, 160, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  color: white;
}
.category-card[data-category="spatial"] {
  background: linear-gradient(145deg, var(--teal-l), var(--teal-b) 55%, var(--teal-d));
  box-shadow: 0 6px 0 var(--teal-d), 0 10px 20px rgba(26, 144, 112, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  color: white;
}
.category-card[data-category="speed"] {
  background: linear-gradient(145deg, var(--orange-l), var(--orange-b) 55%, var(--orange-d));
  box-shadow: 0 6px 0 var(--orange-d), 0 10px 20px rgba(204, 102, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  color: white;
}

/* Glossy top highlight */
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.03));
  border-radius: var(--radius-lg) var(--radius-lg) 80px 80px;
  pointer-events: none;
}

/* Shimmer sweep */
.category-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 35%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  animation: shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.category-card[data-category="logic"]::after { animation-delay: 0.5s; }
.category-card[data-category="vision"]::after { animation-delay: 1s; }
.category-card[data-category="spatial"]::after { animation-delay: 1.5s; }
.category-card[data-category="speed"]::after { animation-delay: 2s; }

.category-card:hover {
  transform: translateY(-4px) scale(1.03);
}

.category-card:active {
  transform: translateY(4px) scale(0.97);
}

.category-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.1);
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.category-card__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin-bottom: 10px;
  font-weight: 400;
}

.category-card__count {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.22);
  color: white;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ========================================
   FEATURES — Frost cards
   ======================================== */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--frost-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  box-shadow: var(--frost-shadow);
  transition: all 0.3s var(--bounce);
  position: relative;
  overflow: hidden;
}


.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(80,40,130,0.14), inset 0 1px 0 rgba(255,255,255,0.95);
}

.feature-card__orb {
  margin-bottom: 14px;
}

.feature-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.feature-card__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 400;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how {
  padding: 100px 0;
}

.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

.how__step {
  text-align: center;
  max-width: 260px;
}

.how__step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.how__step-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 400;
}

.how__step-connector {
  display: flex;
  align-items: center;
  padding-top: 18px;
}

.how__step-orb {
  margin: 0 auto 18px;
  transition: transform 0.3s var(--bounce);
}

.how__step:hover .how__step-orb {
  transform: scale(1.12);
  animation: bob 1.5s ease-in-out infinite;
}

/* ========================================
   ACCROCHE — Punchline card
   ======================================== */
.accroche {
  padding: 60px 0 80px;
}

.accroche__card {
  background: var(--frost-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--frost-shadow);
  position: relative;
  overflow: hidden;
}


.accroche__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.accroche__quote {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.accroche__quote strong {
  color: var(--violet-b);
}

/* ========================================
   DOWNLOAD — Big violet Frost card
   ======================================== */
.download {
  padding: 100px 0;
}

.download__card {
  position: relative;
  background: linear-gradient(145deg, var(--violet-l), var(--violet-b) 55%, var(--violet-d));
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 8px 0 var(--violet-d),
    0 16px 40px rgba(107,32,160,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
  color: white;
}

/* Glossy top */
.download__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 200px 200px;
  pointer-events: none;
}


.download__mascot {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: bob 3s ease-in-out infinite;
}

.download__orb {
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  filter: blur(60px);
  top: -100px; right: -80px;
  pointer-events: none;
}

.download__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  position: relative; z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.download__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative; z-index: 1;
  font-weight: 400;
}

.download__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s var(--bounce);
  color: white;
}

.store-badge:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.store-badge small {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.store-badge strong {
  display: block;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.download__web-btn {
  position: relative; z-index: 1;
  margin-top: 8px;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}

.download__web-btn:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.5);
}

/* ========================================
   FOOTER — Frost
   ======================================== */
.footer {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand { max-width: 280px; }

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-row img {
  border-radius: 9px;
  filter: drop-shadow(0 2px 6px rgba(107, 32, 160, 0.18));
}

.footer__tagline {
  color: var(--text-mid);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.6;
  font-weight: 400;
}

.footer__links { display: flex; gap: 64px; }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.footer__col a {
  display: block;
  color: var(--text-mid);
  font-size: 0.82rem;
  margin-bottom: 8px;
  transition: color 0.2s;
  font-weight: 400;
}

.footer__col a:hover { color: var(--violet-b); }

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(147,51,207,0.08);
  color: var(--violet-b);
  transition: all 0.2s var(--bounce);
}

.footer__socials a:hover {
  background: var(--violet-b);
  color: white;
  transform: scale(1.1);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.78rem;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.5s var(--bounce);
}

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

/* ========================================
   HERO STAGGER ENTRANCE
   ======================================== */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__text > * {
  opacity: 0;
}

.hero--loaded .hero__text > *:nth-child(1) { animation: hero-enter 0.6s ease-out 0s forwards; }
.hero--loaded .hero__text > *:nth-child(2) { animation: hero-enter 0.6s ease-out 0.1s forwards; }
.hero--loaded .hero__text > *:nth-child(3) { animation: hero-enter 0.6s ease-out 0.2s forwards; }
.hero--loaded .hero__text > *:nth-child(4) { animation: hero-enter 0.6s ease-out 0.3s forwards; }
.hero--loaded .hero__text > *:nth-child(5) { animation: hero-enter 0.6s ease-out 0.4s forwards; }

.hero__phone {
  opacity: 0;
}
.hero--loaded .hero__phone {
  animation: hero-enter 0.8s ease-out 0.25s forwards;
}

/* ========================================
   HERO SOCIAL LINE
   ======================================== */
.hero__social-line {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__social-line strong {
  color: var(--violet-b);
  font-weight: 600;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.proof__testimonials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.proof__testimonial {
  background: var(--frost-bg);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
  max-width: 300px;
  box-shadow: var(--frost-shadow);
  transition: transform 0.3s var(--bounce);
}

.proof__testimonial:hover {
  transform: translateY(-4px);
}

.proof__testimonial p {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
}

.proof__testimonial span {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ========================================
   BFQ — Interactive section
   ======================================== */
.bfq-section { padding: 90px 0 80px; }

.bfq-card {
  background: var(--frost-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--frost-shadow);
  padding: 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Glossy top */
.bfq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 200px 200px;
  pointer-events: none;
}

.bfq-dial {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet-l), var(--violet-b) 55%, var(--violet-d));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 0 var(--violet-d),
    0 14px 32px rgba(107,32,160,0.3),
    inset 0 2px 0 rgba(255,255,255,0.45),
    inset 0 -8px 16px rgba(0,0,0,0.15);
  position: relative;
  margin: 0 auto;
  transition: background 0.3s ease;
  z-index: 1;
}

.bfq-dial::before {
  content: '';
  position: absolute;
  top: 12px; left: 24px; right: 24px;
  height: 38%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.bfq-dial__inner {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.bfq-dial__num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.18);
  transition: transform 0.18s var(--bounce);
}

.bfq-dial__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  margin-bottom: 8px;
  font-weight: 500;
}

.bfq-dial__tier {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  font-family: var(--font-display);
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.bfq-controls {
  grid-column: 1;
  text-align: center;
  margin-top: 4px;
}

.bfq-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 240px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8B6FAF 0%, #5CBF2A 12%, #2B7FE0 28%, #9333CF 52%, #E8508A 76%, #FF8514 100%);
  outline: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.bfq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--violet-b);
  box-shadow: 0 4px 10px rgba(107,32,160,0.35);
  cursor: pointer;
  transition: transform 0.15s var(--bounce);
}

.bfq-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.bfq-slider::-webkit-slider-thumb:active { transform: scale(1.05); }

.bfq-slider::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--violet-b);
  box-shadow: 0 4px 10px rgba(107,32,160,0.35);
  cursor: pointer;
}

.bfq-hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 8px;
  font-weight: 500;
}

.bfq-tiers {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.bfq-tier {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.3s var(--bounce);
}

.bfq-tier.is-active {
  background: rgba(255,255,255,0.85);
  border-color: var(--frost-border);
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(80,40,130,0.1);
}

.bfq-tier__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.35;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.bfq-tier.is-active .bfq-tier__dot {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}

.bfq-tier__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bfq-tier__emoji {
  font-size: 0.9rem;
}

.bfq-tier__desc {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 2px;
  line-height: 1.4;
}

.bfq-tier__range {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 700;
  white-space: nowrap;
}

.bfq-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Pop animation when value changes */
.bfq-dial.pop .bfq-dial__num { transform: scale(1.08); }

/* ========================================
   LIBRARY — 23 games + category filter
   ======================================== */
.library { padding: 90px 0; }

.library__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.library__filter {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.92rem;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--frost-bg);
  border: 1px solid var(--frost-border);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s var(--bounce);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--frost-shadow);
}

.library__filter:hover {
  transform: translateY(-2px);
  color: var(--violet-b);
}

.library__filter.is-active {
  background: linear-gradient(145deg, var(--violet-l), var(--violet-b) 55%, var(--violet-d));
  color: white;
  border-color: var(--violet-d);
  box-shadow: 0 4px 0 var(--violet-d), 0 6px 16px rgba(107,32,160,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.library__count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: inherit;
  font-weight: 700;
}

.library__filter.is-active .library__count {
  background: rgba(255,255,255,0.22);
  color: white;
}

.library__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.game-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--frost-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-md);
  box-shadow: var(--frost-shadow);
  transition: all 0.25s var(--bounce);
  position: relative;
  overflow: hidden;
}

.game-tile::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}

.game-tile[data-cat="memory"]::before { background: linear-gradient(180deg, var(--pink-l), var(--pink-d)); }
.game-tile[data-cat="logic"]::before { background: linear-gradient(180deg, var(--green-l), var(--green-d)); }
.game-tile[data-cat="vision"]::before { background: linear-gradient(180deg, var(--violet-l), var(--violet-d)); }
.game-tile[data-cat="spatial"]::before { background: linear-gradient(180deg, var(--teal-l), var(--teal-d)); }
.game-tile[data-cat="speed"]::before { background: linear-gradient(180deg, var(--orange-l), var(--orange-d)); }

.game-tile:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(80,40,130,0.14), inset 0 1px 0 rgba(255,255,255,0.95);
}

.game-tile__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 2px 6px rgba(80,40,130,0.08);
}

.game-tile__name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.game-tile__cat {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.game-tile[data-cat="memory"] .game-tile__cat { color: var(--pink-d); }
.game-tile[data-cat="logic"] .game-tile__cat { color: var(--green-d); }
.game-tile[data-cat="vision"] .game-tile__cat { color: var(--violet-d); }
.game-tile[data-cat="spatial"] .game-tile__cat { color: var(--teal-d); }
.game-tile[data-cat="speed"] .game-tile__cat { color: var(--orange-d); }

.game-tile.is-hidden { display: none; }

.game-tile.is-entering {
  animation: tile-enter 0.35s var(--bounce);
}

@keyframes tile-enter {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.library__footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.library__footnote strong { color: var(--violet-b); }

/* ========================================
   FAQ — Accordion
   ======================================== */
.faq { padding: 80px 0; }

.container--narrow {
  max-width: 760px;
}

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

.faq__item {
  background: var(--frost-bg);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--frost-shadow);
  overflow: hidden;
  transition: all 0.3s var(--bounce);
}

.faq__item.is-open {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 14px 32px rgba(80,40,130,0.12), inset 0 1px 0 rgba(255,255,255,0.95);
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.faq__q:hover { color: var(--violet-b); }

.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(147,51,207,0.1);
  color: var(--violet-b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s var(--bounce);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--violet-b);
  color: white;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__a-inner {
  padding: 0 24px 22px;
}

.faq__a-inner p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}

.faq__a-inner p strong { color: var(--text-dark); }
.faq__a-inner p em { color: var(--text-dim); font-style: italic; }
.faq__a-inner p a { color: var(--violet-b); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq__a-inner p a:hover { color: var(--violet-d); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero__inner { flex-direction: column; text-align: center; gap: 40px; }
  .hero__text { align-items: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__title { font-size: 2.6rem; }
  .phone-frame { width: 240px; height: 480px; }
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { flex-direction: column; align-items: center; }
  .how__step-connector { transform: rotate(90deg); margin: -8px 0; }
  .footer__top { flex-direction: column; }

  /* BFQ: stack dial above tiers */
  .bfq-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  .bfq-dial { width: 200px; height: 200px; }
  .bfq-dial__num { font-size: 3rem; }
  .bfq-tiers { grid-column: 1; grid-row: auto; }
  .bfq-controls { grid-column: 1; }

  /* Library: 3 columns */
  .library__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 840px) {
  .nav__links, .nav__cta--desktop { display: none; }
  .nav__cta--mobile { display: none; }
  .nav__burger { display: flex; }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.7);
  }

  .nav.open .nav__cta--mobile {
    display: block;
    text-align: center;
    margin-top: 8px;
  }

  .nav.open .nav__burger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav.open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__burger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 640px) {

  .hero { padding: 90px 20px 40px; min-height: auto; }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__phone { transform: scale(0.75); transform-origin: top center; }
  .phone-frame { width: 220px; height: 440px; }
  .mascot--animated { width: 160px; height: 160px; margin-left: -16px; }
  .hero__social-line { text-align: center; }
  .proof__testimonials { flex-direction: column; align-items: center; }
  .proof__testimonial { max-width: 100%; }

  .proof__grid { gap: 12px; }
  .proof__item { padding: 12px 16px; }
  .proof__number { font-size: 1.3rem; }

  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 0.88rem; margin-bottom: 32px; }

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

  /* BFQ mobile */
  .bfq-section { padding: 70px 0 60px; }
  .bfq-card { padding: 28px 18px; }
  .bfq-dial { width: 180px; height: 180px; }
  .bfq-dial__num { font-size: 2.6rem; }
  .bfq-tier { padding: 10px 12px; gap: 10px; grid-template-columns: 12px 1fr auto; }
  .bfq-tier__name { font-size: 0.9rem; }
  .bfq-tier__desc { font-size: 0.72rem; }
  .bfq-tier__range { font-size: 0.72rem; }
  .bfq-tier.is-active { transform: translateX(3px); }

  /* Library mobile: 2 cols */
  .library { padding: 70px 0; }
  .library__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-tile { padding: 12px 12px; gap: 10px; }
  .game-tile__icon { width: 38px; height: 38px; font-size: 1.3rem; }
  .game-tile__name { font-size: 0.85rem; }
  .game-tile__cat { font-size: 0.65rem; }
  .library__filter { padding: 7px 14px; font-size: 0.85rem; }

  /* FAQ mobile */
  .faq { padding: 60px 0; }
  .faq__q { padding: 16px 18px; font-size: 0.95rem; }
  .faq__a-inner { padding: 0 18px 18px; }
  .faq__a-inner p { font-size: 0.88rem; }
  .faq__icon { width: 28px; height: 28px; font-size: 1.15rem; margin-left: 10px; }

  .accroche__card { padding: 32px 20px; }
  .accroche__quote { font-size: 1.05rem; }

  .download__card { padding: 48px 20px; }
  .download__title { font-size: 1.7rem; }

  .footer__links { flex-direction: column; gap: 32px; }
}

/* ========================================
   REDUCED MOTION — Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__text > *, .hero__phone,
  .reveal, .game-tile, .bfq-card, .faq__item {
    opacity: 1 !important;
    transform: none !important;
  }
  .bokeh { display: none; }
  .mascot--animated .mascot__iframe {
    filter: grayscale(0.2);
    opacity: 0.92;
  }
}
