:root {
  --bg: #05070d;
  --bg-lift: #0a0e1a;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-lift: rgba(255, 255, 255, 0.06);
  --line: rgba(120, 190, 255, 0.18);
  --line-strong: rgba(120, 190, 255, 0.42);
  --cyan: #4de3ff;
  --violet: #8b6bff;
  --text: #e9edf5;
  --text-soft: #c3ccdc;
  --muted: #9aa4b8;
  --shell: 1180px;
  --gutter: 24px;
  --nav-h: 92px;
  --radius: 20px;
  --radius-lg: 26px;
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

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

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

body.epai {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--violet);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--text);
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--cyan);
  color: #04060a;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------------------------------------------------------------- shell */

.container {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 780px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.section--hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 52px) 0 120px;
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ------------------------------------------------------- shared type bits */

.accent {
  background: linear-gradient(100deg, #3ec9f5, #8b6bff, #4de3ff, #6ea8ff, #3ec9f5);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accentDrift 9s ease-in-out infinite;
}

@keyframes accentDrift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(77, 227, 255, 0.06);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section__head {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
}

.section__intro {
  color: var(--text-soft);
  font-size: 1.0625rem;
}

.section__intro p + p {
  margin-top: 14px;
}

/* ------------------------------------------------------------------ buttons */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s cubic-bezier(0.22, 0.7, 0.2, 1), box-shadow 0.35s ease,
    border-color 0.35s ease, color 0.35s ease;
}

.btn__label {
  position: relative;
  z-index: 2;
}

@keyframes hueDrift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn--primary {
  background-image: linear-gradient(100deg, #7fd9ff, #4de3ff, #8b6bff, #6ea8ff, #7fd9ff);
  background-size: 280% auto;
  animation: hueDrift 8s ease-in-out infinite;
  color: #04060a;
  box-shadow: 0 0 30px rgba(77, 227, 255, 0.28);
}

/* Sheen sweep, behind the label. */
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.5) 50%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 0.8s cubic-bezier(0.22, 0.7, 0.2, 1);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  color: #04060a;
  animation-duration: 3.2s;
  box-shadow: 0 0 44px rgba(139, 107, 255, 0.5);
}

.btn--primary:hover::before,
.btn--primary:focus-visible::before {
  transform: translateX(130%);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(
    100deg,
    rgba(77, 227, 255, 0.24),
    rgba(139, 107, 255, 0.24),
    rgba(77, 227, 255, 0.24)
  );
  background-size: 260% auto;
  animation: hueDrift 7s ease-in-out infinite;
  transition: opacity 0.35s ease;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: var(--text);
}

.btn--outline:hover::before,
.btn--outline:focus-visible::before {
  opacity: 1;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-row--center {
  margin-top: 40px;
}

/* -------------------------------------------------------------- background */

.fx-field,
.fx-grid,
.fx-orb {
  position: fixed;
  z-index: 0;
  pointer-events: none;
}

.fx-field {
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 18%, rgba(77, 227, 255, 0.1), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(139, 107, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 50% 92%, rgba(77, 227, 255, 0.08), transparent 55%),
    var(--bg);
}

.fx-grid {
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}

.fx-orb {
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  animation: orbDrift 16s ease-in-out infinite;
}

.fx-orb--a {
  width: 340px;
  height: 340px;
  background: var(--cyan);
  top: 6%;
  left: -5%;
}

.fx-orb--b {
  width: 420px;
  height: 420px;
  background: var(--violet);
  top: 42%;
  right: -8%;
  animation-delay: -5s;
}

.fx-orb--c {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  bottom: 4%;
  left: 22%;
  animation-delay: -9s;
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -40px);
  }
}

/* ------------------------------------------------------------------- nav */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 10px var(--gutter);
}

.nav__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav__brand img {
  width: auto;
  height: var(--logo-h, 72px);
  max-height: 72px;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav__links ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--cyan);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__cta {
  padding: 10px 22px;
  border-radius: 999px;
  background-image: linear-gradient(100deg, #7fd9ff, #4de3ff, #8b6bff, #6ea8ff, #7fd9ff);
  background-size: 280% auto;
  animation: hueDrift 8s ease-in-out infinite;
  color: #04060a;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 0 22px rgba(77, 227, 255, 0.3);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  color: #04060a;
  animation-duration: 3.2s;
  box-shadow: 0 0 30px rgba(139, 107, 255, 0.45);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav__toggle[aria-expanded='true'] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded='true'] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded='true'] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------------------------ hero */

/* --- hero background dissolves into the shared fx-field for a seamless join
   into the next section. The mask fades the image (and its darkening overlay)
   to transparent at the base, so the same fixed backdrop shows through the
   hero and every section below it, with no hard rectangle edge. --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 58%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 58%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.1);
  animation: heroDrift 26s ease-in-out infinite alternate;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 13, 0.6) 0%,
    rgba(5, 7, 13, 0.32) 38%,
    rgba(5, 7, 13, 0.62) 78%,
    rgba(5, 7, 13, 0) 100%
  );
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__title {
  max-width: 940px;
  margin: 0 auto 22px;
  font-size: clamp(2.4rem, 5.4vw, 3.4rem);
  line-height: 1.08;
}

.hero__lead {
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--text-soft);
  font-size: 1.0625rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 860px;
  margin: 72px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats__item {
  flex: 1 1 200px;
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats__item:last-child {
  border-right: none;
}

.stats__value {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__label {
  display: block;
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* ------------------------------------------------------------------ boxes */

