/*
  TechCoder Software component layer
  Completes the lower-page UI and shared interaction states.
*/

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

/* Header logo image */
.site-header .brand { gap: 0; }

.brand-logo {
  display: block;
  width: auto;
  max-width: min(168px, calc(100vw - 118px));
  height: 40px;
  padding: 4px 8px;
  border: 1px solid rgba(209, 232, 255, .78);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 5px 15px rgba(0, 8, 28, .2);
  object-fit: contain;
}

.reveal {
  opacity: 1;
  translate: 0 0;
  transition: opacity .7s ease, translate .7s cubic-bezier(.2, .7, .2, 1);
}

.js .reveal {
  opacity: 0;
  translate: 0 24px;
}

.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Short, non-blocking motion while a page collection is filtered. */
[data-page-item].is-filter-entering { animation: filter-item-in .27s ease both; }
[data-page-item].is-filter-exiting { pointer-events: none; animation: filter-item-out .19s ease both; }

@keyframes filter-item-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes filter-item-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(7px); }
}

.stagger-item {
  transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

/* Portfolio */
.portfolio-section { background: #08152b; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.filter-button,
.career-filter {
  padding: 10px 13px;
  border: 1px solid rgba(166, 207, 252, .2);
  border-radius: 7px;
  color: #a9bfdc;
  background: rgba(255, 255, 255, .025);
  font-size: .68rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.filter-button:hover,
.career-filter:hover {
  border-color: rgba(121, 226, 255, .65);
  color: var(--white);
  transform: translateY(-2px);
}

.filter-button.active {
  border-color: var(--cyan);
  color: #081a34;
  background: var(--cyan);
  box-shadow: 0 8px 20px rgba(47, 220, 255, .18);
}

.portfolio-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 15px;
}

.portfolio-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(176, 218, 255, .17);
  border-radius: 17px;
  background: #12325a;
  isolation: isolate;
  transition: opacity .25s ease, transform .32s cubic-bezier(.2, .7, .2, 1), border-color .32s ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 16, 34, .04) 20%, rgba(5, 16, 34, .84) 100%);
  transition: background .3s ease;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.portfolio-card:hover {
  z-index: 2;
  border-color: rgba(110, 230, 255, .64);
  transform: translateY(-6px);
}

.portfolio-card:hover::before { background: linear-gradient(180deg, rgba(6, 19, 41, .07), rgba(6, 19, 41, .95)); }
.portfolio-card:hover img { filter: saturate(1.08); transform: scale(1.065); }
.portfolio-wide { grid-column: span 2; }
.portfolio-tall { grid-row: span 2; }
.portfolio-card.is-filtered { display: none; }

.portfolio-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
  color: var(--white);
}

