@font-face {
  font-family: 'AeonikTAB';
  src: url('fonts/AeonikTAB-Regular.woff2') format('woff2'),
       url('fonts/AeonikTAB-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AeonikTAB';
  src: url('fonts/AeonikTAB-Medium.woff2') format('woff2'),
       url('fonts/AeonikTAB-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AeonikTAB';
  src: url('fonts/AeonikTAB-Bold.woff2') format('woff2'),
       url('fonts/AeonikTAB-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MagnetikLight';
  src: url('fonts/MagnetikLight/font.woff2') format('woff2'),
       url('fonts/MagnetikLight/font.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-color: #fffdf9;
  --bg-cream: #fbf9f1;
  --footer-cream: #f5f3eb;
  --text-primary: #193969;
  --text-muted: #5d79a2;
  --blue: #193969;
  --medium-blue: #387dd5;
  --light-blue: #86d6d2;
  --pale-blue: #a8e2df;
  --grid-line: #c4dad9;
  --soft-panel: rgba(255, 253, 249, 0.94);
  --shadow-soft: 0 24px 60px rgba(25, 57, 105, 0.12);
  --font-body: 'AeonikTAB', Arial, sans-serif;
  --font-display: 'MagnetikLight', 'AeonikTAB', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

main {
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 50;
  width: 3px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--blue), var(--medium-blue));
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

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

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

button {
  cursor: pointer;
}

img,
video,
svg {
  display: block;
}

img {
  max-width: 100%;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  outline-offset: -1px;
}

svg {
  width: 1em;
  height: 1em;
}

:focus-visible {
  outline: 2px solid var(--medium-blue);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, 1760px);
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  color: #fffdf9;
  transition-property: padding, background-color, color, box-shadow;
  transition-duration: 420ms;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.site-nav.is-scrolled {
  padding-block: 10px;
  color: var(--text-primary);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 1px 0 var(--grid-line);
  backdrop-filter: blur(16px);
}

.brand-mark {
  justify-self: start;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1;
  letter-spacing: 0;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
  min-height: 44px;
  margin-right: clamp(18px, 3vw, 72px);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a,
.nav-menu-button {
  position: relative;
  color: currentColor;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-menu-button svg {
  width: 10px;
  height: 6px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.nav-links a::after,
.nav-menu-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease-out;
}

.nav-links a:hover::after,
.nav-menu-button:hover::after {
  transform: scaleX(1);
}

.pill-button,
.small-pill,
.submit-button {
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition-property: transform, background-color, color, box-shadow, border-color;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.pill-button {
  padding: 6px 26px 6px 6px;
  color: #fffdf9;
  background: var(--blue);
}

.pill-button.primary {
  background: var(--blue);
}

.pill-button.soft {
  color: var(--blue);
  background: rgba(196, 218, 217, 0.7);
}

.pill-button:hover,
.small-pill:hover,
.submit-button:hover {
  transform: translateY(-2px);
}

.pill-button:active,
.small-pill:active,
.submit-button:active {
  transform: scale(0.98);
}

.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: #fffdf9;
  transition-property: transform, background-color;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.pill-button.soft .pill-icon {
  background: #fffdf9;
}

.pill-button:hover .pill-icon {
  transform: translateX(4px);
  background: var(--pale-blue);
}

.pill-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-section {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 560px;
  height: 68svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fffdf9;
  background: transparent;
}

.hero-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 249, 0.11) 0 2px, transparent 2px 62px),
    linear-gradient(90deg, #86d6d2 0%, #387dd5 42%, #193969 78%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(134, 214, 210, 0.52), rgba(25, 57, 105, 0.62) 38%, rgba(25, 57, 105, 0.26)),
    repeating-linear-gradient(90deg, rgba(255, 253, 249, 0.11) 0 2px, transparent 2px 62px),
    linear-gradient(180deg, rgba(25, 57, 105, 0.1), rgba(25, 57, 105, 0.58));
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 10px;
  transform: none;
}

.hero-content h1 {
  max-width: min(92vw, 1320px);
  margin: 0 auto;
  color: #fffdf9;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.45vw, 86px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
  animation: heroTextIn 900ms cubic-bezier(.22, 1, .36, 1) both 140ms;
}

.hero-card-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: none;
  transform: none;
}

.content-stage {
  --section-bar-lift: 0px;
  --section-bar-progress: 0;
  position: relative;
  isolation: isolate;
  z-index: 6;
  width: 100%;
  margin: clamp(-320px, calc(-13svh - 85px), -205px) 0 0;
  overflow: hidden;
  transform: translate3d(0, var(--section-bar-lift), 0);
  will-change: transform;
}

.content-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1860px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--grid-line);
  border-radius: 14px;
  background: var(--bg-cream);
  box-shadow: var(--shadow-soft);
}

.content-shell > * {
  position: relative;
  z-index: 2;
}

.framed-panel {
  position: relative;
}

.intro-panel {
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.7), rgba(255, 253, 249, 0.56));
  border: 0;
  border-bottom: 1px solid var(--grid-line);
  box-shadow: none;
  min-height: clamp(260px, 34svh, 370px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 44px);
  animation: heroTextIn 900ms cubic-bezier(.22, 1, .36, 1) both 360ms;
}

