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

:root {
  --bg:          #0a0b10;
  --bg-2:        #101218;
  --bg-3:        #171a24;
  --bg-card:     #12141c;
  --border:      rgba(255,255,255,0.06);
  --border-hover:rgba(255,255,255,0.12);
  --text:        #dce0ea;
  --text-dim:    #8891a5;
  --text-muted:  #454d62;
  --text-bright: #f0f2f7;
  --accent:      #d4a853;
  --accent-soft: rgba(212,168,83,0.10);
  --accent-glow: rgba(212,168,83,0.20);
  --secondary:   #7b8fca;
  --secondary-soft:rgba(123,143,202,0.10);
  --teal:        #5cbaa5;
  --blue:        #6b9fd4;
  --red:         #e8727e;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --font-mono:   'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10,11,16,0.8);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--accent-soft) 30%, var(--secondary-soft) 70%, transparent 95%);
}

nav.nav-scrolled {
  background: rgba(10,11,16,0.95);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: translateX(-50%) scale(1); }

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

/* Dot grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Status pill */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin-bottom: 1.75rem;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  background: var(--bg-2);
  transition: border-color 0.2s, transform 0.2s;
}

.tag:hover { transform: translateY(-1px); }

.tag.accent { border-color: rgba(212,168,83,0.35); color: var(--accent); background: var(--accent-soft); }
.tag.teal   { border-color: rgba(92,186,165,0.3); color: var(--teal); background: rgba(92,186,165,0.06); }
.tag.blue   { border-color: rgba(107,159,212,0.3); color: var(--blue); background: rgba(107,159,212,0.06); }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #0a0b10;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: #e0b560;
  box-shadow: 0 0 24px var(--accent-glow), 0 0 60px rgba(212,168,83,0.1);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ─── GLOW ORBS ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,0.07) 0%, transparent 70%);
  top: 5%; right: -10%;
  animation: orbFloat1 25s ease-in-out infinite;
}

.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(92,186,165,0.05) 0%, transparent 70%);
  bottom: 20%; left: 5%;
  animation: orbFloat2 20s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,143,202,0.05) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 22s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -25px) scale(1.04); }
  66% { transform: translate(-15px, 15px) scale(0.96); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-12px, -18px) scale(1.03); }
  66% { transform: translate(18px, 10px) scale(0.97); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -15px) scale(1.05); }
}

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-hover), var(--accent-soft) 40%, var(--secondary-soft) 60%, transparent);
  margin-left: 1rem;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  position: relative;
  padding-left: 1.5rem;
}

.about-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--secondary), transparent);
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.about-text p strong {
  color: var(--text);
  font-weight: 500;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-item {
  padding: 1.25rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 2px solid transparent;
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.stat-item:hover {
  border-color: var(--border-hover);
  border-left-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-2) 60%);
  transform: translateX(4px);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.stat-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.stat-value a:hover { color: var(--accent); }

/* ─── PROJECTS ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--accent-soft) 0%,
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.project-card:hover {
  border-color: rgba(212,168,83,0.25);
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(212,168,83,0.1);
}

.project-card:hover::before { opacity: 1; }

.project-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.project-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.project-icon.energy  { background: rgba(212,168,83,0.12); }
.project-icon.robot   { background: rgba(107,159,212,0.1); }
.project-icon.smart   { background: rgba(92,186,165,0.1); }

.project-link-icon {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.project-card:hover .project-link-icon {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.project-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  position: relative;
  z-index: 1;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  flex: 1;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.project-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: transform 0.2s;
}

.project-tag:hover { transform: translateY(-1px); }

.pt-amber { background: rgba(212,168,83,0.1); color: #c89040; border: 1px solid rgba(212,168,83,0.2); }
.pt-blue  { background: rgba(107,159,212,0.08); color: #5088b0; border: 1px solid rgba(107,159,212,0.2); }
.pt-teal  { background: rgba(92,186,165,0.08); color: #3a9e8a; border: 1px solid rgba(92,186,165,0.2); }
.pt-grey  { background: rgba(255,255,255,0.04); color: var(--text-dim); border: 1px solid var(--border); }

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ─── PUBLICATIONS ─── */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pub-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 1.25rem;
  border: 1px solid transparent;
  border-bottom-color: var(--border);
  border-left: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  border-radius: 0;
}

.pub-item:first-child { border-top-color: var(--border); }

.pub-item:hover {
  background: var(--bg-2);
  border-color: var(--border);
  border-left-color: var(--accent);
  border-radius: 6px;
  padding-left: 1.5rem;
}

.pub-year {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  padding-top: 0.2rem;
  letter-spacing: 0.05em;
  transition: transform 0.2s;
}

.pub-item:hover .pub-year {
  transform: scale(1.05);
}

.pub-venue-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.badge-ieee   { background: rgba(107,159,212,0.1); color: var(--blue); border: 1px solid rgba(107,159,212,0.25); }
.badge-appl   { background: rgba(92,186,165,0.1); color: var(--teal); border: 1px solid rgba(92,186,165,0.25); }
.badge-conf   { background: rgba(255,255,255,0.05); color: var(--text-dim); border: 1px solid var(--border); }
.badge-preprint { background: rgba(232,114,126,0.08); color: var(--red); border: 1px solid rgba(232,114,126,0.2); }

.pub-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #d8dce8;
  line-height: 1.4;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.pub-item:hover .pub-title {
  color: var(--text-bright);
}

.pub-authors {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.pub-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-top: 0.35rem;
  transition: color 0.2s, transform 0.2s;
}

.pub-item:hover .pub-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* ─── FOOTER CTA ─── */
.footer-cta {
  text-align: center;
  padding: 5rem 2.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-cta h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.footer-cta p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), var(--secondary-soft), transparent);
}

.footer-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.6); }
}

/* Hero entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blurIn {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0); }
}

@keyframes clipReveal {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}

.hero-status   { animation: fadeUp 0.5s ease both; animation-delay: 0.05s; }
.hero-eyebrow  { animation: fadeUp 0.5s ease both; animation-delay: 0.15s; }
h1             { animation: clipReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) both; animation-delay: 0.25s; }
.hero-sub      { animation: blurIn 0.7s ease both; animation-delay: 0.5s; }
.hero-tags     { animation: fadeUp 0.6s ease both; animation-delay: 0.65s; }
.hero-cta      { animation: fadeUp 0.6s ease both; animation-delay: 0.8s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.revealed .reveal-item,
.reveal-item.revealed {
  opacity: 1;
  transform: none;
}

/* ─── DIVIDER ─── */
.full-divider {
  width: 100%;
  height: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 5%, var(--border-hover) 30%, var(--accent-soft) 50%, var(--border-hover) 70%, transparent 95%);
}

/* ─── FOCUS VISIBLE ─── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 105;
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links li { list-style: none; }
  .nav-links a { font-size: 1.1rem; color: var(--text); }

  .hero { padding: 7rem 1.25rem 4rem; }
  section { padding: 4rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .pub-item { grid-template-columns: 60px 1fr; }
  .pub-arrow { display: none; }
  .footer-cta { padding: 3rem 1.25rem 2rem; }
  .footer-cta h3 { font-size: 1.4rem; }
  footer { flex-direction: column; gap: 1.25rem; text-align: center; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-item { opacity: 1; transform: none; }
  .scroll-progress { display: none; }
}
