:root {
  --ink: #070b11;
  --ink-soft: #0a111c;
  --panel: #0d1727;
  --panel-bright: #111f3b;
  --text: #f2f4fa;
  --muted: #b3bece;
  --subtle: #7e8da3;
  --lime: #b7f22f;
  --lime-strong: #c9ff3d;
  --cobalt: #4d78ff;
  --cobalt-soft: #7293ff;
  --line: rgba(103, 137, 220, .3);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(41, 77, 168, .38), transparent 20rem),
    radial-gradient(circle at 91% 18%, rgba(47, 84, 168, .23), transparent 22rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .28;
}

a { color: inherit; }

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

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

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

h3 { line-height: 1.2; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: -50px;
  left: 16px;
  padding: 10px 14px;
  color: #02050a;
  background: var(--lime);
  border-radius: 4px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7, 11, 17, .73);
  backdrop-filter: blur(16px);
}

.site-header--scrolled { background: rgba(7, 11, 17, .92); }

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 38px);
}

.primary-nav a {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--lime); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--text);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .76rem;
  font-weight: 750;
  cursor: pointer;
}

.nav-toggle-lines, .nav-toggle-lines::before {
  display: block;
  width: 15px;
  height: 2px;
  content: "";
  background: var(--lime);
}

.nav-toggle-lines { position: relative; }

