/* ═══════════════════════════════════════════════════════════════
   MAHARAJA MEDIA NETWORK — Main Stylesheet
   Colors: Blood Red #B30000 | Dark Blue #001F5B | Black | White
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  --red:        #B30000;
  --red-light:  #E00000;
  --red-dark:   #7A0000;
  --blue:       #001F5B;
  --blue-light: #0033A0;
  --gold:       #C9A84C;

  /* Dark theme (default) */
  --bg:         #0a0a0f;
  --bg-alt:     #0f1018;
  --bg-card:    #141520;
  --bg-card2:   #1a1d2e;
  --border:     rgba(179,0,0,0.25);
  --border-sub: rgba(255,255,255,0.06);
  --text:       #e8e8f0;
  --text-sub:   #9999bb;
  --text-muted: #66667a;
  --nav-bg:     rgba(10,10,15,0.92);
  --nav-shadow: 0 2px 20px rgba(179,0,0,0.18);
  --footer-bg:  #060609;
  --sep-color:  var(--red);
}

[data-theme="light"] {
  --bg:         #f5f5f8;
  --bg-alt:     #ecedf5;
  --bg-card:    #ffffff;
  --bg-card2:   #f0f1f8;
  --border:     rgba(179,0,0,0.2);
  --border-sub: rgba(0,0,0,0.07);
  --text:       #0d0d1a;
  --text-sub:   #444466;
  --text-muted: #888899;
  --nav-bg:     rgba(245,245,248,0.95);
  --nav-shadow: 0 2px 20px rgba(0,0,0,0.12);
  --footer-bg:  #0a0a12;
  --sep-color:  var(--red);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.35s, color 0.35s;
  overflow-x: hidden;
}

/* ─── Roboto Typography System ───────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.01em;
}

.hero-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.company-name  { font-weight: 700; letter-spacing: 0; }
.brand-card h4 { font-weight: 700; letter-spacing: 0; }
.event-title   { font-weight: 700; letter-spacing: 0; }

.section-label,
.company-type,
.brand-badge,
.filter-btn,
.contact-tab-btn,
.hero-tag,
.footer-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-slogan,
.story-lead   { font-weight: 300; font-style: italic; }
.story-body   { font-weight: 300; }
.footer-desc  { font-weight: 300; }

.event-desc,
.contact-list li,
.testimonial-text { font-weight: 300; }

.stat-num      { font-weight: 900; }
.stat-label    { font-weight: 500; letter-spacing: 0.08em; }
.milestone-year { font-weight: 700; }

.btn-mmn,
.btn-mmn-outline { font-weight: 700; letter-spacing: 0.14em; }

.navbar-nav .nav-link { font-weight: 500; }

img { max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════════
   01. TOP NAVBAR
═══════════════════════════════════════════════════════════════ */
.mmn-navbar {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--nav-shadow);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, box-shadow 0.35s;
  padding: 0.65rem 0;
  z-index: 1050;
}

.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav-logo-dark  { display: block; }
.nav-logo-light { display: none;  }

[data-theme="light"] .nav-logo-dark  { display: none; }
[data-theme="light"] .nav-logo-light { display: block; }

.brand-text {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--text-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--red);
  transition: left 0.25s, right 0.25s;
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text);
  background: rgba(179,0,0,0.08);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 10%; right: 10%; }

/* Social icons */
.social-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-sub);
  font-size: 0.78rem;
  transition: all 0.25s;
}
.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}
.theme-toggle:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(20deg);
}

.theme-icon-light { display: none; }
.theme-icon-dark  { display: inline; }
[data-theme="light"] .theme-icon-light { display: inline; }
[data-theme="light"] .theme-icon-dark  { display: none; }

