/* =========================
   ABOUT PAGE
========================= */
.about-page {
  background: #ffffff;
  overflow-x: hidden;
}

/* =========================
   HERO — ENTRY ANIMATIONS
========================= */
.about-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #081a35;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/about-hero.png") center center / cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
  animation: heroZoomIn 8s var(--ease) forwards;
}
@keyframes heroZoomIn {
  from { transform: scale(1.08); }
  to   { transform: scale(1.02); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4,14,31,.92) 0%, rgba(4,14,31,.68) 45%, rgba(4,14,31,.56) 100%),
    radial-gradient(700px 420px at 20% 24%, rgba(212,166,42,.14), transparent 60%);
  animation: overlayPulse 9s ease-in-out infinite;
}
@keyframes overlayPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .88; }
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(300px,400px);
  gap: 54px;
  align-items: center;
  padding: 92px 0;
}

/* Hero copy — slide in from left */
.anim-eyebrow {
  animation: slideInLeft .8s var(--ease) .1s both;
}
.anim-hero-h1 {
  animation: slideInLeft .85s var(--ease) .25s both;
}
.anim-hero-text {
  animation: slideInLeft .85s var(--ease) .4s both;
}
.anim-hero-actions {
  animation: slideInLeft .85s var(--ease) .55s both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hero panel — slide in from right with bounce */
.anim-hero-panel {
  animation: slideInRight 1s cubic-bezier(.34,1.56,.64,1) .35s both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(70px) scale(.94); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Panel items stagger in */
.anim-panel-item {
  opacity: 0;
  transform: translateY(20px);
  animation: panelItemIn .6s var(--ease) calc(.6s + var(--i) * .12s) both;
  transition: background .3s, transform .3s var(--ease);
}
@keyframes panelItemIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-panel-item:hover {
  background: rgba(255,255,255,.14) !important;
  transform: translateX(6px);
}

.about-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 800;
}
.about-hero-copy h1 span { display: block; color: rgba(255,255,255,.78); }

.about-hero-text {
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1.04rem;
  max-width: 56ch;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-hero-panel {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}
.about-panel-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 700;
  color: #ffe39a;
  background: rgba(212,166,42,.14);
  border: 1px solid rgba(212,166,42,.2);
}
.about-panel-stack { display: grid; gap: 12px; }
.about-panel-stack article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  cursor: default;
}
.about-panel-stack strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}
.about-panel-stack p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .93rem;
}

/* =========================
   ANCHOR NAV
========================= */
.about-anchor-strip {
  position: relative;
  z-index: 20;
  margin-top: -34px;
}
.about-anchor-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px;
  width: fit-content;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(15,23,42,.1);
  backdrop-filter: blur(14px);
  animation: anchorDrop .7s var(--ease) .9s both;
}
@keyframes anchorDrop {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-anchor-nav a {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
  transition: background .25s var(--ease), color .25s, transform .25s var(--ease);
  white-space: nowrap;
}
.about-anchor-nav a:hover {
  background: rgba(9,42,87,.08);
  transform: translateY(-2px);
}
.about-anchor-nav a.is-current {
  background: var(--navy);
  color: #fff;
}

/* =========================
   STORY
========================= */
.about-story {
  padding-top: 130px;
  background:
    radial-gradient(700px 400px at 94% 10%, rgba(212,166,42,.08), transparent 60%),
    linear-gradient(to bottom, #fff, #fbfdff);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
  gap: 64px;
  align-items: start;
}

.story-rail h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.story-note {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 46ch;
}
.story-note-line {
  width: 52px;
  height: 2px;
  margin-top: 12px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--gold), var(--blue-2));
  transition: width .5s var(--ease);
}
.story-note:hover .story-note-line { width: 80px; }
.story-note p { margin: 0; color: #5d6878; line-height: 1.7; }

.story-visual { display: grid; gap: 20px; }

.story-image-main {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background:
    url("../img/about-hero1.png") center center / cover no-repeat,
    linear-gradient(135deg, #102c57, #0b1b36);
  box-shadow: 0 32px 80px rgba(15,23,42,.16);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.story-image-main:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 44px 100px rgba(15,23,42,.22);
}
.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,38,.08) 0%, rgba(7,18,38,.74) 100%);
}
.story-image-copy {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
}
.story-image-copy span {
  display: inline-block;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 32px;
}
.story-image-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.story-mini-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.story-mini-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.story-mini-card span,
.compliance-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  background: rgba(13,59,122,.08);
  color: var(--blue);
}
.story-mini-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.story-mini-card p  { margin: 0; color: var(--muted); font-size: .88rem; }

