/* ============================================================
   AuroraForestPlay — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Primary: Deep Forest Greens */
  --green-50:  #f0faf4;
  --green-100: #d4f2e2;
  --green-200: #a8e4c6;
  --green-300: #6ecfa3;
  --green-400: #3db87f;
  --green-500: #1f9a62;
  --green-600: #147a4c;
  --green-700: #0f5c39;
  --green-800: #0b3f28;
  --green-900: #071f14;

  /* Secondary: Aurora Teals */
  --teal-300:  #5eead4;
  --teal-400:  #2dd4bf;
  --teal-500:  #14b8a6;
  --teal-600:  #0d9488;

  /* Accent: Aurora Golds */
  --gold-300:  #fde68a;
  --gold-400:  #fbbf24;
  --gold-500:  #f59e0b;
  --gold-600:  #d97706;

  /* Neutrals */
  --neutral-50:  #fafaf9;
  --neutral-100: #f5f5f4;
  --neutral-200: #e7e5e4;
  --neutral-300: #d6d3d1;
  --neutral-400: #a8a29e;
  --neutral-500: #78716c;
  --neutral-600: #57534e;
  --neutral-700: #44403c;
  --neutral-800: #292524;
  --neutral-900: #1c1917;

  /* Dark backgrounds */
  --bg-dark:   #061510;
  --bg-card:   #0d2a1f;
  --bg-card2:  #112e22;
  --bg-surface:#162f23;

  /* State colors */
  --success: #22c55e;
  --warning: #f59e0b;
  --error:   #ef4444;
  --info:    #3b82f6;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing (8px grid) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-7: 56px; --sp-8: 64px;
  --sp-10: 80px; --sp-12: 96px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 32px; --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.5);
  --shadow-glow-green: 0 0 20px rgba(31,154,98,.4);
  --shadow-glow-gold:  0 0 20px rgba(245,158,11,.4);
  --shadow-glow-teal:  0 0 20px rgba(20,184,166,.4);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
}

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

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--neutral-50);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--neutral-300); line-height: 1.7; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--teal-500));
  color: #fff;
  box-shadow: var(--shadow-glow-green);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-400), var(--teal-400));
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(31,154,98,.6);
}
.btn-secondary {
  background: transparent;
  color: var(--neutral-100);
  border: 1.5px solid var(--green-500);
}
.btn-secondary:hover {
  background: var(--green-900);
  border-color: var(--green-400);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--neutral-900);
  font-weight: 700;
  box-shadow: var(--shadow-glow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-2px);
}

/* ── Badges / Tags ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-green { background: rgba(31,154,98,.2); color: var(--green-300); border: 1px solid rgba(31,154,98,.3); }
.badge-gold  { background: rgba(245,158,11,.2); color: var(--gold-300);  border: 1px solid rgba(245,158,11,.3); }
.badge-teal  { background: rgba(20,184,166,.2); color: var(--teal-300);  border: 1px solid rgba(20,184,166,.3); }

/* ── Section helpers ── */
.section { padding: var(--sp-12) 0; }
.section-sm { padding: var(--sp-8) 0; }
.section-header { text-align: center; margin-bottom: var(--sp-8); }
.section-header .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: var(--sp-2);
}
.section-header p { max-width: 560px; margin: var(--sp-2) auto 0; }

/* ── Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(31,154,98,.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(31,154,98,.4);
  box-shadow: var(--shadow-glow-green);
}
.card-body { padding: var(--sp-4); }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 var(--sp-3);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
}
.navbar.scrolled {
  background: rgba(6,21,16,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(31,154,98,.15);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-50);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green-500), var(--teal-500));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-300);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--green-300); }
.nav-cta { display: flex; align-items: center; gap: var(--sp-2); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--neutral-200);
  border-radius: 2px;
  transition: all var(--t-base);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: rgba(6,21,16,.97);
  backdrop-filter: blur(20px);
  z-index: 899;
  flex-direction: column;
  padding: var(--sp-4);
  gap: var(--sp-3);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--neutral-200);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--green-300); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(31,154,98,.25) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(20,184,166,.12) 0%, transparent 60%),
              var(--bg-dark);
}
.hero-bg-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-strip {
  position: absolute;
  width: 120%;
  height: 3px;
  border-radius: 100%;
  filter: blur(6px);
  animation: auroraFloat 8s ease-in-out infinite;
}
.aurora-strip:nth-child(1) {
  top: 20%; left: -10%;
  background: linear-gradient(90deg, transparent, var(--green-400), var(--teal-400), transparent);
  animation-delay: 0s;
}
.aurora-strip:nth-child(2) {
  top: 35%; left: -10%;
  background: linear-gradient(90deg, transparent, var(--teal-300), var(--green-300), transparent);
  animation-delay: -3s;
  opacity: .6;
}
.aurora-strip:nth-child(3) {
  top: 50%; left: -10%;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--green-400), transparent);
  animation-delay: -6s;
  opacity: .4;
}
@keyframes auroraFloat {
  0%,100% { transform: translateY(0) skewX(-3deg); opacity: .8; }
  50%      { transform: translateY(-24px) skewX(3deg); opacity: .4; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(31,154,98,.15);
  border: 1px solid rgba(31,154,98,.3);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: var(--sp-3);
}
.hero h1 {
  margin-bottom: var(--sp-3);
  background: linear-gradient(135deg, #fff 30%, var(--green-300) 70%, var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 1.1rem; margin-bottom: var(--sp-4); max-width: 520px; }
.hero-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}
.hero-stat .value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-300);
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Divider ── */
.divider-aurora {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-600), var(--teal-500), var(--green-600), transparent);
  opacity: .4;
  margin: 0;
}

