/*
 * mc-global.css — Mindcafe Global Design System
 *
 * FIXES applied:
 *  1. Nav dark by default on ALL pages — transparent only on .mc-nav--hero (home/feelz)
 *  2. text-decoration: none on all links globally (fixes underline on hover)
 *  3. Blog removed from nav (handled in nav.php)
 */

/* ================================================================
   1. CSS TOKENS
================================================================ */
:root {
  --navy:        #0A1628;  --navy-2: #0F1E38;  --navy-3: #162444;  --navy-4: #1D2E52;
  --mauve:       #96667E;  --mauve-2:#A87898;  --mauve-lt:#C4A4B6; --mauve-pale:#F0E8ED; --mauve-deep:#6B4860;
  --cream:       #F7F3EE;  --cream-2:#EEE8E0;  --white:   #FFFFFF;
  --ink:         #0D1628;  --ink-2:  #3A4462;  --ink-3:   #8890A8;
  --border-d:    rgba(255,255,255,0.08);
  --border-l:    rgba(10,22,40,0.09);
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --nav-h:        64px;
  --px:           60px;
  --section-py:   110px;
  --ease:         cubic-bezier(0.22,1,0.36,1);
  --dur:          0.25s;
}


/* ================================================================
   2. RESET + BASE
================================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.page-home,
body.page-feelz { background: var(--navy); }

/* ── FIX 2: No underlines anywhere ─────────────────────────────
   Browser default shows underline on <a> hover.
   We remove it globally — individual components use color/weight
   to communicate link status instead.                          */
a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
}

/* Re-add underline ONLY for explicitly marked prose links */
.prose-link { text-decoration: underline; }

img  { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: inherit; }
a, button { min-height: 44px; }


/* ================================================================
   3. TYPOGRAPHY
================================================================ */
.mc-display-h {
  font-family: var(--font-display);
  font-size: clamp(32px,3.6vw,54px); font-weight: 900;
  line-height: 1.08; letter-spacing: -.3px; color: var(--navy);
}
.mc-display-h em         { font-style: italic; color: var(--mauve); }
.mc-display-h--white     { color: var(--white) !important; }
.mc-display-h--white em  { color: var(--mauve-lt) !important; }

.mc-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px,5.5vw,82px); font-weight: 900;
  line-height: 1.03; letter-spacing: -2.5px; color: var(--white);
}
.mc-hero-h1 em { font-style: italic; color: var(--mauve-lt); }

.mc-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mauve); margin-bottom: 16px;
}
.mc-eyebrow::before { content:''; flex-shrink:0; width:24px; height:1.5px; background:var(--mauve); }
.mc-eyebrow--light        { color: var(--mauve-lt); }
.mc-eyebrow--light::before{ background: var(--mauve-lt); }

.mc-body-text { font-size: 15.5px; color: var(--ink-3); line-height: 1.85; max-width: 440px; margin-top: 18px; }
.mc-body-text--wide { max-width: 600px; }


/* ================================================================
   4. BUTTONS
================================================================ */
.mc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: .02em; border: none; border-radius: 8px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap; text-decoration: none !important;
  position: relative; overflow: hidden; min-height: 44px; padding: 0 20px;
  cursor: pointer;
}
.mc-btn::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.12),transparent); opacity:0; transition:opacity .2s; }
.mc-btn:hover::after { opacity:1; }
.mc-btn:hover { text-decoration: none !important; }

.mc-btn-sm { font-size: 13px; min-height: 40px; padding: 0 18px; }
.mc-btn-lg { font-size: 15px; min-height: 52px; padding: 0 40px; }
.mc-btn-md { font-size: 14.5px; min-height: 48px; padding: 0 32px; }

.mc-btn-primary { color: var(--white); background: var(--mauve); border: 1px solid transparent; }
.mc-btn-primary:hover { background: var(--mauve-2); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(150,102,126,.38); color: var(--white); }
.mc-btn-primary:active { transform: none; box-shadow: none; }

.mc-btn-ghost { color: rgba(255,255,255,.65); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); }
.mc-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: var(--white); }