/* Two columns by default. data-count switches to three where three divides
   evenly, and any lone trailing card spans the full row, so the grid can never
   leave a hole. */
.boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.boxes[data-count='1'] {
  grid-template-columns: minmax(0, 1fr);
  max-width: 640px;
  margin: 0 auto;
}

.boxes[data-count='3'],
.boxes[data-count='6'],
.boxes[data-count='9'] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.boxes > .box:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.boxes[data-count='1'] > .box:last-child:nth-child(odd),
.boxes[data-count='3'] > .box:last-child:nth-child(odd),
.boxes[data-count='6'] > .box:last-child:nth-child(odd),
.boxes[data-count='9'] > .box:last-child:nth-child(odd) {
  grid-column: auto;
}

.box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 42px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  transition: opacity 0.45s ease;
}

.box:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 50px rgba(4, 6, 12, 0.55);
}

.box:hover::after {
  opacity: 1;
}

.box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(77, 227, 255, 0.4));
  transition: transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1);
}

.box__icon .icon {
  width: 32px;
  height: 32px;
}

.box:hover .box__icon {
  transform: translateY(-2px) scale(1.06);
}

.box__title {
  margin-bottom: 10px;
  font-size: 1.1875rem;
  line-height: 1.3;
}

.box__body {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ------------------------------------------------------------------ panel */

.panel {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.panel::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 107, 255, 0.32), transparent 70%);
  pointer-events: none;
}

.panel__body {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.0625rem;
  text-align: center;
}

.panel__body p + p {
  margin-top: 18px;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: milestone;
}

.milestone {
  position: relative;
  padding-top: 24px;
  text-align: center;
}

.milestone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.milestone__date {
  display: block;
  color: var(--cyan);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.milestone__title {
  margin: 8px 0;
  font-size: 1.0625rem;
}

.milestone__body {
  color: var(--muted);
  font-size: 0.9375rem;
}

.panel__link {
  position: relative;
  margin-top: 40px;
  font-size: 0.9375rem;
  text-align: center;
}

.panel__link-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.panel__link a:hover .panel__link-arrow {
  transform: translateX(4px);
}

/* ------------------------------------------------------------------ chips */

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.chip__icon {
  display: inline-flex;
  color: var(--cyan);
}

.chip__icon .icon {
  width: 20px;
  height: 20px;
}

.chip:hover {
  border-color: var(--line-strong);
  background: linear-gradient(160deg, rgba(77, 227, 255, 0.1), rgba(139, 107, 255, 0.06));
  transform: translateY(-3px);
}

/* ------------------------------------------------------------------ split */

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.split__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 260px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 20%, rgba(139, 107, 255, 0.2), transparent 62%);
}

.split__panel img {
  border-radius: 14px;
  filter: drop-shadow(0 0 30px rgba(139, 107, 255, 0.36));
}

.split__mono {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, #3ec9f5, #8b6bff, #4de3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.split__caption {
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split__body {
  color: var(--text-soft);
  font-size: 1.0625rem;
}

.split__body p + p {
  margin-top: 16px;
}

/* ---------------------------------------------------------------- contact */

.contact {
  padding: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(77, 227, 255, 0.08), rgba(139, 107, 255, 0.08));
  text-align: center;
}

.contact__intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-soft);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
}

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(77, 227, 255, 0.38));
}

.contact__icon .icon {
  width: 26px;
  height: 26px;
}

.contact__value {
  display: block;
  margin-bottom: 6px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.contact__meta {
  display: block;
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------- footer */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 44px 0;
  color: var(--muted);
  font-size: 0.8125rem;
  text-align: center;
}

.site-footer p {
  margin: 0 0 6px;
}

.site-footer__copy {
  margin-top: 12px;
}

/* ------------------------------------------------------------- prose page */

.prose {
  color: var(--text-soft);
}

.prose a {
  text-decoration: underline;
}

/* ----------------------------------------------------------------- reveal */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.22, 0.7, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------ breakpoints */

@media (max-width: 1024px) {
  .boxes[data-count='3'],
  .boxes[data-count='6'],
  .boxes[data-count='9'] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .panel {
    padding: 40px;
  }

  .contact {
    padding: 44px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 88px;
  }

  .section {
    padding: 84px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__brand img {
    height: 52px;
  }

  .nav__cta {
    display: none;
  }

  .nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 18px var(--gutter) 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 13, 0.97);
  }

  .nav__links.is-open {
    display: block;
  }

  .nav__links ul {
    flex-direction: column;
    gap: 4px;
  }

  .nav__links a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  .boxes,
  .boxes[data-count='3'],
  .boxes[data-count='6'],
  .boxes[data-count='9'] {
    grid-template-columns: minmax(0, 1fr);
  }

  .box {
    padding: 34px 26px;
  }

  .box__title {
    font-size: 1.125rem;
  }

  .box__body {
    font-size: 0.9688rem;
  }

  .panel,
  .contact {
    padding: 30px 24px;
  }

  .stats {
    gap: 18px 28px;
    margin-top: 46px;
  }

  .section--hero {
    padding: calc(var(--nav-h) + 34px) 0 90px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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