:root {
  --navy-950: #03111f;
  --navy-900: #061a2d;
  --navy-800: #0b2c45;
  --navy-700: #12425f;
  --aqua-500: #16c8dc;
  --aqua-400: #4be0eb;
  --aqua-100: #dffafd;
  --sand-100: #f5f1e8;
  --sand-200: #e7ddca;
  --sand-400: #bea47d;
  --paper: #fbfaf6;
  --white: #fff;
  --ink: #071b2b;
  --muted: #597080;
  --line: rgba(7, 27, 43, 0.14);
  --shell: min(1320px, calc(100vw - 80px));
  --radius-lg: 30px;
  --radius-md: 20px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

.legal-body {
  background: var(--paper);
}

.legal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, .92);
  backdrop-filter: blur(14px);
}

.legal-header .brand {
  color: var(--navy-900);
}

.legal-header .legal-back {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.legal-header .legal-back span {
  color: #0a7890;
  font-size: 18px;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin-inline: auto;
  padding-block: 100px 120px;
}

.legal-page > header {
  margin-bottom: 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-page .eyebrow {
  color: var(--muted);
}

.legal-page h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 7vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}

.legal-page .legal-date {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-page section {
  margin-top: 52px;
}

.legal-page h2 {
  margin: 0 0 18px;
  color: var(--navy-800);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.legal-page h3 {
  margin: 26px 0 12px;
  color: var(--navy-800);
  font-size: 15px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.legal-page p {
  margin: 0 0 14px;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 20px;
}

.legal-page strong {
  color: var(--navy-800);
}

.legal-page a {
  color: #08768d;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(8, 118, 141, .3);
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 28px !important;
  padding: 22px 24px;
  border-left: 3px solid var(--aqua-500);
  border-radius: 0 14px 14px 0;
  background: var(--aqua-100);
}

.legal-mini-footer {
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy-950);
  color: rgba(255, 255, 255, .56);
}

.legal-mini-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  font-size: 10px;
}

.legal-mini-footer nav {
  display: flex;
  gap: 22px;
}

.legal-mini-footer a:hover {
  color: var(--aqua-400);
}

@media (max-width: 620px) {
  .legal-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .legal-header .legal-back {
    font-size: 0;
  }

  .legal-header .legal-back span {
    font-size: 20px;
  }

  .legal-page {
    padding-block: 68px 85px;
  }

  .legal-page > header {
    margin-bottom: 50px;
    padding-bottom: 35px;
  }

  .legal-page h1 {
    font-size: 48px;
  }

  .legal-mini-footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

address {
  font-style: normal;
}

::selection {
  background: var(--aqua-400);
  color: var(--navy-950);
}

.shell {
  width: var(--shell);
  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;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform .2s;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1420px, calc(100vw - 36px));
  min-height: 72px;
  padding: 10px 12px 10px 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: rgba(3, 17, 31, .46);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .12);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background .3s, border-color .3s, box-shadow .3s, top .3s;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, .1);
  background: rgba(3, 17, 31, .9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
}

.brand {
  position: relative;
  display: grid;
  grid-template-columns: 18px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}

.brand-drop {
  grid-row: 1 / 3;
  width: 17px;
  height: 24px;
  transform: rotate(45deg);
  border-radius: 50% 50% 50% 8%;
  background: var(--aqua-400);
  box-shadow: inset -4px -5px 7px rgba(0, 82, 117, .22);
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
}

.brand-name span {
  color: var(--aqua-400);
}

.brand-sub {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-nav a::after {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--aqua-400);
  content: "";
  transition: transform .3s var(--ease);
}


.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: grid;
  min-width: 174px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--aqua-400);
  color: var(--navy-950);
  transition: transform .25s var(--ease), background .2s;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}

.header-call span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: -.02em;
}

