/* =========================================================
   KalyoteX Technologies — Static Site Stylesheet
   Brand: Deep Forest Green + Warm Zambian Gold
   ========================================================= */

:root {
  --radius: 0.875rem;
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --background: oklch(0.985 0.008 95);
  --foreground: oklch(0.22 0.04 160);
  --surface: oklch(0.96 0.012 95);
  --card: oklch(1 0 0);
  --primary: oklch(0.27 0.045 160);
  --primary-foreground: oklch(0.97 0.012 95);
  --muted: oklch(0.93 0.012 95);
  --muted-foreground: oklch(0.46 0.025 160);
  --accent: oklch(0.78 0.115 82);
  --accent-foreground: oklch(0.22 0.04 160);
  --border: oklch(0.88 0.018 120);
  --green: oklch(0.65 0.16 150);
}

html.dark {
  --background: oklch(0.18 0.035 160);
  --foreground: oklch(0.97 0.012 95);
  --surface: oklch(0.22 0.04 160);
  --card: oklch(0.23 0.04 160);
  --primary: oklch(0.78 0.115 82);
  --primary-foreground: oklch(0.18 0.035 160);
  --muted: oklch(0.27 0.045 160);
  --muted-foreground: oklch(0.78 0.025 120);
  --accent: oklch(0.78 0.115 82);
  --accent-foreground: oklch(0.18 0.035 160);
  --border: color-mix(in oklch, oklch(0.97 0.012 95) 12%, transparent);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.15;
}

::selection { background: var(--accent); color: var(--accent-foreground); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 3rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--center { text-align: center; }
.section__head { max-width: 48rem; margin-inline: auto; margin-bottom: 2.5rem; }
.section--left .section__head { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  background: color-mix(in oklch, var(--accent) 10%, transparent);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent);
}
.section h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-top: 1rem; }
.section__desc { color: var(--muted-foreground); margin-top: 1rem; font-size: 1rem; }

