/* ============================================================
   mjmgroup.cc — Premium B2B Lead-Gen Agency
   UI-SPEC Style Stack: #66 Editorial Grid + #5 3D Hyperrealism
   + #48 Kinetic Typography + #46 Dimensional Layering
   Build: 2026-04-26
   ============================================================ */

/* ─── FONTS ─────────────────────────────────────────────── */
@import url('assets/fonts/fonts.css');

/* ─── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Palette */
  --bg-midnight:  #0A0F1F;
  --bg-layer-1:   #131B2E;
  --bg-layer-2:   #1A2B45;
  --cream:        #F5EBD8;
  --cream-soft:   #FAF7F2;
  --gold:         #D4A853;
  --gold-deep:    #B5903F;
  --burgundy:     #6B1F2E;
  --silver:       #C0C0C0;
  --slate:        #4A5568;

  /* Typography tokens */
  --font-display: 'Libre Bodoni', Georgia, serif;
  --font-body:    'Public Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --display-hero:  clamp(4rem, 9vw, 8rem);
  --display-h2:    clamp(2.5rem, 5vw, 4.5rem);
  --display-h3:    clamp(1.75rem, 3vw, 2.5rem);
  --body-lg:       1.25rem;
  --body:          1.0625rem;
  --eyebrow-size:  0.75rem;

  /* Elevation shadows */
  --elevation-1: 0 1px 2px rgba(0,0,0,0.4);
  --elevation-2: 0 4px 8px rgba(0,0,0,0.5);
  --elevation-3: 0 10px 24px rgba(10,15,31,0.7), 0 0 24px rgba(212,168,83,0.08);
  --elevation-4: 0 24px 56px rgba(0,0,0,0.7), 0 0 48px rgba(212,168,83,0.12);

  /* Gold glow */
  --glow-gold: 0 0 60px rgba(212,168,83,0.25);

  /* Layout */
  --max-width:     1280px;
  --gutter:        clamp(1.5rem, 4vw, 3rem);

  /* Transition */
  --t-fast:  150ms cubic-bezier(0.4,0,0.2,1);
  --t-mid:   240ms cubic-bezier(0.4,0,0.2,1);
  --t-slow:  400ms cubic-bezier(0.16,1,0.3,1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg-midnight);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}
body.reduced-motion * {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: none; font-family: inherit; }
svg use { pointer-events: none; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 60ms linear;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 150ms cubic-bezier(0.16,1,0.3,1),
              width var(--t-mid), height var(--t-mid), opacity var(--t-mid);
  opacity: 0.6;
  mix-blend-mode: difference;
}
.cursor-ring.hovering { width: 48px; height: 48px; opacity: 1; }

/* ─── UTILITY CLASSES ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.display-hero {
  font-family: var(--font-display);
  font-size: var(--display-hero);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.display-h2 {
  font-family: var(--font-display);
  font-size: var(--display-h2);
  font-weight: 600;
  line-height: 1.0;
}
.display-h3 {
  font-family: var(--font-display);
  font-size: var(--display-h3);
  font-weight: 500;
  line-height: 1.1;
}
.body-lg { font-size: var(--body-lg); line-height: 1.65; }
.mono { font-family: var(--font-mono); }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-slate { color: var(--slate); }
.text-burgundy { color: var(--burgundy); }

/* Gold underline link hover */
.link-gold {
  position: relative;
  display: inline-block;
}
.link-gold::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-mid);
}
.link-gold:hover::after { width: 100%; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 3px;
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
  white-space: nowrap;
  will-change: transform;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-midnight);
  box-shadow: var(--elevation-2);
}
.btn-primary:hover {
  background: var(--gold-deep);
  box-shadow: var(--elevation-3);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,235,216,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0.875rem 0;
  gap: 0.5rem;
}
.btn-ghost:hover { gap: 0.75rem; }

/* Card hover lift */
.card-lift {
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--elevation-4);
}

/* SVG icons */
.icon {
  width: 1em; height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center;
  padding-inline: var(--gutter);
  background: rgba(10,15,31,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212,168,83,0.08);
  transition: background var(--t-slow);
}
.navbar.scrolled {
  background: rgba(10,15,31,0.97);
  border-bottom-color: rgba(212,168,83,0.15);
}
.navbar__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.navbar__brand span { color: var(--gold); }
.navbar__nav {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.navbar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-soft);
  opacity: 0.8;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.navbar__nav a:hover { opacity: 1; color: var(--gold); }