.mobile-header-call {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 53%;
  transform: scale(1.025);
  animation: hero-in 1.5s var(--ease) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 14, 26, .92) 0%, rgba(3, 19, 34, .67) 42%, rgba(3, 19, 34, .16) 72%),
    linear-gradient(0deg, rgba(2, 14, 26, .55) 0%, transparent 46%, rgba(2, 14, 26, .18) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 9vw;
  align-items: end;
  min-height: max(780px, 100svh);
  padding-block: 190px 125px;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua-400);
  box-shadow: 0 0 0 4px rgba(75, 224, 235, .12);
  content: "";
}

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

.hero h1,
.section-heading h2,
.pools-heading h2,
.founder-copy h2,
.sector-copy h2,
.partners-inner h2,
.contact-inner h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(68px, 7.3vw, 122px);
}

.hero h1 em,
.section-heading h2 em,
.pools-heading h2 em,
.founder-copy h2 em,
.sector-copy h2 em,
.partners-inner h2 em,
.contact-inner h2 em {
  color: var(--aqua-400);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  min-width: 226px;
  min-height: 58px;
  padding: 10px 11px 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s var(--ease), background .2s;
}

.button-primary {
  background: var(--aqua-400);
  color: var(--navy-950);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  background: var(--white);
}

.button-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
}

.icon-svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: currentColor;
}

.icon-arrow-up-right::before {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.icon-arrow-up-right::after {
  position: absolute;
  bottom: 4px;
  left: 2px;
  width: 13px;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: center;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.icon-chevron-left::before,
.icon-chevron-right::before {
  position: absolute;
  top: 4px;
  width: 8px;
  height: 8px;
  content: "";
}

.icon-chevron-left::before {
  left: 5px;
  transform: rotate(45deg);
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.icon-chevron-right::before {
  right: 5px;
  transform: rotate(-45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon-mail::before {
  position: absolute;
  inset: 2px 0;
  border: 2px solid currentColor;
  border-radius: 2px;
  content: "";
}

.icon-mail::after {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-block: 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s;
}

.text-link-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  transition: transform .25s var(--ease), background .2s, border-color .2s, color .2s;
}

.text-link-icon .icon-svg {
  width: 15px;
  height: 15px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.text-link:hover .text-link-icon,
.text-link:focus-visible .text-link-icon {
  transform: translateY(3px);
  border-color: var(--aqua-400);
  background: var(--aqua-400);
  color: var(--navy-950);
}

.hero-proof {
  position: relative;
  align-self: end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(75, 224, 235, .32);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(12, 52, 74, .72), rgba(3, 17, 31, .72)),
    rgba(4, 25, 43, .56);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.hero-proof::before {
  position: absolute;
  top: -95px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 224, 235, .26), transparent 68%);
  content: "";
  opacity: .75;
}

.hero-proof.is-preparing {
  opacity: 0;
  transform: translateY(34px) scale(.96);
}

.hero-proof.is-entering {
  animation: proof-enter 1s var(--ease) both;
}

.hero-proof.is-counting::before {
  animation: proof-glow 2.8s var(--ease) both;
}

.hero-proof.has-counted::before {
  animation: proof-breathe 6s ease-in-out infinite;
}

.hero-proof > * {
  position: relative;
  z-index: 1;
}

.proof-kicker {
  margin: 0 0 24px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
}

.proof-row {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.proof-row::after {
  position: absolute;
  right: 100%;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--aqua-400), transparent);
  content: "";
  transition: right 1.6s var(--ease);
}

.hero-proof.is-counting .proof-row::after,
.hero-proof.has-counted .proof-row::after {
  right: 0;
}

.proof-value {
  display: inline-flex;
  align-items: flex-start;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.07em;
}

.proof-value [data-count] {
  color: var(--white);
  font: inherit;
  line-height: inherit;
}

.proof-row sup {
  display: grid;
  width: 20px;
  height: 20px;
  margin: 1px 0 0 7px;
  place-items: center;
  border-radius: 50%;
  background: rgba(75, 224, 235, .14);
  color: var(--aqua-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.proof-row > span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.5;
}

.proof-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.proof-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua-400);
  box-shadow: 0 0 0 5px rgba(75, 224, 235, .14);
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.intro-band {
  overflow: hidden;
  background: var(--aqua-400);
  color: var(--navy-950);
}

.intro-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.intro-band-inner > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.marquee {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.marquee i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.section {
  padding-block: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 80px;
}

.section-heading h2,
.pools-heading h2,
.sector-copy h2,
.partners-inner h2 {
  font-size: clamp(48px, 5.8vw, 88px);
}

.section-heading h2 em,
.pools-heading h2 em,
.sector-copy h2 em,
.partners-inner h2 em {
  color: #107a91;
}

.section-heading > p,
.sector-copy > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.services {
  background:
    radial-gradient(circle at 92% 12%, rgba(75, 224, 235, .14), transparent 25%),
    var(--paper);
}

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

.service-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .7);
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  border-color: rgba(22, 200, 220, .45);
  box-shadow: 0 26px 70px rgba(8, 40, 59, .12);
}

.service-card-featured {
  background: var(--navy-900);
  color: var(--white);
}

.service-card-featured::after {
  position: absolute;
  right: -40%;
  bottom: -37%;
  width: 125%;
  aspect-ratio: 1;
  border: 1px solid rgba(75, 224, 235, .24);
  border-radius: 44% 56% 67% 33% / 45% 42% 58% 55%;
  content: "";
}

.service-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.service-card-featured .service-index {
  color: rgba(255, 255, 255, .45);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 90px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-100);
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 30px;
}

