/* ============================================================
   JAMSON VILLAFLORES — PORTFOLIO
   Dark · Bold · Geometric
   ============================================================ */

:root, [data-theme="dark"] {
  --bg:        #0a0a0b;
  --bg-2:      #111113;
  --surface:   #161619;
  --surface-2: #1d1d21;
  --line:      #2a2a2e;
  --text:      #f4f4f0;
  --muted:     #8a8a90;
  --accent:    #d7fc51;
  --accent-d:  #b7e02f;
  --accent-ink: var(--accent);            /* accent used as TEXT — lime reads fine on dark */
  --nav-bg:    rgba(10, 10, 11, .72);
  --ghost:     rgba(255, 255, 255, .03);  /* giant ghost labels in the bento */
  --ghost-hover: rgba(215, 252, 81, .08);
  --shadow:    rgba(0, 0, 0, .55);
  --radius:    18px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --font-d:    "Syne", sans-serif;
  --font-b:    "Space Grotesk", sans-serif;
}

[data-theme="light"] {
  --bg:        #f3f3ee;
  --bg-2:      #ffffff;
  --surface:   #ffffff;
  --surface-2: #f1f1ea;
  --line:      #e2e2d8;
  --text:      #111114;
  --muted:     #5d5d66;
  --accent:    #c6ee2b;                    /* fill lime, nudged for light backgrounds */
  --accent-d:  #aacf1f;
  --accent-ink: #4f7400;                   /* accent as TEXT — dark lime, readable on white */
  --nav-bg:    rgba(243, 243, 238, .8);
  --ghost:     rgba(0, 0, 0, .04);
  --ghost-hover: rgba(79, 116, 0, .08);
  --shadow:    rgba(0, 0, 0, .15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}

@media (hover: hover) and (pointer: fine) { body { cursor: none; } a, button { cursor: none; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #000; }

/* Prevent the highlight/selection flash when clicking & dragging (the click "glitch").
   Text that should stay copyable opts back in via user-select: text. */
body { -webkit-user-select: none; user-select: none; }
.contact__line-v, p, .about__text, .about__big { -webkit-user-select: text; user-select: text; }
:focus:not(:focus-visible) { outline: none; }
.exp__viewport { touch-action: pan-y; }

/* Scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   CUSTOM ANGULAR CURSOR
   ============================================================ */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }

.cursor {
  width: 28px; height: 32px;
  transform: translate(-3px, -2px);
  transition: scale .25s var(--ease);
  will-change: transform;
}
.cursor svg { width: 100%; height: 100%; }
.cursor polygon {
  fill: var(--accent);
  stroke: #000;
  stroke-width: 2.4;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.55));
}
.cursor-ring { display: none; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: grid; place-items: center;
}
.preloader.done { transform: translateY(-100%); transition: transform 1s var(--ease); }
.preloader__inner { text-align: center; width: min(90vw, 560px); }
.preloader__name {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.9rem, 6vw, 4rem);
  letter-spacing: .12em;
  line-height: 1;
  display: flex; justify-content: center; gap: .02em;
}
.preloader__name span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.preloader__loader {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 1.2rem; color: var(--muted);
  font-size: .9rem; letter-spacing: .3em; text-transform: uppercase;
}
.preloader__loader .dot {
  width: 7px; height: 7px; background: var(--accent);
  transform: rotate(45deg);
  animation: blink 1s infinite var(--ease);
}
.preloader__loader .dot:nth-child(2){ animation-delay:.15s; }
.preloader__loader .dot:nth-child(3){ animation-delay:.3s; }
@keyframes blink { 0%,100%{opacity:.2; scale:.7;} 50%{opacity:1; scale:1;} }
.preloader__pct { margin-left: 10px; font-family: var(--font-d); color: var(--text); font-weight: 700; letter-spacing: .1em; }
.preloader__bar { margin: 1.2rem auto 0; height: 2px; background: var(--line); width: min(100%, 460px); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3.5rem);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: .8rem; padding-bottom: .8rem;
}
.nav__logo { font-family: var(--font-d); font-weight: 800; font-size: 1.5rem; letter-spacing: .02em; }
.nav__logo span { color: var(--accent-ink); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--muted); transition: color .25s; position: relative; }
.nav__links a:not(.nav__cta)::after {
  content:""; position:absolute; left:0; bottom:-5px; width:0; height:2px; background:var(--accent-ink); transition:width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--accent); color: #000 !important; font-weight: 700;
  padding: .55rem 1.1rem; border-radius: 100px; transition: transform .25s var(--ease), background .25s;
}
.nav__cta:hover { transform: translateY(-2px); background: #fff; }
.nav__burger { display: none; background: none; border: none; flex-direction: column; gap: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--text); transition: .3s var(--ease); }
.nav__left { display: flex; align-items: center; gap: 1rem; }

