/* ═══════════════════════════════════════════════════════════════════════════
   Sin Filtros — Landing Page Design System
   Matches Flutter app tokens exactly
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Fonts ──────────────────────────────────────────────────────────────── */

/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg: #0D0D0D;
  --surface: #1A1A1A;
  --surface2: #2B2B2B;
  --surface3: #3A3A3A;
  --divider: #2E2E2E;

  /* Text */
  --text: #F7F7F7;
  --soft: #E2E2E2;
  --mute: #949494;

  /* Accents */
  --accent: #FFD400;
  --accent-ink: #0D0D0D;
  --accent-alt: #00C8FF;
  --danger: #FF3D2E;

  /* Cards */
  --card-white: #F7F7F7;
  --card-black: #0F0F0F;

  /* Spacing */
  --gap: 22px;
  --gap-lg: 40px;
  --gap-xl: 80px;
  --gap-2xl: 120px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Nav height */
  --nav-h: 72px;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Typography ────────────────────────────────────────────────────────── */
.font-bebas {
  font-family: 'Bebas Neue', cursive;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', cursive;
  color: var(--text);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.text-mute { color: var(--mute); }
.text-soft { color: var(--soft); }
.text-accent { color: var(--accent); }
.text-cyan { color: var(--accent-alt); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section {
  padding: var(--gap-2xl) 0;
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--divider);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  color: var(--text);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-ink) !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 1.2px !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 212, 0, 0.3);
  color: var(--accent-ink) !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ── Hero Section ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255, 212, 0, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
}

/* Noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-tagline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero-tagline .line-cyan {
  color: var(--accent-alt);
}

.hero-tagline .line-yellow {
  color: var(--accent);
}

.hero-description {
  font-size: 16px;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-age-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.age-circle {
  width: 46px;
  height: 46px;
  border: 2px solid var(--mute);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  color: var(--mute);
  flex-shrink: 0;
}

.hero-age-badge p {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}

/* Floating cards visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 22px 20px 48px;
  width: 240px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card:hover {
  transform: scale(1.05) !important;
}

.floating-card.card-black-1 {
  background: var(--card-black);
  border: 1px solid rgba(255, 212, 0, 0.2);
  z-index: 3;
  animation: float-1 6s ease-in-out infinite;
}

.floating-card.card-white-1 {
  background: var(--card-white);
  z-index: 2;
  transform: rotate(8deg) translateX(60px) translateY(-20px);
  animation: float-2 7s ease-in-out infinite;
}

.floating-card.card-black-2 {
  background: var(--card-black);
  border: 1px solid rgba(0, 200, 255, 0.2);
  z-index: 1;
  transform: rotate(-10deg) translateX(-60px) translateY(30px);
  animation: float-3 8s ease-in-out infinite;
}

.floating-card .card-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}

.floating-card.card-black-1 .card-text,
.floating-card.card-black-2 .card-text {
  color: #fff;
}

.floating-card.card-white-1 .card-text {
  color: #000;
}

.floating-card .card-watermark {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  opacity: 0.25;
  margin-top: 14px;
}

.floating-card.card-white-1 .card-watermark {
  color: #000;
}

.floating-card.card-black-1 .card-watermark,
.floating-card.card-black-2 .card-watermark {
  color: #fff;
}

@keyframes float-1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-16px); }
}

@keyframes float-2 {
  0%, 100% { transform: rotate(8deg) translateX(60px) translateY(-20px); }
  50% { transform: rotate(8deg) translateX(60px) translateY(-38px); }
}

@keyframes float-3 {
  0%, 100% { transform: rotate(-10deg) translateX(-60px) translateY(30px); }
  50% { transform: rotate(-10deg) translateX(-60px) translateY(14px); }
}

/* ── Store Badges ──────────────────────────────────────────────────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 12px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 212, 0, 0.12);
}

.store-badge .store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.store-badge .store-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--text);
}

.store-badge .store-text {
  display: flex;
  flex-direction: column;
}

.store-badge .store-label {
  font-size: 10px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.store-badge .store-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.2px;
}

/* ── Features Section ──────────────────────────────────────────────────── */
.features {
  background: var(--bg);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--divider) 20%, var(--divider) 80%, transparent);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--surface2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.6;
}

.feature-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── How to Play Section ───────────────────────────────────────────────── */
.how-to-play {
  background: var(--surface);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.step-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 64px;
  color: var(--surface2);
  position: absolute;
  top: 20px;
  right: 28px;
  line-height: 1;
}

.step-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: var(--mute);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 40px;
  margin-bottom: 10px;
}

.step-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.step-badge.yellow {
  background: var(--accent);
  color: var(--accent-ink);
}

.step-badge.cyan {
  background: var(--accent-alt);
  color: var(--accent-ink);
}

.step-card p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.65;
}

