/* =====================================================================
   Jonathan Castro — Showcase
   Design system: Portfolio Grid + Motion-Driven
   Palette: monochrome zinc + electric blue (#2563EB)
   Fonts: Archivo (headings) / Space Grotesk (body)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* light theme (default) */
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-alt: #F4F4F5;
  --text: #09090B;
  --text-muted: #52525B;
  --primary: #18181B;
  --accent: #2563EB;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --border: #E4E4E7;

  /* fixed dark palette for the hero + contact band (dark in both themes) */
  --dark-bg: #0B0B0E;
  --dark-surface: #18181B;
  --dark-text: #FAFAFA;
  --dark-text-muted: #A1A1AA;
  --dark-accent: #3B82F6;
  --dark-border: #27272A;

  /* spacing */
  --space-xs: .25rem;  --space-sm: .5rem;  --space-md: 1rem;
  --space-lg: 1.5rem;  --space-xl: 2rem;   --space-2xl: 3rem;  --space-3xl: 4rem;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 10px rgba(0,0,0,.08);
  --shadow-lg: 0 14px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 50px rgba(0,0,0,.16);

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --header-h: 68px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="dark"] {
  --bg: #09090B;
  --surface: #141417;
  --surface-alt: #0F0F12;
  --text: #FAFAFA;
  --text-muted: #A1A1AA;
  --primary: #FAFAFA;
  --accent: #3B82F6;
  --accent-soft: rgba(59, 130, 246, 0.16);
  --border: #27272A;
  --shadow-md: 0 4px 14px rgba(0,0,0,.5);
  --shadow-lg: 0 16px 34px rgba(0,0,0,.6);
  --shadow-xl: 0 26px 55px rgba(0,0,0,.7);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}

h1, h2, h3, h4 { font-family: "Archivo", system-ui, sans-serif; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

/* visible focus for keyboard users */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 12px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  z-index: 120; transition: width .1s linear;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px;
  background: var(--primary); color: var(--bg);
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: .92rem; letter-spacing: -.03em;
  transition: transform .3s var(--ease), background-color .4s var(--ease), color .4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-name { font-family: "Archivo", sans-serif; font-size: 1.02rem; letter-spacing: -.02em; }

.nav-links { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--text-muted); position: relative; padding: .35rem 0; transition: color .25s var(--ease); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta {
  background: var(--primary); color: var(--bg); padding: .5rem 1rem; border-radius: 8px; font-weight: 600;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { opacity: .9; }

.nav-controls { display: flex; align-items: center; gap: .5rem; }
.theme-toggle {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); color: var(--text); transition: background-color .25s var(--ease), border-color .25s;
}
.theme-toggle:hover { background: var(--surface-alt); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 10px; font-weight: 600; font-size: 1rem;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .25s, opacity .25s, border-color .25s;
  will-change: transform;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px var(--accent-soft); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,99,235,.32); }
.btn-ghost { border: 2px solid currentColor; color: var(--dark-text); }
.btn-ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; margin-top: var(--space-xl); }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section-alt { background: var(--surface-alt); }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-kicker { font-family: "Archivo", sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.section-kicker.light { color: var(--dark-accent); }
.section-title { font-size: clamp(2rem, 5vw, 3.1rem); }
.section-lead { margin-top: 1rem; color: var(--text-muted); font-size: 1.1rem; max-width: 60ch; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3rem;
  background: var(--dark-bg); color: var(--dark-text); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 40%, transparent 100%);
  animation: gridDrift 28s linear infinite;
}
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 54px 54px; } }

.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob-1 { width: 460px; height: 460px; background: #2563EB; top: -120px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: #1e40af; bottom: -140px; left: -90px; opacity: .5; }
.blob-3 { width: 280px; height: 280px; background: #3b82f6; top: 40%; left: 55%; opacity: .28; }
@media (min-width: 700px) {
  .blob-1 { animation: float1 16s var(--ease) infinite; }
  .blob-2 { animation: float2 20s var(--ease) infinite; }
  .blob-3 { animation: float1 22s var(--ease) infinite reverse; }
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,-30px); } }

.hero-inner {
  position: relative; z-index: 2; display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.25fr .9fr; align-items: center; flex: 1;
}
.eyebrow { font-family: "Archivo", sans-serif; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; color: var(--dark-accent); margin-bottom: 1rem; }
.hero-title { font-size: clamp(2.8rem, 8vw, 5.6rem); font-weight: 800; line-height: .98; }
.hero-role { font-size: clamp(1.1rem, 2.6vw, 1.7rem); font-weight: 600; color: var(--dark-text); margin-top: 1rem; font-family: "Archivo", sans-serif; }
.hero-role .arrow { color: var(--dark-accent); }
.hero-tagline { margin-top: 1.4rem; max-width: 46ch; color: var(--dark-text-muted); font-size: clamp(1rem, 2vw, 1.2rem); }
.hero-tagline strong { color: var(--dark-text); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-photo { position: relative; justify-self: center; }
.hero-photo picture, .hero-photo img { position: relative; z-index: 2; max-width: 420px; width: 100%; }
.hero-photo img { filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); }
.photo-glow {
  position: absolute; z-index: 1; inset: 6% 0 0 0; margin: auto; width: 86%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.55), rgba(59,130,246,0) 62%);
  filter: blur(14px); animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.08); opacity: 1; } }

