/* ==========================================================================
   amiryan.org — modern technical / dark
   ========================================================================== */

/* ---------- Fonts ---------- */

@font-face {
  font-family: 'Geist';
  src: url('/fonts/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('/fonts/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('/fonts/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('/fonts/GeistMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  --bg:           #0A0A0A;
  --bg-elev:      #0F0F10;
  --bg-card:      #101013;
  --bg-card-hi:   #15151A;

  --fg:           #EDEDED;
  --fg-strong:    #FFFFFF;
  --fg-muted:     #8A8A8A;
  --fg-faint:     #5C5C60;

  --border:       #1F1F22;
  --border-hi:    #2A2A2E;
  --border-accent: rgba(124, 124, 250, 0.45);

  --accent:       #7C7CFA;
  --accent-hi:    #9595FB;
  --accent-glow:  rgba(124, 124, 250, 0.18);

  --danger:       #F87171;

  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

  --measure: 62ch;
  --container: 1180px;
  --pad-x: clamp(1.25rem, 4vw, 2.75rem);
  --section-gap: clamp(4.5rem, 9vw, 8rem);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.02) inset;

  color-scheme: dark;
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
a { color: inherit; }

/* ---------- Base ---------- */

html, body { background: var(--bg); color: var(--fg); }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "ss01", "ss03", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

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

/* ---------- Layout primitives ---------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.prose { max-width: var(--measure); }
.prose p { color: var(--fg); }
.prose p + p { margin-top: 1.1em; }
.prose a {
  color: var(--accent-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 124, 250, 0.35);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.prose a:hover {
  color: var(--accent-hi);
  border-bottom-color: var(--accent);
}

/* ---------- Section heading ---------- */

.section-heading {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2.25rem;
}
.section-heading::before {
  content: "";
  width: 1.1rem;
  height: 1px;
  background: var(--border-hi);
}

/* ---------- Mono label ---------- */

.label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---------- Site header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header__brand {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.site-header__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg-strong);
  background: var(--bg-card);
}
.site-header__links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.site-header__links a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-header__links a:hover { color: var(--fg-strong); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(4rem, 12vw, 9rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  background:
    radial-gradient(60% 50% at 50% 30%, var(--accent-glow), transparent 70%),
    radial-gradient(35% 40% at 80% 0%, rgba(124, 124, 250, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.hero__eyebrow-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}
.hero__headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--fg-strong);
  max-width: 22ch;
  margin-bottom: 1.5rem;
  hyphens: manual;
  overflow-wrap: break-word;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(180deg, var(--fg-strong), #B8B8FB 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 52ch;
  margin-bottom: 2.25rem;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--fg);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.hero__cta:hover {
  border-color: var(--border-accent);
  color: var(--fg-strong);
  background: var(--bg-card-hi);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.hero__cta-arrow { transition: transform 0.15s ease; }
.hero__cta:hover .hero__cta-arrow { transform: translateX(2px); }

/* ---------- Section base ---------- */

section.section {
  padding-top: var(--section-gap);
}
section.section + section.section { padding-top: 0; margin-top: var(--section-gap); }

/* ---------- About ---------- */

.about__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 880px) {
  .about__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
}
.about__lede { font-size: 1.05rem; }
.about__sidecard {
  align-self: start;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--fg-muted);
}
.about__portrait {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-hi);
  background: var(--bg);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
  float: left;
  margin: 0.4rem 1.75rem 0.75rem 0;
  shape-outside: inset(0 round 10px);
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .about__portrait {
    float: none;
    width: 180px;
    height: 180px;
    margin: 0 0 1.25rem 0;
  }
}
.about__sidecard dt {
  color: var(--fg-faint);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.about__sidecard dt:first-child { margin-top: 0; }
.about__sidecard dd { color: var(--fg); margin-top: 0.2rem; }

/* ---------- Recent Work — cards ---------- */

.work__list {
  display: grid;
  gap: 1.25rem;
}
.case {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-card);
}
.case:hover {
  border-color: var(--border-hi);
  background: var(--bg-card-hi);
}
.case__index {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--fg-faint);
  margin-bottom: 0.75rem;
}
.case__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.35rem, 1vw + 1rem, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg-strong);
  margin-bottom: 0.6rem;
}
.case__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.tag--accent {
  color: var(--accent-hi);
  border-color: var(--border-accent);
  background: var(--accent-glow);
}
.case__body { max-width: var(--measure); }
.case__body p + p { margin-top: 1em; }
.case__body a {
  color: var(--accent-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 124, 250, 0.35);
}
.case__body a:hover { border-bottom-color: var(--accent); }

.case__stack {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
}
.case__stack .label {
  margin-right: 0.4rem;
  color: var(--fg-faint);
}
.case__links {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.78rem;
}
.case__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-pill);
  color: var(--fg);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.case__links a:hover {
  border-color: var(--border-accent);
  color: var(--accent-hi);
}

/* ---------- Skills / Capabilities ---------- */

.skills__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 760px) {
  .skills__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.skills__group {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.skills__group:hover {
  border-color: var(--border-hi);
  background: var(--bg-card-hi);
}
.skills__group-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 0.85rem;
}
.skills__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
}