/* Toggler */
.navbar-toggler {
  border-color: var(--border);
  padding: 0.3rem 0.5rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(179,0,0,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Fixed left vertical separator ─────────────────────────── */
.v-sep-fixed {
  position: fixed;
  top: 0; left: 0;
  width: 4px;
  height: 100vh;
  background: linear-gradient(180deg, var(--red) 0%, var(--blue) 60%, transparent 100%);
  z-index: 900;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   02. HERO / HEADER
═══════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(0,31,91,0.55) 0%,
    rgba(10,10,15,0.85) 70%,
    rgba(10,10,15,0.97) 100%);
}

[data-theme="light"] .hero-overlay {
  background: radial-gradient(ellipse at center,
    rgba(0,31,91,0.35) 0%,
    rgba(245,245,248,0.7) 70%,
    rgba(245,245,248,0.92) 100%);
}

/* ─── Hero animated background (CSS-only, no image) ─────────── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* ── DARK MODE: Celestial Weave ─────────────────────────────── */
/* Nebula gradient blobs — slow breathing pulse */
html:not([data-theme="light"]) .hero-bg-img {
  background:
    radial-gradient(ellipse 55% 45% at 12% 22%, rgba(179,0,0,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 48% 62% at 85% 80%, rgba(0,31,91,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 35% 30% at 52% 52%, rgba(107,10,171,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 38% 32% at 78% 18%, rgba(179,0,0,0.1) 0%, transparent 60%);
  animation: nebulaBreathe 14s ease-in-out infinite;
}

/* Slow-spinning conic cosmic swirl */
html:not([data-theme="light"]) .hero-bg-img::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 40% 45%,
    rgba(179,0,0,0.09) 0deg,
    transparent 55deg,
    rgba(0,31,91,0.11) 120deg,
    transparent 175deg,
    rgba(107,10,171,0.08) 240deg,
    transparent 295deg,
    rgba(179,0,0,0.06) 360deg
  );
  animation: cosmicSpin 42s linear infinite;
  transform-origin: 50% 50%;
}

/* Constellation star field */
html:not([data-theme="light"]) .hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 18% 22%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(circle 1px  at 38% 65%, rgba(179,0,0,0.75)    0%, transparent 100%),
    radial-gradient(circle 2px  at 58% 18%, rgba(255,255,255,0.38) 0%, transparent 100%),
    radial-gradient(circle 1px  at 72% 48%, rgba(100,140,255,0.65) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 88% 72%, rgba(255,255,255,0.42) 0%, transparent 100%),
    radial-gradient(circle 1px  at 28% 82%, rgba(179,0,0,0.55)    0%, transparent 100%),
    radial-gradient(circle 2px  at 50% 55%, rgba(201,168,76,0.48) 0%, transparent 100%),
    radial-gradient(circle 1px  at 92% 30%, rgba(255,255,255,0.32) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 66% 88%, rgba(0,51,160,0.55)  0%, transparent 100%),
    radial-gradient(circle 1px  at 12% 52%, rgba(255,255,255,0.38) 0%, transparent 100%),
    radial-gradient(circle 2px  at 43% 38%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(circle 1px  at 76% 12%, rgba(179,0,0,0.45)    0%, transparent 100%);
  animation: starTwinkle 8s ease-in-out infinite;
}

/* ── LIGHT MODE: Silk Prism ─────────────────────────────────── */
/* Soft pastel radial bloom layers */
[data-theme="light"] .hero-bg-img {
  background:
    radial-gradient(ellipse 62% 55% at 18% 18%, rgba(179,0,0,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 52% 68% at 82% 78%, rgba(0,31,91,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 44% 40% at 62% 28%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 52% at 8% 68%,  rgba(0,51,160,0.05)  0%, transparent 65%);
  animation: silkBreathe 18s ease-in-out infinite;
}

/* Slow prismatic conic light sweep */
[data-theme="light"] .hero-bg-img::before {
  content: '';
  position: absolute;
  inset: -75%;
  width: 250%;
  height: 250%;
  background: conic-gradient(
    from 200deg at 35% 30%,
    rgba(179,0,0,0.04) 0deg,
    transparent 50deg,
    rgba(201,168,76,0.035) 100deg,
    transparent 150deg,
    rgba(0,31,91,0.04) 205deg,
    transparent 260deg,
    rgba(179,0,0,0.025) 315deg,
    transparent 360deg
  );
  animation: prismSpin 58s linear infinite;
  transform-origin: 40% 38%;
}

/* Diamond lattice — drifting diagonal lines */
[data-theme="light"] .hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 70px,
      rgba(179,0,0,0.022) 70px,
      rgba(179,0,0,0.022) 71px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 70px,
      rgba(0,31,91,0.018) 70px,
      rgba(0,31,91,0.018) 71px
    );
  animation: latticeDrift 65s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}

.hero-logo-wrap { animation: fadeInDown 0.8s ease both; }

.hero-logo {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(179,0,0,0.6));
}
.hero-logo-dark  { display: block; }
.hero-logo-light { display: none;  }
[data-theme="light"] .hero-logo-dark  { display: none; }
[data-theme="light"] .hero-logo-light { display: block; }

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
  animation: fadeInUp 0.9s 0.2s ease both;
  text-shadow: 0 2px 24px rgba(179,0,0,0.35);
}