.mc-btn-ghost-dark { color: var(--navy); background: transparent; border: 1.5px solid var(--border-l); }
.mc-btn-ghost-dark:hover { border-color: var(--mauve); color: var(--mauve); }

.mc-btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  background: none; border: none; border-bottom: 1.5px solid var(--mauve);
  padding: 0 0 2px; transition: gap var(--dur) var(--ease), color var(--dur);
  min-height: auto; text-decoration: none !important;
}
.mc-btn-link:hover { gap: 14px; color: var(--mauve); text-decoration: none !important; }
.mc-btn-link--white { color: var(--white); border-bottom-color: rgba(255,255,255,.4); }
.mc-btn-link--white:hover { color: var(--mauve-lt); border-bottom-color: var(--mauve-lt); }


/* ================================================================
   5. NAVIGATION
   FIX 1: Dark by default on ALL pages.
           Only .mc-nav--hero (home/feelz) starts transparent.
================================================================ */

/* ── DEFAULT: always solid dark ── */
.mc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: var(--nav-h);
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border-d);
  transition: background .4s, border .4s, backdrop-filter .4s;
}

/* ── HERO VARIANT: transparent on load, darkens on scroll ── */
/* Used only on homepage and feelz page ($loadCanvas = true) */
.mc-nav--hero {
  background: rgba(10,22,40,0);
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}
.mc-nav--hero.is-scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border-d);
}

/* Solid variant — already dark, just slightly darken on scroll for polish */
.mc-nav--solid.is-scrolled {
  background: rgba(10,22,40,.99);
}

.mc-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 var(--px); gap: 24px;
}

.mc-nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none !important; min-height: 44px; }
.mc-nav-logo-img  { height: 45px; width: auto; }
.mc-nav-logo-text { font-family: var(--font-display); font-size: 21px; font-weight: 900; color: var(--white); letter-spacing: -.5px; }
.mc-nav-logo-text em { font-style: italic; color: var(--mauve-lt); }

.mc-nav-links { display: flex; align-items: center; gap: 32px; margin: 0; padding: 0; }

.mc-nav-link {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.52);
  letter-spacing: .03em; padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color var(--dur), border-color var(--dur);
  min-height: 44px; display: inline-flex; align-items: center;
  text-decoration: none !important;
}
.mc-nav-link:hover { color: var(--white); }
.mc-nav-link.is-active { color: var(--mauve-lt); border-bottom-color: var(--mauve-lt); }

.mc-nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.mc-nav-book    { display: none; }  /* 1280+ only */
.mc-nav-cta     { display: inline-flex; }

/* Hamburger */
.mc-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; padding: 8px;
  min-height: 44px; min-width: 44px; align-items: center;
}
.mc-hamburger span {
  display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8);
  border-radius: 2px; transition: transform .28s var(--ease), opacity .2s;
}
.mc-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mc-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mc-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================================
   6. DRAWER (mobile / tablet)
================================================================ */
.mc-drawer { position: fixed; inset: 0; z-index: 600; visibility: hidden; pointer-events: none; }
.mc-drawer.is-open { visibility: visible; pointer-events: auto; }

.mc-drawer-bg {
  position: absolute; inset: 0;
  background: rgba(5,10,20,.75); opacity: 0;
  transition: opacity .35s var(--ease); backdrop-filter: blur(4px);
}
.mc-drawer.is-open .mc-drawer-bg { opacity: 1; }

.mc-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px,90vw); background: var(--navy-2);
  display: flex; flex-direction: column; overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  border-left: 1px solid var(--border-d);
}
.mc-drawer.is-open .mc-drawer-panel { transform: translateX(0); }

.mc-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: var(--nav-h); border-bottom: 1px solid var(--border-d);
  flex-shrink: 0;
}
.mc-nav-logo-text-wrap { display: flex; align-items: center; text-decoration: none !important; }

.mc-drawer-close {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7); transition: background .2s, color .2s; flex-shrink: 0;
}
.mc-drawer-close:hover { background: rgba(255,255,255,.12); color: var(--white); }

.mc-drawer-links { flex: 1; padding: 8px 0; border-bottom: 1px solid var(--border-d); }