.service-card-featured .service-icon {
  background: var(--aqua-400);
}

.service-icon-water::before {
  position: absolute;
  width: 20px;
  height: 26px;
  transform: rotate(45deg);
  border: 2px solid currentColor;
  border-radius: 65% 35% 58% 42%;
  content: "";
}

.service-icon-water::after {
  position: absolute;
  width: 7px;
  height: 4px;
  margin: 8px 0 0 -6px;
  transform: rotate(-14deg);
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
  opacity: .65;
  content: "";
}

.service-icon-bolt::before {
  width: 25px;
  height: 34px;
  background: currentColor;
  clip-path: polygon(54% 0, 100% 0, 68% 40%, 94% 40%, 34% 100%, 45% 55%, 13% 55%);
  content: "";
}

.service-icon-loop::before {
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
}

.service-icon-loop::after {
  position: absolute;
  top: 14px;
  left: 15px;
  width: 0;
  height: 0;
  transform: rotate(-22deg);
  border-top: 5px solid transparent;
  border-right: 7px solid currentColor;
  border-bottom: 5px solid transparent;
  content: "";
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.service-card > p {
  position: relative;
  z-index: 1;
  max-width: 335px;
  margin: 18px 0 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card-featured > p {
  color: rgba(255, 255, 255, .63);
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card-featured ul {
  border-color: rgba(255, 255, 255, .16);
}

.service-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.service-card-featured li {
  color: rgba(255, 255, 255, .68);
}

.service-card li::before {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua-500);
  content: "";
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 28px 6px;
  border-bottom: 1px solid var(--line);
}

.service-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-cta a {
  display: flex;
  gap: 44px;
  align-items: center;
  font-weight: 700;
}

.service-cta-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  transition: transform .25s var(--ease), background .2s;
}

.service-cta-icon .icon-svg {
  width: 17px;
  height: 17px;
}

.service-cta a:hover .service-cta-icon {
  transform: translateY(-3px);
  background: var(--aqua-500);
}

.transformation-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.transformation-section::before {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(75, 224, 235, .09);
  border-radius: 47% 53% 44% 56% / 52% 44% 56% 48%;
  content: "";
}

.transformation-heading h2 em {
  color: var(--aqua-400);
}

.transformation-heading > p {
  color: rgba(255, 255, 255, .6);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: start;
}

.comparison-card {
  position: relative;
}

.comparison-card-offset {
  margin-top: 105px;
}

.comparison-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.before-after {
  --position: 50%;
  position: relative;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy-800);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  filter: saturate(.78);
}

.comparison-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--position));
  will-change: clip-path;
}