/* ---------- Background (CV summary) ---------- */

.roles {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.roles li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.roles li:last-child { border-bottom: 0; }
.role { font-family: var(--sans); font-weight: 500; color: var(--fg); }
.role-date {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  white-space: nowrap;
}
.background__cv {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
}
.background__cv a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 124, 250, 0.35);
}
.background__cv a:hover { border-bottom-color: var(--accent); }

/* ---------- Speaking ---------- */

.speaking__list {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.speaking__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.speaking__list li:last-child { border-bottom: 0; }
.speaking__title { color: var(--fg); }
.speaking__where {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  white-space: nowrap;
}
.speaking__where a {
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-hi);
}
.speaking__where a:hover { color: var(--accent-hi); border-bottom-color: var(--accent); }

/* ---------- Contact ---------- */

.contact__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 880px) {
  .contact__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.contact__intro p { color: var(--fg-muted); }
.contact__direct {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.contact__direct a {
  color: var(--accent-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 124, 250, 0.35);
}
.contact__direct a:hover { border-bottom-color: var(--accent); }

.contact__form {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  gap: 1.25rem;
}

.field { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.5;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field textarea {
  resize: vertical;
  min-height: 9rem;
  font-family: var(--sans);
}
.field input:hover,
.field textarea:hover { border-color: var(--border-hi); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-elev);
}

.field--honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Captcha field — treated as a real form field with a label like Name/Email/Message.
   size="flexible" tells Turnstile to span the parent's width, so the widget no longer
   floats as a 300px island in an 880px form. */
.field--captcha {
  display: grid;
  gap: 0.45rem;
}
.field__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.field--captcha .cf-turnstile {
  width: 100%;
  min-height: 65px;
}
.field--captcha .cf-turnstile iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.25rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--bg);
  background: var(--fg-strong);
  border: 1px solid var(--fg-strong);
  border-radius: var(--radius-sm);
  align-self: start;
  transition: filter 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}
.contact__submit:hover {
  filter: brightness(0.92);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.contact__submit:active { transform: translateY(1px); }
.contact__submit:disabled { opacity: 0.6; cursor: progress; }

.contact__status[data-status="idle"] .contact__status-message { display: none; }
.contact__status-message {
  margin-bottom: 1.25rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.contact__status-message--success {
  color: #BBF7D0;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.08);
}
.contact__status-message--error {
  color: #FECACA;
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.08);
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: var(--section-gap);
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem 2rem;
}
.site-footer__copy {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.site-footer__sep { margin: 0 0.5em; color: var(--fg-faint); }
.site-footer__links {
  display: flex;
  gap: 1.25rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}
.site-footer__links a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer__links a:hover { color: var(--fg-strong); }

/* ---------- Mobile ---------- */

@media (max-width: 720px) {
  :root {
    --pad-x: 1.1rem;
    --section-gap: 3.5rem;
  }

  /* Header — keep single-line, hide secondary nav, smaller mark + brand */
  .site-header { padding: 0.75rem 0; }
  .site-header__inner { gap: 0.75rem; }
  .site-header__brand {
    font-size: 0.7rem;
    gap: 0.45rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .site-header__brand-mark {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.78rem;
  }
  .site-header__links {
    gap: 0.95rem;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    flex-wrap: nowrap;
    min-width: 0;
  }
  .site-header__links a:nth-child(2) { display: none; } /* hide "Background" */
  .site-header__links a:last-child { display: none; }   /* hide "GitHub" */

  /* Hero — tighter type, less air */
  .hero { padding-top: clamp(2rem, 8vw, 3rem); }
  .hero__inner { padding-inline: var(--pad-x); }
  .hero__headline {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    letter-spacing: -0.02em;
    max-width: 100%;
  }
  .hero__sub {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.75rem;
  }
  .hero__eyebrow {
    font-size: 0.62rem;
    padding: 0.32rem 0.7rem;
    margin-bottom: 1.1rem;
  }
  .hero__cta {
    font-size: 0.88rem;
    padding: 0.7rem 1.05rem;
  }

  /* Section heading — tighter spacing */
  .section-heading { margin-bottom: 1.5rem; }

  /* About — sidecard stacks below lede */
  .about__sidecard { padding: 1.1rem 1.15rem; font-size: 0.78rem; }

  /* Case studies — tighter padding, tags wrap better */
  .case { padding: 1.25rem 1.15rem; }
  .case__title { font-size: 1.25rem; }
  .case__meta { gap: 0.4rem 0.5rem; }
  .tag { font-size: 0.66rem; padding: 0.18rem 0.5rem; }

  /* Roles + speaking — single column row, tighter */
  .roles li,
  .speaking__list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
    padding: 0.85rem 1rem;
  }
  .role-date,
  .speaking__where { white-space: normal; }

  /* Skills */
  .skills__group { padding: 1rem 1.05rem; }

  /* Contact form */
  .contact__form { padding: 1.15rem 1rem; }

  /* Footer stacks */
  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* Very narrow phones (≤ 380px) */
@media (max-width: 380px) {
  .site-header__links a:not([href="#contact"]) { display: none; }
  .hero__headline { font-size: 1.7rem; }
}

/* ---------- Reduced motion ---------- */

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