:root {
  --blue: #3561ff;
  --ink: #111318;
  --muted: #666a73;
  --page: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 14px 16px 48px;
  overflow: hidden;
  background: var(--page);
}

.hero {
  position: relative;
  min-height: 860px;
  border-radius: 15px;
}
.hero-image {
  position: absolute;
  inset: 0 0 84px;
  overflow: hidden;
  border-radius: 15px;
  background-image: linear-gradient(90deg, rgba(0, 8, 20, .66) 0%, rgba(0, 8, 20, .24) 55%, rgba(0, 8, 20, .42) 100%), url("images/1.avif");
  background-size: cover;
  background-position: center;
}
.navbar {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 62px;
  right: 62px;
  height: 106px;
  display: grid;
  grid-template-columns: 310px 1fr 140px;
  align-items: center;
  gap: 24px;
  padding: 0 24px 0 38px;
  background: #fff;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.navbar::before, .navbar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
  background: transparent;
}
.navbar::before { left: -32px; border-radius: 0 22px 0 0; box-shadow: 12px -12px 0 10px #fff; }
.navbar::after { right: -32px; border-radius: 22px 0 0; box-shadow: -12px -12px 0 10px #fff; }
.services-navbar, .contact-navbar, .about-navbar { border-radius: 0; }
.services-navbar::before, .services-navbar::after, .contact-navbar::before, .contact-navbar::after, .about-navbar::before, .about-navbar::after { display: none; }
.brand img { display: block; width: 280px; max-width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(25px, 3vw, 54px); }
.nav-links a { position: relative; color: #53565c; font-size: 13px; font-weight: 500; white-space: nowrap; transition: color .25s ease; }
.nav-links a:hover, .nav-links a.active { color: #050505; }
.nav-links a::after { content: ""; position: absolute; left: 50%; bottom: -12px; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; opacity: 0; transform: translateX(-50%) scale(.25); transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1); }
.nav-links a.active::after { opacity: 1; transform: translateX(-50%) scale(1); }
.button { display: inline-flex; justify-content: center; align-items: center; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.nav-cta { min-height: 47px; padding: 0 23px; color: #fff; background: var(--blue); border-radius: 3px; font-size: 12px; font-weight: 600; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: #111; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 355px;
  left: 115px;
  max-width: 665px;
  color: #fff;
  animation: heroCopyIn .8s .12s both cubic-bezier(.2,.8,.2,1);
}
.hero-copy h1 { margin: 0 0 20px; font-size: clamp(30px, 3.15vw, 47px); line-height: 1.12; letter-spacing: -1.8px; }
.hero-copy p { max-width: 610px; margin: 0 0 30px; font-size: 13px; line-height: 1.7; }
.hero-actions { display: flex; gap: 18px; }
.hero-actions .button { min-width: 170px; min-height: 48px; padding: 0 25px; font-size: 12px; font-weight: 600; }
.primary-button { color: #fff; background: var(--blue); }
.outline-button { color: #fff; border: 1px solid rgba(255,255,255,.9); }
.stats {
  position: absolute;
  z-index: 4;
  left: 12%;
  right: 12%;
  bottom: 33px;
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 31px;
  box-shadow: 0 14px 28px rgba(53,97,255,.25);
  animation: heroStatsIn .75s .42s both cubic-bezier(.2,.8,.2,1);
}
.stat { position: relative; padding: 12px 18px; text-align: center; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; width: 1px; height: 60%; background: rgba(255,255,255,.22); transform: skew(-13deg); }
.stat strong { display: block; font-size: clamp(27px, 3vw, 43px); line-height: 1; }
.stat span { display: block; margin-top: 8px; color: rgba(255,255,255,.66); font-size: 10px; }

.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -84px;
  margin-right: -16px;
  margin-left: -16px;
  padding: 189px 60px 60px;
  background: url("images/2.avif") center / cover no-repeat;
}
.industry-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(17,19,24,.035);
  border-radius: 9px;
  box-shadow: 0 7px 22px rgba(26,31,44,.10);
  transition: color .35s ease, background-color .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.industry-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -60% auto -60% -55%;
  width: 38%;
  background: rgba(255,255,255,.18);
  transform: rotate(18deg) translateX(-250%);
  transition: transform .65s ease;
}
.industry-card:hover {
  color: #fff;
  background-color: var(--blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(53,97,255,.28);
}
.industry-card:hover::after { transform: rotate(18deg) translateX(650%); }
.industry-card h3 { margin: 21px 0 0; font-size: 18px; line-height: 1.3; letter-spacing: -.25px; font-weight: 600; transition: transform .35s ease; }
.industry-icon { width: 64px; height: 56px; display: flex; align-items: center; color: #050608; font-size: 43px; line-height: 1; transition: color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1); }
.industry-card:hover .industry-icon { color: #fff; transform: translateY(-3px) scale(1.08); }
.industry-card:hover h3 { transform: translateY(-2px); }
.industries-intro {
  position: relative;
  grid-column: 3 / 5;
  padding: 51px 25px 20px 28px;
}
.industries-intro h2 { margin: 0 0 25px; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.08; letter-spacing: -1.5px; font-weight: 750; }
.industries-intro p { max-width: 600px; margin: 0; color: #62666f; font-size: 14px; line-height: 1.75; }
.spark { position: absolute; display: block; background: var(--blue); transform: rotate(25deg); }
.spark-one { width: 9px; height: 15px; top: 24px; left: 22%; }
.spark-two { width: 5px; height: 5px; top: 63px; right: 4%; border-radius: 50%; }

.about {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
  padding: 90px clamp(50px, 6.5vw, 125px);
  background: #fff;
}
.about-content { max-width: 590px; }
.section-label {
  display: block;
  margin-bottom: 25px;
  color: #121318;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}
.about h2 {
  margin: 0 0 25px;
  color: #050608;
  font-size: clamp(38px, 3.25vw, 58px);
  line-height: 1.1;
  letter-spacing: -2.2px;
  font-weight: 750;
}
.about-content p {
  margin: 0 0 30px;
  color: #60636a;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.62;
}
.about-button {
  min-width: 128px;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  box-shadow: 0 9px 20px rgba(53,97,255,.18);
  font-size: 13px;
  font-weight: 600;
}
.about-button:hover {
  background: #244ee5;
  box-shadow: 0 13px 27px rgba(53,97,255,.28);
}
.about-visual { width: 100%; }
.about-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.cta-banner {
  position: relative;
  width: min(100%, 1125px);
  min-height: 285px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 48px clamp(42px, 12vw, 190px);
  color: #fff;
  border-radius: 16px;
  background-color: #3561ff;
  background-image:
    radial-gradient(ellipse 24% 100% at 3% 50%, rgba(24,67,220,.55) 0 68%, transparent 69%),
    radial-gradient(ellipse 25% 100% at 16% 50%, rgba(68,107,237,.78) 0 68%, transparent 69%),
    radial-gradient(ellipse 27% 100% at 30% 50%, rgba(118,145,232,.78) 0 68%, transparent 69%);
  isolation: isolate;
}
.cta-banner::before,
.cta-banner::after {
  display: none;
}
.cta-copy { position: relative; z-index: 2; }
.cta-copy h2 {
  margin: 0 0 11px;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: .98;
  letter-spacing: -2px;
  font-weight: 750;
}
.cta-copy p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.25;
}
.cta-button {
  min-width: 151px;
  min-height: 53px;
  color: #101114;
  background: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 17px rgba(15, 34, 130, .15);
}
.cta-button:hover { color: var(--blue); background: #f3f5ff; }
.cta-character {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: -16px;
  width: min(31%, 360px);
  pointer-events: none;
}
.cta-character img { display: block; width: 100%; height: auto; }

.portfolio {
  padding: 74px clamp(32px, 4vw, 70px) 96px;
  background: #fff;
}
.portfolio > h2 {
  margin: 0 0 58px;
  color: #07080b;
  text-align: center;
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1;
  letter-spacing: -1.9px;
  font-weight: 800;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}
.portfolio-card {
  position: relative;
  min-height: 390px;
  padding: 31px 30px 70px;
  border: 1px solid #d9e0ff;
  border-bottom: 4px solid #4d72ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(43,72,191,.13);
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 17px 28px rgba(43,72,191,.17); }
.mission-card, .vision-card, .meetup-card { border-top-color: #d9e0ff; }
.portfolio-dot { display: block; width: 14px; height: 14px; margin-bottom: 22px; border-radius: 50%; background: #43a6dc; }
.vision-card .portfolio-dot { background: #ef4035; }
.meetup-card .portfolio-dot { background: #773dff; }
.portfolio-card h3 { margin: 0 0 34px; color: #0c0c0e; font-size: clamp(22px, 1.75vw, 30px); line-height: 1; letter-spacing: -1.1px; font-weight: 650; }
.portfolio-card p { max-width: 330px; margin: 0; color: #858993; font-size: 15px; line-height: 1.58; }
.portfolio-arrow {
  position: absolute;
  right: 30px;
  bottom: 39px;
  width: 82px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1.5px solid #101116;
  border-radius: 999px;
  color: #111;
  font-size: 20px;
  line-height: 1;
  transition: color .25s, background .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.portfolio-arrow i { display: block; line-height: 1; transform: translateX(0); transition: transform .25s ease; }
.portfolio-arrow:hover { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 16px rgba(53,97,255,.23); transform: scale(.94); }
.portfolio-arrow:hover i { transform: translateX(3px); }

.testimonials {
  overflow: hidden;
  padding: 72px 24px 85px;
  background: #fff;
}
.testimonials > h2 {
  margin: 0 0 43px;
  color: #090a0d;
  text-align: center;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1;
  letter-spacing: .4px;
  font-weight: 800;
}
.testimonial-viewport { max-width: 1020px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .55s cubic-bezier(.22,.8,.25,1); }
.testimonial-slide { min-width: 100%; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.testimonial-copy { padding: 8px 0 8px 2px; }
.quote-mark { display: block; margin-bottom: 38px; color: #c9d5e4; font-size: 38px; }
.testimonial-copy blockquote { max-width: 475px; margin: 0 0 54px; color: #10111b; font-size: clamp(22px, 2vw, 30px); line-height: 1.23; letter-spacing: -.8px; font-weight: 500; }
.testimonial-copy blockquote::first-letter { color: transparent; font-size: 0; }
.testimonial-track { cursor: grab; touch-action: pan-y; user-select: none; }
.testimonial-track.dragging { cursor: grabbing; transition: none; }
.testimonial-photo { position: relative; min-height: 367px; overflow: hidden; border-radius: 16px; background: #e5e7eb; }
.testimonial-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, rgba(53,97,255,0), #3561ff 100%); pointer-events: none; }
.testimonial-photo img { display: block; width: 100%; height: 367px; object-fit: cover; object-position: center; }
.testimonial-person { position: absolute; z-index: 1; left: 45px; bottom: 35px; display: flex; flex-direction: column; color: #fff; }
.testimonial-person strong { font-size: 25px; line-height: 1.1; font-weight: 700; }
.testimonial-person span { margin-top: 8px; color: rgba(255,255,255,.55); font-size: 17px; }
.testimonial-pagination { display: flex; justify-content: center; gap: 9px; margin-top: 33px; }
.testimonial-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #d5d9e1; cursor: pointer; transition: width .25s, background .25s; }
.testimonial-dot.active { width: 26px; border-radius: 8px; background: var(--blue); }

.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
.navbar { transition: height .3s ease, box-shadow .3s ease, background-color .3s ease; }
.navbar.is-sticky { position: fixed; z-index: 50; top: 0; left: 16px; right: 16px; height: 78px; border-radius: 0 0 18px 18px; box-shadow: 0 12px 30px rgba(20,29,58,.14); }
@keyframes heroCopyIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroStatsIn { from { opacity: 0; transform: translateY(28px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

.site-footer { padding: 78px clamp(28px, 7vw, 120px) 24px; background: #fafbff; }
.footer-main { display: grid; grid-template-columns: 1.55fr .85fr 1.15fr 1.4fr; gap: clamp(35px, 5vw, 88px); max-width: 1320px; margin: 0 auto; }
.footer-brand img { display: block; width: min(230px, 100%); height: auto; }
.footer-brand p { max-width: 295px; margin: 24px 0 18px; color: #787e89; font-size: 14px; line-height: 1.65; }
.footer-column, .footer-social { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column h3, .footer-social h3 { margin: 4px 0 23px; color: var(--blue); font-size: 11px; line-height: 1; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; }
.footer-column a { margin-bottom: 16px; color: #171a22; font-size: 14px; transition: color .2s, transform .2s; }
.footer-column a:hover { color: var(--blue); transform: translateX(3px); }
.footer-contact p { margin: 0 0 16px; color: #787e89; font-size: 14px; line-height: 1.65; }
.footer-contact p i, .footer-contact a i { width: 17px; margin-right: 6px; color: var(--blue); }
.footer-social p { max-width: 280px; margin: 0 0 21px; color: #787e89; font-size: 14px; line-height: 1.6; }
.social-links { display: flex; gap: 10px; margin-bottom: 20px; }
.social-links a { width: 39px; height: 39px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #dce2f4; border-radius: 50%; color: var(--blue); font-size: 16px; transition: color .25s, background .25s, transform .25s, border-color .25s; }
.social-links a:hover { color: #fff; background: var(--blue); border-color: var(--blue); transform: translateY(-4px); }
.footer-bottom { max-width: 1320px; display: flex; justify-content: center; gap: 20px; margin: 62px auto 0; padding-top: 23px; border-top: 1px solid #dde2ec; color: #777d88; text-align: center; font-size: 12px; }
.footer-bottom > div { display: flex; gap: 22px; }
.footer-bottom a { color: #555b66; transition: color .2s; }
.footer-bottom a:hover { color: var(--blue); }

@media (max-width: 1000px) {
  .navbar { left: 25px; right: 25px; grid-template-columns: 230px 1fr 110px; padding: 0 20px; }
  .nav-links { gap: 16px; }
  .brand img { width: 220px; }
  .hero-copy { left: 65px; }
  .industries { padding-inline: 30px; gap: 18px; }
  .industry-card { padding: 24px; }
  .about { grid-template-columns: .9fr 1.1fr; gap: 40px; padding: 75px 45px; }
  .cta-banner { padding-left: 8%; }
  .cta-character { right: 1%; width: min(34%, 340px); }
}

@media (max-width: 780px) {
  .site-shell { padding: 8px 8px 35px; }
  .hero { min-height: 760px; }
  .hero-image { bottom: 130px; background-position: 58% center; }
  .navbar { left: 18px; right: 18px; height: 80px; grid-template-columns: 1fr auto; padding: 0 17px; border-radius: 0 0 22px 22px; }
  .brand img { width: 190px; }
  .menu-toggle { display: block; cursor: pointer; }
  .nav-cta { display: none; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; padding: 14px; background: #fff; border-radius: 0 0 15px 15px; box-shadow: 0 10px 20px rgba(0,0,0,.15); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px; text-align: center; }
  .nav-links a.active::after { display: none; }
  .navbar.is-sticky { left: 8px; right: 8px; height: 72px; }
  .hero-copy { top: 205px; left: 35px; right: 35px; }
  .hero-copy h1 { font-size: 35px; }
  .stats { left: 6%; right: 6%; bottom: 5px; grid-template-columns: repeat(2, 1fr); border-radius: 22px; padding: 11px 5px; }
  .stat { padding: 10px; }
  .stat strong { font-size: 28px; }
  .stat:nth-child(2)::after { display: none; }
  .industries { grid-template-columns: repeat(2, 1fr); margin: -130px -8px 0; padding: 200px 20px 50px; }
  .industries-intro { grid-column: 1 / 3; grid-row: 1; padding: 20px 4px 25px; }
  .about { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding: 75px 35px; }
  .about-content { max-width: 650px; }
  .about-visual { width: min(100%, 700px); margin: 0 auto; }
  .cta-banner { min-height: 500px; align-items: flex-start; padding: 58px 35px; }
  .cta-character { right: 3%; bottom: -5px; width: 58%; }
  .portfolio { padding: 58px 35px 70px; }
  .portfolio-grid { gap: 16px; }
  .testimonial-slide { gap: 42px; }
  .footer-main { grid-template-columns: 1.4fr .8fr 1.1fr; }
  .footer-social { grid-column: 1 / 4; }
}

@media (max-width: 500px) {
  .hero { min-height: 805px; }
  .hero-image { bottom: 155px; }
  .navbar { left: 12px; right: 12px; }
  .brand img { width: 165px; }
  .hero-copy { top: 175px; left: 24px; right: 24px; }
  .hero-copy h1 { font-size: 29px; letter-spacing: -1px; }
  .hero-copy p { font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 11px; }
  .hero-actions .button { width: 175px; }
  .stats { left: 15px; right: 15px; min-height: 190px; }
  .stat strong { font-size: 25px; }
  .stat span { font-size: 8px; }
  .industries { grid-template-columns: 1fr; gap: 15px; margin-top: -155px; padding: 210px 12px 40px; }
  .industries-intro { grid-column: 1; }
  .industry-card { min-height: 190px; }
  .about { gap: 38px; padding: 65px 24px; }
  .section-label { margin-bottom: 18px; }
  .about h2 { margin-bottom: 20px; font-size: 35px; letter-spacing: -1.4px; }
  .about-content p { font-size: 15px; }
  .cta-banner { min-height: 565px; padding: 42px 24px; border-radius: 12px; }
  .cta-copy h2 { font-size: 32px; letter-spacing: -1.3px; }
  .cta-copy p { font-size: 14px; }
  .desktop-break { display: none; }
  .cta-character { right: -11%; bottom: -8px; width: 93%; }
  .portfolio { padding: 48px 24px 55px; }
  .portfolio > h2 { margin-bottom: 28px; }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 330px; }
  .portfolio-card { min-height: 320px; padding: 27px 25px 65px; }
  .portfolio-card h3 { margin-bottom: 23px; }
  .portfolio-card p { font-size: 14px; }
  .portfolio-arrow { right: 24px; bottom: 25px; width: 70px; height: 48px; font-size: 17px; }
  .testimonials { padding: 56px 24px 60px; }
  .testimonials > h2 { margin-bottom: 33px; }
  .testimonial-slide { grid-template-columns: 1fr; gap: 35px; }
  .testimonial-copy { padding: 0; }
  .quote-mark { margin-bottom: 22px; }
  .testimonial-copy blockquote { margin-bottom: 27px; font-size: 23px; }
  .testimonial-photo, .testimonial-photo img { min-height: 0; height: auto; aspect-ratio: 1.46; }
  .testimonial-person { left: 28px; bottom: 25px; }
  .testimonial-person strong { font-size: 21px; }
  .testimonial-person span { font-size: 14px; }
  .site-footer { padding: 58px 24px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
  .footer-brand, .footer-social { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; margin-top: 48px; line-height: 1.55; }
}

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