.intro-panel p {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.45vw, 46px);
  line-height: 1.16;
  text-align: center;
  text-wrap: balance;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 4px;
  height: 4px;
  background: var(--grid-line);
}

.corner.top-left {
  top: 24px;
  left: 24px;
}

.corner.top-right {
  top: 24px;
  right: 24px;
}

.corner.bottom-left {
  bottom: 24px;
  left: 24px;
}

.corner.bottom-right {
  right: 24px;
  bottom: 24px;
}

.page-section {
  padding: clamp(78px, 8vw, 132px) 0;
  background: transparent;
  scroll-margin-top: 92px;
}

.product-section {
  padding-top: clamp(28px, 3vw, 52px);
}

.product-section .section-rule {
  margin-bottom: clamp(34px, 3.2vw, 52px);
}

.section-rule {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(54px, 6vw, 96px);
}

.section-rule::before,
.section-rule::after {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--grid-line);
}

.section-rule span {
  width: 100%;
  height: 1px;
  background: var(--grid-line);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(420px, 1.36fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: center;
}

.product-copy {
  padding-left: min(20%, 140px);
}

.muted-heading {
  margin: 0 0 26px;
  color: #b9c1cf;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-bottom: 1px solid transparent;
}

.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 0;
  color: #b9c1cf;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 42px);
  line-height: 1.05;
  transition-property: color, transform;
  transition-duration: 260ms;
  transition-timing-function: ease-out;
}

.accordion-item.active button {
  color: var(--text-primary);
}

.accordion-item button:hover {
  color: var(--medium-blue);
  transform: translateX(5px);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition-property: max-height, opacity;
  transition-duration: 360ms, 220ms;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1), ease-out;
}

.accordion-item.active .accordion-body {
  max-height: 280px;
  opacity: 1;
}

.accordion-body p {
  margin: 0;
  max-width: 460px;
  color: var(--text-primary);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.38;
  text-wrap: pretty;
}

.small-pill {
  width: max-content;
  margin-top: 18px;
  padding: 0 24px;
  color: var(--blue);
  background: rgba(196, 218, 217, 0.68);
}

.product-visual {
  position: relative;
  min-height: clamp(320px, 33vw, 560px);
  border-radius: 0;
  overflow: hidden;
  --mesh-progress: 0;
  background: transparent;
}

.product-visual::before {
  content: none;
}

.product-visual::after {
  content: none;
}

.mesh-plane {
  position: absolute;
  left: 4%;
  right: 4%;
  height: 48%;
  top: 24%;
  background-image: radial-gradient(var(--medium-blue) 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  transform: translateY(calc(var(--mesh-progress) * -24px)) rotateX(62deg) rotateZ(calc(45deg + var(--mesh-progress) * 5deg));
  transform-origin: center;
  opacity: calc(0.32 + var(--mesh-progress) * 0.38);
  filter: drop-shadow(0 18px 20px rgba(25, 57, 105, 0.16));
  transition: transform 120ms linear, opacity 120ms linear;
}

.plane-two {
  top: 34%;
  transform: translateY(calc(var(--mesh-progress) * -34px)) rotateX(62deg) rotateZ(calc(45deg - var(--mesh-progress) * 4deg)) scale(0.74);
  opacity: calc(0.12 + var(--mesh-progress) * 0.18);
}

.plane-three {
  top: 18%;
  transform: translateY(calc(var(--mesh-progress) * 18px)) rotateX(62deg) rotateZ(calc(45deg + var(--mesh-progress) * 9deg)) scale(0.54);
  opacity: calc(0.08 + var(--mesh-progress) * 0.14);
}

.section-center {
  text-align: center;
}

.section-center h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 300;
  line-height: 1;
  text-wrap: balance;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5vw, 86px);
  margin-top: clamp(52px, 6vw, 92px);
  text-align: center;
}

.trust-card {
  display: grid;
  justify-items: center;
  align-content: start;
}

.trust-card svg {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
}

.trust-card h3 {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 300;
  line-height: 1;
  text-wrap: balance;
}

.trust-card p {
  max-width: 360px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.32;
  text-wrap: pretty;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 68px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(100%, 1500px);
  margin: 54px auto 0;
}

.news-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--grid-line);
  padding: 14px;
  color: var(--text-primary);
  background: rgba(255, 253, 249, 0.42);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  object-fit: cover;
  margin-bottom: 20px;
}

.news-card span {
  color: var(--medium-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 12px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.7vw, 29px);
  font-weight: 300;
  line-height: 1.08;
  text-wrap: balance;
}