.nav-toggle-lines::before { position: absolute; top: 5px; left: 0; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  color: #152000;
  background: linear-gradient(135deg, var(--lime-strong), #9de715);
  border: 1px solid rgba(221, 255, 124, .55);
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(167, 239, 30, .14);
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.button:hover, .button:focus-visible { filter: brightness(1.1); transform: translateY(-2px); }

.button--small { min-height: 38px; padding: 8px 13px; font-size: .77rem; }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(105px, 14vw, 165px) 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--lime);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.eyebrow::before, .eyebrow::after {
  width: 30px;
  height: 2px;
  content: "";
  background: var(--lime);
}

.eyebrow::after { display: none; }

.hero h1 {
  max-width: 1000px;
  margin-bottom: 25px;
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
}

.hero h1 span { color: var(--lime); }

.hero-copy {
  max-width: 570px;
  margin-bottom: 33px;
  color: #d1d7e3;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }

.text-link {
  color: var(--lime);
  font-size: .87rem;
  font-weight: 760;
  text-underline-offset: 4px;
}

.text-link:hover, .text-link:focus-visible { color: var(--lime-strong); }

.hero-rings { position: absolute; z-index: -1; inset: 0; overflow: hidden; }

.hero-ring {
  position: absolute;
  display: block;
  border: 1.5px solid var(--cobalt);
  border-radius: 50%;
  opacity: .87;
}

.hero-ring--one { width: min(72vw, 1080px); height: min(72vw, 1080px); top: -580px; right: -170px; }

.hero-ring--two { width: min(52vw, 720px); height: min(52vw, 720px); top: -190px; right: 9%; border-color: var(--lime); }

.hero-ring--three { width: min(42vw, 570px); height: min(42vw, 570px); bottom: -340px; right: 9%; border-color: var(--cobalt); }

.hero-glow { position: absolute; display: block; width: 300px; height: 300px; border-radius: 50%; filter: blur(5px); opacity: .85; }

.hero-glow--one { top: 13%; left: -80px; background: radial-gradient(circle, rgba(80, 119, 255, .67), rgba(53, 81, 173, .17) 33%, transparent 68%); }

.hero-glow--two { right: 13%; bottom: -130px; background: radial-gradient(circle, rgba(95, 127, 255, .48), rgba(53, 81, 173, .12) 35%, transparent 67%); }

.credibility {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -50px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(105deg, rgba(11, 20, 33, .98), rgba(11, 21, 37, .86));
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.credibility-item {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  border-right: 1px solid rgba(102, 134, 203, .23);
}

.credibility-item:last-child { border-right: 0; }

.credibility-item strong, .credibility-item span { display: block; }

.credibility-item strong { font-size: .91rem; letter-spacing: -.01em; }

.credibility-item div > span { margin-top: 3px; color: var(--muted); font-size: .7rem; line-height: 1.35; }

.line-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--lime);
  border: 2px solid currentColor;
}

.line-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon--seal { border-radius: 50%; transform: rotate(10deg); }
.line-icon--seal::before { position: absolute; inset: -5px; content: ""; border: 1px solid currentColor; border-radius: 50%; opacity: .7; }
.line-icon--trophy { color: var(--lime); border-width: 0 0 2px; border-radius: 0 0 50% 50%; }
.line-icon--trophy::before { position: absolute; top: -5px; width: 17px; height: 17px; content: ""; border: 2px solid currentColor; border-radius: 0 0 50% 50%; }
.line-icon--star { border: 0; transform: rotate(45deg); }
.line-icon--star::after { width: 18px; height: 18px; border-radius: 0; }
.line-icon--people { border-radius: 50%; }
.line-icon--people::before { position: absolute; right: -8px; width: 12px; height: 12px; content: ""; border: 2px solid currentColor; border-radius: 50%; }
.line-icon--building { color: var(--cobalt-soft); border-radius: 2px; }
.credibility .line-icon--building { color: var(--lime); }
.line-icon--brain { color: var(--cobalt-soft); border-radius: 50% 42% 46% 35%; }
.line-icon--network { color: var(--cobalt-soft); border-radius: 50%; }

.section { padding-top: clamp(72px, 9vw, 125px); }

.section-heading { margin-bottom: 35px; text-align: center; }

.section-heading .eyebrow { justify-content: center; margin-bottom: 12px; }

.section-heading .eyebrow::after { display: block; }

.section-heading h2 { margin-bottom: 0; font-size: clamp(2.1rem, 3.5vw, 3.3rem); }

.section-intro {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: .9rem;
}

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.service-card {
  min-height: 370px;
  padding: 26px 25px 26px;
  background: linear-gradient(145deg, rgba(17, 30, 49, .96), rgba(11, 20, 34, .96));
  border: 1px solid rgba(95, 130, 203, .38);
  border-radius: 7px;
}

.service-number {
  margin-bottom: 17px;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.service-card h3 { margin-bottom: 13px; font-size: 1.16rem; }

.service-card > p:not(.service-number) { min-height: 73px; margin-bottom: 18px; color: var(--muted); font-size: .82rem; }

ul { margin: 0; padding: 0; list-style: none; }

.service-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 22px;
  color: #d7deea;
  font-size: .78rem;
  line-height: 1.45;
}

.service-card li::before {
  position: absolute;
  top: .34em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "\2713";
  display: grid;
  place-items: center;
  color: #142000;
  background: var(--lime);
  border-radius: 50%;
  font-size: .58rem;
  font-weight: 900;
}

.core-focus {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
  text-align: center;
}

.core-focus strong { color: var(--text); }
.core-focus span { padding: 0 7px; color: var(--lime); }

.partner-section { padding-bottom: clamp(54px, 8vw, 100px); border-bottom: 1px solid var(--cobalt); }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.partner-grid article { min-height: 160px; padding: 7px 30px; border-right: 1px solid rgba(87, 122, 194, .25); }

.partner-grid article:last-child { border-right: 0; }

.partner-grid h3 { margin: 0 0 8px; font-size: .99rem; }

.partner-grid p { margin-bottom: 0; color: var(--muted); font-size: .79rem; line-height: 1.45; }

.partner-icon {
  position: relative;
  display: block;
  width: 41px;
  height: 41px;
  margin-bottom: 13px;
  color: var(--cobalt);
  border: 2px solid currentColor;
}

.partner-icon--public { width: 47px; height: 30px; margin-top: 8px; border-width: 0 2px 2px; }
.partner-icon--public::before { position: absolute; top: -15px; left: 5px; width: 31px; height: 31px; content: ""; border: 2px solid currentColor; border-right: 0; border-bottom: 0; transform: rotate(45deg); }
.partner-icon--public::after { position: absolute; inset: 7px 5px 0; content: ""; background: repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 8px); }
.partner-icon--mission { border-radius: 40% 40% 50% 50%; }
.partner-icon--mission::before, .partner-icon--mission::after { position: absolute; width: 16px; height: 16px; content: ""; border: 2px solid currentColor; border-radius: 50%; }
.partner-icon--mission::before { left: -10px; top: 13px; }.partner-icon--mission::after { right: -10px; top: 13px; }
.partner-icon--tech { border-radius: 7px; }
.partner-icon--tech::before, .partner-icon--tech::after { position: absolute; top: 9px; content: "<"; color: currentColor; font-weight: 800; }.partner-icon--tech::before { left: 7px; }.partner-icon--tech::after { right: 7px; content: ">"; }

.impact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px 42px;
  align-items: start;
  padding-bottom: clamp(60px, 9vw, 105px);
}

.impact-heading h2 { max-width: 600px; margin-bottom: 0; font-size: clamp(2.35rem, 4vw, 4rem); }