/* stat strip */
.stat-strip {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: 2rem; border-top: 1px solid var(--dark-border);
}
.stat-num { display: block; font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(1.8rem, 5vw, 3rem); color: var(--dark-text); line-height: 1; }
.stat-label { display: block; margin-top: .5rem; font-size: .85rem; color: var(--dark-text-muted); }

.scroll-cue { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid var(--dark-text-muted); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--dark-text); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about-body p { margin-bottom: 1.2rem; font-size: 1.12rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--text); font-weight: 600; }

/* ---------- Skills ---------- */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.skill-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.skill-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.skill-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 1.1rem; }
.skill-icon svg { width: 26px; height: 26px; }
.skill-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li { font-size: .82rem; padding: .35rem .7rem; border-radius: 999px; background: var(--surface-alt); border: 1px solid var(--border); color: var(--text-muted); transition: color .2s, border-color .2s, background-color .2s; }
.skill-card:hover .chips li { color: var(--text); }

/* ---------- What I Build ---------- */
.build-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }
.build-card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.build-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--accent), #60a5fa); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.build-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.build-card:hover::before { transform: scaleX(1); }
.build-num { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--accent-soft); display: block; line-height: 1; margin-bottom: .4rem; }
[data-theme="dark"] .build-num { color: color-mix(in srgb, var(--accent) 30%, transparent); }
.build-card h3 { font-size: 1.2rem; margin-bottom: .7rem; }
.build-card p { color: var(--text-muted); font-size: 1rem; }

/* ---------- Projects ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
.filter {
  padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--border); font-size: .9rem; font-weight: 500;
  color: var(--text-muted); transition: all .25s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--text-muted); }
.filter.is-active { background: var(--primary); color: var(--bg); border-color: var(--primary); }

.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.project-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .35s var(--ease), border-color .3s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.project-card.hide { display: none; }
.project-card.filtering { opacity: 0; transform: translateY(14px); }

.project-visual {
  height: 150px; display: grid; place-items: center; position: relative; overflow: hidden;
  color: #fff;
}
.project-visual::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(135deg, rgba(255,255,255,.14), transparent 60%); }
.project-visual svg { width: 54px; height: 54px; position: relative; z-index: 1; transition: transform .4s var(--ease); }
.project-card:hover .project-visual svg { transform: scale(1.12) rotate(-4deg); }
.visual-security   { background: linear-gradient(135deg, #0f172a, #1e3a8a); }
.visual-automation { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.visual-apps       { background: linear-gradient(135deg, #18181b, #3f3f46); }
.visual-web        { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.visual-data       { background: linear-gradient(135deg, #111827, #2563eb); }
.visual-ai         { background: linear-gradient(135deg, #312e81, #6366f1); }

.project-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.tag { align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: .25rem .6rem; border-radius: 6px; }
.project-body h3 { font-size: 1.2rem; }
.project-body p { color: var(--text-muted); font-size: .98rem; }
.project-body em { color: var(--text); font-style: normal; font-weight: 600; }

/* ---------- Education ---------- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.edu-card { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.edu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.edu-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; }
.edu-top h3 { font-size: 1.3rem; }
.edu-status { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); background: var(--accent-soft); padding: .3rem .7rem; border-radius: 999px; white-space: nowrap; }
.edu-status.done { color: var(--text-muted); background: var(--surface-alt); }
.edu-meta { color: var(--text); font-weight: 500; font-size: .95rem; margin-bottom: .6rem; }
.edu-desc { color: var(--text-muted); font-size: 1rem; }

/* ---------- Contact ---------- */
.section-contact { background: var(--dark-bg); color: var(--dark-text); overflow: hidden; }
.contact-inner { text-align: center; max-width: 820px; margin-inline: auto; }
.contact-title { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 1rem; }
.contact-lead { color: var(--dark-text-muted); font-size: 1.15rem; max-width: 52ch; margin: 0 auto 2.4rem; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; text-align: left; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.4rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--dark-border); border-radius: var(--radius);
  transition: transform .3s var(--ease), background-color .3s, border-color .3s;
}
a.contact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: var(--dark-accent); }
.contact-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(59,130,246,.18); color: var(--dark-accent); }
.contact-icon svg { width: 22px; height: 22px; }
.contact-meta { display: flex; flex-direction: column; min-width: 0; }
.contact-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--dark-text-muted); }
.contact-value { font-weight: 500; word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-alt); border-top: 1px solid var(--border); padding: 2.2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: "Archivo", sans-serif; font-weight: 700; }
.footer-note { color: var(--text-muted); font-size: .9rem; }
.back-top { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; color: var(--text-muted); transition: color .2s; }
.back-top:hover { color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-tagline { margin-inline: auto; }
  .hero-photo { order: -1; }
  .hero-photo picture, .hero-photo img { max-width: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: .5rem clamp(1.1rem,4vw,2.5rem) 1.2rem;
    transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .9rem 0; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-links a.nav-cta { text-align: center; margin-top: .7rem; border-bottom: none; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  body { font-size: 16px; }
}
@media (max-width: 420px) {
  .brand-name { display: none; }
  .projects-grid, .skills-grid, .build-grid { grid-template-columns: 1fr; }
}

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