:root {
  --ink: #0b0d10;
  --panel: #11151a;
  --line: rgba(255,255,255,.16);
  --muted: #9ba1a8;
  --paper: #f3f4f4;
  --orange: #f47721;
  --blue: #0c4d78;
  --yellow: #ffb000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #eef0f2;
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--orange); }

.cursor-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: .16;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(244,119,33,.34), rgba(12,77,120,.08) 34%, transparent 68%);
  transition: opacity .3s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(22px, 4vw, 70px);
  background: linear-gradient(to bottom, rgba(7,9,12,.92), rgba(7,9,12,.25), transparent);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(7,9,12,.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.brand-mini { font-weight: 900; letter-spacing: -.08em; font-size: 1.25rem; }
.brand-mini span { color: var(--orange); padding-left: .15rem; }
nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 40px); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
nav a { color: #c3c7cb; transition: color .2s ease; }
nav a:hover { color: #fff; }
.nav-cta { border: 1px solid #fff; padding: 12px 16px; }
.nav-cta:hover { color: var(--ink); background: #fff; }
.menu-toggle { display: none; color: #fff; background: transparent; border: 1px solid var(--line); padding: 9px 12px; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 5vw;
  padding: 120px clamp(24px, 7vw, 118px) 10vh;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(100deg, rgba(6,8,11,.97) 0%, rgba(6,8,11,.88) 50%, rgba(6,8,11,.55) 100%), url("assets/techbolt-site-hero.webp") center/cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter 1.4s ease;
}
.hero:hover::before { filter: grayscale(.62) contrast(1.06); }
.hero-grid { position: absolute; inset: 0; z-index: -1; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 7vw 7vw; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-logo-wrap { align-self: start; padding-top: 10vh; }
.main-logo { width: min(580px, 68vw); filter: grayscale(1) brightness(2.7); opacity: .88; transition: filter .7s ease, transform .7s ease; transform-origin: left center; }
.main-logo:hover { filter: none; transform: scale(1.015); }
.eyebrow, .kicker, .entity, .division-label { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { color: #b2b6ba; font-size: .72rem; margin: 22px 0; }
.hero-copy { max-width: 700px; }
.hero h1 { font-size: clamp(3.3rem, 6.8vw, 8.5rem); line-height: .84; letter-spacing: -.07em; margin: 0; font-weight: 850; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.6); }
.hero-copy > p { max-width: 540px; color: #c1c6ca; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.6; margin: 34px 0 0; }
.scroll-cue { position: absolute; left: clamp(24px, 7vw, 118px); bottom: 3.5vh; display: flex; align-items: center; gap: 18px; color: #b9bdc1; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; }
.scroll-cue i { font-style: normal; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; animation: bounce 2s infinite; }
@keyframes bounce { 50% { transform: translateY(6px); } }

.reveal { opacity: 0; transform: translateY(28px); animation: reveal .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-copy.reveal { animation-delay: .25s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

.section { position: relative; z-index: 1; padding: clamp(88px, 11vw, 170px) clamp(24px, 7vw, 118px); }
.section-heading { display: grid; grid-template-columns: .55fr 1.2fr .9fr; gap: 4vw; align-items: start; margin-bottom: 70px; }
.kicker { color: var(--orange); font-size: .72rem; font-weight: 800; margin: 0 0 20px; }
.section-heading h2, .manifesto h2, .division-detail h2, .markets h2, .contact h2 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 6.4rem); line-height: .95; letter-spacing: -.055em; }
.section-heading h2 span, .contact h2 span { color: #747a80; }
.section-intro { color: var(--muted); line-height: 1.75; font-size: 1.05rem; max-width: 520px; margin: 4px 0 0; }

.company-switcher { background: var(--paper); color: var(--ink); }
.company-list { border-top: 1px solid #bfc2c5; }
.company-card {
  --accent: var(--orange);
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  gap: 20px;
  align-items: center;
  min-height: 185px;
  padding: 30px 18px;
  border-bottom: 1px solid #bfc2c5;
  filter: grayscale(1);
  transition: color .35s ease, background .35s ease, filter .5s ease, padding .35s ease;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}
.company-card::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 88%, #111) 0%, var(--accent) 58%, color-mix(in srgb, var(--accent) 55%, #fff) 100%); transform: translateX(-4%); transition: opacity .35s ease, transform .55s ease; }
.company-card:hover, .company-card:focus-visible, .company-card.active { color: #fff; filter: none; padding-left: 34px; }
.company-card:hover::before, .company-card:focus-visible::before, .company-card.active::before { opacity: 1; transform: none; }
.company-card.building { --accent: #d85b12; }
.company-card.technical { --accent: #075884; }
.company-card.technologies { --accent: #5b6670; }
.company-card.techbolt { --accent: #f0a000; color: #1b1d20; }
.company-card.techbolt:hover, .company-card.techbolt:focus-visible, .company-card.techbolt.active { color: #111; }
.number { font: 700 .76rem ui-monospace, monospace; }
.entity { margin: 0 0 10px; font-size: .65rem; opacity: .7; }
.card-main h3 { font-size: clamp(1.55rem, 2.9vw, 3.6rem); line-height: .94; letter-spacing: -.04em; margin: 0; }
.card-main > p:last-child { margin: 13px 0 0; color: currentColor; opacity: .68; font-size: .9rem; }
.card-arrow { justify-self: end; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1.4rem; transition: transform .35s ease, background .35s ease; }
.company-card:hover .card-arrow, .company-card:focus-visible .card-arrow, .company-card.active .card-arrow { transform: rotate(45deg); background: rgba(255,255,255,.18); }
.interaction-note { margin: 22px 0 0; font: .68rem ui-monospace, monospace; color: #73787c; letter-spacing: .08em; text-transform: uppercase; }

.manifesto { background: #0b0d10; }
.manifesto-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; }
.manifesto-grid > div > p { color: #aeb3b8; font-size: 1.15rem; line-height: 1.75; margin: 8px 0 54px; }
.principles { display: grid; border-top: 1px solid var(--line); }
.principles span { display: flex; gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--line); color: #737a81; font: .72rem ui-monospace, monospace; }
.principles b { color: #fff; font: 600 1rem Inter, sans-serif; }

.division-detail { background: var(--paper); color: var(--ink); border-top: 1px solid #c7c9cb; }
.division-detail.dark-panel { background: #15191e; color: #f2f3f4; border-color: var(--line); }
.division-label { display: flex; align-items: center; gap: 14px; font-size: .72rem; margin-bottom: 70px; color: #686e74; }
.division-label span { color: var(--orange); }
.detail-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; }
.division-detail h2 { font-size: clamp(2.8rem, 4.7vw, 5.5rem); }
.detail-title { position: sticky; top: 110px; align-self: start; }
.company-place { margin: 28px 0 0; color: #7b8288; font: .68rem ui-monospace, monospace; letter-spacing: .13em; }
.detail-content { min-width: 0; }
.company-overview { margin: 0 0 48px; }
.company-overview > p { margin: 0 0 30px; color: #565e65; font-size: 1.1rem; line-height: 1.75; max-width: 780px; }
.dark-panel .company-overview > p { color: #b3b8bd; }
.profile-facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; }
.profile-facts span { padding: 20px 18px 20px 0; font-weight: 700; }
.profile-facts span + span { padding-left: 22px; border-left: 1px solid currentColor; }
.profile-facts small { display: block; color: var(--orange); font: .62rem ui-monospace, monospace; letter-spacing: .12em; margin-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid currentColor; }
.service-grid article { padding: 28px 28px 42px 0; border-bottom: 1px solid currentColor; opacity: .8; }
.service-grid article:nth-child(odd) { border-right: 1px solid currentColor; }
.service-grid article:nth-child(even) { padding-left: 28px; }
.service-grid article > span { color: var(--orange); font: .66rem ui-monospace, monospace; }
.service-grid h3 { margin: 14px 0 10px; font-size: 1.25rem; }
.service-grid p { margin: 0; line-height: 1.6; font-size: .92rem; opacity: .72; }
.technology-copy > p { max-width: 700px; font-size: 1.2rem; line-height: 1.72; margin: 4px 0 42px; color: #555d64; }
.technology-copy ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #bbbfc2; }
.technology-copy li { padding: 20px 0; border-bottom: 1px solid #bbbfc2; font-weight: 700; }
.technology-copy li span { color: var(--orange); font: .65rem ui-monospace, monospace; margin-right: 14px; }
.detail-footer { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding-top: 34px; }
.detail-footer p { margin: 0; color: #687077; font-size: .86rem; line-height: 1.6; }
.dark-panel .detail-footer p { color: #92999f; }
.detail-footer a { color: var(--orange); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }

.techbolt-feature { min-height: 820px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; overflow: hidden; background: #0a0c0f; position: relative; }
.bolt-visual { min-height: 820px; position: relative; display: grid; place-items: center; background: radial-gradient(circle at 48% 52%, #303841, #101419 52%, #080a0d 72%); overflow: hidden; }
.bolt-visual img { width: min(72%, 640px); position: relative; z-index: 2; filter: grayscale(1) contrast(1.06); transition: filter .7s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.techbolt-feature:hover .bolt-visual img { filter: none; transform: scale(1.035) rotate(-1deg); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.orbit-one { width: 66%; aspect-ratio: 1; animation: orbit 18s linear infinite; }
.orbit-two { width: 42%; aspect-ratio: 1; border-style: dashed; animation: orbit 12s linear infinite reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }
.bolt-copy { padding: clamp(70px, 8vw, 130px); }
.bolt-copy h2 { font-size: clamp(4rem, 7vw, 8rem); letter-spacing: -.08em; margin: 0 0 24px; font-style: italic; }
.bolt-copy h2 span { color: var(--yellow); }
.bolt-lead { font-size: 1.2rem; line-height: 1.65; color: #bdc2c6; max-width: 620px; }
.spec-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 42px 0; }
.spec-row div { padding: 24px 18px; background: #11151a; }
.spec-row strong { display: block; color: var(--yellow); font-size: 2.15rem; letter-spacing: -.05em; }
.spec-row span { display: block; color: #8e949a; font: .61rem/1.45 ui-monospace, monospace; margin-top: 7px; }
.bolt-points { border-top: 1px solid var(--line); }
.bolt-points p { margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line); color: #a7adb2; line-height: 1.55; }
.bolt-points b { color: #fff; }
.techbolt-details { display: grid; grid-template-columns: 1fr 1fr; margin-top: 44px; border-top: 1px solid var(--line); }
.techbolt-details article { padding: 24px 24px 28px 0; border-bottom: 1px solid var(--line); }
.techbolt-details article:nth-child(odd) { border-right: 1px solid var(--line); }
.techbolt-details article:nth-child(even) { padding-left: 24px; }
.techbolt-details small { color: var(--yellow); font: .62rem ui-monospace, monospace; letter-spacing: .12em; }
.techbolt-details p { color: #969da3; line-height: 1.6; font-size: .86rem; margin: 11px 0 0; }
.bolt-actions { display: flex; flex-wrap: wrap; gap: 26px; }
.text-link.secondary { border-color: #59616a; color: #aeb4b9; }
.text-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 38px; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; border-bottom: 1px solid var(--yellow); padding-bottom: 10px; }
.text-link span { color: var(--yellow); }

.markets { background: #e9ebec; color: var(--ink); }
.section-heading.compact { display: block; margin-bottom: 60px; }
.section-heading.compact h2 { max-width: 900px; }
.market-strip { display: flex; flex-wrap: wrap; border-top: 1px solid #aeb2b5; border-bottom: 1px solid #aeb2b5; }
.market-strip span { flex: 1 1 220px; padding: 28px 22px; border-right: 1px solid #aeb2b5; font-weight: 700; }
.market-statement { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-top: 50px; }
.market-statement p { max-width: 780px; color: #5d6469; line-height: 1.75; font-size: 1.05rem; }
.market-statement a { font-weight: 800; color: var(--orange); }

.media-section { background: #0b0d10; }
.media-heading { grid-template-columns: .55fr 1.15fr .9fr; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.video-card { --video-accent: #ca5a18; position: relative; isolation: isolate; min-height: 520px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; filter: grayscale(1); transition: filter .5s ease, transform .4s ease; }
.video-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(155deg, #292f35, #111419 52%, #090b0e); transition: background .5s ease, transform .7s ease; }
.video-card::after { content: ""; position: absolute; inset: auto -30% -40% auto; z-index: -1; width: 90%; aspect-ratio: 1; border-radius: 50%; background: var(--video-accent); opacity: .08; filter: blur(8px); transition: opacity .45s ease, transform .6s ease; }
.video-card:hover, .video-card:focus-visible { filter: none; transform: translateY(-7px); outline: none; }
.video-card:hover::after, .video-card:focus-visible::after { opacity: .56; transform: scale(1.25); }
.video-card.video-service { --video-accent: #0c6b9f; }
.video-card.video-bolt { --video-accent: #f0a000; }
.video-top { display: flex; justify-content: space-between; align-items: center; color: #949ba1; font: .66rem ui-monospace, monospace; letter-spacing: .12em; }
.video-top i { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #798087; border-radius: 50%; font-style: normal; color: #fff; }
.video-card h3 { margin: 0; font-size: clamp(2.2rem, 3.8vw, 4.5rem); line-height: .9; letter-spacing: -.055em; }
.video-card p { color: #969da3; line-height: 1.6; }
.video-card b { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.media-footer { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-top: 34px; }
.media-footer p { color: #838a90; max-width: 760px; line-height: 1.65; }
.media-footer a { color: var(--orange); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.testimonials { background: #f1f2f2; color: var(--ink); }
.testimonial-head { display: grid; grid-template-columns: .55fr 1.9fr; gap: 4vw; margin-bottom: 70px; }
.testimonial-head h2 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 6.4rem); line-height: .95; letter-spacing: -.055em; }
.testimonial-stage { display: grid; grid-template-columns: .35fr 1.4fr auto; gap: 4vw; align-items: start; padding: 58px 0; border-top: 1px solid #aeb3b7; border-bottom: 1px solid #aeb3b7; }
.quote-mark { color: var(--orange); font: 800 clamp(6rem, 12vw, 13rem)/.7 Georgia, serif; }
.testimonial-copy > p { margin: 0 0 36px; font-size: clamp(1.6rem, 3vw, 3.3rem); line-height: 1.15; letter-spacing: -.035em; max-width: 920px; }
.testimonial-copy span { color: #7a8187; font: .65rem ui-monospace, monospace; letter-spacing: .12em; }
.testimonial-index { display: flex; align-items: baseline; gap: 5px; color: #8a9095; }
.testimonial-index b { color: var(--ink); font-size: 1.5rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid #b5b9bc; }
.trust-grid article { padding: 26px 28px 30px 0; border-bottom: 1px solid #b5b9bc; }
.trust-grid article + article { padding-left: 28px; border-left: 1px solid #b5b9bc; }
.trust-grid span { color: var(--orange); font: .65rem ui-monospace, monospace; }
.trust-grid h3 { margin: 13px 0 9px; font-size: 1.2rem; }
.trust-grid p { margin: 0; color: #687077; line-height: 1.6; font-size: .9rem; }

.contact { background: #07090b; padding-bottom: 44px; }
.contact h2 { font-size: clamp(3rem, 6vw, 7rem); max-width: 1200px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 80px; border-top: 1px solid var(--line); }
.contact-grid a { padding: 28px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.15rem, 2vw, 2rem); transition: color .2s ease, padding .25s ease; }
.contact-grid a:nth-child(odd) { border-right: 1px solid var(--line); }
.contact-grid a:nth-child(even) { padding-left: 34px; }
.contact-grid a:hover { color: var(--orange); padding-left: 18px; }
.contact-grid a:nth-child(even):hover { padding-left: 48px; }
.contact-grid small { display: block; font: .62rem ui-monospace, monospace; color: #6f767d; letter-spacing: .15em; margin-bottom: 10px; }
footer { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 40px; margin-top: 100px; color: #6f757b; font-size: .73rem; text-transform: uppercase; letter-spacing: .08em; }
footer img { width: 230px; filter: grayscale(1) brightness(2); opacity: .72; }

@media (max-width: 960px) {
  .site-header { height: 66px; }
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; inset: 66px 18px auto; flex-direction: column; align-items: stretch; gap: 0; background: rgba(10,12,15,.97); border: 1px solid var(--line); padding: 10px; }
  nav.open { display: flex; }
  nav a { padding: 15px; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; align-content: center; align-items: center; padding-top: 100px; }
  .hero-logo-wrap { padding-top: 0; align-self: auto; }
  .main-logo { width: min(650px, 88vw); }
  .hero h1 { font-size: clamp(3.2rem, 12vw, 7rem); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .kicker { margin-bottom: 0; }
  .manifesto-grid, .detail-layout, .techbolt-feature { grid-template-columns: 1fr; }
  .detail-title { position: static; }
  .bolt-visual { min-height: 600px; }
  .techbolt-feature { min-height: 0; }
  .market-statement { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { min-height: 380px; }
  .media-footer { grid-template-columns: 1fr; }
  .testimonial-head { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article + article { padding-left: 0; border-left: 0; }
}

@media (max-width: 620px) {
  .cursor-glow { display: none; }
  .hero { min-height: 100svh; padding-bottom: 90px; }
  .hero::before { background-position: 58% center; }
  .hero-copy > p { font-size: .98rem; }
  .scroll-cue { bottom: 22px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .company-card { grid-template-columns: 34px 1fr 46px; min-height: 158px; padding: 22px 4px; gap: 10px; }
  .company-card:hover, .company-card:focus-visible, .company-card.active { padding-left: 10px; }
  .card-arrow { width: 42px; height: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article:nth-child(odd) { border-right: none; }
  .service-grid article:nth-child(even) { padding-left: 0; }
  .technology-copy ul { grid-template-columns: 1fr; }
  .profile-facts, .techbolt-details { grid-template-columns: 1fr; }
  .profile-facts span + span, .techbolt-details article:nth-child(odd) { border-left: 0; border-right: 0; }
  .profile-facts span + span, .techbolt-details article:nth-child(even) { padding-left: 0; }
  .detail-footer { grid-template-columns: 1fr; }
  .bolt-visual { min-height: 470px; }
  .bolt-visual img { width: 82%; }
  .bolt-copy { padding: 70px 24px 90px; }
  .spec-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-stage { grid-template-columns: 1fr; gap: 20px; }
  .quote-mark { height: 70px; }
  .testimonial-index { justify-self: end; }
  .contact-grid a:nth-child(odd) { border-right: 0; }
  .contact-grid a:nth-child(even) { padding-left: 0; }
  .contact-grid a:nth-child(even):hover { padding-left: 18px; }
  footer { grid-template-columns: 1fr; margin-top: 70px; gap: 12px; }
}

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