.navbar__cta { margin-left: 1.5rem; }

/* ─── SECTION BASE ──────────────────────────────────────── */
section {
  position: relative;
  overflow: hidden;
}

/* Section gradient transitions */
.section-transition-up {
  position: absolute; top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg-midnight), transparent);
  pointer-events: none; z-index: 2;
}
.section-transition-down {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-midnight), transparent);
  pointer-events: none; z-index: 2;
}

/* ─── 1. HERO — EDITORIAL ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  gap: 4rem;
  padding-top: 72px; /* navbar height */
  padding-bottom: 4rem;
  background: var(--bg-midnight);
}
.hero__content {
  padding-top: 4rem;
  z-index: 2;
}
.hero__eyebrow {
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero__eyebrow-line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--display-hero);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__body {
  font-size: var(--body-lg);
  color: var(--cream-soft);
  opacity: 0.8;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero__cta-group {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hero__social-proof {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate);
}
.hero__social-proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.hero__visual {
  position: relative;
  height: 640px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--elevation-4), var(--glow-gold);
  will-change: transform;
  transition: transform 80ms linear;
}
.hero__visual-ring {
  position: absolute;
  inset: -32px;
  border: 1px solid rgba(212,168,83,0.08);
  border-radius: 16px;
  pointer-events: none;
}

/* GSAP word animation targets */
.word { display: inline-block; }

/* ─── 2. STAT STRIP ─────────────────────────────────────── */
.stat-strip {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-layer-1);
  overflow: hidden;
}
.stat-strip__bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/stat-strip-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.stat-strip__inner {
  position: relative; z-index: 1;
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stat-item__unit {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gold);
  opacity: 0.7;
  vertical-align: super;
  font-size: 0.6em;
  margin-right: 0.1em;
}
.stat-item__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-soft);
  opacity: 0.6;
  margin-top: 0.5rem;
}
.stat-item__sublabel {
  font-size: 0.8125rem;
  color: var(--slate);
  margin-top: 0.25rem;
}
.stat-divider {
  display: none;
}
@media (min-width: 768px) {
  .stat-divider {
    display: block;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212,168,83,0.3), transparent);
  }
}

/* ─── 3. BENTO 3-STEP ───────────────────────────────────── */
.bento-3step {
  padding: 8rem 0;
  background: var(--bg-midnight);
}
.bento-3step__header {
  max-width: 640px;
  margin-bottom: 4rem;
}
.bento-3step__grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.bento-3step__diagram {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-layer-1);
  box-shadow: var(--elevation-3);
  min-height: 480px;
}
.bento-3step__diagram img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bento-step-card {
  background: var(--bg-layer-1);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--elevation-2);
}
.bento-step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.bento-step-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.bento-step-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.bento-step-card__body {
  color: var(--cream-soft);
  opacity: 0.7;
  font-size: 0.9375rem;
}
/* SVG connector animation */
.connector-svg {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

/* ─── 4. CASE STUDY EDITORIAL ────────────────────────────── */
.case-study {
  padding: 8rem 0;
  background: var(--bg-layer-1);
  position: relative;
}
.case-study__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.case-study__editorial {
  padding-top: 1rem;
}
.case-study__drop-cap p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  font-weight: 700;
  color: var(--burgundy);
  float: left;
  line-height: 0.8;
  margin-right: 0.08em;
  margin-top: 0.08em;
}
.case-study__quote {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  border-left: 3px solid var(--burgundy);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.case-study__metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,235,216,0.1);
}
.case-metric {
  text-align: center;
}
.case-metric__value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}
.case-metric__label {
  font-size: 0.8125rem;
  color: var(--slate);
  margin-top: 0.25rem;
}
.case-study__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--elevation-4), var(--glow-gold);
}
.case-study__visual img {
  width: 100%;
  will-change: transform;
}