.portfolio-overlay p {
  margin-bottom: 7px;
  color: #99dfff;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-overlay h3 { margin-bottom: 12px; font-size: 1.35rem; }
.portfolio-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7f7ff;
  font-size: .67rem;
  font-weight: 800;
}
.portfolio-overlay a i { transition: transform .2s ease; }
.portfolio-overlay a:hover { color: var(--cyan); }
.portfolio-overlay a:hover i { transform: translate(3px, -3px); }
.portfolio-note { display: flex; align-items: center; gap: 8px; margin: 22px 0 0; color: #839fbe; font-size: .66rem; }
.portfolio-note i { color: var(--cyan); }

/* Partnerships */
.partners-section { background: linear-gradient(165deg, #f9fbff, #edf5ff); }
.partners-section .heading-row > p { color: #627795; }
.mou-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.mou-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  left: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b5d1f5 11%, #b5d1f5 89%, transparent);
}

.mou-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 83px 175px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 24px;
  min-height: 169px;
  padding: 17px 24px 17px 17px;
  border: 1px solid #d0e0f3;
  border-radius: 17px;
  background: rgba(255, 255, 255, .79);
  box-shadow: 0 13px 32px rgba(29, 72, 129, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.mou-card:hover { border-color: #8fcff1; box-shadow: 0 20px 42px rgba(29, 72, 129, .12); transform: translateX(7px); }
.mou-date { padding-right: 20px; border-right: 1px solid #d8e5f5; text-align: center; }
.mou-date span { display: block; color: #1c5598; font-size: 2.15rem; font-weight: 800; letter-spacing: -.08em; line-height: .9; }
.mou-date small { display: block; margin-top: 7px; color: #6484ae; font-family: var(--font-mono); font-size: .53rem; letter-spacing: .08em; line-height: 1.35; }
.mou-card img { width: 175px; height: 133px; border-radius: 11px; object-fit: cover; background: #dcecff; }
.mou-card > div:nth-of-type(2) { min-width: 0; }
.mou-label { margin-bottom: 7px; color: #3779c6; font-family: var(--font-mono); font-size: .57rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.mou-card h3 { margin-bottom: 8px; color: #193c6c; font-size: 1.15rem; }
.mou-card h3 + p { max-width: 600px; margin: 0; color: #657a98; font-size: .75rem; line-height: 1.7; }
.mou-card > i { color: #397fc9; font-size: .85rem; transition: transform .25s ease; }
.mou-card:hover > i { transform: translate(3px, -3px); }

/* Testimonials */
.testimonials-section { background: #08152b; }
.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}

.testimonial-intro > p:not(.eyebrow) { max-width: 320px; margin-bottom: 26px; color: #9cb1cf; font-size: .93rem; line-height: 1.75; }
.carousel-actions { display: flex; gap: 8px; }
.carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(180, 222, 255, .25);
  border-radius: 9px;
  color: #d7f6ff;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.carousel-button:hover { border-color: var(--cyan); color: #092148; background: var(--cyan); transform: translateY(-2px); }
.testimonial-carousel { min-width: 0; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .52s cubic-bezier(.2, .7, .2, 1); }
.testimonial-slide {
  display: flex;
  min-width: 100%;
  min-height: 325px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(177, 220, 255, .18);
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(35, 73, 124, .48), rgba(22, 35, 77, .47));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 46px rgba(0, 8, 35, .2);
}

.rating { display: flex; gap: 5px; margin-bottom: 26px; color: #ffdc7c; font-size: .72rem; }
.testimonial-slide blockquote { max-width: 720px; margin: 0 0 31px; color: #e5f1ff; font-size: clamp(1.15rem, 2.1vw, 1.65rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.5; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.person-avatar { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid rgba(135, 239, 255, .45); border-radius: 50%; color: #d8fbff; background: linear-gradient(140deg, #17649b, #7558c7); font-family: var(--font-mono); font-size: .6rem; }
.testimonial-person strong, .testimonial-person span:not(.person-avatar) { display: block; }
.testimonial-person strong { color: #e7f6ff; font-size: .75rem; }
.testimonial-person div > span { margin-top: 4px; color: #90a7c7; font-size: .62rem; }
.carousel-dots { display: flex; gap: 7px; margin-top: 18px; }
.carousel-dots button { width: 24px; height: 4px; padding: 0; border: 0; border-radius: 50px; background: rgba(178, 221, 255, .26); transition: width .25s ease, background .25s ease; }
.carousel-dots button.active { width: 42px; background: var(--cyan); }

/* Careers */
.careers-section { background: #f3f8ff; }
.career-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 43px; }
.career-hero > div { max-width: 640px; }
.career-hero h2 { margin-bottom: 19px; color: #102d59; }
.career-hero > div > p:not(.eyebrow) { max-width: 590px; margin: 0; color: #5c718f; font-size: .95rem; line-height: 1.8; }
.career-board { overflow: hidden; border: 1px solid #cbddee; border-radius: 20px; background: var(--white); box-shadow: var(--shadow-md); }
.career-board-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 27px; border-bottom: 1px solid #dce7f4; color: #20426f; }
.career-board-top > div { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .65rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.career-board-top .live-ping { width: 7px; height: 7px; }
.career-board-top p { margin: 0; color: #6d829e; font-size: .71rem; }
.career-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 27px; border-bottom: 1px solid #e0eaf5; background: #f9fbff; }
.career-filter { color: #587092; border-color: #d0e0f0; background: var(--white); }
.career-filter.active { border-color: #286fca; color: var(--white); background: #286fca; box-shadow: 0 7px 16px rgba(35, 112, 205, .16); }
.jobs-list { padding: 0 27px; }
.job-row {
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr) 105px auto;
  align-items: center;
  gap: 17px;
  min-height: 92px;
  border-bottom: 1px solid #e0eaf5;
  transition: background .2s ease, translate .2s ease;
}
.job-row:last-child { border-bottom: 0; }
.job-row:hover { background: linear-gradient(90deg, rgba(226, 241, 255, .62), transparent); translate: 6px 0; }
.job-row.is-filtered { display: none; }
.job-icon { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 10px; color: #3275c5; background: #e5f1ff; font-size: .95rem; }
.job-row h3 { margin: 0 0 4px; color: #1d3e6c; font-size: .94rem; }
.job-row p { margin: 0; color: #7488a4; font-size: .64rem; }
.job-row > span { color: #7185a0; font-family: var(--font-mono); font-size: .58rem; text-transform: uppercase; }
.job-apply { display: inline-flex; align-items: center; gap: 8px; padding: 9px 0; border: 0; color: #216dc7; background: transparent; font-size: .68rem; font-weight: 800; }
.job-apply i { transition: transform .2s ease; }
.job-apply:hover i { transform: translateX(4px); }

/* Contact and forms */
.contact-section { isolation: isolate; background: #07162d; }
.contact-section .container { z-index: 1; }
.contact-orb { position: absolute; z-index: 0; width: 460px; height: 460px; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.orb-left { top: -160px; left: -180px; background: radial-gradient(circle, rgba(48, 192, 255, .16), transparent 68%); }
.orb-right { right: -150px; bottom: -230px; background: radial-gradient(circle, rgba(142, 103, 255, .18), transparent 68%); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr); gap: clamp(50px, 8vw, 125px); align-items: center; }
.contact-copy > p:not(.eyebrow) { max-width: 490px; margin-bottom: 33px; color: #a9bdd8; font-size: .96rem; line-height: 1.83; }
.contact-methods { display: grid; gap: 15px; }
.contact-methods > * { display: flex; align-items: center; gap: 13px; color: #d9eafa; }
.contact-methods > a { transition: color .2s ease; }
.contact-methods > a:hover { color: var(--cyan); }
.contact-methods > * > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(149, 219, 255, .2); border-radius: 10px; color: var(--cyan); background: rgba(255,255,255,.04); font-size: .76rem; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { margin-bottom: 3px; color: #7f98ba; font-family: var(--font-mono); font-size: .53rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-methods strong { font-size: .72rem; line-height: 1.55; }
.social-links { display: flex; gap: 9px; margin-top: 28px; }
.social-links a { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(161, 216, 255, .18); border-radius: 8px; color: #bbd2ec; font-size: .75rem; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.social-links a:hover { border-color: var(--cyan); color: #0b1a35; background: var(--cyan); transform: translateY(-3px); }
.contact-form-card { padding: clamp(25px, 4vw, 39px); border: 1px solid rgba(178, 222, 255, .2); border-radius: 21px; background: linear-gradient(145deg, rgba(35, 75, 125, .53), rgba(15, 32, 67, .7)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 26px 58px rgba(0, 7, 25, .28); backdrop-filter: blur(12px); }
.form-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 28px; }
.form-badge { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 10px; color: #082149; background: linear-gradient(140deg, #82eeff, #a7b6ff); font-size: .82rem; }
.form-heading h3 { margin: 0 0 4px; color: #effaff; font-size: 1.08rem; }
.form-heading p { margin: 0; color: #9ab1cf; font-size: .66rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid label { display: grid; gap: 7px; color: #b8cde5; font-size: .65rem; font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(177, 215, 251, .2);
  border-radius: 8px;
  outline: 0;
  color: #e5f3ff;
  background: rgba(255, 255, 255, .055);
  font-size: .72rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-grid textarea { min-height: 108px; resize: vertical; }
.form-grid select { color: #c4d7ed; }
.form-grid select option { color: #0e2446; background: var(--white); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #7891b2; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--cyan); background: rgba(70, 174, 255, .09); box-shadow: 0 0 0 3px rgba(47, 220, 255, .11); }
.form-grid [aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255, 123, 139, .12); }
.form-grid small { color: #8099bb; font-size: .56rem; font-weight: 500; line-height: 1.45; }
.form-full { grid-column: 1 / -1; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 17px; margin-top: 20px; }
.form-privacy { color: #91a8c5; font-size: .59rem; line-height: 1.45; }
.form-privacy i { margin-right: 4px; color: #94eafe; }
.form-feedback { min-height: 1.25em; margin: 13px 0 0; color: #b9f9da; font-size: .67rem; font-weight: 700; }
.form-feedback.is-error { color: #ffb1bc; }

/* Footer */
.site-footer { color: #aac0dc; background: #061226; }
.footer-top { display: grid; grid-template-columns: minmax(240px, .82fr) minmax(0, 1.18fr); gap: 90px; padding: 74px 0 55px; }
.footer-brand > p { max-width: 320px; margin: 26px 0 21px; color: #7f96b7; font-size: .75rem; line-height: 1.75; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; color: #c9f8ff; font-size: .75rem; font-weight: 800; }
.footer-phone i { font-size: .63rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.footer-links h3 { margin: 0 0 18px; color: #dcecff; font-size: .72rem; letter-spacing: 0; }
.footer-links a { display: block; width: max-content; max-width: 100%; margin: 0 0 10px; color: #8299b9; font-size: .68rem; transition: color .2s ease, translate .2s ease; }
.footer-links a:hover { color: var(--cyan); translate: 4px 0; }
.office-strip { display: flex; align-items: center; gap: 10px; min-height: 65px; border-top: 1px solid rgba(173, 213, 255, .11); border-bottom: 1px solid rgba(173, 213, 255, .11); color: #8ea5c4; font-size: .65rem; }
.office-strip > i { color: var(--cyan); }
.office-strip p { margin: 0; }
.office-strip p strong { color: #cadbf0; }
.office-strip a { margin-left: auto; color: #b2dfff; font-size: .68rem; font-weight: 700; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0 26px; color: #7187a5; font-size: .61rem; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--cyan); }

/* Modal, status and utility controls */
.modal { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 24px; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .25s ease, visibility .25s step-end; }
.modal.is-open { visibility: visible; opacity: 1; pointer-events: auto; transition: opacity .25s ease; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1, 10, 25, .72); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; z-index: 1; width: min(640px, 100%); max-height: min(760px, calc(100vh - 48px)); overflow-y: auto; padding: clamp(25px, 5vw, 43px); border: 1px solid #c8def5; border-radius: 20px; color: #173862; background: #f8fbff; box-shadow: 0 28px 90px rgba(0, 6, 24, .38); transform: translateY(15px) scale(.98); transition: transform .28s cubic-bezier(.2, .7, .2, 1); }
.modal.is-open .modal-dialog { transform: translateY(0) scale(1); }
.modal-dialog .eyebrow { margin-bottom: 15px; }
.modal-dialog h2 { margin-bottom: 14px; color: #143664; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.modal-dialog h2 span { color: #3277cf; }
.modal-dialog > p:not(.eyebrow) { margin-bottom: 26px; color: #5f7694; font-size: .83rem; line-height: 1.7; }
.modal-dialog .form-grid label { color: #3f5b7d; }
.modal-dialog .form-grid input, .modal-dialog .form-grid textarea { border-color: #cbdced; color: #1e416e; background: #fff; }
.modal-dialog .form-grid input::placeholder, .modal-dialog .form-grid textarea::placeholder { color: #91a6bf; }
.modal-close { position: absolute; top: 17px; right: 17px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #c5d9ee; border-radius: 8px; color: #476a93; background: #fff; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.modal-close:hover { border-color: #5c96da; color: #fff; background: #3277cf; }
.back-to-top { position: fixed; z-index: 90; right: 23px; bottom: 23px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(147, 223, 255, .5); border-radius: 10px; color: #08234a; background: var(--cyan); box-shadow: 0 13px 28px rgba(0, 39, 87, .24); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #c1f9ff; }
.toast { position: fixed; z-index: 600; right: 22px; bottom: 22px; display: flex; align-items: flex-start; gap: 11px; width: min(370px, calc(100vw - 44px)); padding: 15px; border: 1px solid rgba(139, 233, 255, .52); border-radius: 12px; color: #ddfbff; background: rgba(7, 29, 59, .96); box-shadow: 0 18px 45px rgba(0, 7, 28, .3); opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast > i { margin-top: 2px; color: #b7f974; }
.toast strong, .toast span { display: block; }
.toast strong { margin-bottom: 2px; font-size: .72rem; }
.toast span { color: #a6bdd8; font-size: .63rem; line-height: 1.45; }
.toast button { margin-left: auto; padding: 0; border: 0; color: #9bb4d4; background: transparent; }
.toast button:hover { color: var(--white); }

@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(183, 249, 116, .55); }
  50% { box-shadow: 0 0 0 7px rgba(183, 249, 116, 0); }
}

@keyframes orbit-spin { to { transform: translateX(-48%) rotate(342deg); } }
@keyframes orbit-spin-reverse { to { transform: translateX(-45%) rotate(-319deg); } }
@keyframes float-main { 0%, 100% { margin-top: 0; } 50% { margin-top: -12px; } }
@keyframes float-card { 0%, 100% { margin-top: 0; } 50% { margin-top: -9px; } }
@keyframes shimmer { 0%, 100% { opacity: .35; transform: scaleX(.72); } 50% { opacity: 1; transform: scaleX(1); } }
@keyframes draw-chart { to { stroke-dashoffset: 0; } }
@keyframes mouse-scroll { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 75% { opacity: 0; transform: translateY(8px); } 100% { opacity: 0; } }
@keyframes equalize { from { transform: scaleY(.42); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }

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