.comparison-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  padding: 9px 13px;
  border-radius: 100px;
  background: rgba(3, 17, 31, .72);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
  background: rgba(75, 224, 235, .88);
  color: var(--navy-950);
}

.comparison-line {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  transform: translateX(-50%);
  background: var(--white);
  pointer-events: none;
}

.comparison-line::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(3, 17, 31, .74);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  content: "";
  backdrop-filter: blur(8px);
}

.comparison-line span {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.comparison-line span:first-child {
  right: 12px;
}

.comparison-line span:last-child {
  left: 12px;
}

.comparison-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-range:focus-visible + * {
  outline: 2px solid var(--aqua-400);
}

.comparison-card > p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.7;
}

.pools-section {
  background: var(--sand-100);
}

.pools-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
}

.pool-gallery {
  display: grid;
  grid-template-columns: .95fr 1.15fr .9fr;
  gap: 18px;
  align-items: start;
}

.pool-shot {
  position: relative;
  margin: 0;
}

.pool-shot-a {
  margin-top: 0;
}

.pool-shot-b {
  margin-top: 0;
}

.pool-shot-c {
  margin-top: 0;
}

.pool-shot img {
  width: 100%;
  height: clamp(480px, 54vw, 760px);
  object-fit: cover;
  border-radius: 24px;
}

.pool-shot-a img {
  object-position: 50% 58%;
}

.pool-shot-b img {
  object-position: 50% 50%;
}

.pool-shot-c img {
  object-position: 50% 60%;
}

.pool-shot figcaption {
  display: flex;
  justify-content: space-between;
  padding: 15px 4px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.expertise-section {
  padding-bottom: 0;
  background: var(--navy-900);
  color: var(--white);
}

.expertise-section .section-heading > p {
  color: rgba(255, 255, 255, .6);
}

.expertise-section .section-heading h2 em {
  color: var(--aqua-400);
}

.tech-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 150px;
}

.tech-shot {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.tech-shot-wide {
  grid-column: 1 / -1;
  min-height: 520px;
}

.tech-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-shot::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(2, 14, 26, .72));
  content: "";
}

.tech-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.tech-shot figcaption span {
  color: rgba(255, 255, 255, .52);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.founder-card {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

.founder-portrait {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-tag {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(3, 17, 31, .82);
  color: rgba(255, 255, 255, .88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 120px);
}

.founder-copy .eyebrow {
  color: var(--muted);
}

.founder-copy h2 {
  font-size: clamp(52px, 5.5vw, 84px);
}

.founder-copy h2 em {
  color: #107a91;
}

.founder-copy blockquote {
  max-width: 720px;
  margin: 42px 0 24px;
  padding-left: 25px;
  border-left: 2px solid var(--aqua-500);
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 27px);
  font-style: italic;
  line-height: 1.5;
}

.founder-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.founder-signature {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.founder-signature > div {
  display: grid;
  gap: 4px;
}

.founder-signature strong {
  font-family: "Manrope", sans-serif;
}

.founder-signature > div span {
  color: var(--muted);
  font-size: 11px;
}

.founder-signature a {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.founder-signature .link-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-100);
  color: #0a7890;
  transition: transform .25s var(--ease), background .2s;
}

.founder-signature a:hover .link-icon,
.founder-signature a:focus-visible .link-icon {
  transform: rotate(45deg);
  background: var(--aqua-400);
}

.numbers-section {
  position: relative;
  overflow: hidden;
  padding-block: 115px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .42), transparent 26%),
    linear-gradient(135deg, #5ce3ec, var(--aqua-400));
}

.numbers-section::before {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(3, 17, 31, .1);
  border-radius: 50%;
  content: "";
}

.numbers-section .shell {
  position: relative;
  z-index: 1;
}

.numbers-section .eyebrow {
  color: rgba(3, 17, 31, .62);
}

.numbers-section .eyebrow::before {
  background: var(--navy-900);
  box-shadow: 0 0 0 4px rgba(3, 17, 31, .1);
}

.numbers-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  align-items: end;
}

