@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-soft: #f3f3f3;
  --ink: #102c53;
  --muted: #5f6c8d;
  --line: #cdd3ea;
  --navy: #102c53;
  --cobalt: #495fb0;
  --aqua: #8292cb;
  --lavender: #e5e9f4;
  --lavender-strong: #cdd3ea;
  --coral: #f26b43;
  --shadow: 0 18px 44px rgba(16, 44, 83, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(229, 233, 244, 0.62), rgba(247, 248, 252, 0) 520px),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--cobalt);
  text-decoration-color: rgba(73, 95, 176, 0.34);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--navy);
  text-decoration-color: currentColor;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(242, 107, 67, 0.55);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 3.78rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(205, 211, 234, 0.9);
  background: rgba(247, 248, 252, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand:hover,
.brand:focus-visible {
  color: var(--navy);
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-text {
  max-width: 260px;
  overflow: hidden;
  line-height: 1.14;
  text-overflow: ellipsis;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: block;
  border-radius: var(--radius);
  color: var(--muted);
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  background: var(--lavender);
  color: var(--navy);
}

.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 4px;
}

.language-switch button {
  min-width: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 7px 8px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  position: relative;
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-line {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.nav-toggle-line:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle-line:nth-child(3) {
  transform: translateY(6px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero {
  min-height: min(690px, calc(100svh - 90px));
  background:
    linear-gradient(90deg, rgba(16, 44, 83, 0.97) 0%, rgba(16, 44, 83, 0.88) 50%, rgba(16, 44, 83, 0.48) 100%),
    url("assets/venice-aster.jpg") center / cover no-repeat;
}

.hero-overlay {
  display: flex;
  width: min(100% - 48px, var(--max-width));
  min-height: min(690px, calc(100svh - 90px));
  align-items: center;
  margin: 0 auto;
  padding: 84px 0 70px;
}

.hero-layout {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc7b8;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-note {
  max-width: 620px;
  margin-bottom: 28px;
  color: #ffc7b8;
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  background: var(--coral);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #db5633;
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  color: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.button-secondary-dark {
  border-color: var(--line);
  background: var(--navy);
  color: #fff;
}

.button-secondary-dark:hover,
.button-secondary-dark:focus-visible {
  background: var(--cobalt);
  color: #fff;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-card h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.1rem;
}

.hero-card dl,
.hero-card dd {
  margin: 0;
}

.hero-card div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 0;
}

.hero-card div:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-card div:last-child {
  padding-bottom: 0;
}

.hero-card dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card dd {
  margin-top: 4px;
  font-weight: 800;
  line-height: 1.35;
}

.summary-band,
.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.summary-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 44px;
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0;
  align-items: start;
}

.summary-inner h2 {
  margin-bottom: 0;
  font-size: 1.38rem;
}

.summary-inner p:last-child {
  margin: 0;
  color: #354762;
  font-size: 1.02rem;
}

.intro-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 22px 0;
}

.intro-inner div {
  border-left: 4px solid var(--coral);
  padding-left: 16px;
}

.intro-inner div:nth-child(2) {
  border-left-color: var(--cobalt);
}

.intro-inner div:nth-child(3) {
  border-left-color: var(--aqua);
}

.intro-inner span,
.intro-inner strong {
  display: block;
}

.intro-inner span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-inner strong {
  margin-top: 4px;
}

.section-shell {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 88px 0;
}

.compact-section {
  padding-bottom: 42px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1.64fr);
  gap: 64px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 108px;
}

.wide-heading {
  position: static;
  max-width: 780px;
  margin-bottom: 30px;
}

.section-body {
  color: #354762;
}

.section-intro {
  max-width: 680px;
  color: var(--muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.logo-card {
  display: flex;
  min-height: 164px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(16, 44, 83, 0.08);
}

.logo-card img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.logo-card span {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
}

.logo-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-cloud span,
.language-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  padding: 8px 10px;
  font-weight: 800;
}

.available-panel {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 44, 83, 0.07);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  border-top: 4px solid var(--cobalt);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 15px 16px;
  box-shadow: 0 8px 24px rgba(16, 44, 83, 0.07);
}

.bring-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bring-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(16, 44, 83, 0.07);
}

.bring-card:nth-child(5) {
  grid-column: 1 / -1;
}

.bring-icon {
  display: inline-grid;
  min-width: 46px;
  height: 32px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 6px;
  background: var(--lavender);
  color: var(--navy);
  padding: 0 9px;
  font-size: 0.76rem;
  font-weight: 800;
}

.bring-card p {
  margin-bottom: 0;
}

.timeline,
.education-list {
  display: grid;
  gap: 18px;
}

.timeline-item,
.education-card,
.skill-card,
.project-card,
.additional-projects,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 44, 83, 0.07);
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
}