/* ─── 7. PULL QUOTE ─────────────────────────────────────── */
.pull-quote {
  padding: 6rem 0;
  background: var(--bg-midnight);
  position: relative;
}
.pull-quote::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--burgundy);
}
.pull-quote__inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.pull-quote__mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--burgundy);
  opacity: 0.3;
  display: block;
  margin-bottom: -2rem;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 2rem;
}
.pull-quote__author {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ─── 5. COMPARE BENTO ──────────────────────────────────── */
.compare {
  padding: 8rem 0;
  background: var(--bg-midnight);
}
.compare__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.compare__visual {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--elevation-3);
  margin-bottom: 3rem;
}
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 4px 1fr;
  gap: 0 2rem;
  align-items: start;
}
.compare__divider {
  background: linear-gradient(to bottom, transparent, var(--burgundy), transparent);
  align-self: stretch;
  min-height: 400px;
}
.compare-col__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.compare-col__label--good { background: rgba(212,168,83,0.15); color: var(--gold); }
.compare-col__label--bad  { background: rgba(107,31,46,0.15); color: #e07070; }
.compare-row {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245,235,216,0.06);
  font-size: 0.9375rem;
  color: var(--cream-soft);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.compare-row.in-view { opacity: 1; transform: translateX(0); }
.compare-row--bad { transform: translateX(20px); }
.compare-row--bad.in-view { transform: translateX(0); }
.compare-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.compare-icon--check { color: var(--gold); }
.compare-icon--x     { color: #e07070; }

/* ─── 6. ROI CALCULATOR ─────────────────────────────────── */
.roi-calc {
  padding: 8rem 0;
  background: var(--bg-layer-1);
  position: relative;
}
.roi-calc__glow {
  position: absolute; inset: 0;
  background-image: url('assets/images/roi-calc-glow.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
  transition: opacity 0.6s ease;
}
.roi-calc.active .roi-calc__glow { opacity: 0.35; }
.roi-calc__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 3rem;
  align-items: start;
}
.roi-calc__form-card {
  background: rgba(26,43,69,0.5);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--elevation-3);
}
.roi-field {
  margin-bottom: 1.5rem;
}
.roi-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.roi-field input[type="number"],
.roi-field input[type="range"] {
  width: 100%;
  background: rgba(10,15,31,0.6);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
  outline: none;
}
.roi-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}
.roi-field input[type="range"] {
  padding: 0;
  background: transparent;
  border: none;
  -webkit-appearance: none;
}
.roi-field input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(212,168,83,0.2);
  border-radius: 2px;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: -7px;
  box-shadow: 0 0 8px rgba(212,168,83,0.4);
}
.roi-output-card {
  background: var(--bg-midnight);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: sticky;
  top: 96px;
  box-shadow: var(--elevation-3), var(--glow-gold);
}
.roi-output__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}
.roi-output__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.roi-output__sublabel {
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 2rem;
}
.roi-output__breakdown {
  text-align: left;
  border-top: 1px solid rgba(245,235,216,0.08);
  padding-top: 1.5rem;
  font-size: 0.875rem;
}
.roi-breakdown-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  color: var(--cream-soft);
  opacity: 0.7;
  border-bottom: 1px solid rgba(245,235,216,0.04);
}
.roi-breakdown-row span:last-child {
  font-family: var(--font-mono);
  color: var(--gold);
  opacity: 1;
}

/* ─── 8. INSIGHTS BENTO ─────────────────────────────────── */
.insights {
  padding: 8rem 0;
  background: var(--bg-midnight);
}
.insights__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}
.insights__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
}
.insight-card {
  background: var(--bg-layer-1);
  border: 1px solid rgba(245,235,216,0.06);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--elevation-2);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--elevation-4);
  border-color: rgba(212,168,83,0.2);
}
.insight-card--featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: none;
  padding: 0;
  border: none;
  overflow: hidden;
}
.insight-card--featured img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 12px;
}
.insight-card__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
}
.insight-card__meta {
  font-size: 0.8125rem;
  color: var(--slate);
  margin-top: auto;
}
.insight-card--wide { grid-column: 1 / 3; }
.insight-card--tall { grid-row: span 2; }

