/* ============================================================
   theme-v2.css — Direction B v2 "Passion Pop équilibrée"
   Design tokens, utilitaires, composants atomiques
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Neutrals */
  --bg: #fdf6e8;
  --bg-alt: #f4ead0;
  --paper: #fff9e9;
  --cream: #f8e8a8;
  --ink: #1a1208;
  --ink-soft: #3d2f1a;
  --ink-muted: #6b5a42;
  --line: rgba(26, 18, 8, 0.15);

  /* Brand */
  --red: #e8242c;
  --red-dark: #b01820;
  --blue: #1b5aa8;
  --yellow: #ffc83d;
  --green: #10a36f;
  --purple: #6c3ab0;

  /* Fonts */
  --font-display: 'Bungee', Impact, sans-serif;
  --font-shout: 'Bangers', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Shadows (no blur — full ink drop) */
  --shadow-pop-xs: 2px 2px 0 var(--ink);
  --shadow-pop-sm: 3px 3px 0 var(--ink);
  --shadow-pop-md: 4px 4px 0 var(--ink);
  --shadow-pop-lg: 6px 6px 0 var(--ink);
  --shadow-pop-xl: 8px 8px 0 var(--ink);
  --shadow-pop-red: 6px 6px 0 var(--red);
  --shadow-pop-yellow: 6px 6px 0 var(--yellow);

  /* Borders */
  --border-thin: 2px solid var(--ink);
  --border-thick: 3px solid var(--ink);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: clamp(15px, 1.2vw, 17px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.v2-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.v2-container--narrow { max-width: 860px; }
.v2-container--wide   { max-width: 1180px; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */

/* Hero H1 — Bungee */
.v2-h1-hero {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 78px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

/* Section H2 pop — Bungee */
.v2-h2-pop {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

/* Section H2 calme — Inter */
.v2-h2-calm {
  font-family: var(--font-body);
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0;
}

/* H3 pop — Bungee */
.v2-h3-pop {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: 0;
}

/* H3 calme — Inter */
.v2-h3-calm {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}

/* Body text */
.v2-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
}
.v2-body strong { color: var(--ink); font-weight: 700; }

/* Small / muted */
.v2-small {
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--ink-muted);
  font-weight: 600;
}

/* Hand-written accent — Caveat */
.v2-hand {
  font-family: var(--font-hand);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--red-dark);
}

/* ── SECTION KICKER ────────────────────────────────────────── */
.v2-kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-sm);
  font-family: var(--font-shout);
  font-size: 15px;
  letter-spacing: 0.12em;
  transform: rotate(-1deg);
  margin-bottom: 20px;
}
.v2-kicker--blue   { background: var(--blue); }
.v2-kicker--yellow { background: var(--yellow); color: var(--ink); }
.v2-kicker--green  { background: var(--green); }
.v2-kicker--purple { background: var(--purple); }
.v2-kicker--ink    { background: var(--ink); color: var(--yellow); }

/* ── HIGHLIGHT INLINE ──────────────────────────────────────── */
.v2-highlight {
  display: inline-block;
  padding: 0 10px;
  border: var(--border-thick);
  box-shadow: var(--shadow-pop-md);
  transform: rotate(-2deg);
}
.v2-highlight--red    { background: var(--red); color: #fff; }
.v2-highlight--yellow { background: var(--yellow); color: var(--ink); }
.v2-highlight--blue   { background: var(--blue); color: #fff; }
.v2-highlight--green  { background: var(--green); color: #fff; }
.v2-highlight--purple { background: var(--purple); color: #fff; }

/* ── PANEL (carte avec bordure + ombre plate) ──────────────── */
.v2-panel {
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-lg);
  position: relative;
}
.v2-panel--sm  { box-shadow: var(--shadow-pop-sm); }
.v2-panel--md  { box-shadow: var(--shadow-pop-md); }
.v2-panel--xl  { box-shadow: var(--shadow-pop-xl); }
.v2-panel--red { box-shadow: var(--shadow-pop-red); }
.v2-panel--yellow { box-shadow: var(--shadow-pop-yellow); }
.v2-panel--paper  { background: var(--paper); }
.v2-panel--bg     { background: var(--bg); }
.v2-panel--ink    { background: var(--ink); color: #fff; }
.v2-panel--yellow-bg { background: var(--yellow); }
.v2-panel--cream  { background: var(--cream); }

/* ── BUTTONS ───────────────────────────────────────────────── */

/* Pop button — primary red */
.v2-btn-pop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 26px;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-shout);
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out;
  will-change: transform;
  white-space: nowrap;
}
.v2-btn-pop:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.v2-btn-pop:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
  transition-duration: 80ms;
}

/* Secondary yellow */
.v2-btn-pop--yellow {
  background: var(--yellow);
  color: var(--ink);
}

/* Outline / ghost */
.v2-btn-pop--outline {
  background: #fff;
  color: var(--ink);
}

/* Large variant (CTA final) */
.v2-btn-pop--lg {
  padding: 22px 42px;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 2.5px;
  border-width: 4px;
  box-shadow: var(--shadow-pop-xl);
}
.v2-btn-pop--lg:hover { box-shadow: 10px 10px 0 var(--ink); }

/* Small variant (inline CTA) */
.v2-btn-pop--sm {
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-pop-sm);
}
.v2-btn-pop--sm:hover { box-shadow: 5px 5px 0 var(--ink); }

