@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

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

:root {
  --navy: #1a2744;
  --navy-light: #2d3f5e;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --cream: #f7f5f0;
  --white: #ffffff;
  --text: #2d3142;
  --text-muted: #6b7280;
  --border: #e5e2db;
  --shadow: 0 8px 32px rgba(26, 39, 68, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-anim {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-anim__ring {
  position: absolute;
  border: 2px solid rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  animation: ringPulse 12s ease-in-out infinite;
}

.bg-anim__ring:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -150px; animation-delay: 0s; }
.bg-anim__ring:nth-child(2) { width: 400px; height: 400px; bottom: 10%; left: -100px; animation-delay: -4s; }
.bg-anim__ring:nth-child(3) { width: 300px; height: 300px; top: 40%; right: 5%; animation-delay: -8s; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.08) rotate(6deg); opacity: 0.7; }
}

.bg-anim__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.25;
  animation: dotFloat 18s linear infinite;
}

.bg-anim__dot:nth-child(4) { top: 15%; left: 10%; animation-delay: 0s; }
.bg-anim__dot:nth-child(5) { top: 60%; left: 85%; animation-delay: -3s; }
.bg-anim__dot:nth-child(6) { top: 80%; left: 30%; animation-delay: -6s; }
.bg-anim__dot:nth-child(7) { top: 25%; left: 70%; animation-delay: -9s; }
.bg-anim__dot:nth-child(8) { top: 45%; left: 50%; animation-delay: -12s; }

@keyframes dotFloat {
  0% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, 20px); }
  75% { transform: translate(40px, 30px); }
  100% { transform: translate(0, 0); }
}

.bg-anim__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(247, 245, 240, 0.5));
  animation: waveShift 20s linear infinite;
}

.bg-anim__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: orbDrift 22s ease-in-out infinite;
}

.bg-anim__orb:nth-child(9) {
  width: 280px;
  height: 280px;
  background: var(--gold-soft);
  top: 20%;
  left: -80px;
  animation-delay: 0s;
}

.bg-anim__orb:nth-child(10) {
  width: 220px;
  height: 220px;
  background: #c8d8e8;
  bottom: 25%;
  right: -60px;
  animation-delay: -7s;
}

.bg-anim__orb:nth-child(11) {
  width: 180px;
  height: 180px;
  background: var(--gold);
  top: 55%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

@keyframes waveShift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.logo img { width: 36px; height: 36px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
}

.main-nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }

.main-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--text);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--cream);
  color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 72px 0 56px;
  text-align: center;
  overflow: hidden;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero__title span { color: var(--gold); }

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__cta {
  animation: fadeUp 0.8s ease 0.3s both;
}

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

.play-badge {
  display: inline-block;
  transition: transform var(--transition), filter var(--transition);
}

.play-badge:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.play-badge img { height: 52px; width: auto; }

/* ===== GAME OVERVIEW (top description) ===== */
.game-overview {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}

.game-overview__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.game-overview__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.game-overview__text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
}

.game-overview__text p { margin-bottom: 14px; }
.game-overview__text p:last-child { margin-bottom: 0; font-weight: 500; color: var(--navy); }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section__head {
  text-align: center;
  margin-bottom: 40px;
}

.section__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section--dark .section__title { color: var(--white); }
.section--dark .section__tag { color: var(--gold-soft); }

.section__desc {
  margin-top: 12px;
  color: var(--text-muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section__desc { color: rgba(255,255,255,0.7); }

/* ===== SPLIT BLOCK ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

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

.split__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: gentleFloat 6s ease-in-out infinite;
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 560px);
  max-width: min(100%, 320px);
  width: 100%;
  margin: 0 auto;
}

.split__visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(26, 39, 68, 0.14);
}

.split__content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.split__content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CAROUSEL ===== */
.carousel-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--border);
}

.carousel {
  display: flex;
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  min-height: auto;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 620px);
  background: transparent;
}

.carousel__slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(26, 39, 68, 0.12);
}

.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__btn:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel__dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== TIMELINE ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--border), var(--gold));
  z-index: 0;
}

.timeline__item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 16px 8px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.timeline__item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.timeline__num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}

.timeline__item h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline__item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== QUIZ TEASER ===== */
.quiz-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quiz-teaser::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  animation: ringPulse 10s ease-in-out infinite;
}

.quiz-teaser h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.quiz-teaser p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.quiz-teaser__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  max-height: min(58vh, 420px);
  max-width: min(100%, 240px);
  width: 100%;
  margin: 0 auto;
}

.quiz-teaser__visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.stat-item__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== CTA BAND ===== */
.cta-band {
  text-align: center;
  padding: 56px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 39, 68, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: var(--gold-soft);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== SUPPORT BOX ===== */
.support-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #eef6f4 0%, #f0f4f8 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.support-box h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.support-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ===== PAGE CONTENT (legal/inner) ===== */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 48px 0 64px;
  max-width: 780px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 32px 0 12px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p,
.page-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content ul li { margin-bottom: 6px; }

.page-cta {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
}

.footer-bottom a:hover { color: var(--white); }

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(26, 39, 68, 0.12);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 240px;
}

.cookie-banner p a {
  color: var(--navy);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .split,
  .quiz-teaser { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .support-box { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav a { width: 100%; text-align: center; padding: 12px; }

  .feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .carousel-wrap { max-width: min(100%, 320px); }
  .carousel__slide { aspect-ratio: 9 / 16; max-height: min(72vh, 560px); padding: 20px 16px; }
  .split__visual { padding: 20px 16px; }
  .split__visual { max-width: min(100%, 280px); max-height: min(68vh, 500px); padding: 16px; }
  .quiz-teaser__visual { max-width: min(100%, 220px); max-height: min(52vh, 380px); }
  .quiz-teaser { padding: 32px 24px; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .bg-anim__ring:nth-child(1) { width: 300px; height: 300px; top: -100px; right: -80px; }
  .bg-anim__orb { display: none; }
}
