/* ═══════════════════════════════════════════════════════
   CIRROM SHARED DESIGN SYSTEM
   All pages import this. Tokens, reset, nav, trust strip,
   buttons, footer, typography, reveal animations.
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --ink:    #0d1117;
  --ink-60: rgba(13,17,23,0.6);
  --ink-20: rgba(13,17,23,0.12);
  --paper:  #f7f5f0;
  --white:  #ffffff;
  --rule:   #e2ddd7;
  --navy:          #102A43;
  --navy-hover:    #163657;
  --accent:          #F2A63B;
  --accent-on-light: #0d1117;
  --accent-light:    #FEF3E0;
  --accent-border:   #F2A63B;
  --stat-size: clamp(2rem, 5vw, 3.25rem);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Figtree', sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── UTILITIES ──────────────────────────────────────── */
.serif { font-family: 'Figtree', sans-serif; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
.closing-rule { border-left: 3px solid var(--accent-border); padding-left: 20px; font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.5; max-width: 660px; margin-top: 48px; }
.page-title { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.page-sub { font-size: clamp(15px, 1.5vw, 17px); color: var(--ink-60); line-height: 1.7; max-width: 560px; }
.section-h { font-family: 'Figtree', sans-serif; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.2; margin-bottom: 16px; }
.section-body { font-size: 15px; color: var(--ink-60); line-height: 1.7; max-width: 680px; margin-bottom: 14px; }
.module-note { font-size: 12px; color: var(--ink-60); margin-top: 10px; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 96px) clamp(24px, 6vw, 80px); border-bottom: 1px solid var(--rule); background: var(--white); }
.section.paper { background: var(--paper); }
.section.dark { background: var(--navy) url('branding/cirrom-bg.jpg') center/cover no-repeat; border-bottom-color: rgba(255,255,255,0.06); }
.section-header { max-width: 640px; margin-bottom: 44px; }
.section-header h2 { font-family: 'Figtree', sans-serif; font-size: clamp(1.6rem, 3.2vw, 2.25rem); line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 16px; color: var(--ink-60); line-height: 1.7; }
.section.dark .section-header h2 { color: #fff; }
.section.dark .section-header p { color: rgba(255,255,255,0.55); }
.section.dark .section-h { color: #fff; }
.section.dark .section-body { color: rgba(255,255,255,0.65); }
.section.dark .closing-rule { border-left-color: var(--accent); color: rgba(255,255,255,0.85); }
.section.dark .eyebrow { color: var(--accent); }
.section.dark .closing-rule { border-left-color: var(--accent); color: rgba(255,255,255,0.85); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-ghost { padding: 8px 18px; font-size: 13px; font-family: inherit; font-weight: 500; border: 1px solid var(--ink-20); background: transparent; color: var(--ink); cursor: pointer; border-radius: 2px; transition: border-color 0.2s, background 0.2s; letter-spacing: 0.01em; }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn-primary { padding: 8px 20px; font-size: 13px; font-family: inherit; font-weight: 600; border: none; background: var(--accent); color: var(--ink); cursor: pointer; border-radius: 2px; transition: background 0.2s, transform 0.15s; letter-spacing: 0.01em; }
.btn-primary:hover { background: #d9902a; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary-lg { padding: 14px 36px; font-size: 15px; font-family: inherit; font-weight: 600; border: none; background: var(--accent); color: var(--ink); cursor: pointer; border-radius: 2px; transition: background 0.2s, transform 0.15s; letter-spacing: 0.01em; }
.btn-primary-lg:hover { background: #d9902a; transform: translateY(-1px); }
.btn-ghost-lg { padding: 14px 32px; font-size: 15px; font-family: inherit; font-weight: 500; border: 1px solid var(--ink-20); background: transparent; color: var(--ink); cursor: pointer; border-radius: 2px; transition: border-color 0.2s; letter-spacing: 0.01em; }
.btn-ghost-lg:hover { border-color: var(--ink); }

/* ─── NAV — floating pill (transparent → opaque on scroll) ── */
nav {
  display: flex;
  align-items: center;
  height: 56px !important;
  position: sticky;
  top: 14px;
  margin: 14px clamp(14px, 3vw, 32px) 0;
  border-radius: 28px;
  padding: 0 clamp(16px, 2.5vw, 28px);
  overflow: visible;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, border-radius 0.35s, backdrop-filter 0.35s;
}
nav.nav-scrolled {
  background: rgba(255,255,255,0.94);
  border-color: var(--rule);
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
nav.nav-expanded,
nav.nav-expanded-security { border-radius: 28px 28px 0 0; }
nav.nav-expanded-security .nav-dropdown-trigger#nav-security-trigger { color: var(--ink); }
nav.nav-expanded-security .nav-dropdown-trigger#nav-security-trigger svg { transform: rotate(180deg); }
.nav-logo { font-family: 'Figtree', sans-serif; font-size: 22px; letter-spacing: -0.01em; color: var(--ink); flex-shrink: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; margin-right: clamp(23px, 2.5vw, 35px); }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
}
.nav-left a { color: var(--ink-60); transition: color 0.2s; }
.nav-left a:hover { color: var(--ink); }
.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-right .btn-primary { border-radius: 20px; padding: 7px 20px; }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--ink-60);
  font-size: 14px;
  transition: color 0.2s;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-weight: 400;
}
.nav-dropdown-trigger:hover,
nav.nav-expanded .nav-dropdown-trigger#nav-platform-trigger { color: var(--ink); }
.nav-dropdown-trigger svg { transition: transform 0.3s; }
nav.nav-expanded .nav-dropdown-trigger#nav-platform-trigger svg { transform: rotate(180deg); }
.nav-sub-row {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--rule);
  border-top: none;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 clamp(16px, 2.5vw, 28px);
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
nav.nav-expanded #nav-sub-row,
nav.nav-expanded-security #nav-security-sub-row {
  max-height: 60px;
  opacity: 1;
  padding: 10px clamp(16px, 2.5vw, 28px) 14px;
}
.nav-sub-row a {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--ink-60);
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-sub-row a:hover { background: var(--accent-light); color: var(--ink); }
.nav-sub-row a.nav-dd-overview {
  font-weight: 600;
  font-size: 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--paper);
}
.nav-mobile-menu { display: none; }

/* ─── TRUST STRIP ─────────────────────────────────────── */
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--rule); box-shadow: 0 1px 4px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 24px; padding: 10px clamp(24px, 6vw, 80px); flex-wrap: wrap; }
.trust-strip .ts-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); }
.cert-pill { display: flex; align-items: center; gap: 6px; background: var(--accent-light); border: 1px solid var(--accent-border); padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--ink); letter-spacing: 0.06em; text-transform: uppercase; }
.ts-right { margin-left: auto; font-size: 11px; color: var(--ink-60); }