/* ── HALFTONE (BEN-DAY DOTS) ──────────────────────────────── */
.v2-halftone-red {
  background-image: radial-gradient(rgba(232, 36, 44, 0.1) 1px, transparent 1.5px);
  background-size: 6px 6px;
}
.v2-halftone-blue {
  background-image: radial-gradient(rgba(27, 90, 168, 0.1) 1px, transparent 1.5px);
  background-size: 6px 6px;
}
.v2-halftone-ink {
  background-image: radial-gradient(rgba(26, 18, 8, 0.1) 1px, transparent 1.5px);
  background-size: 6px 6px;
}
.v2-halftone-yellow {
  background-image: radial-gradient(rgba(255, 200, 61, 0.2) 1px, transparent 1.5px);
  background-size: 6px 6px;
}
.v2-halftone-white {
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1.5px);
  background-size: 6px 6px;
}

/* ── SECTION BACKGROUNDS ───────────────────────────────────── */
.v2-section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.v2-section--bg     { background: var(--bg); }
.v2-section--alt    { background: var(--bg-alt); }
.v2-section--paper  { background: var(--paper); }
.v2-section--ink    { background: var(--ink); color: #fff; }
.v2-section--red    { background: var(--red); color: #fff; }
.v2-section--border-top    { border-top: 3px solid var(--ink); }
.v2-section--border-bottom { border-bottom: 3px solid var(--ink); }

/* ── FEATURE CARD ──────────────────────────────────────────── */
.v2-feature-card {
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-md);
  padding: 24px;
  min-height: 210px;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.v2-feature-card:hover {
  transform: scale(1.02) rotate(-0.8deg);
  box-shadow: var(--shadow-pop-lg);
}
.v2-feature-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-sm);
  margin-bottom: 16px;
  transform: rotate(-4deg);
}
.v2-feature-card__icon--red    { background: var(--red); }
.v2-feature-card__icon--blue   { background: var(--blue); }
.v2-feature-card__icon--yellow { background: var(--yellow); }
.v2-feature-card__icon--green  { background: var(--green); }
.v2-feature-card__icon--purple { background: var(--purple); }
.v2-feature-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin: 0 0 10px;
}
.v2-feature-card__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}

/* ── EMOJI ICON SQUARE ─────────────────────────────────────── */
.v2-icon-sq {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-sm);
  transform: rotate(-4deg);
  flex-shrink: 0;
}

/* ── CHECKMARK LIST ────────────────────────────────────────── */
.v2-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v2-check-list li {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.v2-check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-shout);
  font-size: 14px;
  margin-top: 1px;
}

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.v2-faq-item {
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 300ms ease-out;
}
.v2-faq-item.is-open {
  background: var(--yellow);
  box-shadow: var(--shadow-pop-lg);
}
.v2-faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.v2-faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-pop-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-shout);
  font-size: 20px;
  transition: transform 200ms ease-out;
}
.v2-faq-item.is-open .v2-faq-toggle {
  transform: rotate(45deg);
}
.v2-faq-a {
  padding: 0 24px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 500;
  display: none;
}
.v2-faq-item.is-open .v2-faq-a {
  display: block;
}