.impact-feature {
  padding: 28px;
  background: linear-gradient(160deg, rgba(32, 57, 115, .42), rgba(13, 24, 41, .9));
  border: 1px solid var(--line);
  border-radius: 7px;
}

.impact-feature strong { display: block; color: var(--lime); font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.85rem); font-weight: 400; line-height: 1.1; }
.impact-feature strong span { color: var(--cobalt-soft); }
.impact-feature p { margin: 17px 0 0; color: #d6deeb; font-size: .88rem; line-height: 1.55; }
.impact-feature small { display: block; margin-top: 13px; color: var(--subtle); font-size: .69rem; }

.impact-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--cobalt);
  border-bottom: 1px solid rgba(84, 120, 190, .38);
}

.impact-grid article { padding: 28px 28px 30px; border-right: 1px solid rgba(87, 122, 194, .25); }
.impact-grid article:last-child { border-right: 0; }
.impact-grid .eyebrow { margin-bottom: 13px; font-size: .61rem; }
.impact-grid .eyebrow::before { display: none; }
.impact-grid h3 { margin-bottom: 11px; font-size: 1.05rem; }
.impact-grid article > p:last-child { margin-bottom: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }

.testimonial-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(120deg, rgba(17, 32, 59, .94), rgba(10, 20, 36, .96));
  border: 1px solid var(--cobalt);
  border-radius: 7px;
}

.quote-feature { padding-right: 30px; border-right: 1px solid rgba(103, 138, 215, .25); }

.quote-mark { display: block; height: 38px; color: var(--lime); font-family: var(--serif); font-size: 5rem; line-height: .65; }

.quote-feature blockquote {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.25vw, 2.05rem);
  font-style: italic;
  line-height: 1.35;
}

.quote-feature p, figcaption { color: var(--lime); font-size: .77rem; }
.quote-stack figcaption a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.quote-stack { display: grid; align-content: center; gap: 13px; }

.quote-stack figure, .feedback-list figure {
  position: relative;
  margin: 0;
  padding: 19px 21px 17px 46px;
  background: rgba(29, 49, 88, .34);
  border-radius: 7px;
}

.quote-stack figure::before {
  position: absolute;
  top: 12px;
  left: 12px;
  content: "\201C";
  color: var(--cobalt-soft);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.quote-stack blockquote, .feedback-list blockquote { margin: 0 0 9px; color: #f0f2f7; font-size: .91rem; line-height: 1.48; }

.about-section {
  display: grid;
  grid-template-columns: .85fr 1.4fr .9fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.portrait-wrap { overflow: hidden; border: 1px solid rgba(89, 125, 208, .35); border-radius: 7px; background: #172130; }

.portrait-wrap img { width: 100%; aspect-ratio: .77; object-fit: cover; object-position: center top; }

.about-copy h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 3.5vw, 3.6rem); }

.about-copy > p { margin-bottom: 12px; color: var(--muted); font-size: .83rem; }

.about-copy .text-link { display: inline-block; margin-top: 4px; }

.about-highlights { display: grid; gap: 22px; padding-left: 28px; border-left: 1px solid rgba(102, 134, 203, .26); }

.about-highlights > div { display: flex; align-items: flex-start; gap: 14px; }

.about-highlights p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.4; }

.about-highlights strong { display: block; margin-bottom: 3px; color: var(--text); font-size: .86rem; }

.details-section { margin-top: clamp(58px, 9vw, 110px); }

details {
  padding: 0 27px 25px;
  background: rgba(12, 22, 37, .68);
  border: 1px solid rgba(84, 120, 190, .37);
  border-radius: 7px;
}

summary {
  padding: 23px 0;
  color: var(--text);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

summary::marker { color: var(--lime); }

.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-top: 12px; border-top: 1px solid rgba(102, 134, 203, .23); }

.details-grid h3 { margin: 0 0 13px; color: var(--lime); font-size: .95rem; }

.details-grid p { color: var(--muted); font-size: .82rem; }

.details-grid strong { color: #e6e9f1; }

.feedback-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }

.feedback-list figure:last-child { grid-column: 1 / -1; }

.feedback-list figure { padding: 17px; border: 1px solid rgba(102, 134, 203, .18); }

.feedback-list blockquote { font-size: .81rem; }

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 35px;
  align-items: center;
  margin-top: clamp(75px, 10vw, 128px);
  margin-bottom: 36px;
  padding: clamp(31px, 5vw, 48px);
  overflow: hidden;
  background: linear-gradient(110deg, #122142, #0e1930 70%);
  border: 1px solid var(--cobalt);
  border-radius: 7px;
}

.contact-panel > *:not(.contact-rings) { position: relative; z-index: 1; }

.contact-panel h2 { margin-bottom: 13px; font-size: clamp(2.2rem, 3.6vw, 3.7rem); }

.contact-panel p:not(.eyebrow) { max-width: 580px; margin-bottom: 0; color: var(--muted); font-size: .88rem; }

.contact-actions { display: grid; justify-items: stretch; gap: 18px; }

.email-link, .phone-link { color: var(--lime); font-size: .81rem; font-weight: 700; text-align: center; }

.phone-link { color: var(--muted); }

.phone-link:hover, .phone-link:focus-visible { color: var(--lime); }

.contact-rings { position: absolute; top: 50%; right: 3%; width: 250px; height: 250px; transform: translateY(-50%); }

.contact-rings span { position: absolute; inset: 0; border: 1px solid var(--cobalt); border-radius: 50%; }

.contact-rings span:last-child { inset: 45px; border-color: var(--lime); }

.site-footer { padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.07); }