.timeline-item-no-logo {
  grid-template-columns: 1fr;
}

.timeline-logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 8px;
}

.timeline-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.timeline-date,
.date-line,
.item-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.timeline-date {
  flex: 0 0 auto;
  color: var(--coral);
}

.timeline-content ul,
.additional-projects ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.timeline-content li + li,
.additional-projects li + li {
  margin-top: 8px;
}

.tool-line,
.tech-stack {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.education-card,
.skill-card,
.contact-panel {
  padding: 24px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.org-logo {
  flex: 0 0 auto;
  width: 76px;
  height: 58px;
  object-fit: contain;
}

.org-logo-wide {
  width: 128px;
}

.exchange-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
}

.exchange-logos img {
  width: 96px;
  height: 42px;
  object-fit: contain;
}

.course-line {
  margin-bottom: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.skill-card {
  border-top: 4px solid var(--cobalt);
}

.skill-card:nth-child(2n) {
  border-top-color: var(--coral);
}

.skill-card:nth-child(3n) {
  border-top-color: var(--aqua);
}

.skill-card:nth-child(4n) {
  border-top-color: var(--lavender-strong);
}

.skill-card p {
  margin-bottom: 0;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.project-filters button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  padding: 8px 11px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.project-filters button:hover,
.project-filters button:focus-visible,
.project-filters button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: flex;
  grid-column: span 3;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.project-card-featured {
  grid-column: span 3;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: var(--aqua);
  box-shadow: 0 18px 42px rgba(16, 44, 83, 0.13);
}

.project-card.is-hidden {
  display: none;
}

.project-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-card-featured > img {
  height: 260px;
}

.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.project-topline a {
  font-weight: 800;
}

.project-type {
  display: inline-flex;
  border: 1px solid var(--lavender-strong);
  border-radius: var(--radius);
  background: var(--lavender);
  color: var(--navy);
  padding: 5px 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.project-card p {
  color: #354762;
}

.project-proof {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.project-proof li {
  border-left: 3px solid var(--lavender-strong);
  padding-left: 12px;
  color: #354762;
  font-size: 0.94rem;
}

.project-card .tech-stack {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.demonstrates,
.mini-demonstrates {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.demonstrates {
  margin-top: 8px;
}

.additional-projects {
  margin-top: 24px;
  padding: 0;
}

.additional-projects summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 800;
}

.additional-projects summary::marker {
  color: var(--coral);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid var(--line);
  padding: 22px 24px 24px;
}

.additional-grid article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.additional-grid article:nth-child(-n + 2) {
  border-top: 0;
  padding-top: 0;
}

.additional-grid p {
  margin-bottom: 0;
}

.contact-panel p {
  max-width: 720px;
}

.contact-actions {
  margin: 22px 0;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  font-style: normal;
}

.contact-list a {
  min-height: 48px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--lavender);
  padding: 12px 14px;
  font-weight: 800;
}

.language-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.credit-line {
  margin-top: 6px !important;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 78px;
  }

  .nav {
    width: min(100% - 32px, var(--max-width));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 14px;
  }

  .hero-layout,
  .summary-inner,
  .section-grid,
  .intro-inner,
  .skills-grid,
  .bring-grid,
  .contact-list,
  .additional-grid {
    grid-template-columns: 1fr;
  }

  .bring-card:nth-child(5) {
    grid-column: auto;
  }

  .section-heading {
    position: static;
  }

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

  .project-card,
  .project-card-featured {
    grid-column: span 1;
  }

  .timeline-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px 18px;
  }

  .item-head {
    flex-direction: column;
    gap: 4px;
  }

  h1 {
    font-size: 3rem;
  }

  .additional-grid article,
  .additional-grid article:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

  .additional-grid article:first-child {
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 72px;
    gap: 8px;
  }

  .brand-text {
    max-width: 132px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-switch button {
    min-width: 31px;
    padding: 6px 5px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: min(650px, calc(100svh - 86px));
    background-position: 58% center;
  }

  .hero-overlay,
  .section-shell,
  .summary-inner,
  .intro-inner {
    width: min(100% - 32px, var(--max-width));
  }

  .hero-overlay {
    min-height: min(650px, calc(100svh - 86px));
    padding: 58px 0 48px;
  }

  .section-shell {
    padding: 58px 0;
  }

  .compact-section {
    padding-bottom: 32px;
  }

  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 1.56rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .logo-grid,
  .quick-list,
  .bring-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .timeline-item-no-logo {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .education-card,
  .skill-card,
  .bring-card,
  .project-card-body,
  .contact-panel,
  .available-panel {
    padding: 20px;
  }

  .project-card > img,
  .project-card-featured > img {
    height: 190px;
  }

  .project-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .additional-projects summary {
    padding: 18px 20px;
  }

  .additional-grid {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .brand-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