.mc-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 56px; font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s; text-decoration: none !important; gap: 12px;
}
.mc-drawer-link > span:first-child { flex: 1; }
.mc-drawer-link:hover { color: var(--white); background: rgba(255,255,255,.04); }
.mc-drawer-link.is-active { color: var(--mauve-lt); }

.mc-drawer-badge {
  font-size: 9px; font-weight: 700; color: var(--mauve-lt);
  background: rgba(150,102,126,.2); border: 1px solid rgba(150,102,126,.3);
  padding: 2px 7px; border-radius: 4px; letter-spacing: .06em; text-transform: uppercase;
}

.mc-drawer-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-d); flex-shrink: 0;
}
.mc-btn-drawer { width: 100%; height: 52px; font-size: 15px; border-radius: 8px; min-height: 52px; }

.mc-drawer-foot { padding: 20px 24px; flex-shrink: 0; }
.mc-drawer-foot p { font-size: 12.5px; color: rgba(255,255,255,.3); margin-bottom: 14px; line-height: 1.5; }
.mc-drawer-foot p strong { color: rgba(255,255,255,.55); }
.mc-drawer-social { display: flex; gap: 10px; }

body.mc-drawer-open { overflow: hidden; }


/* ================================================================
   7. SOCIAL LINKS (shared)
================================================================ */
.mc-social-link {
  width: 45px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s; flex-shrink: 0;
  text-decoration: none !important;
}
.mc-social-link:hover { background: rgba(150,102,126,.2); border-color: rgba(150,102,126,.4); color: var(--mauve-lt); }


/* ================================================================
   8. FOOTER
================================================================ */
.mc-footer { background: #060D1A; padding: 72px 0 0; }
.mc-footer-inner { padding: 0 var(--px); }

.mc-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: start;
}

.mc-footer-logo-link { text-decoration: none !important; display: inline-block; }
.mc-footer-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -.5px; display: block; margin-bottom: 14px; }
.mc-footer-logo-text em { font-style: italic; color: var(--mauve-lt); }
.mc-footer-logo-img  { height: 45px; width: auto; margin-bottom: 14px; }
.mc-footer-tagline   { font-size: 13px; color: rgba(255,255,255,.28); line-height: 1.85; max-width: 240px; }
.mc-footer-social    { display: flex; gap: 10px; margin-top: 20px; }

.mc-footer-col-title {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 20px; background: none; border: none;
  padding: 0; width: 100%; text-align: left; cursor: default; min-height: auto;
}
.mc-footer-acc-icon { display: none; }

.mc-footer-links    { display: flex; flex-direction: column; gap: 13px; }
.mc-footer-links a  { font-size: 13px; color: rgba(255,255,255,.42); transition: color .2s; text-decoration: none !important; }
.mc-footer-links a:hover { color: rgba(255,255,255,.82); }

.mc-footer-iso { margin-top: 20px; }
.mc-iso-badge  { height: 90px; width: auto; opacity: .5; filter: grayscale(1) brightness(2); transition: opacity .2s; }
.mc-iso-badge:hover { opacity: .8; }

.mc-footer-newsletter { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; }
.mc-footer-newsletter-title { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.72); margin-bottom: 4px; }
.mc-footer-newsletter-sub   { font-size: 13px; color: rgba(255,255,255,.3); }
.mc-footer-newsletter-field { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.mc-footer-email-input {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; color: var(--white); font-family: var(--font-body);
  font-size: 13px; padding: 0 16px; height: 44px; min-width: 240px;
  outline: none; transition: border-color .2s;
}
.mc-footer-email-input::placeholder { color: rgba(255,255,255,.3); }
.mc-footer-email-input:focus { border-color: rgba(150,102,126,.6); }

.mc-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 16px; flex-wrap: wrap; }
.mc-footer-copy   { font-size: 12px; color: rgba(255,255,255,.18); margin: 0; }
.mc-footer-bottom-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.mc-footer-bottom-link  { font-size: 12px; color: rgba(255,255,255,.3); transition: color .2s; text-decoration: none !important; }
.mc-footer-bottom-link:hover { color: rgba(255,255,255,.65); }
.mc-footer-made { font-size: 12px; color: rgba(255,255,255,.2); }