.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.footer-inner p, .footer-inner a { margin: 0; color: var(--subtle); font-size: .7rem; }

.footer-inner a { color: var(--muted); }

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

:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

@media (max-width: 950px) {
  .header-inner { position: relative; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    padding: 9px 24px 16px;
    background: rgba(7, 11, 17, .97);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; }
  .primary-nav a { padding: 9px 0; }
  .credibility { grid-template-columns: 1fr 1fr; }
  .credibility-item:nth-child(2) { border-right: 0; }
  .credibility-item:nth-child(-n+2) { border-bottom: 1px solid rgba(102, 134, 203, .23); }
  .service-grid, .partner-grid, .impact-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card > p:not(.service-number) { min-height: auto; }
  .partner-grid { gap: 22px; }
  .partner-grid article { min-height: 0; padding: 0 0 22px; border-right: 0; border-bottom: 1px solid rgba(87, 122, 194, .25); }
  .partner-grid article:last-child { padding-bottom: 0; border-bottom: 0; }
  .impact-section, .testimonial-panel, .about-section, .contact-panel { grid-template-columns: 1fr; }
  .impact-grid { grid-column: auto; }
  .impact-grid article { border-right: 0; border-bottom: 1px solid rgba(87, 122, 194, .25); }
  .impact-grid article:last-child { border-bottom: 0; }
  .quote-feature { padding: 0 0 25px; border-right: 0; border-bottom: 1px solid rgba(103, 138, 215, .25); }
  .about-section { max-width: 650px; }
  .portrait-wrap { max-width: 360px; }
  .about-highlights { padding-left: 0; border-left: 0; border-top: 1px solid rgba(102, 134, 203, .26); padding-top: 25px; }
  .contact-rings { right: -70px; opacity: .65; }
}

@media (max-width: 650px) {
  .shell { width: min(100% - 32px, 1180px); }
  .header-inner { min-height: 64px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: .79rem; }
  .site-header .button--small { display: none; }
  .hero { min-height: 590px; }
  .hero-content { padding-top: 92px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-ring--one { top: -240px; right: -250px; width: 620px; height: 620px; }
  .hero-ring--two { top: -30px; right: -120px; width: 410px; height: 410px; }
  .hero-ring--three { bottom: -100px; right: -130px; width: 310px; height: 310px; }
  .credibility { grid-template-columns: 1fr; margin-top: -28px; }
  .credibility-item, .credibility-item:nth-child(2) { min-height: 79px; border-right: 0; border-bottom: 1px solid rgba(102, 134, 203, .23); }
  .credibility-item:last-child { border-bottom: 0; }
  .section { padding-top: 68px; }
  .service-grid { gap: 13px; }
  .service-card { padding: 23px 21px; }
  .impact-section { gap: 28px; }
  .impact-feature { padding: 22px 20px; }
  .impact-grid article { padding: 23px 3px; }
  .testimonial-panel { gap: 23px; padding: 24px 20px; }
  .quote-feature blockquote { font-size: 1.27rem; }
  .details-section { margin-top: 67px; }
  details { padding: 0 18px 18px; }
  .details-grid, .feedback-list { grid-template-columns: 1fr; gap: 8px; }
  .feedback-list figure:last-child { grid-column: auto; }
  .details-grid { gap: 18px; }
  .contact-panel { margin-top: 78px; margin-bottom: 22px; }
  .contact-actions { justify-items: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

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