/* ============================================================
   MVProSpect.com — v3 Global Styles
   Black background, electric purple, white text
   Logo: MVPro (white) + Spect (electric purple)
   ============================================================ */

:root {
  /* Core palette */
  --black:        #000000;
  --black-soft:   #0A0A0F;
  --black-card:   #0F0F1A;
  --black-border: #1A1A2E;
  --purple:       #8B2BE2;
  --purple-bright:#A855F7;
  --purple-glow:  #C44DFF;
  --purple-dark:  #5B1BA0;
  --purple-dim:   #2D1060;
  --pink:         #E040FB;
  --blue-deep:    #1A1A4E;
  --gold:         #FFD700;
  --white:        #FFFFFF;
  --white-dim:    rgba(255,255,255,0.75);
  --white-muted:  rgba(255,255,255,0.45);
  --white-faint:  rgba(255,255,255,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono:    'Courier New', monospace;

  --shadow-purple: 0 0 40px rgba(139,43,226,0.3);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.6);
  --glow-purple:   0 0 20px rgba(196,77,255,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid var(--purple-dark);
  backdrop-filter: blur(12px);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 30px rgba(139,43,226,0.2);
}

/* LOGO — MVPro white, Spect purple */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo .mvpro { color: var(--white); }
.nav-logo .spect { color: var(--purple-glow); text-shadow: var(--glow-purple); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover { color: var(--purple-glow); text-shadow: var(--glow-purple); }
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: 4px;
  border: 1px solid var(--purple-bright);
  box-shadow: 0 0 16px rgba(139,43,226,0.4);
  transition: background 0.2s !important, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--purple-bright) !important;
  box-shadow: 0 0 28px rgba(168,85,247,0.6) !important;
  text-shadow: none !important;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--purple-bright);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(139,43,226,0.5);
}
.btn-primary:hover {
  background: var(--purple-bright);
  box-shadow: 0 8px 36px rgba(168,85,247,0.7);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(139,43,226,0.6);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover {
  border-color: var(--purple-glow);
  background: rgba(139,43,226,0.12);
  box-shadow: 0 0 20px rgba(196,77,255,0.2);
}

.btn-sm {
  display: inline-block;
  background: var(--purple-dim);
  color: var(--white);
  text-decoration: none;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--purple-dark);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-sm:hover { background: var(--purple); box-shadow: var(--glow-purple); }
.btn-sm.bright { background: var(--purple); border-color: var(--purple-bright); }
.btn-sm.bright:hover { background: var(--purple-bright); box-shadow: 0 0 20px rgba(168,85,247,0.5); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--black-soft);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(139,43,226,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(90,27,160,0.15) 0%, transparent 50%);
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--purple-dark);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--purple-glow), var(--purple), transparent);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--purple-glow);
  box-shadow: var(--glow-purple);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--purple-glow); text-shadow: var(--glow-purple); }
.page-hero p { color: var(--white-dim); font-size: 1.1rem; max-width: 640px; line-height: 1.7; font-weight: 300; }

/* ---- SECTION BASE ---- */
section { padding: 100px 80px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--purple-glow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

/* ---- CARDS ---- */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--purple-dark);
  box-shadow: 0 0 30px rgba(139,43,226,0.15);
  transform: translateY(-2px);
}
.card-accent { border-top: 2px solid var(--purple); }
.card-accent-bright { border-top: 2px solid var(--purple-glow); box-shadow: 0 0 20px rgba(196,77,255,0.1); }

/* ---- STAT ROW ---- */
.stat-band {
  background: var(--purple-dim);
  border-top: 1px solid var(--purple-dark);
  border-bottom: 1px solid var(--purple-dark);
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-band-item { text-align: center; }
.stat-band-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  text-shadow: var(--glow-purple);
}
.stat-band-item .num em { font-style: normal; color: var(--purple-glow); }
.stat-band-item .lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ---- DIVIDER ---- */
.rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-dark), transparent);
  margin: 0;
}

/* ---- CALLOUT ---- */
.callout {
  background: var(--black-card);
  border: 1px solid var(--purple-dark);
  border-left: 3px solid var(--purple-glow);
  border-radius: 0 6px 6px 0;
  padding: 28px 32px;
  box-shadow: 0 0 20px rgba(139,43,226,0.1);
}
.callout p { color: var(--white-dim); font-size: 1rem; line-height: 1.7; }
.callout strong { color: var(--white); }

/* ---- FOOTER ---- */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--purple-dark);
  padding: 60px 80px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; margin-bottom: 16px; line-height: 1; }
.footer-brand .logo .mvpro { color: var(--white); }
.footer-brand .logo .spect { color: var(--purple-glow); text-shadow: var(--glow-purple); }
.footer-brand p { color: var(--white-muted); font-size: 0.88rem; line-height: 1.7; max-width: 280px; font-weight: 300; }
.footer-col h4 { color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--white-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple-glow); }
.footer-bottom {
  border-top: 1px solid var(--white-faint);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--white-muted); font-size: 0.8rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  section { padding: 70px 32px; }
  .page-hero { padding: 120px 32px 60px; }
  .stat-band { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