/* ================================================================
   9. SHARED SECTION UTILITIES
================================================================ */
.mc-page { padding-top: var(--nav-h); }
.mc-section { padding: var(--section-py) 0; }
.mc-container { padding-left: var(--px); padding-right: var(--px); width: 100%; }

.bg-navy    { background: var(--navy); }
.bg-navy-2  { background: var(--navy-2); }
.bg-cream   { background: var(--cream); }
.bg-white   { background: var(--white); }

.mc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.mc-reveal.is-visible { opacity: 1; transform: translateY(0); }
.mc-reveal[data-delay="1"] { transition-delay: .08s; }
.mc-reveal[data-delay="2"] { transition-delay: .16s; }
.mc-reveal[data-delay="3"] { transition-delay: .24s; }
.mc-reveal[data-delay="4"] { transition-delay: .32s; }
.mc-reveal[data-delay="5"] { transition-delay: .40s; }

.mc-marquee { overflow: hidden; background: var(--mauve); padding: 13px 0; }
.mc-marquee-track { display: flex; white-space: nowrap; animation: mcMarquee 28s linear infinite; }
.mc-marquee:hover .mc-marquee-track { animation-play-state: paused; }
.mc-marquee-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 26px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.84); letter-spacing: .05em; }
.mc-marquee-sep  { color: rgba(255,255,255,.28); font-size: 10px; }

.mc-stats-bar { background: var(--navy-2); padding: 52px var(--px); }
.mc-stat-col  { text-align: center; padding: 8px 20px; border-right: 1px solid var(--border-d); }
.mc-stat-col:last-child { border-right: none; }
.mc-stat-num  { font-family: var(--font-display); font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -2px; }
.mc-stat-num sub { font-size: 28px; color: var(--mauve-lt); vertical-align: baseline; }
.mc-stat-lbl  { font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .08em; text-transform: uppercase; margin-top: 8px; font-weight: 600; }


/* ================================================================
   10. CUSTOM CURSOR
================================================================ */
.mc-cursor-dot  { position: fixed; width: 8px; height: 8px; border-radius: 50%; background: var(--white); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: difference; }
.mc-cursor-ring { position: fixed; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.45); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); mix-blend-mode: difference; transition: width .25s, height .25s, border-color .25s; }
.mc-cursor-ring.is-hovering { width: 60px; height: 60px; border-color: rgba(150,102,126,.8); }


/* ================================================================
   11. RESPONSIVE
================================================================ */

/* ── Desktop 1280+ ── */
@media (min-width: 1280px) {
  .mc-nav-book  { display: inline-flex; }
  .mc-hamburger { display: none; }
}

/* ── Laptop 1024–1279 ── */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root { --px: 40px; }
  .mc-nav-book  { display: none; }
  .mc-nav-cta   { display: inline-flex; }
  .mc-hamburger { display: none; }
  .mc-nav-links { gap: 24px; }
  .mc-footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; }
}

/* ── Tablet 768–1023 ── */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --px: 32px; --section-py: 88px; --nav-h: 60px; }
  .mc-nav-links { display: none; }
  .mc-nav-book  { display: none; }
  .mc-nav-cta   { display: none; }
  .mc-hamburger { display: flex; }
  .mc-footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .mc-footer-brand { grid-column: 1 / -1; }
  .mc-footer-tagline { max-width: 440px; }
  .mc-footer-newsletter { flex-direction: column; align-items: flex-start; }
  .mc-footer-email-input { min-width: 280px; }
  .mc-footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .mc-footer-bottom-right { justify-content: center; }
  /* Footer accordion on tablet */
  .mc-footer-col { border-top: 1px solid rgba(255,255,255,.07); padding: 0; }
  .mc-footer-col-title { cursor: pointer; padding: 16px 0; margin-bottom: 0; min-height: 52px; }
  .mc-footer-acc-icon { display: block; flex-shrink: 0; transition: transform .3s; }
  .mc-footer-col.is-open .mc-footer-acc-icon { transform: rotate(180deg); }
  .mc-footer-links { max-height: 0; overflow: hidden; gap: 0; transition: max-height .35s ease, padding .3s; }
  .mc-footer-col.is-open .mc-footer-links { max-height: 300px; padding-bottom: 16px; }
  .mc-footer-links a { padding: 8px 0; display: block; }
}