/* ── GRIDS ─────────────────────────────────────────────────── */
.v2-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v2-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.v2-grid-2-asym {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.v2-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── STATS BAR (ink background) ────────────────────────────── */
.v2-stats-bar {
  background: var(--ink);
  color: #fff;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-red);
  font-family: var(--font-body);
}
.v2-stats-bar__value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--yellow);
  line-height: 1;
}
.v2-stats-bar__label {
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  opacity: 0.85;
}

/* ── PROGRESS BAR ──────────────────────────────────────────── */
.v2-progress {
  height: 14px;
  background: #fff;
  border: 2px solid var(--ink);
  position: relative;
}
.v2-progress__fill {
  position: absolute;
  inset: 0;
  background: var(--red);
  transition: width 1.2s ease-out;
}
.v2-progress--blue .v2-progress__fill { background: var(--blue); }
.v2-progress--yellow .v2-progress__fill { background: var(--yellow); }
.v2-progress--green .v2-progress__fill { background: var(--green); }

/* ── BURST (étoile 20 pointes) ─────────────────────────────── */
.v2-burst {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-shout);
  line-height: 0.95;
  flex-shrink: 0;
  clip-path: polygon(
    50% 0%, 59.8% 15.5%, 76.9% 12.9%, 80.9% 29.4%, 95.1% 38.8%,
    88.3% 54.6%, 95.1% 70.3%, 80.9% 79.8%, 76.9% 96.3%, 59.8% 93.7%,
    50% 100%, 40.2% 93.7%, 23.1% 96.3%, 19.1% 79.8%, 4.9% 70.3%,
    11.7% 54.6%, 4.9% 38.8%, 19.1% 29.4%, 23.1% 12.9%, 40.2% 15.5%
  );
}

/* ── SPEECH BUBBLE ─────────────────────────────────────────── */
.v2-speech {
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop-md);
  padding: 16px 20px;
  position: relative;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--red-dark);
}
.v2-speech::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid var(--ink);
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes v2-wobble {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}
@keyframes v2-pop-in {
  0%   { transform: scale(0) rotate(var(--rot, -12deg)); opacity: 0; }
  100% { transform: scale(1) rotate(var(--rot, -12deg)); opacity: 1; }
}
@keyframes v2-fade-up {
  0%   { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes v2-jiggle {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-12deg) scale(1.1); }
  75%      { transform: rotate(12deg) scale(1.1); }
}
@keyframes v2-wiggle {
  0%, 100% { transform: rotate(-3deg); }
  30%      { transform: rotate(-10deg) scale(1.1); }
  70%      { transform: rotate(6deg) scale(1.1); }
}

.v2-animate-wobble   { animation: v2-wobble 3s ease-in-out infinite; }
.v2-animate-spin-slow { animation: spin 14s linear infinite; }
.v2-animate-pop-in   { animation: v2-pop-in 400ms cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.v2-animate-fade-up  { animation: v2-fade-up 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }

/* CTA emoji jiggle on hover */
.v2-btn-pop:hover .v2-btn-emoji {
  animation: v2-jiggle 400ms ease-in-out;
}
/* Card emoji wiggle on hover */
.v2-feature-card:hover .v2-feature-card__icon {
  animation: v2-wiggle 500ms ease-in-out;
}

/* ── FOCUS & ACCESSIBILITY ───────────────────────────���─────── */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* Skip link */
.v2-skip-link,
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-shout);
  font-size: 14px;
  letter-spacing: 1px;
  border: 3px solid var(--yellow);
  z-index: 9999;
  text-decoration: none;
}
.v2-skip-link:focus,
.skip-link:focus {
  top: 16px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-rotate] { transform: none !important; }
  .v2-animate-wobble,
  .v2-animate-spin-slow { animation: none !important; }
}

