/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #070707;
  --bg-alt: #0d0d0d;
  --card: #111111;
  --card-border: #1e1e1e;
  --accent: #d4ff00;
  --accent-dim: rgba(212, 255, 0, 0.12);
  --text: #ffffff;
  --muted: #888888;
  --muted-2: #555555;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-w: 1160px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================
   TYPOGRAPHY
   ============================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label.center { display: block; text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}
.section-title.center { text-align: center; }

.body-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
}
.body-text.center { text-align: center; margin-inline: auto; }

.muted { color: var(--muted); font-size: 14px; }
.accent { color: var(--accent); }

/* ============================
   LAYOUT
   ============================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section {
  padding-block: clamp(80px, 10vw, 130px);
}
.section-alt { background: var(--bg-alt); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 0;
}

.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.nav-logo .dot { color: var(--accent); }

.nav-avatar {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  display: block;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-avatar:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.85; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #d4ff00, transparent);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #00d4ff, transparent);
  bottom: -100px; left: -100px;
  animation-delay: 2s;
  opacity: 0.08;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 255, 0, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.stat-div { width: 1px; height: 36px; background: var(--card-border); }

.scroll-indicator {
  position: absolute;
  bottom: 40px; right: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-accent {
  background: var(--accent);
  color: #000;
}
.btn-accent:hover { background: #bceb00; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================
   ABOUT
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image { position: relative; }

.image-frame {
  position: relative;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
}
.image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-frame.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
}
.image-frame.no-image::after { content: 'VP'; }

.image-border {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--accent), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.about-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 260px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-card-icon { font-size: 22px; margin-bottom: 8px; }
.about-card p { font-size: 13px; line-height: 1.5; }
.about-card .muted { margin-top: 4px; font-style: italic; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.tag:hover { border-color: var(--accent); color: var(--accent); }

/* ============================
   SKILLS
   ============================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.skill-group {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.skill-group:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.skill-icon { font-size: 28px; margin-bottom: 14px; }
.skill-group h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
.skill-group li {
  color: var(--muted);
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px solid var(--card-border);
}
.skill-group li:last-child { border-bottom: none; }

/* ============================
   SKILLS EXTRA STRIP
   ============================ */
.skills-extra {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.skills-extra-group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.skills-extra-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 6px;
  min-width: 60px;
  flex-shrink: 0;
}
.skills-extra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skills-extra-tags span {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ============================
   EXPERIENCE TIMELINE
   ============================ */
.timeline {
  position: relative;
  margin-top: 64px;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -39px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.timeline-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  transition: border-color var(--transition);
}
.timeline-card:hover { border-color: rgba(212, 255, 0, 0.3); }

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.timeline-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.timeline-badge {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.timeline-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-company {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 4px;
}
.timeline-context {
  color: var(--muted-2);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 16px;
}

.timeline-points {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 20px;
}
.timeline-points li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 6px;
}
.timeline-points li strong { color: var(--text); }

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.timeline-tags span {
  background: rgba(212, 255, 0, 0.07);
  border: 1px solid rgba(212, 255, 0, 0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================
   PROJECTS
   ============================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  border-color: rgba(212, 255, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(212, 255, 0, 0.05);
}

.project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.project-icon { font-size: 32px; }
.project-links a {
  color: var(--muted);
  transition: color var(--transition);
}
.project-links a:hover { color: var(--accent); }

.project-result {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.project-bullets {
  list-style: none;
  margin-bottom: 16px;
  flex: 1;
}
.project-bullets li {
  color: var(--muted);
  font-size: 13px;
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}
.project-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.6;
}

.project-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.project-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-tags span {
  background: var(--bg);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================
   EDUCATION
   ============================ */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.edu-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  transition: border-color var(--transition);
}
.edu-card:hover { border-color: rgba(212, 255, 0, 0.3); }

.edu-year {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.edu-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.edu-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.edu-school {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.edu-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.edu-modules span {
  background: var(--bg);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(212, 255, 0, 0.3); }

.quote-icon {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 12px;
}

.testimonial-card > p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 255, 0, 0.2);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 14px; }
.testimonial-author .muted { margin-top: 2px; }

/* ============================
   CONTACT
   ============================ */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 48px auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: all var(--transition);
  font-size: 15px;
  color: var(--muted);
}
.contact-link:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateX(6px);
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.cta-block { text-align: center; margin-top: 16px; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: 28px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.skills-grid .reveal:nth-child(1) { transition-delay: 0s; }
.skills-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.skills-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.skills-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.projects-grid .reveal:nth-child(1) { transition-delay: 0s; }
.projects-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.projects-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.projects-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .image-frame { width: 100%; max-width: 340px; }
  .about-card { right: 0; bottom: -20px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(7, 7, 7, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 20px;
    z-index: 90;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 101; }

  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-stats { gap: 20px; }
  .stat-div { display: none; }

  .projects-grid,
  .edu-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .skills-grid { grid-template-columns: 1fr; }

  .timeline { padding-left: 24px; }
  .timeline-dot { left: -31px; }

  .edu-card { flex-direction: column; gap: 12px; }
  .edu-year { writing-mode: horizontal-tb; transform: none; }

  .about-card { position: static; margin-top: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .scroll-indicator { display: none; }
}


/* PRESERVED ACCESSIBILITY & UTILITY ADDITIONS */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background-color: var(--accent);
  color: #070707;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 2000;
  font-weight: 700;
  transition: top 200ms ease;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 1001;
  transition: width 100ms ease;
}

.copy-tooltip {
  position: absolute;
  bottom: -32px;
  background-color: var(--accent);
  color: #070707;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
}

.copy-tooltip.show {
  opacity: 1;
  visibility: visible;
}

.copy-email-trigger { cursor: pointer; }

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