.numbers-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5.6vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.06em;
}

.numbers-heading h2 em {
  color: #08778e;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.05em;
}

.numbers-heading > p {
  max-width: 470px;
  margin: 0 0 7px;
  color: rgba(3, 17, 31, .66);
  font-size: 15px;
  line-height: 1.75;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 62px;
}

.number-item {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(3, 17, 31, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 18px 46px rgba(5, 58, 78, .08);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}

.number-item::after {
  position: absolute;
  right: -55px;
  bottom: -68px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(3, 17, 31, .1);
  border-radius: 50%;
  content: "";
}

.number-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 26px 58px rgba(5, 58, 78, .13);
}

.number-item-featured {
  border-color: rgba(255, 255, 255, .08);
  background: var(--navy-950);
  box-shadow: 0 22px 55px rgba(3, 17, 31, .22);
  color: var(--white);
}

.number-item-featured:hover {
  background: var(--navy-900);
}

.number-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 24px;
  border: 1px solid rgba(3, 17, 31, .15);
  border-radius: 100px;
  color: rgba(3, 17, 31, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.number-item-featured .number-index {
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .58);
}

.number-value {
  display: flex;
  align-items: flex-start;
  margin-top: 35px;
}

.number-value strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(56px, 5.3vw, 78px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.08em;
}

.number-value sup {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 6px 0 0 10px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--aqua-400);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.number-item-featured .number-value strong {
  color: var(--aqua-400);
}

.number-item-featured .number-value sup {
  background: var(--aqua-400);
  color: var(--navy-950);
}

.number-item h3 {
  position: relative;
  z-index: 1;
  margin: 27px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.number-item > p {
  position: relative;
  z-index: 1;
  margin: 9px 0 0;
  color: rgba(3, 17, 31, .62);
  font-size: 12px;
  line-height: 1.6;
}

.number-item-featured > p {
  color: rgba(255, 255, 255, .58);
}

.sector-section {
  background: var(--paper);
}

.sector-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  align-items: center;
}

.sector-copy h2 em {
  color: #107a91;
}

.sector-copy > p {
  margin-top: 34px;
}

.sector-copy address {
  margin-top: 45px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy-800);
  font-size: 14px;
  line-height: 1.65;
}

.sector-copy address span {
  display: block;
  margin-bottom: 8px;
  color: #0a7890;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sector-map {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e9eee7;
  box-shadow: 0 26px 70px rgba(8, 40, 59, .12);
}

.sector-map img {
  display: block;
  width: 100%;
  height: auto;
}

.partners-section {
  padding-block: 115px;
  background: var(--sand-100);
}

.partners-inner {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 9vw;
  align-items: center;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.partner-logos figure {
  display: grid;
  grid-column: span 2;
  min-height: 164px;
  margin: 0;
  padding: 25px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 40, 59, .04);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.partner-logos figure:nth-child(4) {
  grid-column: 2 / span 2;
}

.partner-logos figure:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 200, 220, .38);
  box-shadow: 0 20px 42px rgba(8, 40, 59, .09);
}

.partner-logos img {
  width: 100%;
  max-height: 88px;
  object-fit: contain;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 145px;
  background: var(--navy-950);
  color: var(--white);
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  opacity: .24;
  background:
    radial-gradient(circle at 82% 30%, var(--aqua-500), transparent 28%),
    repeating-radial-gradient(ellipse at 85% 110%, transparent 0 34px, rgba(75, 224, 235, .2) 35px 36px);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
  align-items: end;
}

.contact-inner h2 {
  font-size: clamp(58px, 6.3vw, 96px);
}

.contact-actions {
  display: grid;
}

.form-section,
.faq-section {
  padding-block: 100px;
}

.form-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 5vw;
  align-items: start;
}

.form-copy {
  max-width: 520px;
}

.request-form {
  display: grid;
  gap: 24px;
  padding: 42px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(15, 65, 108, .12);
  border-radius: 38px;
  box-shadow: 0 32px 90px rgba(0, 32, 64, .12);
  backdrop-filter: blur(12px);
}