.hero-divider {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue-light));
  border-radius: 2px;
  animation: scaleX 0.7s 0.4s ease both;
}

.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-sub);
  font-style: italic;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.9s 0.5s ease both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  animation: fadeInUp 0.9s 0.6s ease both;
}
.hero-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-tag-sep { color: var(--red); font-weight: 700; }

.btn-mmn {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.28s;
  box-shadow: 0 4px 20px rgba(179,0,0,0.35);
  animation: fadeInUp 0.9s 0.8s ease both;
}
.btn-mmn:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(179,0,0,0.5);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--red);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SEPARATORS
═══════════════════════════════════════════════════════════════ */
.section-vsep {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  height: 48px;
  position: relative;
}
.section-vsep span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 20%,
    var(--blue-light) 50%,
    var(--red) 80%,
    transparent 100%);
  position: relative;
}
.section-vsep span::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
}

.inner-vsep {
  display: flex;
  align-items: center;
  height: 30px;
}
.inner-vsep span {
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border) 30%,
    var(--border) 70%,
    transparent 100%);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════════════ */
.section-pad { padding: 80px 0; }
.section-alt  { background: var(--bg-alt); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-sub);
  margin-top: 0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   03. BRAND SECTION
═══════════════════════════════════════════════════════════════ */
.company-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(179,0,0,0.35);
}
.company-icon-radio {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 4px 14px rgba(0,31,91,0.45);
}
.company-icon-ent {
  background: linear-gradient(135deg, #3a0a5b, #6b0aab);
  box-shadow: 0 4px 14px rgba(107,10,171,0.35);
}

.company-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}
.company-type {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.company-line {
  height: 1px;
  background: var(--border);
}

/* Brand cards */
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.brand-red::before  { background: linear-gradient(90deg, var(--red-dark), var(--red-light)); }
.brand-blue::before { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.brand-dark::before { background: linear-gradient(90deg, #1a1a2e, #3a3a6e); }

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.brand-red:hover  { border-color: rgba(179,0,0,0.5); box-shadow: 0 16px 40px rgba(179,0,0,0.18); }
.brand-blue:hover { border-color: rgba(0,31,91,0.5); box-shadow: 0 16px 40px rgba(0,51,160,0.18); }

.brand-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}
.brand-red .brand-card-icon  { background: rgba(179,0,0,0.12); color: var(--red-light); }
.brand-blue .brand-card-icon { background: rgba(0,31,91,0.12); color: #4d90fe; }
.brand-dark .brand-card-icon { background: rgba(100,100,200,0.1); color: #9999ee; }

.brand-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.brand-card p {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.brand-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border-sub);
}

/* ═══════════════════════════════════════════════════════════════
   04. EVENTS
═══════════════════════════════════════════════════════════════ */
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-sub);
  color: var(--text-sub);
  padding: 0.4rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.event-img-wrap { position: relative; }

.event-img-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.ev-red  { background: linear-gradient(135deg, var(--red-dark), #4a0000); }
.ev-blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.ev-dark { background: linear-gradient(135deg, #0a0a1a, #1a1a3a); }

.event-cat-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(179,0,0,0.4);
}

.event-body { padding: 1.25rem; }

.event-date {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.event-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.event-desc {
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.event-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
}
.event-link:hover { color: var(--red-light); }

/* Hidden event items */
.event-item.hidden { display: none; }

/* ═══════════════════════════════════════════════════════════════
   05. STORY SECTION
═══════════════════════════════════════════════════════════════ */
.story-visual { position: relative; min-height: 320px; }

.story-bg-shape {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg,
    rgba(179,0,0,0.08) 0%,
    rgba(0,31,91,0.15) 100%);
  border: 1px solid var(--border);
}

.story-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  gap: 0.4rem;
  transition: background 0.3s;
}
.stat-box:hover { background: var(--bg-card2); }

.stat-box-accent { background: var(--bg-card2); }
.stat-box-accent:nth-child(2) {
  background: linear-gradient(135deg, rgba(179,0,0,0.12), rgba(179,0,0,0.04));
  border-color: rgba(179,0,0,0.2);
}
.stat-box-accent:nth-child(3) {
  background: linear-gradient(135deg, rgba(0,31,91,0.15), rgba(0,31,91,0.05));
  border-color: rgba(0,31,91,0.3);
}

.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  background: linear-gradient(135deg, var(--red-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.story-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.story-body {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.story-milestones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 2px solid var(--red);
  padding-left: 1.25rem;
}
.milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.milestone-year {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red);
  min-width: 40px;
}
.milestone-event {
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* ═══════════════════════════════════════════════════════════════
   06. PARTNERS & VOICES
═══════════════════════════════════════════════════════════════ */
/* Partner ticker */
.partner-ticker-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%);
  mask: linear-gradient(90deg,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%);
}
.partner-ticker { overflow: hidden; }
.partner-track {
  display: flex;
  gap: 1.5rem;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.partner-track:hover { animation-play-state: paused; }

.partner-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 120px;
  height: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.25s, color 0.25s;
}
.partner-logo-box:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.testimonial-featured {
  border-color: rgba(179,0,0,0.35);
  background: linear-gradient(145deg, var(--bg-card2), rgba(179,0,0,0.04));
}

.testimonial-quote {
  font-size: 1.5rem;
  color: var(--red);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.75;
  font-style: italic;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-sub);
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  font-size: 0.88rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   07. CONTACT
═══════════════════════════════════════════════════════════════ */
.contact-tabs { gap: 0.5rem; }

.contact-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  color: var(--text-sub);
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.contact-tab-btn:hover,
.contact-tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(179,0,0,0.3);
}

.contact-card-head {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-list {
  list-style: none;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.4;
}
.contact-list li i {
  color: var(--red);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-placeholder {
  background: linear-gradient(135deg,
    rgba(0,31,91,0.15) 0%,
    rgba(179,0,0,0.08) 100%);
  border: 1px dashed var(--border);
  border-radius: 10px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-inner {
  text-align: center;
  color: var(--text-sub);
}
.map-inner i { color: var(--red); }
.map-inner h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.map-inner p { font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════
   08. FOOTER
═══════════════════════════════════════════════════════════════ */
.mmn-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(179,0,0,0.2);
}

.footer-logo {
  height: 45px;
  width: auto;
}
.footer-logo-dark  { display: block; }
.footer-logo-light { display: none;  }
[data-theme="light"] .footer-logo-dark  { display: none; }
[data-theme="light"] .footer-logo-light { display: block; }

.footer-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #e8e8f0;
  letter-spacing: 0.03em;
}
.footer-slogan {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: #666680;
  line-height: 1.65;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(179,0,0,0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: #666680;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
}
.footer-links a i { color: rgba(179,0,0,0.6); }
.footer-links a:hover { color: #e8e8f0; padding-left: 3px; }
.footer-links a:hover i { color: var(--red); }

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
  color: #666680;
  font-size: 0.82rem;
  transition: all 0.25s;
}
.footer-social-btn i { width: 16px; text-align: center; color: rgba(179,0,0,0.7); }
.footer-social-btn:hover {
  background: rgba(179,0,0,0.1);
  border-color: rgba(179,0,0,0.3);
  color: #e8e8f0;
}
.footer-social-btn:hover i { color: var(--red); }

/* Copyright */
.copyright-bar {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1rem 0;
  font-size: 0.75rem;
  color: #44445a;
}
.copyright-note { color: #33334a; }

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(179,0,0,0.45);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(179,0,0,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px – 1024px)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2.5rem; }
  .hero-logo  { height: 72px; }
  .brand-card { padding: 1.25rem 1rem; }
  .story-stats-grid { height: 260px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .section-pad { padding: 48px 0; }
  .hero-section { min-height: 100svh; }
  .hero-logo  { height: 56px; }
  .hero-title { font-size: 1.7rem; }
  .hero-slogan { font-size: 0.9rem; }
  .btn-mmn { padding: 0.65rem 1.75rem; }

  .v-sep-fixed { width: 3px; }

  .story-stats-grid { height: auto; grid-template-columns: 1fr 1fr; }
  .stat-box { padding: 1.5rem 0.75rem; }
  .stat-num { font-size: 2rem; }

  .story-milestones { gap: 0.4rem; }
  .milestone { flex-direction: column; gap: 0.15rem; }
  .milestone-year { min-width: auto; }

  .contact-tab-btn { padding: 0.45rem 0.9rem; font-size: 0.76rem; }

  .partner-logo-box { width: 100px; height: 78px; font-size: 0.68rem; }

  .company-line { display: none; }

  .footer-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .copyright-bar .d-flex { text-align: center; }
  .copyright-note { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION CANVAS LAYOUT
═══════════════════════════════════════════════════════════════ */
.sec-relative { position: relative; overflow: hidden; }

.sec-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.sec-content { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   HERO ENHANCEMENTS
═══════════════════════════════════════════════════════════════ */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
}

.hero-logo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(179,0,0,0.4);
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
}
.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0,51,160,0.25);
  animation: ringPulse 3s 1.5s ease-in-out infinite;
}

.hero-pretitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  animation: fadeInDown 0.7s ease both;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--red-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.hd-line {
  display: block;
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
  opacity: 0.6;
}
.hd-line:last-child { background: linear-gradient(90deg, var(--red), transparent); }
.hd-diamond {
  display: block;
  width: 6px; height: 6px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-mmn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.75rem 2.5rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.28s;
  animation: fadeInUp 0.9s 0.9s ease both;
  display: inline-block;
}
.btn-mmn-outline:hover {
  background: rgba(179,0,0,0.08);
  border-color: var(--red);
  color: var(--text);
}

/* Hero orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.h-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.h-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(179,0,0,0.18), transparent 70%);
  top: -180px; right: -100px;
  animation: orbFloat 9s ease-in-out infinite;
}
.h-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,51,160,0.2), transparent 70%);
  bottom: -120px; left: -80px;
  animation: orbFloat 11s 3s ease-in-out infinite;
}
.h-orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(179,0,0,0.12), transparent 70%);
  top: 40%; left: 25%;
  animation: orbFloat 7s 6s ease-in-out infinite;
}

.scroll-text {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER EYEBROW
═══════════════════════════════════════════════════════════════ */
.sh-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.section-header:not(.text-center) .sh-eyebrow { justify-content: flex-start; }

.sh-line-dec {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   BRAND SECTION ENHANCEMENTS
═══════════════════════════════════════════════════════════════ */
.company-count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  border: 1px solid var(--border-sub);
  flex-shrink: 0;
}

/* Brand card glow overlay */
.brand-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.brand-red .brand-card-glow  { background: radial-gradient(ellipse at 50% 0%, rgba(179,0,0,0.1) 0%, transparent 70%); }
.brand-blue .brand-card-glow { background: radial-gradient(ellipse at 50% 0%, rgba(0,51,160,0.1) 0%, transparent 70%); }
.brand-dark .brand-card-glow { background: radial-gradient(ellipse at 50% 0%, rgba(100,100,200,0.08) 0%, transparent 70%); }
.brand-ent .brand-card-glow  { background: radial-gradient(ellipse at 50% 0%, rgba(107,10,171,0.1) 0%, transparent 70%); }
.brand-card:hover .brand-card-glow { opacity: 1; }

/* Entertainment brand variant */
.brand-ent::before { background: linear-gradient(90deg, #3a0a5b, #6b0aab); }
.brand-ent .brand-card-icon { background: rgba(107,10,171,0.12); color: #b84df5; }
.brand-ent:hover { border-color: rgba(107,10,171,0.4); box-shadow: 0 16px 40px rgba(107,10,171,0.15); }

/* Brand logo display inside cards */
.brand-logo-wrap {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.brand-logo-img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}
.brand-card:hover .brand-logo-img {
  opacity: 1;
  transform: scale(1.05);
}

/* Zone company logos */
.zone-logo {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.zone-logo:hover { opacity: 1; }

/* Zone company name positioning */
.company-zone { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   EVENTS — AURORA BACKGROUND
═══════════════════════════════════════════════════════════════ */
.aurora-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: auroraDrift 14s ease-in-out infinite;
}
.a1 {
  width: 700px; height: 280px;
  background: radial-gradient(ellipse, rgba(179,0,0,0.22), transparent 70%);
  top: -80px; left: -150px;
  animation-delay: 0s;
}
.a2 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,51,160,0.18), transparent 70%);
  top: 30%; right: -200px;
  animation-delay: -5s;
}
.a3 {
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(107,10,171,0.16), transparent 70%);
  bottom: -80px; left: 25%;
  animation-delay: -9s;
}
.a4 {
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(179,0,0,0.14), transparent 70%);
  bottom: 10px; right: 10%;
  animation-delay: -3s;
}

/* Event card accent lines */
.ev-card-red  { border-top: 2px solid var(--red-dark); }
.ev-card-blue { border-top: 2px solid var(--blue); }
.ev-card-dark { border-top: 2px solid #3a3a6e; }

/* Event image icon wrap + ripple */
.ev-icon-wrap {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.45);
}

.ev-ripple {
  position: absolute;
  inset: 0;
  animation: rippleExpand 3.5s ease-out infinite;
}
.ev-red  .ev-ripple { background: radial-gradient(circle, rgba(179,0,0,0.25) 0%, transparent 65%); }
.ev-blue .ev-ripple { background: radial-gradient(circle, rgba(0,51,160,0.25) 0%, transparent 65%); }
.ev-dark .ev-ripple { background: radial-gradient(circle, rgba(80,80,180,0.18) 0%, transparent 65%); }

/* Event bottom glow bar */
.ev-bottom-glow { height: 2px; width: 100%; }
.ev-glow-red  { background: linear-gradient(90deg, transparent, var(--red), transparent); }
.ev-glow-blue { background: linear-gradient(90deg, transparent, #4d90fe, transparent); }
.ev-glow-dark { background: linear-gradient(90deg, transparent, #6666cc, transparent); }

/* ═══════════════════════════════════════════════════════════════
   STORY SECTION ENHANCEMENTS
═══════════════════════════════════════════════════════════════ */
.story-scan-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.025) 3px,
    rgba(0,0,0,0.025) 4px
  );
}

.stat-icon {
  font-size: 1.1rem;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.stat-num-suffix {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--red-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-left: 1px;
}

.milestone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(179,0,0,0.55);
  position: relative;
  margin-left: -1.625rem;
  margin-right: 0.375rem;
}
.milestone-dot i { display: none; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER NEBULA ORBS
═══════════════════════════════════════════════════════════════ */
.mmn-footer { position: relative; overflow: hidden; }

.footer-nebula {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.f-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.f-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(179,0,0,0.09), transparent 70%);
  top: -250px; right: 5%;
  animation: orbFloat 12s ease-in-out infinite;
}
.f-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,51,160,0.09), transparent 70%);
  bottom: -150px; left: 10%;
  animation: orbFloat 14s 4s ease-in-out infinite;
}
.f-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(107,10,171,0.07), transparent 70%);
  top: 30%; left: 55%;
  animation: orbFloat 10s 7s ease-in-out infinite;
}

.footer-inner,
.copyright-bar { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT — MAP PING
═══════════════════════════════════════════════════════════════ */
.map-ping {
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0 auto 1rem;
}
.map-ping span {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  animation: pingAnim 1.8s ease-out infinite;
}
.map-ping span::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   NEW KEYFRAME ANIMATIONS
═══════════════════════════════════════════════════════════════ */
/* ─── Hero animated background keyframes ────────────────────── */
@keyframes nebulaBreathe {
  0%, 100% { opacity: 1;    transform: scale(1)     translateY(0);     }
  33%       { opacity: 0.88; transform: scale(1.022) translateY(-12px); }
  66%       { opacity: 0.94; transform: scale(0.98)  translateY(9px);   }
}

@keyframes cosmicSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.75; }
  25%       { opacity: 1;    }
  50%       { opacity: 0.55; }
  75%       { opacity: 0.9;  }
}

