/* ============================================================
   MAP PACK MAFIA — Master Stylesheet
   Brand: Black + Burgundy. Premium. No apologies.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ── BRAND TOKENS ── */
:root {
  --burgundy: #7c1c2e;
  --burgundy-bright: #9b2235;
  --burgundy-dim: #5a1420;
  --burgundy-glow: rgba(124, 28, 46, 0.35);
  --burgundy-subtle: rgba(124, 28, 46, 0.12);
  --burgundy-border: rgba(124, 28, 46, 0.25);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.2);
  --bg: #060606;
  --bg2: #0c0c0c;
  --bg3: #111111;
  --bg4: #161616;
  --text: #e2e2e2;
  --text-dim: #888;
  --text-muted: #555;
  --white: #ffffff;
  --border: rgba(124, 28, 46, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius: 4px;
}

/* ── BASE ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Subtle noise texture over entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

p { line-height: 1.75; }

a {
  color: var(--burgundy-bright);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold); }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION PILL / EYEBROW ── */
.mpm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 28, 46, 0.1);
  border: 1px solid var(--burgundy-border);
  border-radius: 3px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy-bright);
}
.mpm-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--burgundy-bright);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

/* ── DIVIDER ── */
.mpm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--burgundy-border), transparent);
  margin: 0;
}

/* ── BUTTONS ── */
.mpm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9b2235 0%, #7c1c2e 50%, #5a1420 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(124, 28, 46, 0.3);
  position: relative;
  overflow: hidden;
}
.mpm-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.mpm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(124, 28, 46, 0.5);
  color: var(--white);
}
.mpm-btn-primary:hover::before { opacity: 1; }

.mpm-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.25s;
}
.mpm-btn-ghost:hover {
  border-color: var(--burgundy-border);
  color: var(--text);
}

/* ── STATUS INDICATOR ── */
.mpm-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--burgundy-bright);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,28,46,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(124,28,46,0); }
}

/* ── GOLD ACCENT ── */
.mpm-gold { color: var(--gold); }
.mpm-burg { color: var(--burgundy-bright); }

/* ── SECTION WRAPPER ── */
.mpm-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}
@media (max-width: 768px) {
  .mpm-section { padding: 60px 24px; }
}

/* ── CARD BASE ── */
.mpm-card {
  background: var(--bg2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.mpm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy-dim), var(--burgundy-bright), var(--burgundy-dim));
  opacity: 0;
  transition: opacity 0.3s;
}
.mpm-card:hover {
  border-color: var(--burgundy-border);
}
.mpm-card:hover::before { opacity: 1; }

/* ── LEGAL BAR ── */
.mpm-legal-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 11px;
  color: var(--text-muted);
}
.mpm-legal-bar a {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mpm-legal-bar a:hover { color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mpm-section { padding: 60px 32px; }
}
@media (max-width: 768px) {
  .mpm-section { padding: 48px 20px; }
  .mpm-legal-bar { flex-direction: column; gap: 8px; text-align: center; }
}
