:root {
  --navy: #102a43;
  --petrol: #145374;
  --aqua: #2ec4b6;
  --aqua-dark: #1d9e93;
  --sand: #f4e8d0;
  --light: #f7f9fb;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #62748a;
  --border: #d9e2ec;
  --danger: #c75643;
  --amber: #d99b2b;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.1);
  --shadow-card: 0 12px 30px rgba(16, 42, 67, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--navy);
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 10000; padding: 10px 16px; background: var(--navy); color: var(--white); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--petrol); font-weight: 800; font-size: .79rem; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 2px; background: var(--aqua); }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.22rem); }
.muted { color: var(--muted); }
.section { padding: 84px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy); color: rgba(255,255,255,.84); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head h2 { margin: 12px 0 14px; font-size: clamp(2rem, 4.2vw, 3.35rem); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(217,226,236,.8); backdrop-filter: blur(14px); }
.nav { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; margin-right: auto; }
.brand-name { font-family: Manrope, sans-serif; color: var(--navy); font-size: 1.2rem; font-weight: 800; line-height: 1.1; }
.brand-tagline { margin-top: 3px; color: var(--muted); font-size: .72rem; }
.menu { display: flex; align-items: center; gap: 22px; font-size: .9rem; font-weight: 700; color: var(--navy); }
.menu a:hover, .menu a:focus-visible { color: var(--aqua-dark); }
.mobile-toggle { display: none; width: 46px; height: 42px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); color: var(--navy); cursor: pointer; }
.mobile-panel { display: none; border-top: 1px solid var(--border); background: var(--white); }
.mobile-panel.is-open { display: block; }
.mobile-panel .container { display: grid; padding-block: 16px 22px; }
.mobile-panel a { padding: 10px 0; color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--border); }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--aqua); color: var(--navy); box-shadow: 0 10px 25px rgba(46,196,182,.24); }
.btn-primary:hover { background: #42d2c4; }
.btn-secondary { background: var(--white); border-color: var(--border); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 22px; color: var(--muted); font-size: .86rem; }
.breadcrumb a { color: var(--petrol); font-weight: 700; }

.library-hero { padding: 42px 0 72px; background: linear-gradient(180deg, #fff 0%, var(--light) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 54px; align-items: center; }
.hero-copy h1 { margin: 16px 0 22px; font-size: clamp(2.65rem, 6vw, 5.25rem); line-height: .98; }
.hero-copy h1 span { color: var(--petrol); }
.hero-support { max-width: 680px; color: var(--muted); font-size: 1.04rem; }
.hero-visual { position: relative; min-height: 470px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.hero-visual img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(16,42,67,.88)); }
.hero-badge { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; color: var(--white); }
.hero-number { width: 74px; height: 74px; border-radius: 22px; display: grid; place-items: center; background: var(--aqua); color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.65rem; font-weight: 800; }
.hero-badge strong { display: block; font-family: Manrope, sans-serif; font-size: 1.1rem; }
.hero-badge span { color: rgba(255,255,255,.76); font-size: .9rem; }

.stats { margin-top: -28px; position: relative; z-index: 3; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.stat { padding: 24px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat strong { display: block; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.7rem; }
.stat span { color: var(--muted); font-size: .86rem; }

.featured { display: grid; grid-template-columns: .8fr 1.2fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); box-shadow: var(--shadow); }
.featured-visual { min-height: 380px; padding: 38px; display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at 20% 20%, rgba(46,196,182,.36), transparent 35%), linear-gradient(135deg, #102a43, #145374); color: var(--white); }
.featured-kicker { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.featured-kicker span { padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); font-size: .76rem; font-weight: 800; }
.featured-metric { font-family: Manrope, sans-serif; font-size: clamp(4rem, 9vw, 7rem); line-height: .8; font-weight: 800; color: var(--aqua); }
.featured-metric small { display: block; margin-top: 18px; color: rgba(255,255,255,.72); font-family: Inter, sans-serif; font-size: .95rem; line-height: 1.4; font-weight: 500; }
.featured-copy { padding: 48px; background: var(--white); }
.featured-copy h2 { margin: 14px 0 18px; font-size: clamp(2rem, 4vw, 3.3rem); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 10px; border-radius: 999px; background: var(--light); color: var(--petrol); font-size: .76rem; font-weight: 800; }

.library-tools { padding: 36px 0 22px; background: var(--light); border-bottom: 1px solid var(--border); }
.search-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 18px; align-items: center; }
.search-box { position: relative; }
.search-box label { display: block; margin-bottom: 8px; color: var(--navy); font-weight: 800; }
.search-box input { width: 100%; min-height: 54px; padding: 0 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--white); color: var(--text); box-shadow: 0 8px 24px rgba(16,42,67,.05); }
.search-box input:focus { outline: 3px solid rgba(46,196,182,.25); border-color: var(--aqua-dark); }
.result-count { color: var(--muted); font-weight: 700; align-self: end; padding-bottom: 13px; }
.filters { display: flex; gap: 9px; padding-top: 20px; overflow-x: auto; scrollbar-width: thin; }
.filter { flex: 0 0 auto; min-height: 42px; padding: 0 15px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); color: var(--navy); font-size: .82rem; font-weight: 800; cursor: pointer; }
.filter:hover, .filter.is-active { border-color: var(--aqua); background: var(--aqua); }

.decision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.decision-card { display: flex; flex-direction: column; min-height: 330px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-card); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.decision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.decision-card[hidden] { display: none; }
.card-band { height: 7px; background: var(--aqua); }
.decision-card.is-upcoming .card-band { background: var(--border); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.card-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 20px; }
.decision-number { color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.5rem; font-weight: 800; }
.status { padding: 6px 9px; border-radius: 999px; background: #dcf8f3; color: #0e746c; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.status.upcoming { background: var(--light); color: var(--muted); }
.decision-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.decision-card p { color: var(--muted); font-size: .92rem; }
.card-meta { display: flex; gap: 9px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; color: var(--muted); font-size: .78rem; }
.card-link { display: inline-flex; margin-top: 16px; color: var(--petrol); font-weight: 800; }
.card-link:hover { color: var(--aqua-dark); }
.empty-state { display: none; padding: 42px; border: 1px dashed var(--border); border-radius: var(--radius-md); text-align: center; color: var(--muted); }
.empty-state.is-visible { display: block; }

.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.category-card { padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.category-card strong { display: block; color: var(--white); font-family: Manrope, sans-serif; font-size: 1.05rem; }
.category-card span { display: block; margin-top: 7px; color: var(--aqua); font-weight: 800; }
.month-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.month-card { display: grid; gap: 3px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-card); transition: transform .2s ease, border-color .2s ease; }
.month-card:hover { transform: translateY(-3px); border-color: var(--aqua); }
.month-card span { color: var(--petrol); font-family: Manrope, sans-serif; font-size: 1.05rem; font-weight: 800; }
.month-card strong { color: var(--navy); font-size: 1.55rem; }
.month-card small { color: var(--muted); }

.article-hero { padding: 44px 0 66px; background: linear-gradient(180deg, #fff, var(--light)); }
.article-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 44px; align-items: center; }
.article-hero h1 { margin: 16px 0 20px; font-size: clamp(2.5rem, 6vw, 4.65rem); line-height: .98; }
.article-hero-image { overflow: hidden; min-height: 390px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.article-hero-image img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.article-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.article-meta span { padding: 7px 10px; border-radius: 999px; background: var(--white); border: 1px solid var(--border); color: var(--muted); font-size: .78rem; font-weight: 700; }
.quick-summary { padding: 28px; border-radius: var(--radius-lg); background: var(--navy); color: rgba(255,255,255,.84); box-shadow: var(--shadow); }
.quick-summary .number { color: var(--aqua); font-family: Manrope, sans-serif; font-size: 3rem; font-weight: 800; }
.quick-summary strong { display: block; margin: 8px 0; color: var(--white); font-family: Manrope, sans-serif; font-size: 1.1rem; }
.article-shell { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 42px; align-items: start; padding: 52px 0 90px; }
.article-main { min-width: 0; }
.article-main > * + * { margin-top: 28px; }
.article-body { padding: clamp(24px, 4vw, 46px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-card); }
.article-body h2 { margin: 42px 0 14px; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 28px 0 10px; font-size: 1.25rem; }
.article-body a { color: var(--petrol); text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li + li { margin-top: 8px; }
.article-body blockquote { margin: 30px 0; padding: 22px 24px; border-left: 5px solid var(--aqua); border-radius: 0 16px 16px 0; background: var(--light); color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.13rem; font-weight: 700; }
.toc { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--light); }
.toc h2 { margin: 0 0 12px; font-size: 1.2rem; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li + li { margin-top: 7px; }
.toc a { color: var(--petrol); font-weight: 700; }
.decision-video {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(220px,270px);
  gap: clamp(28px,4vw,48px);
  align-items: center;
  padding: clamp(28px,4vw,46px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 12%, rgba(46,196,182,.2), transparent 32%),
    linear-gradient(145deg, #102a43 0%, #0b2235 100%);
  color: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.decision-video h2 { margin: 10px 0 16px; color: var(--white); font-size: clamp(1.7rem,3vw,2.45rem); }
.decision-video p { margin-bottom: 18px; }
.decision-video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.decision-video-kicker::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: currentColor; }
.decision-video-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none; }
.decision-video-meta li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.06); color: var(--white); font-size: .72rem; font-weight: 800; }
.decision-video-note { margin-bottom: 0 !important; color: rgba(255,255,255,.62); font-size: .86rem; }
.youtube-short {
  position: relative;
  width: min(100%,270px);
  aspect-ratio: 9 / 16;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  background: #071722;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
  overflow: hidden;
  isolation: isolate;
}
.youtube-short::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 7px solid rgba(255,255,255,.06);
  border-radius: inherit;
  pointer-events: none;
}
.youtube-short-poster { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.58); }
.youtube-short-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg,rgba(7,23,34,.3),rgba(7,23,34,.05) 38%,rgba(7,23,34,.92)); }
.youtube-short-chapter { position: absolute; z-index: 2; top: 22px; left: 20px; right: 20px; color: var(--white); font-size: .7rem; font-weight: 800; text-align: center; }
.youtube-short-chapter::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 3px; border-radius: 3px; background: linear-gradient(90deg,var(--aqua),rgba(46,196,182,.18)); }
.youtube-short-message { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 68px; color: var(--white); text-align: center; }
.youtube-short-message strong { display: block; font-family: Manrope,sans-serif; font-size: 1.22rem; line-height: 1.08; }
.youtube-short-message span { display: block; margin-top: 9px; color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.35; }
.youtube-short-play {
  position: absolute;
  z-index: 3;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--navy);
  font-size: 1.35rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.youtube-short-play:hover:not(:disabled), .youtube-short-play:focus-visible:not(:disabled) { transform: scale(1.08); background: #42d2c4; }
.youtube-short-play:focus-visible { outline: 4px solid rgba(255,255,255,.55); outline-offset: 4px; }
.youtube-short-play:disabled { opacity: .62; cursor: not-allowed; }
.youtube-short-status { position: absolute; z-index: 3; right: 17px; bottom: 17px; padding: 5px 8px; border-radius: 999px; background: rgba(7,23,34,.78); color: rgba(255,255,255,.8); font-size: .64rem; font-weight: 800; }
.youtube-short iframe { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; border: 0; }
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; }
.data-table th, .data-table td { padding: 13px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.data-table th { background: var(--navy); color: var(--white); }
.data-table tr:nth-child(even) td { background: var(--light); }
.formula { padding: 22px; border-radius: 16px; background: var(--navy); color: var(--white); text-align: center; font-family: Manrope, sans-serif; font-weight: 800; }
.callout { padding: 26px; border: 1px solid #bdece6; border-radius: var(--radius-md); background: #effbf9; }
.callout strong { color: var(--navy); }
.article-sidebar { position: sticky; top: 102px; display: grid; gap: 18px; }
.sidebar-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-card); }
.sidebar-card h2 { margin-bottom: 12px; font-size: 1.18rem; }
.sidebar-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.sidebar-card li + li { margin-top: 8px; }
.sidebar-card .btn { width: 100%; margin-top: 12px; }
.faq details { border-top: 1px solid var(--border); }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary { padding: 17px 0; color: var(--navy); font-family: Manrope, sans-serif; font-weight: 800; cursor: pointer; }
.faq details p { padding-bottom: 17px; }
.related-decisions { margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--border); }
.related-decisions h2 { margin-bottom: 18px; }
.related-decisions ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.related-decisions li + li { margin-top: 0; }
.related-decisions a { display: grid; gap: 6px; height: 100%; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--light); color: var(--navy); text-decoration: none; transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.related-decisions a:hover,.related-decisions a:focus-visible { transform: translateY(-2px); border-color: var(--aqua); box-shadow: var(--shadow-card); }
.related-decisions a span { color: var(--petrol); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.related-decisions a strong { line-height: 1.35; }
.final-cta { padding: 76px 0; background: var(--navy); color: rgba(255,255,255,.8); text-align: center; }
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.final-cta .btn-group { justify-content: center; }

.site-footer { padding: 54px 0 26px; background: #0b2235; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 40px; }
.footer-brand { color: var(--white); font-family: Manrope, sans-serif; font-size: 1.35rem; font-weight: 800; }
.footer-links { display: grid; gap: 7px; }
.footer-links strong { color: var(--white); }
.footer-links a:hover { color: var(--aqua); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }

@media (max-width: 1040px) {
  .menu, .nav > .btn { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .hero-grid, .featured, .article-hero-grid, .article-shell { grid-template-columns: 1fr; }
  .hero-visual { min-height: 410px; }
  .decision-grid, .category-grid, .month-grid { grid-template-columns: repeat(2,1fr); }
  .article-sidebar { position: static; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .brand-tagline { display: none; }
  .library-hero { padding-top: 28px; }
  .hero-grid { gap: 34px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .hero-visual, .hero-visual img { min-height: 340px; }
  .hero-badge { left: 16px; right: 16px; bottom: 16px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .stat:nth-child(4) { border-top: 1px solid var(--border); }
  .featured-copy, .featured-visual { padding: 28px; }
  .featured-visual { min-height: 310px; }
  .search-row { grid-template-columns: 1fr; }
  .result-count { padding: 0; }
  .decision-grid, .category-grid, .month-grid, .article-sidebar, .footer-grid { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: clamp(2.3rem, 13vw, 3.5rem); }
  .article-shell { padding-top: 34px; }
  .article-body { padding: 24px; }
  .decision-video { grid-template-columns: 1fr; }
  .youtube-short { width: min(100%,310px); justify-self: center; }
  .related-decisions ul { grid-template-columns: 1fr; }
  .data-table { display: block; overflow-x: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