/* ─── HERO (inner pages) ─────────────────────────────── */
.page-hero { background: var(--navy) url('branding/cirrom-bg.jpg') center/cover no-repeat; padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px); border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -80px; right: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(242,166,59,0.10) 0%, transparent 70%); pointer-events: none; border-radius: 50%; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero .page-title { color: #fff; }
.page-hero .page-sub { color: rgba(255,255,255,0.65); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; background: rgba(242,166,59,0.12); padding: 5px 12px; border-radius: 100px; }
.hero-eyebrow svg { flex-shrink: 0; }

/* ─── CARD PATTERNS ──────────────────────────────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-bottom: 48px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-bottom: 48px; }
.col-card { background: var(--white); padding: 32px 28px; transition: background 0.2s; }
.col-card:hover { background: var(--paper); }
.col-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.col-card p { font-size: 13px; color: var(--ink-60); line-height: 1.65; }
.col-card .card-num { font-family: 'Figtree', sans-serif; font-size: 36px; color: var(--ink-20); line-height: 1; margin-bottom: 16px; }
.boxed-card { background: var(--white); border: 1px solid var(--rule); border-radius: 3px; padding: 32px; transition: box-shadow 0.2s, transform 0.2s; }
.boxed-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
.boxed-card h3 { font-family: 'Figtree', sans-serif; font-size: 19px; margin-bottom: 10px; line-height: 1.3; }
.boxed-card p { font-size: 14px; color: var(--ink-60); line-height: 1.65; }
.tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--accent-border); color: var(--ink); background: var(--accent-light); padding: 3px 10px; border-radius: 2px; margin-bottom: 14px; }

/* Dark cards */
.section.dark .card-grid-3 { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); }
.section.dark .col-card { background: var(--navy); }
.section.dark .col-card:hover { background: var(--navy-hover); }
.section.dark .col-card h3 { color: #fff; }
.section.dark .col-card p { color: rgba(255,255,255,0.55); }
.section.dark .col-card .card-num { color: rgba(255,255,255,0.05); }

/* ─── CHIP / PILL PATTERNS ───────────────────────────── */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.chip { background: var(--white); border: 1px solid var(--rule); border-radius: 2px; padding: 7px 16px; font-size: 13px; font-weight: 500; color: var(--ink); transition: border-color 0.2s, background 0.2s; }
.chip:hover { border-color: var(--accent-border); background: var(--accent-light); }
.chip-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); display: block; margin-bottom: 10px; }

/* ─── HIGHLIGHT BOX ──────────────────────────────────── */
.highlight-box { border-left: 3px solid var(--accent-border); padding: 18px 24px; background: var(--paper); margin: 24px 0; max-width: 680px; font-size: 15px; color: var(--ink); line-height: 1.65; }