/* ---- iOS-style theme toggle ---- */
.theme-toggle { background: none; border: none; padding: 0; line-height: 0; }
.theme-toggle__track {
  position: relative; display: inline-flex; align-items: center;
  width: 56px; height: 30px; border-radius: 100px;
  background: var(--surface-2); border: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.theme-toggle__knob {
  position: absolute; left: 3px; top: 50%;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px var(--shadow);
  display: grid; place-items: center;
  transform: translateY(-50%);
  transition: transform .42s cubic-bezier(0.34, 1.56, 0.64, 1), background .4s var(--ease);
}
.theme-toggle__icon { position: absolute; inset: 0; margin: auto; width: 13px; height: 13px; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.theme-toggle__icon--moon { color: #1d1d21; opacity: 1; }
.theme-toggle__icon--sun  { color: #b88900; opacity: 0; transform: rotate(-90deg) scale(.6); }
/* LIGHT state — knob slides right, track turns lime, sun shows */
[data-theme="light"] .theme-toggle__track { background: var(--accent); border-color: var(--accent-d); }
[data-theme="light"] .theme-toggle__knob { transform: translate(26px, -50%); }
[data-theme="light"] .theme-toggle__icon--moon { opacity: 0; transform: rotate(90deg) scale(.6); }
[data-theme="light"] .theme-toggle__icon--sun  { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle:hover .theme-toggle__track { border-color: var(--accent); }

/* ============================================================
   SHARED
   ============================================================ */
section { position: relative; padding: clamp(2.6rem, 4.5vw, 4.6rem) clamp(1.2rem, 5vw, 5rem); }
.section-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.5rem); line-height: .98; letter-spacing: -.01em;
}
.accent { color: var(--accent-ink); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.7rem; border-radius: 100px; font-weight: 600; font-size: .98rem;
  position: relative; overflow: hidden; transition: transform .3s var(--ease);
}
.btn span { position: relative; z-index: 2; }
.btn--solid { background: var(--accent); color: #000; }
.btn--solid::before { content:""; position:absolute; inset:0; background:#fff; transform:translateY(101%); transition:transform .4s var(--ease); }
.btn--solid:hover::before { transform: translateY(0); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--text); }
.btn--ghost::before { content:""; position:absolute; inset:0; background:var(--accent); transform:translateY(101%); transition:transform .4s var(--ease); z-index:1; }
.btn--ghost:hover { color:#000; border-color: var(--accent); }
.btn--ghost:hover::before { transform: translateY(0); }

/* reveal helpers */
.reveal-up { opacity: 0; transform: translateY(28px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 6.2rem; padding-bottom: 3rem; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; flex: 1; }
.hero__tag { color: var(--accent-ink); font-weight: 500; letter-spacing: .1em; margin-bottom: 1.2rem; font-size: .95rem; }
.hero__title { font-family: var(--font-d); font-weight: 800; font-size: clamp(2.3rem, 5.4vw, 4.9rem); line-height: .94; letter-spacing: 0; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; transform: translateY(110%); }
.hero__lead { max-width: 30rem; margin-top: 1.6rem; color: var(--muted); font-size: 1.08rem; }
.hero__lead em { color: var(--text); font-style: italic; }
.hero__actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero__meta { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: 2rem; list-style: none; flex-wrap: wrap; }
.hero__meta li { display: flex; flex-direction: column; }
.hero__meta strong { font-family: var(--font-d); font-size: 1.9rem; font-weight: 700; }
.hero__meta span { color: var(--muted); font-size: .82rem; letter-spacing: .03em; }

.hero__right { display: flex; justify-content: center; }
.hero__photo { position: relative; width: min(100%, 420px); aspect-ratio: 4/5; }
.hero__photo-mask {
  width: 100%; height: 100%; overflow: hidden;
  border-radius: 220px 220px 24px 24px;
  border: 1px solid var(--line);
  clip-path: inset(0 0 100% 0);
}
.hero__photo-mask img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: scale(1.12); }
.hero__badge {
  position: absolute; bottom: -20px; left: -20px; width: 86px; height: 86px;
  background: var(--bg); border-radius: 50%; display: grid; place-items: center;
  animation: none;
}
.hero__badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.hero__badge text { fill: var(--muted); font-size: 8px; font-weight: 500; font-family: var(--font-b); }
.hero__badge-core { font-family: var(--font-d); font-weight: 800; color: var(--accent-ink); font-size: 1.3rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll { display: inline-flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 2rem; align-self: center; }
.hero__scroll i { width: 36px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.hero__scroll i::after { content:""; position:absolute; left:-40%; top:0; width:40%; height:100%; background:var(--accent-ink); animation: scrollLine 1.6s infinite var(--ease); }
@keyframes scrollLine { to { left: 100%; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 1.2rem 0; }
.marquee__track { display: flex; align-items: center; gap: 2.2rem; white-space: nowrap; width: max-content; }
.marquee__track span { font-family: var(--font-d); font-weight: 700; font-size: clamp(1.4rem, 3.5vw, 2.6rem); color: var(--text); text-transform: uppercase; }
.marquee__track i { color: var(--accent-ink); font-style: normal; font-size: 1.4rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__photo { position: relative; }
.about__photo-inner { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.about__photo-inner img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transform: scale(1.15); }
.about__photo-tag {
  position: absolute; top: 18px; right: 18px; background: var(--accent); color: #000;
  font-family: var(--font-d); font-weight: 700; padding: .4rem .9rem; border-radius: 100px; font-size: .8rem; letter-spacing: .05em;
}
.about__big { font-family: var(--font-d); font-weight: 600; font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.2; }
.about__text { color: var(--muted); margin-top: 1.4rem; font-size: 1.05rem; max-width: 36rem; }
.about__stats { display: flex; gap: clamp(1.2rem, 4vw, 3rem); margin-top: 2.2rem; flex-wrap: wrap; }
.stat b { font-family: var(--font-d); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--accent-ink); display: block; line-height: 1; }
.stat span { color: var(--muted); font-size: .85rem; }
.about__chips { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; list-style: none; }
.about__chips li { border: 1px solid var(--line); border-radius: 100px; padding: .45rem 1rem; font-size: .85rem; color: var(--text); transition: .25s var(--ease); }
.about__chips li:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* ============================================================
   EXPERIENCE — HORIZONTAL CAROUSEL
   ============================================================ */
.exp { padding-right: 0; padding-left: 0; overflow: hidden; }
.exp__head { padding: 0 clamp(1.2rem, 5vw, 5rem); margin-bottom: 1.8rem; }
.exp__viewport {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.exp__track { display: flex; gap: .9rem; width: max-content; padding: .4rem 0; will-change: transform; }
.exp__card {
  width: clamp(220px, 24vw, 290px); flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s;
  min-height: 248px; display: flex; flex-direction: column;
}
.exp__card:hover { border-color: var(--accent); transform: translateY(-6px); background: var(--surface-2); }
.exp__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.exp__year { font-family: var(--font-d); font-weight: 700; color: var(--accent-ink); font-size: .76rem; letter-spacing: .04em; }
.exp__dot { width: 9px; height: 9px; background: var(--accent); transform: rotate(45deg); }
.exp__card h3 { font-family: var(--font-d); font-size: 1.08rem; font-weight: 700; line-height: 1.12; }
.exp__card h4 { color: var(--muted); font-weight: 500; font-size: .9rem; margin-top: .2rem; margin-bottom: .75rem; }
.exp__card h4 em { color: var(--text); font-style: normal; }
.exp__card ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.exp__card li { position: relative; padding-left: 1rem; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.exp__card li::before { content:"›"; position:absolute; left:0; color: var(--accent-ink); font-weight: 700; }
.exp__card li b { color: var(--text); }
.exp__card--edu { background: linear-gradient(160deg, var(--surface-2), var(--surface)); }

/* ============================================================
   STACK — BENTO
   ============================================================ */
.stack__head { max-width: 60rem; margin-bottom: clamp(1.6rem, 3vw, 2.5rem); }
.stack__sub { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; max-width: 38rem; }
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 1rem; }
.bento__cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; min-height: 168px; display: flex; flex-direction: column; justify-content: flex-start; gap: 1.1rem;
  position: relative; overflow: hidden; opacity: 0; transform: translateY(30px) scale(.96);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.bento__cell::after { content: attr(data-cat); position: absolute; top: 1rem; right: 1.1rem; font-family: var(--font-d); font-weight: 800; font-size: clamp(2.1rem, 4vw, 3rem); color: var(--ghost); z-index: 0; line-height: 1; pointer-events: none; transition: color .35s; }
.bento__cell:hover { border-color: var(--accent); background: var(--surface-2); }
.bento__cell:hover::after { color: var(--ghost-hover); }
.bento__label { font-family: var(--font-d); font-weight: 700; font-size: 1.15rem; color: var(--text); position: relative; z-index: 1; }
.bento__tags { display: flex; flex-wrap: wrap; gap: .5rem; position: relative; z-index: 1; }
.bento__tags span {
  background: var(--bg); border: 1px solid var(--line); border-radius: 100px;
  padding: .4rem .85rem; font-size: .85rem; color: var(--muted); transition: .25s var(--ease);
}
.bento__cell:hover .bento__tags span { border-color: rgba(215,252,81,.4); color: var(--text); }
.stack__note { margin-top: 1.6rem; color: var(--muted); font-size: .85rem; max-width: 50rem; }

/* ============================================================
   SERVICES — TILT CARDS
   ============================================================ */
.services__head { margin-bottom: clamp(1.6rem, 3vw, 2.5rem); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.45rem; min-height: 188px; display: flex; flex-direction: column;
  transform-style: preserve-3d; transition: border-color .3s var(--ease), background .3s var(--ease);
  position: relative; will-change: transform;
}
.svc::before { content: ""; width: 30px; height: 3px; background: var(--accent); margin-bottom: 1.1rem; transform: translateZ(40px); }
.svc:hover { border-color: var(--accent); background: var(--surface-2); }
.svc h3 { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; line-height: 1.1; transform: translateZ(30px); }
.svc p { color: var(--muted); margin-top: .9rem; font-size: .95rem; transform: translateZ(20px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__head { max-width: 50rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.contact__title { color: var(--text); }
.contact__sub { color: var(--muted); margin-top: 1rem; font-size: 1.1rem; }

.contact__direct { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.contact__line {
  display: flex; flex-direction: column; gap: .5rem; padding: 1.8rem 2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.contact__line--static:hover { border-color: rgba(215,252,81,.45); background: var(--surface-2); }
.contact__line-k { font-size: .78rem; color: var(--accent-ink); letter-spacing: .12em; text-transform: uppercase; }
.contact__line-v { font-family: var(--font-d); font-weight: 700; font-size: clamp(1.05rem, 2.2vw, 1.55rem); word-break: break-word; user-select: text; }
@media (max-width: 640px) { .contact__direct { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); }
.footer__marquee { overflow: hidden; padding: 2.2rem 0; }
.footer__track { display: flex; align-items: center; gap: 2rem; white-space: nowrap; width: max-content; animation: footMarquee 22s linear infinite; }
.footer__track span { font-family: var(--font-d); font-weight: 800; font-size: clamp(2rem, 6vw, 4.5rem); color: transparent; -webkit-text-stroke: 1.4px var(--line); }
.footer__track i { color: var(--accent-ink); font-style: normal; font-size: 2.4rem; }
@keyframes footMarquee { to { transform: translateX(-50%); } }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem clamp(1.2rem, 5vw, 5rem); border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; flex-wrap: wrap; gap: .6rem; }
.footer__top:hover { color: var(--accent-ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__right { order: -1; }
  .hero__photo { width: min(78%, 340px); }
  .about__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell.big { grid-column: span 2; }
  .bento__cell.wide { grid-column: span 2; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .nav__links { position: fixed; inset: 0 0 0 auto; width: 75%; max-width: 320px; background: var(--bg-2); flex-direction: column; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform .5s var(--ease); border-left: 1px solid var(--line); }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.3rem; }
  .nav__burger { display: flex; z-index: 810; }
  .nav.open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__cell, .bento__cell.big, .bento__cell.tall, .bento__cell.wide { grid-column: auto; grid-row: auto; min-height: 150px; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.2rem; }
}

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