.form-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 40, 78, .04), rgba(255, 255, 255, .5));
  border: 1px solid rgba(15, 65, 108, .08);
}

.form-topline .eyebrow {
  margin: 0 0 8px;
}

.form-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 16px;
  color: var(--aqua-950);
  background: rgba(75, 224, 235, .16);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.request-form label {
  display: grid;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-950);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 65, 108, .16);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.request-form textarea {
  min-height: 170px;
  resize: vertical;
  padding-top: 18px;
}

.request-form select {
  display: none;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(15, 65, 108, .16);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.custom-select-value {
  flex: 1;
  text-align: left;
}

.custom-select-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 12px;
}

.custom-select-options {
  position: absolute;
  z-index: 20;
  width: 100%;
  margin: 8px 0 0;
  padding: 12px 0;
  list-style: none;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 65, 108, .16);
  box-shadow: 0 22px 48px rgba(0, 28, 58, .12);
  max-height: 280px;
  overflow-y: auto;
}

.custom-select-options[hidden] {
  display: none;
}

.custom-select-option {
  padding: 12px 18px;
  cursor: pointer;
  color: var(--navy-950);
  font-size: 14px;
}

.custom-select-option:hover,
.custom-select-option[aria-selected="true"] {
  background: rgba(75, 224, 235, .14);
}

.custom-select-option.placeholder {
  color: rgba(10, 10, 10, .45);
}

.form-fullwidth {
  grid-column: 1 / -1;
}

.form-footer {
  display: grid;
  gap: 18px;
}

.consent-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(14, 71, 118, .06);
  border: 1px solid rgba(15, 65, 108, .12);
  font-size: 13px;
  color: var(--navy-950);
}

.consent-checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--aqua-400);
  border-radius: 6px;
  background: var(--white);
}

.form-feedback {
  min-height: 22px;
  color: var(--navy-950);
  font-size: 13px;
}

.faq-inner {
  display: grid;
  gap: 40px;
}

.faq-grid {
  display: grid;
  gap: 18px;
}

.faq-item {
  border-radius: 28px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 32px 80px rgba(0, 32, 64, .08);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border: none;
  background: transparent;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item button::after {
  content: "\25BE";
  font-size: 14px;
  color: var(--aqua-400);
  transition: transform .25s var(--ease);
}

.faq-item button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 28px 26px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-content p {
  margin: 0;
}

@media (max-width: 940px) {
  .form-layout,
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .request-form {
    padding: 28px;
  }

  .form-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .request-form {
    padding: 28px;
  }

  .faq-item button {
    padding: 20px 20px;
  }

  .faq-content {
    padding: 0 20px 22px;
  }
}

.contact-phone,
.contact-email {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: 24px 62px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.contact-phone > span,
.contact-email > span {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-phone strong,
.contact-email strong {
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 500;
  letter-spacing: -.045em;
  transition: color .2s;
}

.contact-phone i,
.contact-email i {
  grid-row: 1 / 3;
  grid-column: 2;
  display: grid;
  align-self: center;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-400);
  color: var(--navy-950);
  font-style: normal;
  transition: transform .3s var(--ease), background .2s;
}

.contact-phone:hover strong,
.contact-email:hover strong {
  color: var(--aqua-400);
}

.contact-phone:hover i,
.contact-email:hover i {
  transform: translateY(-3px) scale(1.04);
  background: var(--white);
}

.contact-actions > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

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

.mobile-call {
  display: none;
}

@keyframes hero-in {
  from {
    opacity: .45;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes proof-glow {
  0% {
    transform: translate3d(35px, -25px, 0) scale(.72);
    opacity: .28;
  }
  55% {
    opacity: .95;
  }
  100% {
    transform: translate3d(-95px, 105px, 0) scale(1.25);
    opacity: .42;
  }
}

@keyframes proof-enter {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes proof-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(.95);
    opacity: .42;
  }
  50% {
    transform: translate3d(-34px, 28px, 0) scale(1.16);
    opacity: .78;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
