:root {
  --we-bg: #eff5fe;
  --we-bg-hi: #f6faff;
  --we-surface: #ffffff;
  --we-sky: #ddebf9;
  --we-sky-2: #bdddf6;
  --we-deep: #0e2e52;
  --we-sand: #f5d14e;
  --we-sand-press: #e2bb33;
  --we-blue-soft: #5c9bda;
  --we-blue: #2e71c9;
  --we-blue-deep: #1b4fa8;
  --we-navy: #123566;
  --we-text: #3d5a80;
  --we-muted: #5a7398;
  --we-muted-2: #6e85a8;
  --we-success: #268759;
  --we-danger: #c93832;
  --we-line: #cfe0f3;
  --we-line-soft: #e4effc;
  --we-card: 0 4px 14px rgba(24, 66, 120, .06);
  --we-lift: 0 12px 30px rgba(24, 66, 120, .14);
  --we-focus: 0 0 0 4px rgba(46, 113, 201, .28);
  --we-sidebar: 300px;
  --we-radius-sm: 8px;
  --we-radius-md: 12px;
  --we-radius-lg: 16px;
  --we-ease-out: cubic-bezier(.22, 1, .36, 1);
  --we-ease-spring: cubic-bezier(.2, .85, .3, 1.18);
  --we-font-display: Nunito, "Avenir Next Rounded", "Segoe UI", system-ui, sans-serif;
  --we-font-text: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--we-bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--we-text);
  background:
    radial-gradient(circle at 90% 8%, rgba(255,255,255,.86) 0 18px, rgba(189,221,246,.45) 19px 30px, transparent 31px),
    radial-gradient(circle at 76% 18%, rgba(255,255,255,.82) 0 9px, rgba(189,221,246,.36) 10px 18px, transparent 19px),
    linear-gradient(180deg, var(--we-bg-hi) 0, var(--we-bg) 440px);
  font: 400 16px/1.72 var(--we-font-text);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--we-blue); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--we-navy); }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 0; box-shadow: var(--we-focus); }

.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-160%);
  border-radius: var(--we-radius-sm); padding: 10px 14px; background: var(--we-navy); color: white;
}
.skip-link:focus { transform: none; }
.reading-progress { position: fixed; z-index: 70; inset: 0 0 auto; height: 3px; background: transparent; }
.reading-progress > span { display: block; width: 0; height: 100%; background: var(--we-sand); box-shadow: 0 0 12px rgba(245,209,78,.75); transition: width .1s linear; }

.site-shell { min-height: 100vh; }
.sidebar {
  position: fixed; z-index: 50; inset: 0 auto 0 0; width: var(--we-sidebar);
  display: flex; flex-direction: column; gap: 22px; overflow-y: auto;
  padding: 24px 18px 20px; background: rgba(246,250,255,.96);
  border-right: 1px solid var(--we-line); box-shadow: 8px 0 30px rgba(24,66,120,.07);
  backdrop-filter: blur(14px); animation: sidebar-arrive .72s var(--we-ease-out) both;
}
.brand-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--we-line); }
.brand {
  display: inline-flex; align-items: center; gap: 4px; min-height: 44px;
  color: var(--we-blue-deep); text-decoration: none;
  font: 800 35px/1 var(--we-font-display); letter-spacing: -.035em;
}
.brand svg { width: 34px; height: 21px; overflow: visible; }
.drawer-close {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  color: var(--we-navy); background: var(--we-sky); border: 0; border-radius: var(--we-radius-md); cursor: pointer;
}
.sidebar-kicker { margin: -9px 3px 0; color: var(--we-muted); font-size: 12px; line-height: 1.45; }
.nav-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.nav-icon {
  display: grid; place-items: center; min-height: 48px; border-radius: var(--we-radius-md);
  color: var(--we-navy); background: var(--we-sky); font: 800 16px/1 var(--we-font-display);
}
.nav-icon svg { width: 21px; height: 21px; animation: icon-drift 3.8s ease-in-out infinite alternate; }
.nav-icon:nth-child(2) svg { animation-delay: -.9s; }
.nav-icon:nth-child(3) svg { animation-delay: -1.8s; }
.primary-nav { display: flex; flex-direction: column; gap: 7px; }
.primary-nav a {
  position: relative; display: flex; align-items: center; gap: 12px; min-height: 48px;
  padding: 10px 13px; border-radius: var(--we-radius-md); color: var(--we-navy);
  text-decoration: none; font: 700 15px/1.2 var(--we-font-display);
}
.primary-nav a::before { width: 9px; height: 9px; border: 2px solid var(--we-blue-soft); border-radius: 50%; content: ""; transition: transform .25s var(--we-ease-spring), background-color .2s ease; }
.primary-nav a:hover { background: var(--we-sky); }
.primary-nav a:hover::before { transform: scale(1.24); }
.primary-nav a[aria-current="page"] { background: var(--we-sky-2); }
.primary-nav a[aria-current="page"]::before { background: var(--we-blue); border-color: var(--we-blue); box-shadow: 0 0 0 4px rgba(46,113,201,.12); animation: nav-pulse 2.6s ease-out infinite; }
.sidebar .cta { width: 100%; }
.side-note { margin-top: auto; padding: 16px; border: 1px solid var(--we-line); border-radius: var(--we-radius-lg); background: white; box-shadow: var(--we-card); }
.side-note strong { display: block; margin-bottom: 4px; color: var(--we-navy); font: 800 14px/1.3 var(--we-font-display); }
.side-note span { display: block; color: var(--we-muted); font-size: 12px; line-height: 1.55; }
.age-line { display: flex; align-items: center; gap: 10px; color: var(--we-muted); font-size: 12px; }
.age-badge { display: inline-grid; place-items: center; width: 36px; height: 36px; flex: 0 0 36px; border: 2px solid var(--we-danger); border-radius: 50%; color: var(--we-danger); font: 800 12px/1 var(--we-font-display); }