/* ── Games Grid ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-4);
}
.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(31,154,98,.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  cursor: pointer;
}
.game-card:hover {
  border-color: rgba(31,154,98,.5);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), var(--shadow-glow-green);
}
.game-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.game-thumb-aurora   { background: linear-gradient(135deg, #061510, #0d2a1f, #0b3f28, #071f14); }
.game-thumb-roulette { background: linear-gradient(135deg, #0d1a2a, #112233, #0a1f30); }
.game-thumb-blackjack{ background: linear-gradient(135deg, #1a100d, #2a1a12, #1f150b); }
.game-thumb-icon {
  font-size: 5rem;
  z-index: 2;
  position: relative;
  animation: iconFloat 4s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.game-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .5;
}
.game-card-body { padding: var(--sp-3); }
.game-card-body h3 { margin-bottom: 8px; }
.game-card-body p  { font-size: 0.9rem; margin-bottom: var(--sp-2); }
.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-2);
}
.game-players { font-size: 0.8rem; color: var(--neutral-400); }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-3);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(31,154,98,.1);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: all var(--t-base);
}
.feature-card:hover {
  border-color: rgba(31,154,98,.3);
  background: var(--bg-card2);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-2);
}
.feature-icon-green { background: rgba(31,154,98,.2); }
.feature-icon-teal  { background: rgba(20,184,166,.2); }
.feature-icon-gold  { background: rgba(245,158,11,.2); }
.feature-card h4 { margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; }

/* ── Footer ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(31,154,98,.15);
  padding-top: var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
}
.footer-brand p { font-size: 0.9rem; margin-top: var(--sp-2); max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: var(--sp-2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--neutral-400);
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--green-300); }
.footer-disclaimer {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  margin: var(--sp-4) 0;
}
.footer-disclaimer h6 {
  font-size: 0.75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--neutral-400);
  line-height: 1.6;
}
.footer-disclaimer a {
  color: var(--green-400);
  transition: color var(--t-fast);
}
.footer-disclaimer a:hover { color: var(--green-300); }

/* ── Footer Contact ── */
.footer-contact {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: var(--sp-3);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--neutral-300);
}
.footer-contact-item a {
  color: var(--neutral-300);
  transition: color var(--t-fast);
}
.footer-contact-item a:hover { color: var(--green-300); }
.footer-contact-icon { font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer-bottom p { font-size: 0.8rem; color: var(--neutral-500); }
.footer-age-badge {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: .06em;
}

/* ── Age Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
}
.modal-overlay.hidden { display: none; }
.age-modal {
  background: var(--bg-surface);
  border: 1px solid rgba(31,154,98,.3);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
  animation: modalIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalIn {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.age-modal .modal-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-800), var(--bg-card));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--sp-3);
  border: 2px solid rgba(31,154,98,.3);
}
.age-modal h2 { margin-bottom: var(--sp-2); }
.age-modal p { margin-bottom: var(--sp-3); font-size: 0.95rem; }
.age-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(31,154,98,.2);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  margin-bottom: var(--sp-3);
  text-align: left;
  cursor: pointer;
}
.age-checkbox-wrap input[type="checkbox"] {
  width: 20px; height: 20px;
  min-width: 20px;
  accent-color: var(--green-500);
  margin-top: 2px;
  cursor: pointer;
}
.age-checkbox-wrap label {
  font-size: 0.88rem;
  color: var(--neutral-300);
  cursor: pointer;
  line-height: 1.5;
}
.age-modal .btn { width: 100%; justify-content: center; padding: 14px; }
.age-modal .btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  max-width: 520px;
  background: var(--bg-surface);
  border: 1px solid rgba(31,154,98,.3);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  z-index: 8000;
  box-shadow: var(--shadow-lg);
  animation: slideUp .4s ease;
}
.cookie-banner.hidden { display: none; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.cookie-banner p { font-size: 0.82rem; margin-bottom: var(--sp-2); }
.cookie-banner a { color: var(--green-400); }
.cookie-actions { display: flex; gap: var(--sp-1); flex-wrap: wrap; }
.cookie-actions .btn { padding: 8px 20px; font-size: 0.85rem; }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  padding: 140px 0 var(--sp-8);
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(31,154,98,.2) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f9a62' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: var(--sp-2);
}
.page-hero h1 { margin-bottom: var(--sp-2); }
.page-hero p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── Prose ── */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose h2 { font-size: 1.5rem; margin: var(--sp-5) 0 var(--sp-2); color: var(--green-300); }
.prose h3 { font-size: 1.15rem; margin: var(--sp-3) 0 var(--sp-1); }
.prose p  { margin-bottom: var(--sp-2); }
.prose ul, .prose ol { padding-left: var(--sp-3); margin-bottom: var(--sp-2); }
.prose li { margin-bottom: 6px; color: var(--neutral-300); line-height: 1.7; }
.prose a  { color: var(--green-400); }
.prose a:hover { color: var(--green-300); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: 100px; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .games-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .age-modal { padding: var(--sp-4); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-green  { color: var(--green-400); }
.text-gold   { color: var(--gold-400); }
.text-teal   { color: var(--teal-400); }
.mt-1 { margin-top: var(--sp-1); } .mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); } .mt-4 { margin-top: var(--sp-4); }
.mb-2 { margin-bottom: var(--sp-2); } .mb-4 { margin-bottom: var(--sp-4); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-3); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-3); }
.hidden { display: none !important; }

/* ── Highlight Box ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(31,154,98,.1), rgba(20,184,166,.08));
  border: 1px solid rgba(31,154,98,.25);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}
.info-box {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: var(--r-md);
  padding: var(--sp-3);
}
.info-box p { font-size: 0.9rem; color: var(--gold-300); }
