*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --header-height: 84px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  --page: #f8f8fc;
  --surface: #ffffff;
  --surface-soft: #f0f1f8;
  --ink: #171725;
  --muted: #616178;
  --line: rgba(12, 12, 22, 0.12);
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Sora", "Inter", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

::selection {
  color: var(--brand-dark);
  background: var(--brand-mint);
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--brand-dark);
  background: var(--brand-mint);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: #4545d7;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--brand-primary);
  border-radius: 50%;
  content: "";
}

.eyebrow--dark {
  color: var(--brand-periwinkle);
}

.eyebrow--dark::before {
  background: var(--brand-mint);
}

.button {
  display: inline-flex;
  min-height: 54px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: var(--brand-dark);
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--brand-mint);
  border-color: var(--brand-mint);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.82rem;
}

.button--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.button--ghost:hover {
  color: var(--brand-dark);
}

.card-cta {
  display: inline-flex;
  min-height: 44px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.card-cta:hover {
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link span,
.card-cta span,
.button span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.card-cta:hover span,
.button:hover span {
  transform: translate(2px, -2px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(12, 12, 22, 0.92);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  gap: 34px;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.brand__crop {
  position: relative;
  display: block;
  width: 101px;
  height: 34px;
  overflow: hidden;
}

.brand__crop img {
  position: absolute;
  top: -24px;
  left: -21px;
  width: 132px;
  max-width: none;
  height: auto;
}

.brand__name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brand-mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: #fff;
  background: var(--brand-dark);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  filter: blur(110px);
  border-radius: 50%;
  opacity: 0.18;
}

.hero__glow--one {
  top: 60px;
  right: 8%;
  background: var(--brand-primary);
}

.hero__glow--two {
  bottom: -320px;
  left: -160px;
  background: var(--brand-sky);
  opacity: 0.11;
}

.hero__grid {
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding-top: 120px;
  padding-bottom: 70px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(3.4rem, 6.5vw, 6.5rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero h1::first-line {
  color: var(--brand-periwinkle);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero__support {
  margin-bottom: 14px;
  color: var(--brand-sky);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__region {
  display: flex;
  max-width: 570px;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.hero__region span {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: var(--brand-mint);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--brand-mint);
}

.hero-system {
  position: relative;
  min-width: 0;
}

.hero-system__frame {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(102, 102, 255, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.26);
}

.hero-system__frame::before,
.hero-system__frame::after {
  position: absolute;
  border: 1px solid rgba(184, 186, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-system__frame::before {
  top: 110px;
  left: 50%;
  width: 390px;
  height: 390px;
  transform: translateX(-50%);
}

.hero-system__frame::after {
  top: 162px;
  left: 50%;
  width: 286px;
  height: 286px;
  transform: translateX(-50%);
}

.hero-system__logo {
  position: absolute;
  top: 50%;
  /* Center the visible mark inside the source image's asymmetric transparent padding. */
  left: 46.5%;
  z-index: 2;
  width: 124%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -51%);
}

.hero-system__orbit {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: var(--brand-mint);
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(185, 240, 215, 0.08), 0 0 30px var(--brand-mint);
  transform: translate(-50%, -50%);
}

.system-node {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 150px;
  min-height: 68px;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 12, 22, 0.82);
  border: 1px solid rgba(184, 186, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.35;
  animation: node-float 6s ease-in-out infinite;
}

.system-node span {
  flex: 0 0 auto;
  margin-top: 0.12em;
  color: var(--brand-mint);
  font-size: 0.63rem;
}

.system-node__label {
  min-width: 0;
  color: inherit;
  font: inherit;
  font-weight: 600;
  overflow-wrap: break-word;
}

.system-node--1 {
  top: 56px;
  left: 42px;
}

.system-node--2 {
  top: 104px;
  right: 24px;
  animation-delay: -1.5s;
}

.system-node--3 {
  bottom: 98px;
  left: 28px;
  animation-delay: -3s;
}

.system-node--4 {
  right: 36px;
  bottom: 56px;
  animation-delay: -4.5s;
}

.system-status {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(12, 12, 22, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.65rem;
  transform: translateX(-50%);
}

.system-status span {
  width: 6px;
  height: 6px;
  background: var(--brand-mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-mint);
}

@keyframes node-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Shared section rhythm */
.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading--compact {
  align-items: center;
}

.section-heading h2,
.belief h2,
.about h2,
.contact h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* Trust */
.trust-bar {
  position: relative;
  z-index: 4;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  min-width: 0;
  padding: 30px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

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

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

.trust-item strong {
  margin-bottom: 4px;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: -0.03em;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.76rem;
}

/* Services */
.services {
  background: var(--page);
}

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

.service-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(102, 102, 255, 0.38);
  box-shadow: 0 26px 70px rgba(31, 31, 78, 0.1);
  transform: translateY(-6px);
}

.service-card__top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 54px;
}

.service-card__number {
  color: #4848df;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.service-card h3 {
  max-width: 290px;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.22;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

.service-card .card-cta {
  align-self: flex-start;
  margin-top: auto;
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.service-card .card-cta:hover {
  color: #fff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 28px rgba(102, 102, 255, 0.24);
}

/* Solutions */
.solutions {
  background: var(--brand-sky);
}

.product-suite {
  position: relative;
  padding: clamp(18px, 2.4vw, 30px);
  margin-bottom: clamp(82px, 10vw, 128px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 0%, rgba(102, 102, 255, 0.27), transparent 31%),
    radial-gradient(circle at 94% 100%, rgba(185, 240, 215, 0.12), transparent 27%),
    var(--brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  box-shadow: 0 35px 90px rgba(24, 24, 64, 0.18);
}

.product-suite::before {
  position: absolute;
  top: -210px;
  right: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(184, 186, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.product-suite__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-solution-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: clamp(25px, 3vw, 38px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.product-solution-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 4px;
  background: var(--brand-primary);
  content: "";
}

.product-solution-card--go-school::after { background: var(--brand-mint); }
.product-solution-card--go-trak::after { background: var(--brand-sky); }
.product-solution-card--go-pos::after { background: var(--brand-periwinkle); }

.product-solution-card:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(184, 186, 255, 0.34);
  transform: translateY(-5px);
}

.product-solution-card__top {
  display: flex;
  min-height: 92px;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}

.product-solution-card__mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.product-solution-card__mark span {
  margin-bottom: 3px;
  color: var(--brand-mint);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.product-solution-card__mark strong {
  color: var(--brand-periwinkle);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.065em;
}

.product-solution-card__models {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.product-solution-card__models span {
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
}

.product-solution-card__media {
  position: relative;
  height: 190px;
  margin: 4px 0 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.product-solution-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-solution-card:hover .product-solution-card__media img { transform: scale(1.035); }

.product-solution-card__media figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  overflow: hidden;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(12, 12, 22, 0.78);
  border-radius: 10px;
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.product-solution-card__eyebrow {
  margin: 15px 0 7px;
  color: var(--brand-mint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-solution-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.product-solution-card__tagline {
  max-width: 520px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.84rem;
  line-height: 1.72;
}

.product-solution-card__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 17px;
  padding: 0;
  margin: 27px 0 31px;
  list-style: none;
}

.product-solution-card__features li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.7rem;
  line-height: 1.45;
}

.product-solution-card__features li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--brand-mint);
  border-radius: 50%;
  content: "";
}

.product-solution-card__footer {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 21px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-solution-card__footer > div {
  display: grid;
  gap: 3px;
}

.product-solution-card__footer > div span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.product-solution-card__footer > div strong {
  color: var(--brand-mint);
  font-size: 0.72rem;
}

.product-solution-card__footer > .card-cta {
  flex: 0 0 auto;
  color: var(--brand-dark);
  background: var(--brand-mint);
  border-color: var(--brand-mint);
  font-size: 0.76rem;
}

.product-solution-card__footer > .card-cta:hover {
  color: var(--brand-dark);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.industry-solutions__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.64fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.industry-solutions__heading h3 {
  max-width: 720px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.industry-solutions__heading > p {
  margin: 0;
  color: #55556b;
  font-size: 0.9rem;
  line-height: 1.75;
}

.solution-list {
  border-top: 1px solid rgba(12, 12, 22, 0.15);
}

.solution-row {
  display: grid;
  min-height: 132px;
  grid-template-columns: 54px minmax(220px, 0.7fr) minmax(320px, 1fr) 36px;
  gap: 26px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(12, 12, 22, 0.15);
  transition: padding 180ms ease, background 180ms ease;
}

.solution-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.solution-row__number {
  color: #4b4bd1;
  font-size: 0.72rem;
  font-weight: 700;
}

.solution-row h4,
.solution-row p {
  margin: 0;
}

.solution-row h4 {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
}

.solution-row p {
  color: #494960;
  font-size: 0.88rem;
  line-height: 1.7;
}

.solution-row__arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(12, 12, 22, 0.2);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.solution-row:hover .solution-row__arrow {
  background: var(--brand-mint);
  transform: rotate(8deg);
}

/* Belief */
.belief {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--brand-dark);
}

.belief__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.belief__copy {
  position: sticky;
  top: 135px;
}

.belief__copy > p:not(.eyebrow) {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
  line-height: 1.82;
}

.belief-network {
  position: relative;
  width: 250px;
  height: 160px;
  margin-top: 50px;
}

.belief-network::before,
.belief-network::after {
  position: absolute;
  height: 1px;
  background: rgba(184, 186, 255, 0.34);
  content: "";
  transform-origin: left;
}

.belief-network::before {
  top: 78px;
  left: 62px;
  width: 146px;
  transform: rotate(-22deg);
}

.belief-network::after {
  top: 80px;
  left: 62px;
  width: 165px;
  transform: rotate(25deg);
}

.belief-network__core {
  position: absolute;
  top: 44px;
  left: 18px;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--brand-dark);
  background: var(--brand-primary);
  border-radius: 22px;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.belief-network__node {
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--brand-mint);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(185, 240, 215, 0.65);
}

.belief-network__node--1 { top: 15px; right: 22px; }
.belief-network__node--2 { right: 0; bottom: 18px; }
.belief-network__node--3 { right: 70px; bottom: 0; }

.principle-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.principle > span {
  color: var(--brand-mint);
  font-size: 0.7rem;
  font-weight: 700;
}

.principle h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 600;
}

.principle p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

/* Work */
.work {
  background: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 22px;
}

.project-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: 22px;
  aspect-ratio: 1 / 1;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card__image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(12, 12, 22, 0.8);
  border-radius: 999px;
  font-size: 0.7rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
}

.project-card:hover .project-card__image img {
  transform: scale(1.045);
}

.project-card:hover .project-card__image span {
  opacity: 1;
  transform: translateY(0);
}

.project-card__body {
  padding: 22px 4px 0;
}

.project-card__body > div > p {
  margin-bottom: 6px;
  color: #4b4bdd;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 600;
}

.project-card h3 a:hover {
  color: #4848df;
}

.project-card__body > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.section-action {
  margin-top: 55px;
  text-align: center;
}

.section-action__cta {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.section-action__cta:hover {
  color: #fff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 28px rgba(102, 102, 255, 0.24);
}

/* Why */
.why {
  background: var(--surface-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-card {
  min-height: 270px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.45);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-card > span {
  display: block;
  margin-bottom: 62px;
  color: #4a4ad7;
  font-size: 0.7rem;
  font-weight: 700;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.why-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Process */
.process {
  background: #fff;
}

.process-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 34px 34px 32px 0;
  border-bottom: 1px solid var(--line);
}

.process-step:not(:nth-child(3n)) {
  margin-right: 34px;
  border-right: 1px solid var(--line);
}

.process-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 45px;
  color: var(--brand-dark);
  background: var(--brand-periwinkle);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* About */
.about {
  background: var(--page);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.about__visual {
  position: sticky;
  top: 120px;
  min-height: 610px;
  overflow: hidden;
  background: #e8e9ee;
  border-radius: 34px;
}

.about__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(12, 12, 22, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.about__visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 158%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -54%);
}

.about__fact {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  color: #fff;
  background: rgba(12, 12, 22, 0.86);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}

.about__fact span {
  color: var(--brand-mint);
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.about__fact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.about__copy > p:not(.eyebrow) {
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.purpose-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.purpose-grid article:first-child {
  background: var(--brand-periwinkle);
}

.purpose-grid h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.purpose-grid p {
  margin: 0;
  color: #515166;
  font-size: 0.82rem;
}

.regional-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-top: 32px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.regional-note > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--brand-mint);
  border: 2px solid var(--brand-dark);
  border-radius: 50%;
}

.regional-note h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.regional-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Contact */
.contact {
  position: relative;
  color: #fff;
  background: var(--brand-dark);
}

.contact::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 90%, rgba(102, 102, 255, 0.17), transparent 28%);
  content: "";
  pointer-events: none;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 560px);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
  justify-content: space-between;
}

.contact__intro {
  position: static;
}

.contact__intro > p:not(.eyebrow) {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 50px;
}

.contact-details a,
.contact-details p {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a:hover {
  color: var(--brand-mint);
}

.contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  color: var(--brand-dark);
  background: linear-gradient(145deg, #fff 0%, #fafaff 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.contact-form__header {
  display: grid;
  gap: 8px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(12, 12, 22, 0.1);
}

.contact-form__header p {
  margin: 0;
  color: #5050df;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form__header h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
}

.contact-form__header > span {
  max-width: 46ch;
  color: #68687d;
  font-size: 0.86rem;
  line-height: 1.65;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form__field {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.contact-form__field > span:first-child {
  color: #444457;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-form__field > span:first-child small {
  margin-left: 5px;
  color: #8a8a9b;
  font-size: 0.68rem;
  font-weight: 600;
}

.contact-form input:not([type="hidden"]):not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--brand-dark);
  background: #f7f7fb;
  border: 1px solid rgba(12, 12, 22, 0.12);
  border-radius: 12px;
  outline: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:not([type="hidden"]):not([type="checkbox"]) {
  min-height: 52px;
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9494a5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(102, 102, 255, 0.1);
}

.contact-form__meta {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  color: #878798;
  font-size: 0.7rem;
  line-height: 1.4;
}

.contact-form__meta small:last-child {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.contact-form__consent {
  display: flex !important;
  gap: 11px !important;
  align-items: flex-start;
  margin-bottom: 24px;
  color: #5d5d70;
  font-size: 0.75rem;
  line-height: 1.5;
}

.contact-form__consent input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--brand-primary);
}

.contact-form__consent a {
  color: #4545d7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.contact-form__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: #555568;
  font-size: 0.8rem;
}

.form-status.is-success {
  color: #126343;
}

.form-status.is-error {
  color: #9d1f35;
}

/* Footer */
.new-footer {
  padding: 75px 0 24px;
  color: #fff;
  background: #07070d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.new-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-footer__top p {
  margin: 0;
  color: var(--brand-periwinkle);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.new-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  padding: 56px 0;
}

.new-footer__links > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.new-footer h2 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.36);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-footer__links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.new-footer__links a:hover {
  color: var(--brand-mint);
}

.new-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

.new-footer__bottom p {
  margin: 0;
}

.new-footer__bottom a:hover {
  color: #fff;
}

/* Reveal motion */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .header-cta {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.4vw, 5.4rem);
  }

  .hero-system__frame {
    min-height: 540px;
  }

  .service-grid,
  .why-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-solution-card {
    min-height: 530px;
  }

  .process-step:not(:nth-child(3n)) {
    margin-right: 0;
    border-right: 0;
  }

  .process-step:nth-child(odd) {
    margin-right: 34px;
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 74px;
  }

  .shell {
    width: min(100% - 36px, 720px);
  }

  .site-header__inner {
    height: var(--header-height);
    min-height: var(--header-height);
  }

  .js .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .js .site-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding-top: 30px;
    padding-right: max(18px, calc((100vw - 720px) / 2));
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
    padding-left: max(18px, calc((100vw - 720px) / 2));
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--brand-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
    -webkit-overflow-scrolling: touch;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .js .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
  }

  .js .site-nav a::after {
    display: none;
  }

  html:not(.js) .site-header {
    position: relative;
    background: var(--brand-dark);
  }

  html:not(.js) .site-header__inner {
    height: auto;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  html:not(.js) .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 0;
    padding-bottom: 8px;
  }

  html:not(.js) .site-nav a {
    padding-block: 5px;
  }

  html:not(.js) .hero__grid {
    padding-top: 72px;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .hero-system {
    max-width: 610px;
    width: 100%;
    margin: 20px auto 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .product-suite__grid,
  .industry-solutions__heading {
    grid-template-columns: 1fr;
  }

  .industry-solutions__heading {
    gap: 20px;
  }

  .product-solution-card {
    min-height: 0;
  }

  .solution-row {
    grid-template-columns: 42px 1fr 34px;
  }

  .solution-row p {
    grid-column: 2 / 4;
  }

  .solution-row__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .belief__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .belief__copy,
  .about__visual,
  .contact__intro {
    position: relative;
    top: auto;
  }

  .belief-network {
    margin-bottom: 20px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__visual {
    min-height: 520px;
  }

  .contact__grid {
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .js .site-nav {
    padding-right: max(14px, calc((100vw - 560px) / 2));
    padding-left: max(14px, calc((100vw - 560px) / 2));
  }

  .hero__grid {
    padding-top: 128px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero-system__frame {
    min-height: 470px;
    border-radius: 26px;
  }

  .hero-system__frame::before {
    top: 100px;
    width: 290px;
    height: 290px;
  }

  .hero-system__frame::after {
    top: 138px;
    width: 215px;
    height: 215px;
  }

  .system-node {
    width: 126px;
    min-height: 58px;
    padding: 9px 11px;
    font-size: 0.62rem;
  }

  .system-node--1 { top: 34px; left: 12px; }
  .system-node--2 { top: 70px; right: 10px; }
  .system-node--3 { bottom: 74px; left: 10px; }
  .system-node--4 { right: 12px; bottom: 40px; }

  .trust-item {
    padding: 22px 14px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2,
  .belief h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .service-grid,
  .project-grid,
  .why-grid,
  .process-list,
  .purpose-grid,
  .contact-form__row,
  .new-footer__links {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .product-suite {
    padding: 8px;
    border-radius: 27px;
  }

  .product-suite__grid {
    gap: 8px;
  }

  .product-solution-card {
    padding: 24px;
    border-radius: 21px;
  }

  .product-solution-card__top,
  .product-solution-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-solution-card__models {
    justify-content: flex-start;
  }

  .product-solution-card__features {
    grid-template-columns: 1fr;
  }

  .service-card .card-cta,
  .product-solution-card__footer > .card-cta,
  .section-action__cta {
    width: 100%;
    justify-content: space-between;
  }

  .solution-row {
    min-height: 0;
    grid-template-columns: 34px 1fr 32px;
    gap: 14px;
    padding: 22px 0;
  }

  .solution-row p {
    font-size: 0.82rem;
  }

  .project-card__image span {
    opacity: 1;
    transform: none;
  }

  .why-card {
    min-height: 230px;
  }

  .why-card > span {
    margin-bottom: 40px;
  }

  .process-step,
  .process-step:nth-child(odd) {
    min-height: 0;
    padding: 28px 0;
    margin-right: 0;
    border-right: 0;
  }

  .process-step > span {
    margin-bottom: 25px;
  }

  .about__visual {
    min-height: 430px;
  }

  .about__visual img {
    width: 185%;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .contact-form__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .contact-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__actions .button {
    width: 100%;
  }

  .new-footer__top,
  .new-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .new-footer__links {
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