.mobile-topbar { display: none; }
.backdrop { position: fixed; z-index: 40; inset: 0; background: rgba(14,46,82,.45); backdrop-filter: blur(2px); }
.backdrop[hidden] { display: none; }

.page-column { min-width: 0; margin-left: var(--we-sidebar); }
.hero-wrap { padding: 30px 32px 0; }
.hero {
  position: relative; min-height: 420px; overflow: hidden; border-radius: var(--we-radius-lg);
  background: var(--we-deep); box-shadow: var(--we-lift); isolation: isolate;
  animation: hero-arrive .78s var(--we-ease-out) both;
}
.hero::after {
  position: absolute; inset: 0; z-index: 1; content: "";
  background: linear-gradient(90deg, rgba(6,33,62,.92) 0, rgba(14,46,82,.62) 48%, rgba(14,46,82,.08) 82%),
              linear-gradient(0deg, rgba(6,33,62,.5), transparent 55%);
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: hero-breathe 13s ease-in-out infinite alternate; }
.hero-copy { position: relative; z-index: 2; display: flex; min-height: 420px; max-width: 720px; flex-direction: column; justify-content: center; align-items: flex-start; padding: 58px clamp(25px, 6vw, 76px); color: white; }
.eyebrow { margin: 0 0 13px; color: rgba(255,255,255,.82); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { max-width: 680px; margin: 0; color: white; font: 800 clamp(30px, 4.2vw, 50px)/1.08 var(--we-font-display); letter-spacing: -.018em; text-wrap: balance; }
.hero-deck { max-width: 620px; margin: 18px 0 0; color: rgba(255,255,255,.92); font-size: 17px; font-weight: 600; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.cta {
  position: relative; display: inline-flex; min-height: 48px; overflow: hidden; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 19px; border-radius: var(--we-radius-md); color: var(--we-navy); background: var(--we-sand);
  text-decoration: none; font: 800 14px/1 var(--we-font-display); box-shadow: 0 6px 18px rgba(0,0,0,.1);
  transition: transform .25s var(--we-ease-spring), box-shadow .25s ease, background-color .2s ease;
}
.cta::after { position: absolute; inset: -40% auto -40% -55%; width: 38%; content: ""; background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent); transform: skewX(-18deg); transition: left .58s var(--we-ease-out); }
.cta:hover { color: var(--we-navy); background: var(--we-sand-press); transform: translateY(-2px) scale(1.015); box-shadow: 0 10px 24px rgba(14,46,82,.18); }
.cta:hover::after, .cta:focus-visible::after { left: 120%; }
.cta:active { transform: translateY(0) scale(.98); }
.ghost-link { display: inline-flex; min-height: 48px; align-items: center; padding: 10px 13px; border-radius: var(--we-radius-md); color: white; font-weight: 700; text-decoration: none; }
.ghost-link:hover { color: white; background: rgba(255,255,255,.1); }
.wave-cut { position: absolute; z-index: 3; right: 0; bottom: -1px; left: 0; height: 24px; }
.wave-cut svg { display: block; width: 104%; height: 100%; margin-left: -2%; fill: var(--we-bg); animation: wave-drift 5.5s ease-in-out infinite alternate; }

.hero-copy > * { animation: hero-copy-in .68s var(--we-ease-out) both; }
.hero-copy > :nth-child(1) { animation-delay: .08s; }
.hero-copy > :nth-child(2) { animation-delay: .15s; }
.hero-copy > :nth-child(3) { animation-delay: .22s; }
.hero-copy > :nth-child(4) { animation-delay: .29s; }

.content-layout { display: grid; grid-template-columns: minmax(0, 920px) minmax(210px, 260px); gap: 30px; align-items: start; max-width: 1250px; margin: 0 auto; padding: 30px 32px 72px; }
.article-card { min-width: 0; overflow: hidden; border: 1px solid var(--we-line); border-radius: var(--we-radius-lg); background: var(--we-surface); box-shadow: var(--we-card); }
.article-nav { padding: 21px 24px 18px; border-bottom: 1px solid var(--we-line); background: var(--we-sky); }
.article-nav-label { margin-bottom: 11px; color: var(--we-muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.article-nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.article-nav a { display: inline-flex; min-height: 44px; align-items: center; padding: 7px 11px; border: 1px solid rgba(46,113,201,.18); border-radius: 999px; background: rgba(255,255,255,.7); color: var(--we-navy); font-size: 12px; font-weight: 700; text-decoration: none; transition: transform .22s var(--we-ease-spring), border-color .2s ease, background-color .2s ease; }
.article-nav a:hover { border-color: var(--we-blue); color: var(--we-blue-deep); }
.article-nav a:hover { transform: translateY(-2px); background: white; }
.article-copy { padding: clamp(24px, 4vw, 48px); }
.article-copy h2, .article-copy h3 { color: var(--we-navy); font-family: var(--we-font-display); letter-spacing: -.012em; text-wrap: balance; }
.article-copy h2 { margin: 58px 0 18px; font-size: clamp(25px, 3vw, 31px); line-height: 1.22; font-weight: 800; scroll-margin-top: 28px; }
.article-copy h2:first-child { margin-top: 0; }
.article-copy h3 { margin: 34px 0 12px; font-size: 21px; line-height: 1.32; font-weight: 800; scroll-margin-top: 28px; }
.article-copy p { margin: 0 0 18px; }
.article-copy .lead { margin-bottom: 22px; padding-left: 17px; border-left: 3px solid var(--we-blue); color: var(--we-navy); font-size: 18px; font-weight: 600; line-height: 1.65; }
.article-copy ul, .article-copy ol { display: grid; gap: 9px; margin: 8px 0 24px; padding-left: 24px; }
.article-copy li { padding-left: 5px; }
.article-copy li::marker { color: var(--we-blue); font-weight: 800; }
.table-scroll { max-width: 100%; overflow-x: auto; margin: 24px 0 30px; border: 1px solid var(--we-line); border-radius: var(--we-radius-lg); }
table { width: 100%; min-width: 610px; border-collapse: collapse; font-size: 14px; line-height: 1.52; }
th, td { padding: 13px 15px; border-bottom: 1px solid var(--we-line-soft); text-align: left; vertical-align: top; }
th { color: var(--we-navy); background: var(--we-sky); font-family: var(--we-font-display); font-weight: 800; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: var(--we-bg-hi); }

.content-figure { margin: 54px 0; overflow: hidden; border: 1px solid var(--we-line); border-radius: var(--we-radius-lg); background: var(--we-sky); box-shadow: var(--we-card); transition: transform .35s var(--we-ease-out), box-shadow .35s ease; }
.content-figure img { width: 100%; max-height: 420px; object-fit: cover; object-position: center; }
.content-figure:hover { transform: translateY(-4px); box-shadow: var(--we-lift); }
.content-figure figcaption { padding: 13px 17px 15px; color: var(--we-navy); font-size: 13px; font-weight: 700; line-height: 1.5; }

.fact-explorer { position: relative; margin: 52px 0; overflow: hidden; padding: clamp(20px, 4vw, 32px); border-radius: var(--we-radius-lg); color: white; background: linear-gradient(145deg, #256eb5, var(--we-deep)); box-shadow: var(--we-lift); }
.fact-explorer::before { position: absolute; top: -72px; right: -48px; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.22), rgba(189,221,246,.05) 58%, transparent 60%); animation: bubble-float 7s ease-in-out infinite alternate; pointer-events: none; }
.fact-explorer > * { position: relative; z-index: 1; }
.fact-explorer .module-label { color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.fact-explorer .module-title { margin: 7px 0 6px; color: white; font: 800 26px/1.2 var(--we-font-display); }
.fact-explorer .module-intro { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; }
.fact-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.fact-tabs button { min-height: 44px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: white; background: rgba(255,255,255,.08); cursor: pointer; font-size: 13px; font-weight: 700; transition: transform .22s var(--we-ease-spring), background-color .2s ease, color .2s ease; }
.fact-tabs button:hover, .fact-tabs button[aria-selected="true"] { color: var(--we-navy); background: var(--we-sand); border-color: var(--we-sand); }
.fact-tabs button:hover { transform: translateY(-2px); }
.fact-output { min-height: 102px; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--we-radius-md); background: rgba(255,255,255,.1); }
.fact-output strong { display: block; margin-bottom: 7px; color: white; font: 800 18px/1.25 var(--we-font-display); }
.fact-output div { color: rgba(255,255,255,.88); font-size: 14px; }

.faq-section { margin-top: 58px; }
.faq-item { border-top: 1px solid var(--we-line); transition: background-color .25s ease, border-color .25s ease; }
.faq-item:has(.faq-toggle[aria-expanded="true"]) { background: linear-gradient(90deg, rgba(221,235,249,.55), transparent); }
.faq-item:last-child { border-bottom: 1px solid var(--we-line); }
.faq-item h3 { margin: 0; }
.faq-toggle { display: grid; width: 100%; grid-template-columns: 1fr 28px; gap: 18px; align-items: center; padding: 20px 2px; border: 0; color: var(--we-navy); background: transparent; text-align: left; cursor: pointer; font: 800 18px/1.38 var(--we-font-display); }
.faq-toggle:hover { color: var(--we-blue-deep); }
.faq-icon { position: relative; width: 26px; height: 26px; border-radius: 50%; background: var(--we-sky); transition: transform .28s var(--we-ease-spring), background-color .2s ease; }
.faq-icon::before, .faq-icon::after { position: absolute; inset: 12px 7px auto; height: 2px; border-radius: 2px; background: var(--we-blue); content: ""; }
.faq-icon::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-toggle[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-toggle[aria-expanded="true"] .faq-icon { transform: rotate(90deg) scale(1.08); background: var(--we-sky-2); }
.faq-panel { padding: 0 42px 18px 2px; }
.js .faq-panel[hidden] { display: none; }

.article-aside { position: sticky; top: 28px; display: grid; gap: 16px; }
.info-card { padding: 20px; border: 1px solid var(--we-line); border-radius: var(--we-radius-lg); background: rgba(255,255,255,.86); box-shadow: var(--we-card); backdrop-filter: blur(10px); transition: transform .32s var(--we-ease-out), box-shadow .32s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--we-lift); }
.info-card .label { color: var(--we-muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.info-card strong { display: block; margin: 6px 0 9px; color: var(--we-navy); font: 800 17px/1.3 var(--we-font-display); }
.info-card p { margin: 0; color: var(--we-muted); font-size: 13px; line-height: 1.6; }
.info-card .cta { width: 100%; margin-top: 16px; }
.trust-list { display: grid; gap: 11px; margin: 14px 0 0; padding: 0; list-style: none; }
.trust-list li { display: flex; gap: 9px; color: var(--we-text); font-size: 13px; line-height: 1.45; }
.trust-list li::before { flex: 0 0 auto; color: var(--we-success); content: "✓"; font-weight: 900; }

.site-footer { margin-left: var(--we-sidebar); padding: 34px 32px 96px; border-top: 1px solid var(--we-line); background: var(--we-bg-hi); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; max-width: 1186px; margin: 0 auto; }
.footer-brand { color: var(--we-navy); font: 800 19px/1.3 var(--we-font-display); }
.footer-note { max-width: 720px; margin: 8px 0 0; color: var(--we-muted); font-size: 12px; line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 9px 18px; }
.footer-nav a { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; color: var(--we-navy); font-size: 13px; font-weight: 700; }
.mobile-dock { display: none; }

.goto-page { display: grid; min-height: 100vh; place-items: center; padding: 24px; }
.goto-card { max-width: 540px; padding: 36px; border: 1px solid var(--we-line); border-radius: var(--we-radius-lg); background: white; box-shadow: var(--we-lift); text-align: center; }
.goto-card h1 { margin: 0 0 12px; color: var(--we-navy); font: 800 32px/1.15 var(--we-font-display); }
.goto-card p { margin: 0 0 22px; }

@keyframes sidebar-arrive { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hero-arrive { from { opacity: 0; transform: translateY(14px) scale(.992); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-breathe { from { transform: scale(1.02); } to { transform: scale(1.075); } }
@keyframes wave-drift { from { transform: translateX(-1.2%) scaleY(.9); } to { transform: translateX(1.2%) scaleY(1.08); } }
@keyframes icon-drift { from { transform: translateY(-1px) rotate(-2deg); } to { transform: translateY(2px) rotate(2deg); } }
@keyframes nav-pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(46,113,201,.12); } 50% { box-shadow: 0 0 0 8px rgba(46,113,201,0); } }
@keyframes bubble-float { from { transform: translate3d(0,0,0) scale(.94); } to { transform: translate3d(-18px,22px,0) scale(1.08); } }

@media (max-width: 1120px) {
  .content-layout { grid-template-columns: minmax(0, 1fr); }
  .article-aside { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  body { background: linear-gradient(180deg, var(--we-bg-hi), var(--we-bg) 360px); }
  .mobile-topbar {
    position: sticky; z-index: 35; top: 0; display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 10px;
    padding: 9px 14px; border-bottom: 1px solid var(--we-line); background: rgba(246,250,255,.94); backdrop-filter: blur(14px);
  }
  .mobile-topbar .brand { font-size: 25px; }
  .mobile-topbar .brand svg { width: 26px; height: 16px; }
  .mobile-topbar .cta { min-height: 44px; padding: 10px 14px; font-size: 12px; }
  .menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 0; border-radius: var(--we-radius-md); color: var(--we-navy); background: var(--we-sky); cursor: pointer; }
  .js .menu-toggle { display: inline-flex; }
  .page-column, .site-footer { margin-left: 0; }
  .hero-wrap { padding: 16px 16px 0; }
  .hero, .hero-copy { min-height: 360px; }
  .hero::after { background: linear-gradient(0deg, rgba(6,33,62,.9), rgba(14,46,82,.15) 85%); }
  .hero > img { object-position: center; }
  .hero-copy { justify-content: flex-end; padding: 42px 22px 48px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-deck { font-size: 15px; line-height: 1.5; }
  .content-layout { padding: 20px 16px 62px; }
  .sidebar {
    position: relative; width: 100%; min-height: 0; border-right: 0; box-shadow: none;
  }
  .js .sidebar {
    position: fixed; inset: 0 auto 0 0; z-index: 50; width: min(88vw, 330px); min-height: 100vh;
    transform: translateX(-104%); transition: transform .32s var(--we-ease-out); box-shadow: var(--we-lift); animation: none;
  }
  .js .sidebar.is-open { transform: translateX(0); }
  .js .drawer-close { display: inline-flex; }
  .site-footer { padding: 30px 18px 102px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .hero, .hero-copy { min-height: 330px; }
  .hero h1 { font-size: 28px; }
  .hero-actions { width: 100%; }
  .hero-actions .cta { flex: 1 1 auto; }
  .article-copy { padding: 26px 20px 36px; }
  .article-copy h2 { margin-top: 46px; font-size: 25px; }
  .article-copy h3 { font-size: 19px; }
  .article-nav { padding: 18px 20px; }
  .content-figure { margin: 40px 0; }
  .content-figure img { max-height: none; object-fit: contain; background: var(--we-deep); }
  .fact-explorer { margin: 42px 0; }
  .fact-tabs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .fact-tabs button { border-radius: var(--we-radius-sm); }
  .article-aside { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .mobile-dock {
    position: fixed; z-index: 30; right: 8px; bottom: 8px; left: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
    padding: 7px; border: 1px solid var(--we-line); border-radius: var(--we-radius-lg); background: rgba(246,250,255,.94); box-shadow: var(--we-lift); backdrop-filter: blur(14px);
  }
  .mobile-dock a { display: grid; min-height: 48px; place-items: center; border-radius: 10px; color: var(--we-muted); font: 800 11px/1 var(--we-font-display); text-decoration: none; }
  .mobile-dock a[aria-current="page"] { color: var(--we-blue-deep); background: var(--we-sky); }
  .mobile-dock a[aria-current="page"] { animation: dock-glow 2.8s ease-in-out infinite; }
}

@keyframes dock-glow { 0%, 100% { box-shadow: inset 0 0 0 1px rgba(46,113,201,.08); } 50% { box-shadow: inset 0 0 0 1px rgba(46,113,201,.28), 0 4px 14px rgba(46,113,201,.12); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .cta:hover, .content-figure:hover, .info-card:hover, .article-nav a:hover { transform: none; }
}