/* ─── INFO BOX ───────────────────────────────────────── */
.info-box { border: 1px solid var(--rule); padding: 28px 32px; background: var(--paper); max-width: 680px; margin: 20px 0; border-radius: 3px; }
.info-box p { font-size: 14px; color: var(--ink-60); line-height: 1.7; margin-bottom: 12px; }
.info-box p:last-child { margin-bottom: 0; }

/* ─── MODULE LINK CARDS ──────────────────────────────── */
.module-link-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.module-link-card { border: 1px solid var(--rule); border-radius: 3px; padding: 16px 20px; min-width: 200px; transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.module-link-card:hover { border-color: var(--accent-border); background: var(--accent-light); }
.module-link-card strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.module-link-card span { font-size: 12px; color: var(--ink-60); }

/* ─── CTA SECTION ────────────────────────────────────── */
.page-end-wrap { background: var(--navy) url('branding/cirrom-bg.jpg') center/cover no-repeat; }
.cta-block { background: transparent; text-align: center; padding: clamp(72px, 10vw, 112px) clamp(24px, 6vw, 80px); }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Figtree', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; color: #fff; margin-bottom: 18px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 12px; }
.cta-inner .cta-sub2 { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 32px; }
.cta-inner .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-inner .btn-primary-lg { background: var(--accent); color: var(--ink); font-weight: 700; }
.cta-inner .btn-primary-lg:hover { background: #d9902a; transform: translateY(-1px); }
.cta-inner .btn-ghost-lg { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.cta-inner .btn-ghost-lg:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-footnote { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-footnote span { display: flex; align-items: center; gap: 5px; }
.cta-footnote .accent-star { color: var(--accent); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: transparent; padding: clamp(48px, 6vw, 72px) clamp(24px, 6vw, 80px); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.8; }
.footer-brand { font-family: 'Figtree', sans-serif; font-size: 20px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 12px; }
.linkedin-link { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.3); font-size: 12px; transition: color 0.2s; }
.linkedin-link:hover { color: rgba(255,255,255,0.7); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-animate > * { animation: fadeUp 0.6s ease both; }
.hero-animate > *:nth-child(1) { animation-delay: 0.08s; }
.hero-animate > *:nth-child(2) { animation-delay: 0.18s; }
.hero-animate > *:nth-child(3) { animation-delay: 0.28s; }
.hero-animate > *:nth-child(4) { animation-delay: 0.38s; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .trust-strip { gap: 12px; padding: 9px clamp(16px, 5vw, 40px); }
  .ts-right { display: none; }
}
@media (max-width: 600px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { justify-content: center; }
  .ts-label { display: none; }
}

/* ─── MOBILE NAV TOGGLE ──────────────────────────────── */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
nav.nav-open .nav-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-mobile-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  nav {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    margin: 0;
    border-radius: 0;
    height: 64px !important;
    padding: 0 clamp(20px, 5vw, 60px);
    background: rgba(255,255,255,0.96) !important;
    border: none !important;
    border-bottom: 1px solid var(--rule) !important;
    box-shadow: none !important;
  }
  .nav-left, .nav-right { display: none; }
  .nav-mobile-toggle { display: flex; }
  nav.nav-open .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    padding: 8px clamp(20px, 5vw, 60px) 20px;
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  nav.nav-open .nav-mobile-menu a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--rule);
    color: var(--ink-60);
  }
  nav.nav-open .nav-mobile-menu a.nav-mobile-sub {
    padding-left: 16px;
    font-size: 14px;
  }
  nav.nav-open .nav-mobile-menu a:last-child { border-bottom: none; }
  nav.nav-open .nav-mobile-menu .btn-primary {
    margin-top: 16px;
    width: 100%;
  }
}

/* ─── COOKIE BANNER ──────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(13,17,23,0.12), 0 2px 8px rgba(13,17,23,0.06);
  padding: 24px;
  animation: fadeUp 0.35s ease both;
}
.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: color 0.2s;
}
.cookie-close:hover { color: var(--ink); }
.cookie-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Figtree', sans-serif;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 12px;
}
.cookie-logo img { height: 20px; width: auto; }
.cookie-divider { height: 1px; background: var(--rule); margin-bottom: 14px; }
.cookie-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.cookie-desc { font-size: 12px; color: var(--ink-60); line-height: 1.6; margin-bottom: 12px; }
.cookie-links { display: flex; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.cookie-links a { font-size: 11px; font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.cookie-links a:hover { color: var(--ink-60); }
.cookie-btns { display: flex; gap: 8px; margin-bottom: 10px; }
.cookie-btns .btn-ghost,
.cookie-btns .btn-primary { flex: 1; text-align: center; font-size: 12px; padding: 8px 12px; }

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-animate > *, .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