/* ── Mobile Large 576–767 ── */
@media (min-width: 576px) and (max-width: 767px) {
  :root { --px: 24px; --section-py: 72px; --nav-h: 60px; }
  .mc-nav-links { display: none; }
  .mc-nav-book  { display: none; }
  .mc-nav-cta   { display: none; }
  .mc-hamburger { display: flex; }
  .mc-footer-top { grid-template-columns: 1fr 1fr; gap: 0; }
  .mc-footer-brand { grid-column: 1 / -1; margin-bottom: 8px; }
  /* Footer accordion */
  .mc-footer-col { border-top: 1px solid rgba(255,255,255,.07); padding: 0; }
  .mc-footer-col-title { cursor: pointer; padding: 16px 0; margin-bottom: 0; min-height: 52px; }
  .mc-footer-acc-icon { display: block; flex-shrink: 0; transition: transform .3s; }
  .mc-footer-col.is-open .mc-footer-acc-icon { transform: rotate(180deg); }
  .mc-footer-links { max-height: 0; overflow: hidden; gap: 0; transition: max-height .35s ease, padding .3s; }
  .mc-footer-col.is-open .mc-footer-links { max-height: 300px; padding-bottom: 16px; }
  .mc-footer-links a { padding: 8px 0; display: block; }
  .mc-footer-newsletter { flex-direction: column; align-items: flex-start; }
  .mc-footer-email-input { min-width: 100%; width: 100%; }
  .mc-footer-newsletter-field { width: 100%; }
  .mc-footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .mc-footer-bottom-right { justify-content: center; flex-direction: column; gap: 8px; }
  .mc-stat-num { font-size: 38px; }
}

/* ── Mobile Small 0–575 ── */
@media (max-width: 575px) {
  :root { --px: 20px; --section-py: 64px; --nav-h: 60px; }
  .mc-nav-inner { padding: 0 20px; }
  .mc-nav-links { display: none; }
  .mc-nav-book  { display: none; }
  .mc-nav-cta   { display: none; }
  .mc-hamburger { display: flex; }
  /* Drawer full width on small phones */
  .mc-drawer-panel { width: 100%; border-left: none; }
  /* Footer single column */
  .mc-footer-top { grid-template-columns: 1fr; gap: 0; }
  .mc-footer-brand { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .mc-footer-tagline { max-width: 100%; }
  .mc-footer-col { border-top: 1px solid rgba(255,255,255,.07); padding: 0; }
  .mc-footer-col-title { cursor: pointer; padding: 16px 0; margin-bottom: 0; min-height: 52px; }
  .mc-footer-acc-icon { display: block; flex-shrink: 0; transition: transform .3s; }
  .mc-footer-col.is-open .mc-footer-acc-icon { transform: rotate(180deg); }
  .mc-footer-links { max-height: 0; overflow: hidden; gap: 0; transition: max-height .35s ease, padding .3s; }
  .mc-footer-col.is-open .mc-footer-links { max-height: 300px; padding-bottom: 16px; }
  .mc-footer-links a { padding: 9px 0; display: block; font-size: 14px; }
  .mc-footer-newsletter { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mc-footer-newsletter-field { width: 100%; flex-direction: column; }
  .mc-footer-email-input { min-width: 100%; width: 100%; }
  .mc-footer-newsletter .mc-btn { width: 100%; }
  .mc-footer-bottom { flex-direction: column; text-align: center; gap: 10px; padding: 20px 0; }
  .mc-footer-bottom-right { flex-direction: column; align-items: center; gap: 6px; }
  .mc-stat-num { font-size: 32px; letter-spacing: -1px; }
  .mc-stat-num sub { font-size: 20px; }
  .mc-display-h { font-size: clamp(26px,8vw,36px); letter-spacing: -.5px; }
  .mc-hero-h1   { font-size: clamp(34px,10vw,50px); letter-spacing: -1.5px; }
  .mc-cursor-dot, .mc-cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .mc-reveal { opacity: 1; transform: none; }
}