/* Mini card inside step */
.step-mini-card {
  margin-top: 20px;
  padding: 18px 16px 36px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.step-mini-card.black {
  background: var(--card-black);
  border: 1px solid rgba(255, 212, 0, 0.2);
}

.step-mini-card.white {
  background: var(--card-white);
}

.step-mini-card .mini-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

.step-mini-card.black .mini-text { color: #fff; }
.step-mini-card.white .mini-text { color: #000; }

.step-mini-card .mini-wm {
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  opacity: 0.2;
  margin-top: 10px;
}
.step-mini-card.black .mini-wm { color: #fff; }
.step-mini-card.white .mini-wm { color: #000; }

/* Judge & Win badges */
.step-judge-badge {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 212, 0, 0.08);
  border: 2px solid rgba(255, 212, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-judge-badge .judge-emoji {
  font-size: 32px;
}

.step-judge-badge .judge-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 3px;
}

.step-judge-badge .judge-sub {
  font-size: 12px;
  color: var(--mute);
}

.step-score-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.score-chip {
  text-align: center;
}

.score-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}

.score-avatar.winner {
  background: var(--accent);
  color: var(--accent-ink);
}

.score-avatar.default {
  background: var(--surface2);
  color: var(--mute);
}

.score-pts {
  font-size: 11px;
  font-weight: 700;
}

.score-pts.winner { color: var(--accent); }
.score-pts.default { color: var(--mute); }

/* ── Card Preview Section ──────────────────────────────────────────────── */
.card-preview {
  position: relative;
  overflow: hidden;
}

.cards-carousel {
  display: flex;
  gap: 20px;
  padding: 40px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cards-carousel::-webkit-scrollbar {
  display: none;
}

.preview-card {
  flex-shrink: 0;
  width: 260px;
  min-height: 340px;
  border-radius: var(--radius-lg);
  padding: 24px 22px 52px;
  scroll-snap-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-card:hover {
  transform: scale(1.03) rotate(-1deg);
}

.preview-card.black {
  background: var(--card-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.preview-card.white {
  background: var(--card-white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.preview-card .pcard-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.preview-card.black .pcard-text { color: #fff; }
.preview-card.white .pcard-text { color: #000; }

.preview-card .pcard-wm {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  opacity: 0.2;
  margin-top: auto;
  padding-top: 16px;
}

.preview-card.black .pcard-wm { color: #fff; }
.preview-card.white .pcard-wm { color: #000; }

.preview-card .pcard-pick {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 10px;
  width: fit-content;
}

/* Gradient fades on carousel edges */
.carousel-wrapper {
  position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

/* ── Decks Section ─────────────────────────────────────────────────────── */
.decks {
  background: var(--surface);
}

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

.deck-card {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.deck-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.deck-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.deck-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.deck-cards-count {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
}

.deck-desc {
  font-size: 13px;
  color: var(--mute);
  margin-top: 10px;
  line-height: 1.5;
}

/* ── CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 212, 0, 0.07) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--soft);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-age-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.cta-age-note .age-circle {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.cta-age-note p {
  font-size: 12px;
  color: var(--mute);
  text-align: left;
  max-width: 300px;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  padding: 48px 0 32px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--text);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--mute);
  transition: color 0.2s;
}

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

.footer-legal {
  font-size: 11px;
  color: var(--mute);
  text-align: center;
  max-width: 500px;
  line-height: 1.6;
}

.footer-legal a {
  color: var(--accent-alt);
  text-decoration: underline;
}

/* ── Scroll Animations ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Glow Effects ──────────────────────────────────────────────────────── */
.glow-accent {
  text-shadow: 0 0 40px rgba(255, 212, 0, 0.2);
}

.glow-cyan {
  text-shadow: 0 0 40px rgba(0, 200, 255, 0.2);
}

/* ── Section Headers ───────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
}

.section-subtitle {
  font-size: 15px;
  color: var(--mute);
  max-width: 480px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* ── Mobile Menu ───────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-age-badge {
    justify-content: center;
  }

  .hero-visual {
    min-height: 380px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --gap: 18px;
    --gap-2xl: 80px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-tagline {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero-visual {
    min-height: 320px;
  }

  .floating-card {
    width: 180px;
    padding: 16px 14px 32px;
  }

  .floating-card .card-text {
    font-size: 12px;
  }

  .features-grid,
  .decks-grid {
    grid-template-columns: 1fr;
  }

  .store-badge {
    padding: 10px 18px;
    width: 100%;
    justify-content: center;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

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

  .section {
    padding: var(--gap-xl) 0;
  }

  .step-card {
    padding: 28px 24px;
  }

  .step-card h3 {
    font-size: 32px;
  }

  .step-number {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 38px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 36px;
  }

  .floating-card {
    width: 150px;
    padding: 14px 12px 24px;
  }
}

/* ── Privacy Policy Custom Styles ────────────────────────────────────────── */
.legal-section {
  padding: calc(var(--nav-h) + var(--gap-xl)) 0 var(--gap-2xl);
  position: relative;
}

.legal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--divider) 20%, var(--divider) 80%, transparent);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.legal-title {
  font-size: clamp(48px, 6vw, 64px);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.legal-date {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: var(--gap-lg);
}

.legal-body h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  color: var(--accent);
  margin: var(--gap-lg) 0 16px;
  letter-spacing: 1px;
}

.legal-body p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-body ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style-type: disc;
}

.legal-body li {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--accent-alt);
  text-decoration: underline;
}

.legal-body a:hover {
  color: var(--text);
}