.news-card a {
  margin-top: auto;
  width: max-content;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-card a::after {
  content: " ->";
}

.cta-section {
  padding-top: clamp(70px, 7vw, 112px);
}

.cta-bento {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.bento-card {
  border: 1px solid rgba(196, 218, 217, 0.86);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(251, 249, 241, 0.9)),
    var(--bg-color);
  box-shadow: 0 22px 60px rgba(25, 57, 105, 0.08);
}

.cta-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 58px);
  text-align: left;
  overflow: hidden;
}

.cta-copy h2 {
  margin: 0;
  max-width: 660px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.9vw, 82px);
  font-weight: 300;
  line-height: 0.9;
  text-wrap: balance;
}

.cta-copy h2 span {
  display: block;
}

.cta-copy h2::first-line {
  color: var(--text-primary);
}

.cta-copy h2 {
  background: linear-gradient(91deg, var(--medium-blue) 42%, var(--light-blue) 78%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.cta-copy h2 span {
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

.cta-copy p {
  max-width: 540px;
  margin: 28px 0 26px;
  color: var(--text-primary);
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.3;
  text-wrap: pretty;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 0;
}

.contact-form {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(24px, 3vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form label:nth-of-type(4),
.submit-button,
.form-feedback {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--grid-line);
  border-radius: 14px;
  background: #fffdf9;
  color: var(--text-primary);
  padding: 15px 16px;
  min-height: 48px;
  transition-property: border-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--medium-blue);
  box-shadow: 0 0 0 3px rgba(56, 125, 213, 0.12);
  outline: none;
}

.submit-button {
  width: 100%;
  color: #fffdf9;
  background: var(--blue);
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  text-align: center;
  color: var(--medium-blue);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: clamp(70px, 9vw, 140px) 0 48px;
  background: rgba(245, 243, 235, 0.76);
  scroll-margin-top: 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.25fr;
  gap: clamp(28px, 5vw, 80px);
}

.footer-brand a {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 72px);
  line-height: 0.9;
}

.footer-brand p,
.footer-quality p,
.footer-disclaimer,
.copyright {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.35;
}

.footer-column,
.footer-quality {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column h3,
.footer-quality h3 {
  margin: 0 0 14px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 300;
}

.footer-column a {
  color: var(--text-primary);
  font-size: 15px;
  transition: color 180ms ease-out;
}

.footer-column a:hover {
  color: var(--medium-blue);
}

.quality-pill {
  width: max-content;
  margin: 0;
  border: 1px solid var(--grid-line);
  border-radius: 999px;
  padding: 7px 13px;
  background: #fffdf9;
}

.footer-quality p:last-child {
  margin-top: 8px;
}

.footer-disclaimer {
  margin: clamp(42px, 6vw, 82px) 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--grid-line);
  max-width: 1160px;
}

.copyright {
  margin: 26px 0 0;
  font-size: 13px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  transition-duration: 640ms;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

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

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.news-card:nth-child(2) {
  transition-delay: 70ms;
}

.news-card:nth-child(3) {
  transition-delay: 140ms;
}

.news-card:nth-child(4) {
  transition-delay: 210ms;
}

@media (max-width: 1180px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .product-grid,
  .trust-grid,
  .footer-grid,
  .cta-bento {
    grid-template-columns: 1fr;
  }

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

  .product-visual {
    min-height: 420px;
  }

  .product-copy {
    padding-left: 0;
  }

  .cta-copy {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1760px);
  }

  .site-nav {
    padding: 16px 18px;
    gap: 12px;
  }

  .brand-mark {
    font-size: 23px;
  }

  .nav-cta {
    padding-right: 14px;
    font-size: 11px;
  }

  .pill-icon {
    width: 32px;
    height: 32px;
  }

  .hero-section {
    min-height: 520px;
    height: 62svh;
  }

  .hero-content h1 {
    max-width: 12ch;
    font-size: clamp(38px, 11vw, 62px);
  }

  .hero-card-wrap {
    bottom: auto;
  }

  .content-stage {
    margin-top: clamp(-122px, -18svh, -84px);
  }

  .content-shell {
    width: min(calc(100% - 24px), 1860px);
    border-radius: 12px;
  }

  .intro-panel {
    min-height: 184px;
    padding: 34px 24px;
  }

  .intro-panel p {
    font-size: clamp(28px, 7.8vw, 40px);
  }

  .product-section {
    padding-top: 48px;
  }

  .product-visual {
    min-height: 300px;
  }

  .accordion-item button {
    font-size: clamp(25px, 9vw, 38px);
  }

  .trust-grid {
    gap: 58px;
  }

  .news-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-of-type(4),
  .submit-button,
  .form-feedback {
    grid-column: auto;
  }

  .cta-copy h2 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .cta-copy {
    padding: 28px;
    border-radius: 22px;
  }

  .footer-grid {
    gap: 34px;
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .content-stage {
    transform: none;
    will-change: auto;
  }
}