/* No hover animations on touch devices */
@media (hover: none) {
  .v2-feature-card:hover {
    transform: none;
    box-shadow: var(--shadow-pop-md);
  }
  .v2-btn-pop:hover {
    transform: none;
    box-shadow: 5px 5px 0 var(--ink);
  }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1023px) {
  .v2-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .v2-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .v2-grid-2-asym { grid-template-columns: 1fr; gap: 32px; }
  .v2-stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 767px) {
  .v2-grid-3 { grid-template-columns: 1fr; }
  .v2-grid-2 { grid-template-columns: 1fr; }
  .v2-grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Reduce shadows on mobile */
  .v2-panel { box-shadow: var(--shadow-pop-md); }
  .v2-panel--xl { box-shadow: var(--shadow-pop-lg); }
  .v2-feature-card { box-shadow: var(--shadow-pop-sm); }

  /* Disable decorative rotations on mobile */
  .v2-feature-card,
  .v2-kicker { transform: none; }

  /* Bigger tap targets */
  .v2-btn-pop { padding: 16px 20px; min-height: 48px; }
  .v2-faq-q { padding: 16px 18px; min-height: 48px; }

  /* Footer grid */
  .v2-grid-footer { grid-template-columns: 1fr !important; }
}

/* Tiny mobile */
@media (max-width: 479px) {
  .v2-grid-4 { grid-template-columns: 1fr 1fr; }
  .v2-stats-bar { grid-template-columns: 1fr 1fr; padding: 16px 20px; }
  .v2-stats-bar__value { font-size: 24px; }
  .v2-h1-hero { font-size: clamp(32px, 9vw, 48px); }
}

/* ── UTILITY CLASSES ───────────────────────────────────────── */
.v2-text-center { text-align: center; }
.v2-text-left   { text-align: left; }
.v2-text-white  { color: #fff; }
.v2-text-red    { color: var(--red); }
.v2-text-yellow { color: var(--yellow); }
.v2-text-ink    { color: var(--ink); }
.v2-text-soft   { color: var(--ink-soft); }
.v2-text-muted  { color: var(--ink-muted); }

.v2-bg-bg      { background: var(--bg); }
.v2-bg-alt     { background: var(--bg-alt); }
.v2-bg-paper   { background: var(--paper); }
.v2-bg-ink     { background: var(--ink); }
.v2-bg-red     { background: var(--red); }
.v2-bg-yellow  { background: var(--yellow); }

.v2-border-top    { border-top: 3px solid var(--ink); }
.v2-border-bottom { border-bottom: 3px solid var(--ink); }

.v2-rotate-n1  { transform: rotate(-1deg); }
.v2-rotate-n2  { transform: rotate(-2deg); }
.v2-rotate-n5  { transform: rotate(-5deg); }
.v2-rotate-1   { transform: rotate(1deg); }
.v2-rotate-1-5 { transform: rotate(1.5deg); }
.v2-rotate-2   { transform: rotate(2deg); }
.v2-rotate-3   { transform: rotate(3deg); }

.v2-mt-0  { margin-top: 0; }
.v2-mt-12 { margin-top: 12px; }
.v2-mt-20 { margin-top: 20px; }
.v2-mt-24 { margin-top: 24px; }
.v2-mt-28 { margin-top: 28px; }
.v2-mt-32 { margin-top: 32px; }
.v2-mt-36 { margin-top: 36px; }
.v2-mt-48 { margin-top: 48px; }
.v2-mb-0  { margin-bottom: 0; }
.v2-mb-12 { margin-bottom: 12px; }
.v2-mb-20 { margin-bottom: 20px; }
.v2-mb-24 { margin-bottom: 24px; }
.v2-mb-28 { margin-bottom: 28px; }
.v2-mb-48 { margin-bottom: 48px; }
.v2-mb-56 { margin-bottom: 56px; }

.v2-flex { display: flex; }
.v2-flex-center { display: flex; align-items: center; justify-content: center; }
.v2-flex-col { flex-direction: column; }
.v2-gap-8  { gap: 8px; }
.v2-gap-12 { gap: 12px; }
.v2-gap-16 { gap: 16px; }
.v2-gap-20 { gap: 20px; }
.v2-gap-24 { gap: 24px; }

.v2-mx-auto { margin-inline: auto; }
.v2-max-720 { max-width: 720px; }
.v2-max-680 { max-width: 680px; }
.v2-max-540 { max-width: 540px; }

/* ── GOOGLE FONTS IMPORT (fallback if not already loaded) ─── */
/* Use in <head>:
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Bangers&family=Bungee&family=Caveat:wght@500;700&display=swap" rel="stylesheet">
*/