/* =========================
   BELIEFS — 4-col grid with staggered slide-ins
========================= */
.about-beliefs { background: #fff; }

.belief-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.belief-card {
  position: relative;
  padding: 28px 22px 22px;
  border-radius: 24px;
  background: linear-gradient(to bottom, #fff, #fbfdff);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  will-change: transform;
  transition: box-shadow .45s var(--ease), border-color .35s;
}
/* Shimmer sweep on hover */
.belief-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transition: left .55s var(--ease);
}
.belief-card:hover::after { left: 150%; }
.belief-card:hover { box-shadow: var(--shadow-md); border-color: rgba(13,59,122,.14); }

.belief-mark {
  display: block;
  width: 48px; height: 3px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--gold), var(--blue-2));
  transition: width .5s var(--ease);
}
.belief-card:hover .belief-mark { width: 80px; }
.belief-card h3 { margin: 0 0 10px; font-size: 1.1rem; letter-spacing: -.02em; }
.belief-card p  { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* =========================
   PROCESS BAND
========================= */
.about-process-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(780px 460px at 14% 10%, rgba(212,166,42,.12), transparent 60%),
    radial-gradient(760px 420px at 84% 22%, rgba(13,59,122,.28), transparent 60%),
    linear-gradient(to bottom, #07142a, #081b38);
}

/* Animated grid lines */
.about-process-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.process-band-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 42px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.process-band-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.process-ladder {
  position: relative;
  display: grid;
  gap: 18px;
}
.process-ladder::before {
  content: '';
  position: absolute;
  left: 26px; top: 16px; bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(212,166,42,.08),
    rgba(212,166,42,.6),
    rgba(13,59,122,.5),
    rgba(212,166,42,.08));
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.process-step-no {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,166,42,.2), rgba(13,59,122,.2));
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
  transition: transform .4s var(--ease), background .4s;
}
.process-step:hover .process-step-no {
  transform: scale(1.15) rotate(6deg);
  background: linear-gradient(135deg, rgba(212,166,42,.35), rgba(13,59,122,.35));
}
.process-step-body {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0,0,0,.14);
  transition: transform .4s var(--ease), background .4s, border-color .4s;
  overflow: hidden;
  position: relative;
}
/* Shimmer on process card hover */
.process-step-body::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transition: left .55s var(--ease);
}
.process-step:hover .process-step-body::after { left: 150%; }
.process-step:hover .process-step-body {
  transform: translateX(8px) translateY(-4px);
  background: rgba(255,255,255,.11);
  border-color: rgba(212,166,42,.22);
}
.process-step-body h3 { margin: 0 0 8px; color: #fff; font-size: 1.1rem; }
.process-step-body p  { margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; }

/* =========================
   COMPLIANCE
========================= */
.about-compliance-split {
  background:
    radial-gradient(700px 340px at 100% 0%, rgba(212,166,42,.08), transparent 60%),
    #fff;
}
.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
  gap: 44px;
  align-items: start;
}
.compliance-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.compliance-cards { display: grid; gap: 16px; }
.compliance-card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  will-change: transform;
  transition: box-shadow .4s var(--ease), border-color .35s;
}
/* Left accent bar that slides in on hover */
.compliance-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--blue-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.compliance-card:hover::before { transform: scaleY(1); }
.compliance-card:hover { box-shadow: var(--shadow-md); border-color: rgba(13,59,122,.12); }
.compliance-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.compliance-card p  { margin: 0; color: var(--muted); font-size: .88rem; }

/* =========================
   CLOSING
========================= */
.about-closing {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #081a35;
}
.about-closing-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero3.png") center center / cover no-repeat;
  transform: scale(1.04);
  will-change: transform;
}
.about-closing-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,14,31,.86) 0%, rgba(4,14,31,.66) 48%, rgba(4,14,31,.54) 100%),
    radial-gradient(700px 420px at 20% 24%, rgba(212,166,42,.12), transparent 60%);
}
.about-closing-wrap {
  position: relative;
  z-index: 2;
  padding: 84px 0;
}
.about-closing-card {
  max-width: 720px;
  padding: 38px;
  border-radius: 30px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,.2);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.about-closing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
}
.about-closing-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.about-closing-card p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.76);
  max-width: 56ch;
}
.about-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* =========================
   REVEAL ANIMATION VARIANTS
   (used on top of main.js reveal system)