/* ─── 9. SERVICE HUB HERO ───────────────────────────────── */
.service-hub {
  padding: 8rem 0;
  background: var(--bg-layer-1);
  position: relative;
}
.service-hub__header {
  margin-bottom: 3rem;
  text-align: center;
}
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
  background: var(--bg-layer-2);
  box-shadow: var(--elevation-3);
}
.service-card__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.service-card:hover .service-card__image {
  opacity: 0.7;
  transform: scale(1.03);
}
.service-card__content {
  position: relative; z-index: 2;
  padding: 3rem;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: linear-gradient(to top, rgba(10,15,31,0.9) 40%, transparent);
}
.service-card__trade-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 4px;
  padding: 0.375rem 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  width: fit-content;
}
.service-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,235,216,0.1);
}
.service-stat__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}
.service-stat__label {
  font-size: 0.8125rem;
  color: var(--cream-soft);
  opacity: 0.7;
}

/* ─── 10. CITY PAGE HERO ────────────────────────────────── */
.city-hero {
  padding: 8rem 0;
  background: var(--bg-midnight);
  position: relative;
  overflow: hidden;
}
.city-hero__bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/stat-strip-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.city-hero__skyline {
  position: absolute; bottom: 0; left: 0; right: 0;
  opacity: 0.08;
}
.city-hero__inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.city-hero__service-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(107,31,46,0.2);
  border: 1px solid rgba(107,31,46,0.4);
  border-radius: 4px;
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e07070;
  margin-bottom: 1.5rem;
}
.city-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.city-hero__title em { font-style: italic; color: var(--gold); }
.city-hero__roi-hint {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gold);
  margin-top: 2rem;
}

/* ─── 11. CTA AURORA ────────────────────────────────────── */
.cta-aurora {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-aurora__bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/final-cta-aurora.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}
.cta-aurora__pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.cta-aurora__inner {
  position: relative; z-index: 2;
}
.cta-aurora__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.cta-aurora__headline em { font-style: italic; color: var(--gold); }
.cta-aurora__body {
  font-size: var(--body-lg);
  color: var(--cream-soft);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.cta-aurora__cta-group {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.cta-aurora__trust {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--slate);
  display: flex; justify-content: center; align-items: center; gap: 1.5rem;
}
.cta-aurora__trust-item {
  display: flex; align-items: center; gap: 0.4rem;
}

/* ─── 12. FOOTER RICH ───────────────────────────────────── */
.footer {
  background: var(--bg-midnight);
  position: relative;
  padding-top: 0;
}
.footer__horizon {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.footer__body {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(212,168,83,0.1);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex; gap: 1rem;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,235,216,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}
.footer__links {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.footer__links a {
  font-size: 0.9375rem;
  color: var(--slate);
  transition: color var(--t-fast);
  position: relative;
}
.footer__links a:hover { color: var(--cream); }
.footer__contact-item {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
  transition: color var(--t-fast);
}
.footer__contact-item:hover { color: var(--cream); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245,235,216,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8125rem;
  color: var(--slate);
}
.footer__legal a { color: var(--slate); }
.footer__legal a:hover { color: var(--cream); }

/* ─── GRADIENT MESH BACKGROUNDS (section ambients) ──────── */
.gradient-mesh-1 {
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(212,168,83,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(107,31,46,0.06) 0%, transparent 60%),
    var(--bg-midnight);
}
.gradient-mesh-2 {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(212,168,83,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 10% 80%, rgba(107,31,46,0.05) 0%, transparent 65%),
    var(--bg-layer-1);
}

/* Slow ambient drift animation */
@keyframes mesh-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ─── PREFERS REDUCED MOTION ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 200ms !important;
  }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 96px;
  }
  .hero__visual { height: 400px; }
  .bento-3step__grid { grid-template-columns: 1fr; }
  .bento-3step__diagram { grid-row: 1; min-height: 320px; }
  .case-study__inner { grid-template-columns: 1fr; }
  .compare__grid { grid-template-columns: 1fr; }
  .compare__divider { display: none; }
  .roi-calc__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .insights__bento { grid-template-columns: 1fr 1fr; }
  .insight-card--featured { grid-column: 1 / 3; }
}
@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .case-study__metric-strip { grid-template-columns: 1fr; }
  .service-card__stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .insights__bento { grid-template-columns: 1fr; }
  .insight-card--featured { grid-column: 1; }
  .insight-card--wide { grid-column: 1; }
  .cta-aurora__trust { flex-direction: column; gap: 0.75rem; }
}
