:root {
  --bg: #070807;
  --bg-soft: #0c0e0c;
  --panel: #111411;
  --ink: #f3f5ef;
  --muted: #9a9f95;
  --line: rgba(243, 245, 239, .14);
  --accent: #c8ff39;
  --accent-soft: rgba(200, 255, 57, .16);
  --pad: clamp(22px, 5vw, 80px);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #0a0b0a; background: var(--accent); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #000;
  background: var(--accent);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.section-shell { padding-right: var(--pad); padding-left: var(--pad); }

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  right: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(8, 10, 8, .68);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, background .35s ease;
}
.site-header.is-hidden { transform: translateY(-120%); }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; color: var(--ink); text-decoration: none; }
.brand > span:last-child { font: 700 11px/1.05 Space Grotesk, sans-serif; letter-spacing: .07em; }
.brand-mark { position: relative; display: block; width: 34px; height: 34px; transform: rotate(22.5deg); }
.brand-mark i { position: absolute; top: 50%; left: 50%; width: 15px; height: 1px; background: var(--accent); transform-origin: 0 50%; }
.brand-mark i:nth-child(1) { transform: rotate(0deg); }
.brand-mark i:nth-child(2) { transform: rotate(45deg); }
.brand-mark i:nth-child(3) { transform: rotate(90deg); }
.brand-mark i:nth-child(4) { transform: rotate(135deg); }
.brand-mark i:nth-child(5) { transform: rotate(180deg); }
.brand-mark i:nth-child(6) { transform: rotate(225deg); }
.brand-mark i:nth-child(7) { transform: rotate(270deg); }
.brand-mark i:nth-child(8) { transform: rotate(315deg); }
.brand-mark b { position: absolute; top: calc(50% - 4px); left: calc(50% - 4px); width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.site-nav { display: flex; gap: clamp(18px, 2.2vw, 38px); }
.site-nav a { position: relative; color: var(--muted); font: 600 12px/1 Space Grotesk, sans-serif; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform .25s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.header-contact { justify-self: end; padding: 14px 18px; border-radius: 12px; color: #0a0b0a; background: var(--accent); font: 700 12px/1 Space Grotesk, sans-serif; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease; }
.header-contact:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200, 255, 57, .2); }
.header-contact span { margin-left: 10px; }
.menu-button { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 52px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(120deg, rgba(7, 8, 7, .97) 0%, rgba(7, 8, 7, .81) 46%, rgba(7, 8, 7, .25) 100%); }
.web-canvas { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; opacity: .9; }
.hero-glow { position: absolute; z-index: -2; top: 18%; right: -5%; width: min(54vw, 780px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(200, 255, 57, .12), transparent 66%); filter: blur(4px); }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #c3c7bd; font: 600 12px/1 Space Grotesk, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 15px var(--accent); }
.hero-title { max-width: 1240px; margin: clamp(34px, 7vh, 76px) 0 0; font: 600 clamp(58px, 10.5vw, 168px)/.82 Space Grotesk, sans-serif; letter-spacing: -.075em; }
.title-line { display: block; overflow: hidden; }
.title-line span { display: inline-block; }
.title-line--accent { margin-left: clamp(18px, 12vw, 190px); color: var(--accent); font-style: italic; font-weight: 400; }
.hero-bottom { display: grid; grid-template-columns: minmax(280px, 540px) 1fr; align-items: end; gap: 50px; margin-top: clamp(54px, 9vh, 105px); }
.hero-copy { margin: 0; color: #c3c7bd; font-size: clamp(16px, 1.4vw, 21px); line-height: 1.65; }
.magnetic-button { display: flex; justify-self: end; align-items: center; justify-content: space-between; width: clamp(175px, 15vw, 220px); aspect-ratio: 1; padding: 25px; border: 1px solid rgba(200, 255, 57, .5); border-radius: 50%; color: var(--ink); text-decoration: none; background: rgba(200, 255, 57, .03); transition: color .35s ease, background .35s ease, transform .35s ease; }
.magnetic-button::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(200, 255, 57, .22); border-radius: 50%; animation: spin 18s linear infinite; }
.magnetic-button { position: relative; }
.magnetic-button span { font: 600 14px/1 Space Grotesk, sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.magnetic-button i { font-size: 30px; font-style: normal; }
.magnetic-button:hover { color: #090a09; background: var(--accent); transform: rotate(-4deg); }
.magnetic-button:hover::before { border-color: rgba(7, 8, 7, .4); }
.scroll-note { position: absolute; right: 32px; bottom: 52px; display: flex; align-items: center; gap: 12px; color: #6f746b; font: 600 10px/1 Space Grotesk, sans-serif; letter-spacing: .13em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: right bottom; }
.scroll-note span { width: 42px; height: 1px; background: #6f746b; }

.about { position: relative; display: grid; grid-template-columns: minmax(260px, .72fr) 1.28fr; gap: clamp(50px, 9vw, 150px); padding-top: clamp(110px, 15vw, 230px); padding-bottom: clamp(110px, 14vw, 210px); }
.section-heading { align-self: start; }
.section-index { display: block; margin-bottom: 42px; color: var(--accent); font: 600 12px/1 Space Grotesk, sans-serif; letter-spacing: .16em; }
.section-heading h2 { margin: 0; font: 500 clamp(56px, 7vw, 105px)/.86 Space Grotesk, sans-serif; letter-spacing: -.065em; text-transform: lowercase; }
.section-heading h2 em { color: var(--accent); font-weight: 400; }
.section-heading p { max-width: 390px; margin: 42px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.about-list { border-top: 1px solid var(--line); }
.about-card { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: clamp(20px, 4vw, 62px); padding: clamp(36px, 5vw, 70px) 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.about-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(200, 255, 57, .04)); opacity: 0; transition: opacity .4s ease; }
.about-card:hover::before { opacity: 1; }
.card-number { position: relative; z-index: 1; color: var(--accent); font: 500 13px/1 Space Grotesk, sans-serif; }
.card-copy { position: relative; z-index: 1; max-width: 690px; }
.card-copy h3 { margin: 0 0 16px; font: 500 clamp(25px, 2.6vw, 40px)/1.1 Space Grotesk, sans-serif; letter-spacing: -.03em; }
.card-copy p { margin: 0; color: var(--muted); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.75; }
.card-orbit { position: absolute; right: -58px; bottom: -58px; width: 140px; height: 140px; border: 1px solid rgba(200, 255, 57, .25); border-radius: 50%; opacity: 0; transform: scale(.55); transition: opacity .4s ease, transform .4s ease; }
.card-orbit::before, .card-orbit::after { content: ""; position: absolute; border: 1px solid rgba(200, 255, 57, .18); border-radius: 50%; inset: 16px; }
.card-orbit::after { inset: 34px; }
.about-card:hover .card-orbit { opacity: 1; transform: scale(1); }

.specializations { position: relative; padding: clamp(105px, 14vw, 200px) 0; background: var(--ink); color: #0b0c0b; overflow: hidden; }
.specializations::before { content: "SPIDERFLY"; position: absolute; top: -3vw; right: -2vw; color: rgba(0, 0, 0, .035); font: 700 18vw/1 Space Grotesk, sans-serif; letter-spacing: -.08em; white-space: nowrap; }
.section-heading--wide { position: relative; display: grid; grid-template-columns: 1fr auto; column-gap: 60px; margin-bottom: clamp(70px, 10vw, 140px); }
.section-heading--wide .section-index { grid-column: 1 / -1; }
.section-heading--wide p { max-width: 330px; align-self: end; margin: 0 0 5px; color: #6a7067; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(0, 0, 0, .17); border-left: 1px solid rgba(0, 0, 0, .17); }
.service-card { position: relative; min-height: clamp(270px, 30vw, 430px); padding: clamp(24px, 3vw, 44px); border-right: 1px solid rgba(0, 0, 0, .17); border-bottom: 1px solid rgba(0, 0, 0, .17); overflow: hidden; transition: color .4s ease, background .4s ease; }
.service-card::before { content: attr(data-service); position: absolute; right: -5%; bottom: -10%; color: rgba(255, 255, 255, .08); font: 700 clamp(68px, 8vw, 135px)/1 Space Grotesk, sans-serif; letter-spacing: -.09em; transform: translateY(30%); transition: transform .45s cubic-bezier(.16, 1, .3, 1); }
.service-card:hover { color: var(--ink); background: #0d0f0d; }
.service-card:hover::before { transform: translateY(0); }
.service-number { position: absolute; top: 26px; left: 28px; color: #777c74; font: 600 11px/1 Space Grotesk, sans-serif; }
.service-arrow { position: absolute; top: 24px; right: 28px; font-size: 25px; opacity: 0; transform: translate(-10px, 10px); transition: opacity .3s ease, transform .3s ease; }
.service-card:hover .service-arrow { opacity: 1; transform: none; }
.service-card h3 { position: absolute; z-index: 1; right: 34px; bottom: 32px; left: 34px; margin: 0; font: 500 clamp(23px, 2.2vw, 34px)/1.05 Space Grotesk, sans-serif; letter-spacing: -.04em; }
.service-icon { position: absolute; top: 50%; left: 50%; width: 84px; height: 84px; transform: translate(-50%, -58%); transition: transform .45s cubic-bezier(.16, 1, .3, 1); }
.service-card:hover .service-icon { transform: translate(-50%, -65%) scale(1.1) rotate(-5deg); }
.service-icon--phone { width: 48px; height: 86px; border: 2px solid #111; border-radius: 12px; }
.service-icon--phone::after { content: ""; position: absolute; bottom: 7px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: currentColor; transform: translateX(-50%); }
.service-icon--window { width: 102px; height: 72px; border: 2px solid currentColor; border-radius: 5px; }
.service-icon--window::before { content: "•••"; position: absolute; top: -3px; left: 8px; letter-spacing: 3px; }
.service-icon--window::after { content: ""; position: absolute; top: 18px; right: 0; left: 0; height: 2px; background: currentColor; }
.service-icon--cube { width: 67px; height: 67px; border: 2px solid currentColor; transform: translate(-50%, -58%) rotate(30deg) skew(-8deg); }
.service-icon--cube::before, .service-icon--cube::after { content: ""; position: absolute; width: 67px; height: 67px; border: 2px solid currentColor; }
.service-icon--cube::before { top: -17px; left: 14px; }
.service-icon--cube::after { top: -9px; left: 7px; }
.service-card:hover .service-icon--cube { transform: translate(-50%, -65%) scale(1.1) rotate(20deg) skew(-8deg); }
.service-icon--cloud { width: 92px; height: 42px; margin-top: 16px; border: 2px solid currentColor; border-radius: 30px; }
.service-icon--cloud::before { content: ""; position: absolute; z-index: -1; top: -35px; left: 22px; width: 53px; height: 53px; border: 2px solid currentColor; border-bottom-color: transparent; border-radius: 50%; background: var(--ink); }
.service-card:hover .service-icon--cloud::before { background: #0d0f0d; }
.service-icon--nodes::before, .service-icon--nodes::after, .service-icon--nodes i, .service-icon--nodes b { content: ""; position: absolute; width: 15px; height: 15px; border: 2px solid currentColor; border-radius: 50%; }
.service-icon--nodes::before { top: 0; left: 34px; }
.service-icon--nodes::after { bottom: 0; left: 4px; }
.service-icon--nodes i { right: 4px; bottom: 0; }
.service-icon--nodes b { top: 38px; left: 34px; background: currentColor; }
.service-icon--nodes { background: linear-gradient(61deg, transparent 49%, currentColor 49%, currentColor 51%, transparent 51%), linear-gradient(-61deg, transparent 49%, currentColor 49%, currentColor 51%, transparent 51%); }
.service-icon--eye { width: 104px; height: 62px; border: 2px solid currentColor; border-radius: 70% 15%; transform: translate(-50%, -58%) rotate(45deg); }
.service-icon--eye i { position: absolute; top: 50%; left: 50%; width: 32px; height: 32px; border: 2px solid currentColor; border-radius: 50%; transform: translate(-50%, -50%); }
.service-icon--eye i::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: currentColor; }
.service-card:hover .service-icon--eye { transform: translate(-50%, -65%) scale(1.1) rotate(40deg); }
.service-card:hover .service-icon { color: var(--accent); }

.technologies { padding-top: clamp(110px, 15vw, 220px); padding-bottom: clamp(115px, 15vw, 220px); }
.technologies .section-heading { display: grid; grid-template-columns: minmax(300px, .9fr) 1.1fr; align-items: end; margin-bottom: clamp(66px, 9vw, 130px); }
.technologies .section-index { grid-column: 1 / -1; }
.technologies .section-heading p { justify-self: end; margin: 0; }
.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.tech-card { position: relative; display: flex; min-height: 180px; padding: 22px; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; overflow: hidden; transition: background .3s ease, color .3s ease; }
.tech-card::before { content: ""; position: absolute; inset: auto -30% -60% auto; width: 120px; height: 120px; border: 1px solid rgba(200, 255, 57, .4); border-radius: 50%; opacity: 0; transition: opacity .3s ease, transform .3s ease; }
.tech-card:hover { color: #090a09; background: var(--accent); }
.tech-card:hover::before { opacity: 1; transform: scale(1.8); border-color: rgba(0, 0, 0, .24); }
.tech-card > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font: 600 12px/1 Space Grotesk, sans-serif; transition: border-color .3s ease, color .3s ease; }
.tech-card:hover > span { color: #090a09; border-color: rgba(0, 0, 0, .28); }
.tech-card strong { position: relative; z-index: 1; font: 500 17px/1.2 Space Grotesk, sans-serif; }
.tech-card i { position: absolute; top: 20px; right: 20px; color: var(--muted); font-size: 18px; font-style: normal; opacity: 0; transition: opacity .2s ease; }
.tech-card:hover i { color: #090a09; opacity: 1; }

.contact { position: relative; padding-top: clamp(100px, 13vw, 180px); padding-bottom: clamp(90px, 11vw, 150px); background: var(--accent); color: #080908; overflow: hidden; }
.contact::after { content: ""; position: absolute; right: -15%; bottom: -60%; width: 60vw; height: 60vw; border: 1px solid rgba(0, 0, 0, .16); border-radius: 50%; box-shadow: 0 0 0 5vw rgba(0, 0, 0, .03), 0 0 0 10vw rgba(0, 0, 0, .025), 0 0 0 15vw rgba(0, 0, 0, .018); }
.contact .eyebrow { color: rgba(8, 9, 8, .64); }
.contact .eyebrow-dot { background: #080908; box-shadow: none; }
.contact h2 { position: relative; z-index: 1; max-width: 1160px; margin: clamp(50px, 8vw, 100px) 0 clamp(65px, 9vw, 120px); font: 500 clamp(64px, 10vw, 155px)/.84 Space Grotesk, sans-serif; letter-spacing: -.075em; }
.contact h2 em { color: rgba(8, 9, 8, .42); font-weight: 400; }
.contact-link { position: relative; z-index: 2; display: flex; max-width: 760px; padding: 0 0 20px; align-items: center; justify-content: space-between; border-bottom: 2px solid #080908; color: #080908; font: 600 clamp(17px, 2vw, 27px)/1 Space Grotesk, sans-serif; text-decoration: none; }
.contact-link i { font-size: 32px; font-style: normal; transition: transform .25s ease; }
.contact-link:hover i { transform: translate(6px, -6px); }
.address-block { position: relative; z-index: 2; display: grid; grid-template-columns: 140px minmax(280px, 620px); gap: 30px; max-width: 760px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(8, 9, 8, .28); }
.address-block > span { color: rgba(8, 9, 8, .54); font: 700 11px/1.3 Space Grotesk, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.address-block address { margin: 0; font: 600 clamp(16px, 1.5vw, 21px)/1.55 Space Grotesk, sans-serif; font-style: normal; }

.site-footer { display: flex; min-height: 180px; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); background: #080908; font: 500 12px/1.4 Space Grotesk, sans-serif; }
.site-footer p { margin: 0; }
.site-footer > a:last-child { text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.site-footer > a:last-child span { margin-left: 12px; color: var(--accent); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.title-line.reveal { transform: none; }
.title-line.reveal span { transform: translateY(115%); transition: transform 1s cubic-bezier(.16, 1, .3, 1); }
.title-line.reveal.is-visible span { transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: grid; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(8, 10, 8, .96); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 13px 5px; font-size: 14px; }
  .header-contact { display: none; }
  .menu-button { justify-self: end; display: grid; width: 44px; height: 44px; padding: 13px 10px; align-content: center; gap: 7px; border: 0; border-radius: 11px; color: var(--ink); background: var(--accent); cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: #080908; transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .about { grid-template-columns: 1fr; }
  .section-heading { max-width: 700px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  :root { --pad: 20px; --radius: 20px; }
  .site-header { top: 10px; right: 10px; left: 10px; min-height: 58px; padding: 7px 8px 7px 13px; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { min-height: 820px; padding-top: 130px; padding-bottom: 38px; justify-content: flex-start; }
  .hero-title { margin: 65px 0 0; font-size: clamp(52px, 16vw, 86px); line-height: .88; }
  .title-line--accent { margin-left: 0; }
  .hero-bottom { display: block; margin-top: 68px; }
  .hero-copy { max-width: 92%; }
  .magnetic-button { justify-self: auto; width: 142px; margin-top: 50px; padding: 19px; }
  .magnetic-button span { font-size: 11px; }
  .scroll-note { display: none; }
  .about { gap: 70px; }
  .section-index { margin-bottom: 28px; }
  .section-heading h2 { font-size: clamp(52px, 17vw, 86px); }
  .specializations .section-heading h2,
  .technologies .section-heading h2 { font-size: clamp(46px, 14vw, 72px); }
  .section-heading p { margin-top: 30px; }
  .about-card { grid-template-columns: 36px 1fr; gap: 15px; }
  .section-heading--wide { display: block; }
  .section-heading--wide p { margin-top: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .technologies .section-heading { display: block; }
  .technologies .section-heading p { margin-top: 32px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-card { min-height: 150px; padding: 17px; }
  .tech-card strong { font-size: 14px; }
  .contact h2 { font-size: clamp(58px, 18vw, 92px); }
  .contact-link { font-size: 15px; }
  .address-block { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; padding-top: 22px; }
  .site-footer { min-height: 230px; padding-top: 48px; padding-bottom: 48px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .title-line.reveal span { opacity: 1; transform: none; }
}