/* ---------- Utility ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.flex { display: flex; gap: 1rem; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-gradient-gold {
  background: linear-gradient(120deg, var(--accent) 0%, oklch(0.88 0.08 95) 60%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: 999px; font-size: .875rem; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; white-space: nowrap; }
.btn--primary { background: var(--accent); color: var(--accent-foreground); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px color-mix(in oklch, var(--accent) 50%, transparent); }
.btn--ghost { border: 1px solid var(--border); background: color-mix(in oklch, var(--card) 50%, transparent); color: var(--foreground); }
.btn--ghost:hover { background: var(--card); }
.btn--green { background: var(--green); color: white; }
.btn--green:hover { transform: translateY(-2px); }

/* ---------- Card ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: 0 1px 0 color-mix(in oklch, var(--foreground) 5%, transparent), 0 14px 40px -12px color-mix(in oklch, var(--foreground) 22%, transparent);
}
.card--interactive { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; cursor: pointer; }
.card--interactive:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--accent) 40%, var(--border)); }
.icon-pill { display: inline-flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: .85rem; background: color-mix(in oklch, var(--accent) 15%, transparent); color: var(--accent); }
.chip { display: inline-block; padding: .15rem .65rem; border-radius: 999px; border: 1px solid color-mix(in oklch, var(--border) 80%, transparent); font-size: .7rem; color: var(--muted-foreground); }
.chip--solid { background: color-mix(in oklch, var(--accent) 12%, transparent); border-color: color-mix(in oklch, var(--accent) 30%, transparent); color: var(--accent); font-weight: 500; }
.chip--badge { background: var(--accent); color: var(--accent-foreground); font-weight: 600; padding: .25rem .75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: color-mix(in oklch, var(--background) 75%, transparent);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: .85rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.brand img { height: 2rem; width: auto; }
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav a { font-size: .9rem; color: var(--foreground); opacity: .85; transition: color .2s; position: relative; padding-block: .25rem; }
.nav a:hover, .nav a.active { color: var(--accent); opacity: 1; }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.4rem; height: 2px; background: var(--accent); border-radius: 2px; }
.header__actions { display: flex; gap: .65rem; align-items: center; }
.icon-btn { display: inline-flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--border); transition: background-color .2s; }
.icon-btn:hover { background: var(--muted); }
.menu-toggle { display: none; }
@media (max-width: 860px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--background); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1rem 1.5rem; gap: 1rem; }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6rem); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
html.dark .hero__bg img { opacity: .4; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--background), color-mix(in oklch, var(--background) 60%, transparent), var(--background)); }
.hero__grid { position: absolute; inset: 0; z-index: -1; opacity: .6;
  background-image:
    linear-gradient(to right, color-mix(in oklch, var(--foreground) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklch, var(--foreground) 6%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 40%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 40%, transparent 80%);
}
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 7fr 5fr; } }
.hero h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); margin-top: 1.5rem; }
.hero p.lead { color: var(--muted-foreground); margin-top: 1.25rem; font-size: 1.05rem; max-width: 36rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding-block: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 3.5rem); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.75rem); margin-top: 1.25rem; }
.page-hero p { color: var(--muted-foreground); margin-top: 1.25rem; max-width: 42rem; margin-inline: auto; }

/* ---------- Glass card ---------- */
.glass {
  background: color-mix(in oklch, var(--card) 70%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid color-mix(in oklch, var(--border) 80%, transparent);
  border-radius: 1rem; padding: 1.25rem;
  box-shadow: 0 14px 40px -12px color-mix(in oklch, var(--foreground) 22%, transparent);
}
.glass__head { display: flex; justify-content: space-between; align-items: center; }
.live-dot { display: inline-block; width: .55rem; height: .55rem; background: var(--green); border-radius: 999px; margin-right: .4rem; }
.bar-chart { display: flex; align-items: end; gap: .35rem; height: 2.5rem; margin-top: .75rem; }
.bar-chart span { flex: 1; background: color-mix(in oklch, var(--accent) 70%, transparent); border-radius: 2px; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; background: var(--border); gap: 1px; margin-top: -1.5rem; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats > div { background: var(--background); padding: 1.5rem; text-align: center; }
.stats .num { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; }
.stats .lbl { color: var(--muted-foreground); font-size: .85rem; margin-top: .25rem; }

/* ---------- Service / generic grid ---------- */
.service-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; background: var(--border); gap: 1px; }
@media (min-width: 720px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-grid > .item { background: var(--card); padding: 1.75rem; transition: background-color .25s; }
.service-grid > .item:hover { background: color-mix(in oklch, var(--card) 60%, var(--surface)); }
.item h3 { margin-top: 1.25rem; font-size: 1.1rem; }
.item p { color: var(--muted-foreground); font-size: .9rem; margin-top: .5rem; }
.item__num { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--muted-foreground); }

/* ---------- CTA banner ---------- */
.cta {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: var(--surface); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between;
}
@media (min-width: 760px) { .cta { flex-direction: row; align-items: center; } }
.cta--dark {
  background: var(--primary); color: var(--primary-foreground);
  border-color: color-mix(in oklch, var(--accent) 30%, transparent);
  position: relative; overflow: hidden;
}
.cta--dark::before { content: ""; position: absolute; inset: 0; opacity: .3; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px; }
.cta--dark > * { position: relative; z-index: 1; }
.cta__glow { position: absolute; right: -5rem; top: -5rem; width: 18rem; height: 18rem; border-radius: 999px; background: color-mix(in oklch, var(--accent) 40%, transparent); filter: blur(60px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding-block: 3rem 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted-foreground); margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 600; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.footer-grid a { color: var(--foreground); opacity: .8; transition: color .2s; }
.footer-grid a:hover { color: var(--accent); opacity: 1; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: var(--muted-foreground); }

/* ---------- WhatsApp FAB ---------- */
.fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  height: 3.5rem; width: 3.5rem; border-radius: 999px;
  background: var(--green); color: white;
  box-shadow: 0 14px 40px -10px color-mix(in oklch, var(--green) 50%, transparent);
  transition: transform .25s ease;
}
.fab:hover { transform: translateY(-2px) scale(1.05); }

/* ---------- Project card / Portfolio ---------- */
.project-card { overflow: hidden; padding: 0; }
.project-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--muted); }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover .thumb img { transform: scale(1.05); }
.project-card .body { padding: 1.5rem; }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.filter-bar .btn { padding: .5rem 1rem; font-size: .85rem; }
.filter-bar .btn[data-active="true"] { background: var(--accent); color: var(--accent-foreground); box-shadow: 0 14px 40px -10px color-mix(in oklch, var(--accent) 50%, transparent); }
.filter-bar .btn[data-active="false"] { border: 1px solid var(--border); background: color-mix(in oklch, var(--card) 50%, transparent); color: var(--foreground); }
.filter-bar .btn[data-active="false"]:hover { background: var(--card); }