========================= */
.reveal-left  { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-scale { transform: scale(.86) translateY(24px); }

/* These are declared in style.css too, but ensure they exist here */
.reveal {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =========================
   RESPONSIVE — 1100px
========================= */
@media (max-width: 1100px) {
  .about-hero-grid,
  .about-story-grid,
  .process-band-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .belief-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .about-anchor-strip { margin-top: -24px; }
  .about-hero-grid { padding: 72px 0 80px; }
}

/* =========================
   RESPONSIVE — 900px
========================= */
@media (max-width: 900px) {
  .about-hero,
  .about-closing { min-height: auto; }
  .about-hero-grid,
  .about-closing-wrap { padding: 64px 0 72px; }

  .about-anchor-nav {
    width: 100%;
    border-radius: 20px;
    justify-content: center;
  }
  .about-anchor-nav a { font-size: .84rem; padding: 0 12px; min-height: 38px; }

  .about-hero-copy h1 { font-size: clamp(2.4rem, 7vw, 3.6rem); max-width: none; }
  .story-rail h2,
  .process-band-copy h2,
  .compliance-panel h2,
  .about-closing-card h2 { max-width: none; }

  .about-story { padding-top: 100px; }
  .story-image-main { min-height: 360px; }
}

/* =========================
   RESPONSIVE — 768px
========================= */
@media (max-width: 768px) {
  .about-hero-grid   { padding: 52px 0 60px; gap: 26px; }
  .about-hero-copy h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
  .about-hero-text   { font-size: .94rem; }
  .about-hero-actions,
  .about-closing-actions { flex-direction: column; align-items: stretch; gap: 10px; }

  .about-hero-panel  { padding: 20px; }
  .about-panel-stack article { padding: 13px; }

  .about-story { padding-top: 80px; }
  .story-mini-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .story-mini-card  { padding: 18px; }
  .story-image-main { min-height: 300px; }
  .story-image-copy strong { font-size: 1.3rem; }

  .belief-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .belief-card { padding: 22px 18px 18px; }

  .process-step { grid-template-columns: 56px 1fr; gap: 14px; }
  .process-ladder::before { left: 21px; }
  .process-step-no { width: 44px; height: 44px; border-radius: 14px; }
  .process-step-body { padding: 18px; }

  .compliance-grid { gap: 28px; }
  .compliance-card  { padding: 20px; }

  .about-closing-wrap { padding: 56px 0 60px; }
  .about-closing-card { padding: 26px 20px; border-radius: 22px; max-width: 100%; }
  .about-closing-card h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

/* =========================
   RESPONSIVE — 540px
========================= */
@media (max-width: 540px) {
  .belief-grid { grid-template-columns: 1fr; gap: 12px; }
  .story-mini-grid { grid-template-columns: 1fr 1fr; }
  .about-anchor-nav { gap: 4px; padding: 8px; }
  .about-anchor-nav a { font-size: .78rem; padding: 0 10px; min-height: 36px; }
}

/* =========================
   RESPONSIVE — 480px
========================= */
@media (max-width: 480px) {
  .about-hero-grid { padding: 42px 0 50px; gap: 22px; }
  .about-hero-copy h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .about-hero-text { font-size: .88rem; }
  .about-hero-panel { padding: 16px; border-radius: 20px; }
  .about-panel-label { font-size: .72rem; min-height: 30px; }
  .about-panel-stack article { padding: 12px; }
  .about-panel-stack strong { font-size: .92rem; }
  .about-panel-stack p { font-size: .84rem; }

  .about-anchor-strip { margin-top: -18px; }
  .about-anchor-nav {
    gap: 3px; padding: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .about-anchor-nav::-webkit-scrollbar { display: none; }
  .about-anchor-nav a { font-size: .74rem; padding: 0 10px; flex-shrink: 0; }

  .about-story { padding-top: 64px; }
  .story-rail h2 { font-size: clamp(1.55rem, 7vw, 2.2rem); }
  .story-note { max-width: none; }
  .story-mini-grid { grid-template-columns: 1fr; gap: 10px; }
  .story-mini-card  { padding: 16px; }
  .story-image-main { min-height: 240px; border-radius: 20px; }
  .story-image-copy { left: 18px; right: 18px; bottom: 18px; }
  .story-image-copy strong { font-size: 1.15rem; }

  .belief-card { padding: 18px 16px 16px; }
  .belief-mark { width: 40px; }

  .process-band-grid { gap: 28px; }
  .process-band-copy h2 { font-size: clamp(1.55rem, 7vw, 2.2rem); }
  .process-step { grid-template-columns: 46px 1fr; gap: 10px; }
  .process-ladder::before { left: 17px; }
  .process-step-no { width: 38px; height: 38px; border-radius: 12px; font-size: .72rem; }
  .process-step-body { padding: 16px; border-radius: 16px; }
  .process-step-body h3 { font-size: 1rem; }

  .compliance-panel h2 { font-size: clamp(1.55rem, 7vw, 2.2rem); }
  .compliance-card { padding: 18px 16px; border-radius: 18px; }
  .compliance-card h3 { font-size: 1rem; }

  .about-closing { min-height: auto; }
  .about-closing-wrap { padding: 46px 0 50px; }
  .about-closing-card { padding: 20px 16px; border-radius: 18px; }
  .about-closing-card h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .about-closing-actions { gap: 10px; }
}

/* =========================
   RESPONSIVE — 360px
========================= */
@media (max-width: 360px) {
  .about-hero-copy h1 { font-size: 1.7rem; }
  .process-step { grid-template-columns: 40px 1fr; gap: 8px; }
  .process-step-no { width: 34px; height: 34px; }
  .about-closing-card h2 { font-size: 1.4rem; }
  .belief-grid { gap: 10px; }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .anim-eyebrow, .anim-hero-h1, .anim-hero-text,
  .anim-hero-actions, .anim-hero-panel, .anim-panel-item,
  .about-hero-bg, .about-hero-overlay, .about-anchor-nav {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}