@keyframes silkBreathe {
  0%, 100% { opacity: 1;    transform: scale(1)      translateY(0);    }
  40%       { opacity: 0.92; transform: scale(1.015)  translateY(-9px); }
  70%       { opacity: 0.96; transform: scale(0.985)  translateY(7px);  }
}

@keyframes prismSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes latticeDrift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 141px 141px, -141px 141px; }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.35; }
  50%       { transform: scale(1.14); opacity: 0.7;  }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0)    rotate(0deg);  }
  33%       { transform: translateY(-24px) rotate(4deg);  }
  66%       { transform: translateY(12px)  rotate(-3deg); }
}

@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0)      scale(1);    }
  25%       { transform: translate(40px, -25px) scale(1.1); }
  50%       { transform: translate(-25px, 35px) scale(0.9); }
  75%       { transform: translate(15px, -10px) scale(1.05);}
}

@keyframes rippleExpand {
  0%   { opacity: 0.9; transform: scale(0.4); }
  100% { opacity: 0;   transform: scale(1.8); }
}

@keyframes pingAnim {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE ANIMATION ADAPTATIONS
═══════════════════════════════════════════════════════════════ */

/* Hero orbs — more subdued on light bg */
[data-theme="light"] .h-orb-1 {
  background: radial-gradient(circle, rgba(179,0,0,0.1), transparent 70%);
}
[data-theme="light"] .h-orb-2 {
  background: radial-gradient(circle, rgba(0,31,91,0.12), transparent 70%);
}
[data-theme="light"] .h-orb-3 {
  background: radial-gradient(circle, rgba(179,0,0,0.07), transparent 70%);
}

/* Aurora — visible on light bg-alt */
[data-theme="light"] .a1 {
  background: radial-gradient(ellipse, rgba(179,0,0,0.1), transparent 70%);
  opacity: 1;
}
[data-theme="light"] .a2 {
  background: radial-gradient(ellipse, rgba(0,31,91,0.08), transparent 70%);
  opacity: 1;
}
[data-theme="light"] .a3 {
  background: radial-gradient(ellipse, rgba(100,0,150,0.07), transparent 70%);
  opacity: 1;
}
[data-theme="light"] .a4 {
  background: radial-gradient(ellipse, rgba(179,0,0,0.06), transparent 70%);
  opacity: 1;
}

/* Scan lines lighter on light bg */
[data-theme="light"] .story-scan-lines {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.012) 3px,
    rgba(0,0,0,0.012) 4px
  );
}

/* Section separators — lighter accent in light mode */
[data-theme="light"] .section-vsep span {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(179,0,0,0.4) 20%,
    rgba(0,31,91,0.5) 50%,
    rgba(179,0,0,0.4) 80%,
    transparent 100%);
}
[data-theme="light"] .section-vsep span::before {
  background: var(--red);
  box-shadow: 0 0 6px rgba(179,0,0,0.3);
}

/* ─── Responsive additions ───────────────────────────────────── */
@media (max-width: 767px) {
  .hero-logo-ring { inset: -10px; }
  .brand-logo-img { max-height: 46px; max-width: 110px; opacity: 0.9; }
  .brand-logo-wrap { height: 58px; }
  .btn-mmn-outline { padding: 0.65rem 1.75rem; }
  .milestone-dot { margin-left: -1.5rem; }
}