/* ---------- Event card ---------- */
.event-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.event-card .thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--muted); }
.event-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.event-card:hover .thumb img { transform: scale(1.05); }
.event-card .badge { position: absolute; top: 1rem; left: 1rem; }
.event-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.event-card .meta { display: flex; flex-direction: column; gap: .35rem; margin-top: 1.25rem; font-size: .8rem; color: var(--muted-foreground); }
.event-card .meta span { display: inline-flex; align-items: center; gap: .5rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; max-width: 56rem; margin-inline: auto; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { padding: 0; overflow: hidden; cursor: zoom-in; transition: transform .4s ease, box-shadow .4s ease, border-color .4s; text-align: left; width: 100%; }
.team-card:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--accent) 40%, var(--border)); box-shadow: 0 14px 40px -10px color-mix(in oklch, var(--accent) 50%, transparent); }
.team-card .thumb { aspect-ratio: 4/5; overflow: hidden; background: var(--muted); }
.team-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.team-card:hover .thumb img { transform: scale(1.1); }
.team-card .body { padding: 1.5rem; }
.team-card .role { font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); }
.team-card .name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-top: .25rem; }
.team-card .bio { font-size: .9rem; color: var(--muted-foreground); margin-top: .5rem; }
.team-card .hint { display: block; margin-top: 1rem; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: color-mix(in oklch, var(--accent) 80%, transparent); opacity: 0; transition: opacity .3s; }
.team-card:hover .hint { opacity: 1; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: color-mix(in oklch, var(--foreground) 60%, transparent);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; transition: opacity .25s ease;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1.5rem; max-width: 56rem; width: 100%;
  max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1fr; transform: scale(.95); transition: transform .35s ease;
}
.modal-backdrop.open .modal { transform: scale(1); }
@media (min-width: 720px) { .modal { grid-template-columns: 1fr 1fr; } }
.modal__media { aspect-ratio: 4/5; overflow: hidden; background: var(--muted); }
.modal__media img { width: 100%; height: 100%; object-fit: cover; animation: zoomIn .5s ease; }
.modal__body { padding: 2rem; }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; }
.modal-wrap { position: relative; width: 100%; }
.skill-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.contact-list { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .85rem; }
.contact-list a { display: flex; align-items: center; gap: .75rem; font-size: .9rem; transition: color .2s; }
.contact-list a:hover { color: var(--accent); }
.social-links { display: flex; gap: .75rem; padding-top: .25rem; }
.social-links a { display: inline-flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--border); color: var(--muted-foreground); transition: all .2s; }
.social-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .4rem; font-size: .78rem; font-weight: 500; color: color-mix(in oklch, var(--foreground) 80%, transparent); }
.field input, .field select, .field textarea {
  width: 100%; padding: .65rem .85rem; border-radius: .55rem;
  border: 1px solid var(--border); background: var(--background); color: var(--foreground);
  font-size: .9rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 25%, transparent);
}

.alert {
  display: flex; gap: .75rem; padding: 1.25rem;
  border-radius: .85rem; border: 1px solid color-mix(in oklch, var(--accent) 40%, transparent);
  background: color-mix(in oklch, var(--accent) 10%, transparent);
  font-size: .9rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 48rem; margin-inline: auto; border: 1px solid var(--border); border-radius: 1rem; background: var(--card); overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: none; }
.faq__btn { width: 100%; text-align: left; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__btn .chev { color: var(--accent); transition: transform .3s ease; }
.faq__item.open .faq__btn .chev { transform: rotate(180deg); }
.faq__panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding-inline: 1.5rem; color: var(--muted-foreground); font-size: .9rem; line-height: 1.65; }
.faq__item.open .faq__panel { padding-bottom: 1.25rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal[data-visible="true"] { opacity: 1; transform: translate3d(0,0,0); }

@keyframes zoomIn { from { opacity: 0; transform: scale(1.15); } to { opacity: 1; transform: scale(1); } }
@keyframes pulseSoft { 0%, 100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.15); opacity: 1; } }

/* ---------- Dot grid (animated) ---------- */
.dotgrid { position: relative; width: 18rem; height: 18rem; margin-inline: auto; }
.dotgrid svg { width: 100%; height: 100%; }
.dotgrid circle { fill: var(--accent); transform-origin: center; transform-box: fill-box; }

/* ---------- Map ---------- */
.map-frame { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.map-frame iframe { display: block; width: 100%; height: 16rem; border: 0; }

/* ---------- Process / numbered list ---------- */
.process-num { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; }

/* ---------- Theme toggle visibility ---------- */
html.dark .icon--sun { display: inline; }
html.dark .icon--moon { display: none; }
html:not(.dark) .icon--sun { display: none; }
html:not(.dark) .icon--moon { display: inline; }

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