@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/Poppins-300.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/Poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/Poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/Poppins-700.woff2") format("woff2");
}

:root {
  --white: #ffffff;
  --off-white: #f5f5f5;
  --ink: #212121;
  --body: #363636;
  --blue: #044f70;
  --cyan: #199eaf;
  --border: #eef1fa;
  --container: 1366px;
  --gutter: clamp(2rem, 1.912vw + 1.388rem, 4rem);
  --header-height: clamp(8rem, 1.912vw + 7.388rem, 10rem);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

.responsive-picture {
  display: block;
}

.responsive-picture img {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) - var(--gutter)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 1rem 1.4rem;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  background: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-inline: var(--gutter);
}

.site-logo {
  display: block;
  width: 13rem;
  line-height: 0;
}

.site-logo img,
.footer-logo img {
  width: 100%;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.main-nav a,
.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--blue);
}

.main-nav .product-nav-link,
.mobile-nav .product-nav-link {
  position: relative;
  color: var(--blue);
  font-weight: 600;
}

.main-nav .product-nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.7rem;
  left: 0;
  height: 0.2rem;
  content: "";
  background: var(--cyan);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 280ms ease;
}

.main-nav .product-nav-link:hover::after,
.main-nav .product-nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.quote-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 4.8rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--blue);
  border-radius: 1rem;
  color: #000000;
  background: var(--white);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 500ms ease, background-color 500ms ease, transform 500ms ease;
}

.quote-button svg,
.submit-button svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-button:hover,
.submit-button:hover {
  color: var(--off-white);
  background: var(--blue);
  transform: translateY(-1rem);
}

.menu-button,
.menu-close,
.menu-backdrop {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 4rem;
  padding: 0;
  color: var(--blue);
}

.menu-button svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-menu,
.menu-backdrop {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 80vh;
  overflow: hidden;
  align-items: flex-end;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 50%, rgba(4, 79, 112, 0.88) 80%);
}

.hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
}

.hero-copy {
  display: flex;
  width: 63%;
  flex-direction: column;
  gap: 2rem;
  color: var(--off-white);
}

.hero-copy p {
  font-size: 2.5rem;
  line-height: 1.6;
}

.hero-rule {
  width: 98%;
  border-top: 1px solid currentColor;
}

.hero h1 {
  font-size: 7rem;
  font-weight: 600;
  line-height: 1.2;
}

.studio {
  overflow: hidden;
  padding-block: 15rem;
  color: var(--off-white);
  background: var(--blue);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(4rem, 5.258vw + 0.317rem, 7.5rem);
}

.studio-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.studio-copy h2 {
  font-size: clamp(3rem, 1.912vw + 2.388rem, 5rem);
  font-weight: 600;
  line-height: 1.2;
}

.studio-copy p {
  font-size: 1.5rem;
  line-height: 1.65;
}

.studio-visual {
  position: relative;
  min-height: 50rem;
}

.studio-image {
  position: absolute;
  width: 60%;
  max-width: 100%;
  object-fit: cover;
  animation: float-vertical 6s ease-in-out infinite alternate;
}

.studio-image-main {
  top: 0;
  left: 0;
  aspect-ratio: 0.707;
  object-position: 58% center;
}

.studio-image-secondary {
  top: 70%;
  left: 30%;
  aspect-ratio: 1.78;
  animation-delay: -3s;
}

@keyframes float-vertical {
  from { transform: translate3d(0, -0.6rem, 0); }
  to { transform: translate3d(0, 0.6rem, 0); }
}

.solutions {
  padding-block: 15rem;
  overflow: hidden;
}

.solutions h2 {
  margin-bottom: 5rem;
  color: var(--ink);
  font-size: clamp(3rem, 1.912vw + 2.388rem, 5rem);
  font-weight: 600;
  line-height: 1.4;
}

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

.service-card {
  position: relative;
  display: block;
  min-width: 0;
  height: 50rem;
  overflow: hidden;
  cursor: pointer;
}

.service-card-featured {
  grid-column: 1 / -1;
}

.service-card-link {
  color: inherit;
  text-decoration: none;
}

.service-card-inner,
.service-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card-face {
  display: flex;
  padding: 2rem;
  color: var(--off-white);
  background-color: rgba(33, 33, 33, 0.3);
  transition: transform 500ms ease;
}

.service-card-front {
  z-index: 2;
  align-items: flex-end;
  transform: translateY(0);
}

.service-card-front h3 {
  margin-bottom: 1.2rem;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-card-front p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.service-card-eyebrow {
  display: inline-flex;
  margin-bottom: 1.4rem;
  padding: 0.7rem 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card-featured .service-card-face {
  padding: clamp(2rem, 3vw, 4rem);
}

.service-card-featured .service-card-front h3 {
  font-size: clamp(3.2rem, 3vw, 5rem);
}

.service-card-featured .service-card-front p {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
}

.service-card-back {
  z-index: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--blue);
  transform: translateY(100%);
}

.service-card-back span {
  display: inline-flex;
  padding: 1.2rem 2rem;
  color: var(--ink);
  background: var(--off-white);
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.service-card:hover .service-card-front,
.service-card:focus-visible .service-card-front,
.service-card.is-flipped .service-card-front {
  transform: translateY(-100%);
}

.service-card:hover .service-card-back,
.service-card:focus-visible .service-card-back,
.service-card.is-flipped .service-card-back {
  transform: translateY(0);
}

.service-card:hover .service-card-image,
.service-card:focus-visible .service-card-image {
  transform: scale(1.025);
}

.product-kicker {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-kicker > span {
  width: 3.2rem;
  border-top: 1px solid currentColor;
}

.explore-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.2rem;
}

.explore-button {
  display: inline-flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: color 280ms ease, background-color 280ms ease, transform 280ms ease;
}

.explore-button svg {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.explore-button:hover {
  transform: translate3d(0, -0.3rem, 0);
}

.explore-button:active {
  transform: translate3d(0, -0.1rem, 0) scale(0.98);
}

.explore-button-primary {
  color: var(--white);
  background: var(--blue);
}

.explore-button-primary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
}

.explore-button-secondary:hover {
  color: var(--white);
  background: var(--blue);
}

.explore-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(4, 79, 112, 0.3);
  text-underline-offset: 0.5rem;
  transition: color 240ms ease, text-decoration-color 240ms ease;
}

.explore-text-link:hover {
  color: var(--cyan);
  text-decoration-color: currentColor;
}

.explore-browser-frame {
  overflow: hidden;
  border: 1px solid rgba(4, 79, 112, 0.18);
  background: #dde5e7;
  box-shadow: 0 3rem 7rem rgba(4, 52, 70, 0.16);
}

.explore-browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.explore-browser-frame .responsive-picture {
  width: 100%;
}

.explore-browser-bar {
  display: grid;
  grid-template-columns: 0.7rem 0.7rem 0.7rem minmax(0, 1fr);
  align-items: center;
  gap: 0.6rem;
  min-height: 3.8rem;
  padding: 0.8rem 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  background: #1b3038;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.explore-browser-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.explore-browser-bar span:nth-child(2) {
  opacity: 0.7;
}

.explore-browser-bar span:nth-child(3) {
  opacity: 0.45;
}

.explore-browser-bar b {
  overflow: hidden;
  padding-right: 3rem;
  font-weight: 400;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.explore-browser-bar-light {
  color: var(--body);
  background: var(--white);
}

.explore-browser-bar-light span {
  background: var(--cyan);
}

.explore-home {
  position: relative;
  overflow: hidden;
  padding-block: clamp(9rem, 9.56vw, 15rem);
  background: #edf3f4;
}

.explore-home::before {
  position: absolute;
  top: -35rem;
  right: -25rem;
  width: 75rem;
  height: 75rem;
  border: 1px solid rgba(4, 79, 112, 0.1);
  border-radius: 50%;
  content: "";
}

.explore-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(30rem, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(5rem, 7vw, 11rem);
}

.explore-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.explore-home-copy h2 {
  margin-top: 2.2rem;
  color: var(--blue);
  font-size: clamp(4rem, 4.5vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.explore-home-copy h2 span {
  font-weight: 700;
}

.explore-home-tagline {
  max-width: 52rem;
  margin-top: 2.8rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 2.1vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.explore-home-description {
  max-width: 55rem;
  margin-top: 2rem;
  color: #4b595e;
  font-size: 1.6rem;
  line-height: 1.75;
}

.explore-home-copy .explore-actions {
  margin-top: 3.5rem;
}

.explore-home-visual {
  position: relative;
  display: block;
  padding-top: 2.2rem;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-home-visual:hover {
  transform: translate3d(0, -0.6rem, 0);
}

.explore-live-label {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 1.2rem 3rem rgba(4, 52, 70, 0.12);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explore-live-label i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(25, 158, 175, 0.35);
  animation: explore-pulse 2.4s ease-out infinite;
}

@keyframes explore-pulse {
  0% { box-shadow: 0 0 0 0 rgba(25, 158, 175, 0.35); }
  70%, 100% { box-shadow: 0 0 0 0.8rem rgba(25, 158, 175, 0); }
}

.explore-home-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  color: var(--white);
  background: #1b3038;
}

.explore-home-visual figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.explore-home-visual figcaption strong {
  font-size: 1.3rem;
  font-weight: 500;
}

.pilot-home {
  position: relative;
  overflow: hidden;
  padding-block: clamp(9rem, 9.56vw, 15rem);
  background: #f4f1ea;
}

.pilot-home::before {
  position: absolute;
  bottom: -42rem;
  left: -24rem;
  width: 70rem;
  height: 70rem;
  border: 1px solid rgba(4, 79, 112, 0.1);
  border-radius: 50%;
  content: "";
}

.pilot-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(30rem, 0.75fr);
  align-items: center;
  gap: clamp(5rem, 7vw, 11rem);
}

.pilot-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pilot-home-copy h2 {
  margin-top: 2.2rem;
  color: var(--blue);
  font-size: clamp(4rem, 4.5vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.pilot-home-copy h2 span {
  font-weight: 700;
}

.pilot-home-overline {
  margin-top: 2.8rem;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pilot-home-tagline {
  max-width: 55rem;
  margin-top: 1.4rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 2.1vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.pilot-home-description {
  max-width: 57rem;
  margin-top: 2rem;
  color: #4b595e;
  font-size: 1.6rem;
  line-height: 1.75;
}

.pilot-home-features {
  display: grid;
  width: 100%;
  max-width: 57rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.8rem;
  border-top: 1px solid rgba(4, 79, 112, 0.16);
}

.pilot-home-features li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(4, 79, 112, 0.16);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 500;
}

.pilot-home-features li:nth-child(odd) {
  padding-right: 1.5rem;
}

.pilot-home-features li:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(4, 79, 112, 0.16);
}

.pilot-home-copy .explore-actions {
  margin-top: 3.5rem;
}

.pilot-home-visual {
  display: block;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pilot-home-visual:hover {
  transform: translate3d(0, -0.6rem, 0);
}

.pilot-dashboard-frame {
  overflow: hidden;
  border: 1px solid rgba(4, 79, 112, 0.16);
  background: var(--white);
  box-shadow: 0 3rem 7rem rgba(69, 63, 51, 0.15);
}

.pilot-dashboard-frame .responsive-picture,
.pilot-dashboard-frame img {
  width: 100%;
}

.pilot-dashboard-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pilot-dashboard-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 1.8rem;
  color: var(--blue);
  background: var(--white);
}

.pilot-dashboard-frame figcaption span {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pilot-dashboard-frame figcaption strong {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: right;
}

.explore-product-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(8rem, 9vw, 14rem);
  background: #edf3f4;
}

.explore-product-hero::before,
.explore-product-hero::after {
  position: absolute;
  border: 1px solid rgba(4, 79, 112, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.explore-product-hero::before {
  top: -40rem;
  right: -25rem;
  width: 85rem;
  height: 85rem;
}

.explore-product-hero::after {
  right: 18rem;
  bottom: -18rem;
  width: 36rem;
  height: 36rem;
}

.explore-product-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(32rem, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(5rem, 7vw, 11rem);
}

.explore-product-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.explore-product-intro h1 {
  margin-top: 2.5rem;
  color: var(--blue);
  font-size: clamp(4.8rem, 5vw, 7.6rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.explore-product-intro h1 span {
  font-weight: 700;
}

.explore-product-tagline {
  margin-top: 3.5rem;
  color: var(--ink);
  font-size: clamp(2.6rem, 2.3vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.explore-product-description {
  max-width: 60rem;
  margin-top: 2.5rem;
  color: #4b595e;
  font-size: 1.6rem;
  line-height: 1.8;
}

.explore-product-description strong {
  color: var(--ink);
  font-weight: 600;
}

.explore-product-intro .explore-actions {
  margin-top: 3.5rem;
}

.explore-quick-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  margin-top: 3.5rem;
  color: #5d6e73;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.explore-quick-features li {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.explore-quick-features li:not(:last-child)::after {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
}

.explore-product-visual {
  position: relative;
  margin: 0;
}

.explore-visual-index {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.explore-browser-frame-large {
  transform: rotate(0.7deg);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-product-visual:hover .explore-browser-frame-large {
  transform: rotate(0deg) translate3d(0, -0.4rem, 0);
}

.explore-product-visual > figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 3rem;
  width: min(60rem, 84%);
  margin-top: 2.5rem;
  margin-left: auto;
}

.explore-product-visual > figcaption span {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.explore-product-visual > figcaption strong {
  color: #4b595e;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.explore-modes {
  position: relative;
  overflow: clip;
  padding-block: clamp(10rem, 11vw, 17rem);
  background: #f8f9f8;
}

.explore-modes-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(30rem, 0.85fr);
  align-items: end;
  gap: clamp(5rem, 9vw, 14rem);
}

.explore-modes-heading h2 {
  margin-top: 2rem;
  color: var(--ink);
  font-size: clamp(3.8rem, 4.4vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.explore-modes-heading > p {
  max-width: 56rem;
  padding-bottom: 0.7rem;
  color: #5d6e73;
  font-size: 1.55rem;
  line-height: 1.8;
}

.explore-mode-nav {
  position: sticky;
  z-index: 5;
  top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(5rem, 6vw, 8rem);
  border: 1px solid rgba(4, 79, 112, 0.16);
  background: rgba(248, 249, 248, 0.92);
  box-shadow: 0 1.8rem 4rem rgba(4, 52, 70, 0.07);
  backdrop-filter: blur(1.4rem);
}

.explore-mode-nav a {
  display: flex;
  min-width: 0;
  min-height: 6.2rem;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-right: 1px solid rgba(4, 79, 112, 0.12);
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  transition: color 220ms ease, background-color 220ms ease;
}

.explore-mode-nav a:last-child {
  border-right: 0;
}

.explore-mode-nav a:hover {
  color: var(--white);
  background: var(--blue);
}

.explore-mode-nav a:active {
  background: #15313c;
}

.explore-mode-nav a span {
  color: var(--cyan);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.explore-mode-list {
  margin-top: clamp(8rem, 9vw, 14rem);
}

.explore-mode,
.explore-mode-interior {
  scroll-margin-top: 10rem;
}

.explore-mode {
  display: grid;
  grid-template-columns: minmax(28rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(5rem, 8vw, 12rem);
  padding-top: clamp(7rem, 8vw, 12rem);
  border-top: 1px solid rgba(4, 79, 112, 0.16);
}

.explore-mode + .explore-mode,
.explore-mode-interior {
  margin-top: clamp(10rem, 12vw, 18rem);
}

.explore-mode-reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(28rem, 0.72fr);
}

.explore-mode-reverse .explore-mode-copy {
  order: 2;
}

.explore-mode-reverse .explore-mode-visual {
  order: 1;
}

.explore-mode-copy {
  max-width: 51rem;
}

.explore-mode-number {
  color: var(--cyan);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.explore-mode-copy h3,
.explore-mode-interior-heading h3 {
  margin-top: 2rem;
  color: var(--blue);
  font-size: clamp(3rem, 3vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.explore-mode-copy > p:not(.explore-mode-number) {
  margin-top: 2.4rem;
  color: #526368;
  font-size: 1.5rem;
  line-height: 1.8;
}

.explore-mode-copy ul {
  margin-top: 3rem;
  border-top: 1px solid rgba(4, 79, 112, 0.16);
}

.explore-mode-copy li {
  position: relative;
  padding: 1.5rem 0 1.5rem 2.1rem;
  border-bottom: 1px solid rgba(4, 79, 112, 0.12);
  color: #34494f;
  font-size: 1.25rem;
  line-height: 1.5;
}

.explore-mode-copy li::before {
  position: absolute;
  top: 2.15rem;
  left: 0;
  width: 0.7rem;
  border-top: 1px solid var(--cyan);
  content: "";
}

.explore-mode-visual {
  min-width: 0;
  margin: 0;
}

.explore-mode-visual .explore-browser-frame {
  box-shadow: 0 3.5rem 8rem rgba(4, 52, 70, 0.14);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 600ms ease;
}

.explore-mode-visual:hover .explore-browser-frame {
  box-shadow: 0 4.2rem 9rem rgba(4, 52, 70, 0.18);
  transform: translate3d(0, -0.5rem, 0);
}

.explore-mode-interior {
  padding-top: clamp(7rem, 8vw, 12rem);
  border-top: 1px solid rgba(4, 79, 112, 0.16);
}

.explore-mode-interior-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(30rem, 0.9fr);
  align-items: end;
  gap: clamp(5rem, 9vw, 14rem);
}

.explore-mode-interior-heading > p {
  max-width: 58rem;
  padding-bottom: 0.5rem;
  color: #526368;
  font-size: 1.5rem;
  line-height: 1.8;
}

.explore-interior-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: clamp(5rem, 6vw, 8rem);
}

.explore-interior-visuals figure {
  min-width: 0;
  margin: 0;
}

.explore-interior-visuals figcaption {
  padding-top: 1.8rem;
  color: #5d6e73;
  font-size: 1.3rem;
  line-height: 1.6;
}

.explore-interior-visuals figcaption span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.explore-interior-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 5rem;
  border-top: 1px solid rgba(4, 79, 112, 0.16);
  border-bottom: 1px solid rgba(4, 79, 112, 0.16);
}

.explore-interior-features li {
  display: flex;
  min-height: 9rem;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem;
  border-right: 1px solid rgba(4, 79, 112, 0.12);
  color: #34494f;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.45;
}

.explore-interior-features li:last-child {
  border-right: 0;
}

.explore-interior-features span {
  color: var(--cyan);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.explore-journey {
  overflow: hidden;
  padding-block: clamp(10rem, 10vw, 16rem);
  background: var(--white);
}

.explore-section-heading {
  max-width: 86rem;
}

.explore-section-heading h2 {
  margin-top: 2rem;
  color: var(--ink);
  font-size: clamp(3.6rem, 4.1vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.explore-journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(30rem, 0.75fr);
  align-items: center;
  gap: clamp(5rem, 8vw, 12rem);
  margin-top: clamp(6rem, 7vw, 10rem);
}

.explore-lot-visual {
  margin: 0;
}

.explore-lot-visual > figcaption {
  max-width: 56rem;
  margin-top: 2rem;
  color: #65757a;
  font-size: 1.3rem;
  line-height: 1.6;
}

.explore-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.explore-steps li {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: 2.2rem;
  padding-block: 3rem;
  border-top: 1px solid rgba(4, 79, 112, 0.18);
}

.explore-steps li:last-child {
  border-bottom: 1px solid rgba(4, 79, 112, 0.18);
}

.explore-steps li > span {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.explore-steps h3 {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.explore-steps p {
  margin-top: 1rem;
  color: #5d6e73;
  font-size: 1.4rem;
  line-height: 1.7;
}

.explore-capabilities {
  overflow: hidden;
  padding-block: clamp(10rem, 10vw, 16rem);
  color: var(--white);
  background: #15313c;
}

.explore-capabilities-grid {
  display: grid;
  grid-template-columns: minmax(28rem, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(6rem, 10vw, 15rem);
}

.product-kicker-light {
  color: #6cc2ca;
}

.explore-capabilities-intro {
  position: sticky;
  top: calc(var(--header-height) + 4rem);
}

.explore-capabilities-intro h2 {
  margin-top: 2.2rem;
  font-size: clamp(3.6rem, 4.1vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.explore-capabilities-intro > p:last-child {
  max-width: 52rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.5rem;
  line-height: 1.75;
}

.explore-capability-list article {
  display: grid;
  grid-template-columns: 4.2rem minmax(17rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: 2.4rem;
  align-items: start;
  padding-block: 3.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.explore-capability-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.explore-capability-list article > span {
  color: #6cc2ca;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.explore-capability-list h3 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.explore-capability-list p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.35rem;
  line-height: 1.7;
}

.explore-demo {
  padding-block: clamp(8rem, 8vw, 12rem);
  background: #edf3f4;
}

.explore-demo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(30rem, 0.8fr);
  align-items: end;
  gap: clamp(5rem, 10vw, 15rem);
}

.explore-demo h2 {
  margin-top: 2rem;
  color: var(--ink);
  font-size: clamp(3.6rem, 4.1vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.explore-demo-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.6rem;
}

.explore-demo-action p {
  color: #5d6e73;
  font-size: 1.5rem;
  line-height: 1.7;
}

.trust {
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 1rem;
  background: var(--white);
}

.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5rem;
}

.trust h2 {
  color: #010101;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5.258vw + 0.317rem, 7.5rem);
  width: 100%;
}

.trust-grid img {
  width: 100%;
  max-height: 8rem;
  object-fit: contain;
  filter: grayscale(1);
}

.trust-grid .responsive-picture {
  width: 100%;
}

.footer-details {
  padding-top: clamp(4.5rem, 2.868vw + 3.582rem, 7.5rem);
  overflow: hidden;
}

.footer-details-inner {
  display: grid;
  grid-template-columns: 33% 67%;
  align-items: start;
  gap: clamp(2rem, 5.258vw + 0.317rem, 7.5rem);
  padding-bottom: clamp(4.5rem, 2.868vw + 3.582rem, 7.5rem);
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-about h2,
.footer-contact-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
}

.footer-about p,
.footer-contact-item p {
  font-size: 1.4rem;
  line-height: 1.7;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: flex-start;
  gap: 7.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.contact-icon,
.contact-list li > span:first-child {
  flex: 0 0 auto;
  color: var(--blue);
}

.contact-icon svg {
  width: 3rem;
  height: 3rem;
  margin-top: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5.258vw + 0.317rem, 7.5rem);
  padding-block: clamp(2rem, 0.478vw + 1.847rem, 2.5rem);
  border-top: 1px solid var(--border);
}

.footer-logo {
  width: 10rem;
}

.footer-meta {
  font-size: 1.1rem;
  text-align: center;
}

.footer-meta nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

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

.footer-service-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding-block: 2rem 3rem;
  border-top: 1px solid var(--border);
  color: var(--body);
  font-size: 1.2rem;
}

.footer-service-nav > span {
  color: var(--blue);
  font-weight: 600;
}

.footer-service-nav a {
  transition: color 180ms ease;
}

.footer-service-nav a:hover {
  color: var(--blue);
}

.social-list {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.social-icon {
  display: inline-flex;
  width: 4.5rem;
  height: 4.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #010101;
  background: var(--border);
}

.social-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-icon .filled {
  fill: currentColor;
  stroke: none;
}

a.social-icon {
  transition: color 240ms ease, background-color 240ms ease;
}

a.social-icon:hover {
  color: var(--white);
  background: var(--blue);
}

.page-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  padding: 25rem 0 5rem;
  color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(var(--blue), rgba(25, 158, 175, 0.85));
}

.portfolio-hero {
  background-image: url("/assets/optimized/aria-realisation-ortaglia-ensemble-jpg-1280.webp");
}

.page-hero-content {
  position: relative;
}

.page-hero-content h1 {
  font-size: clamp(3.2rem, 2.199vw + 2.496rem, 5.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.page-hero-content p {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 0.191vw + 1.539rem, 1.8rem);
}

.portfolio {
  overflow: hidden;
  padding-block: 15rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.5rem;
}

.portfolio-item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--off-white);
}

.portfolio-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item .responsive-picture {
  width: 100%;
  height: 100%;
}

.portfolio-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 5rem 1.8rem 1.6rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(4, 52, 70, 0.78), transparent);
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.portfolio-item:hover .portfolio-caption,
.portfolio-item:focus-visible .portfolio-caption {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb {
  color: #627075;
  background: #f3f6f7;
  font-size: 1.2rem;
}

.breadcrumb ol {
  display: flex;
  width: min(var(--container), calc(100% - var(--gutter) - var(--gutter)));
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 auto;
  padding-block: 1.4rem;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.portfolio-intro {
  padding-block: clamp(8rem, 8vw, 13rem);
}

.portfolio-intro-grid,
.service-overview-grid,
.case-study-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 12rem);
}

.portfolio-intro h2,
.featured-work h2,
.portfolio-heading h2,
.service-overview h2,
.service-process h2,
.service-deliverables h2,
.service-faq h2,
.service-related h2,
.service-cta h2,
.case-study-summary h2,
.case-study-gallery h2 {
  margin-top: 2rem;
  color: var(--blue);
  font-size: clamp(3rem, 3vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-wrap: balance;
}

.portfolio-intro-copy,
.service-overview-copy,
.case-study-summary-grid > div:last-child {
  display: grid;
  gap: 2rem;
  color: #536166;
  font-size: 1.65rem;
  line-height: 1.85;
}

.featured-work {
  padding-block: clamp(8rem, 8vw, 13rem);
  background: #edf3f4;
}

.featured-work-heading {
  max-width: 78rem;
  margin-bottom: 5rem;
}

.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.featured-work-card {
  position: relative;
  display: grid;
  min-height: 58rem;
  overflow: hidden;
  align-items: end;
  color: var(--white);
  background: var(--blue);
}

.featured-work-card .responsive-picture,
.featured-work-card::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.featured-work-card::after {
  content: "";
  background: linear-gradient(to top, rgba(3, 48, 67, 0.92), rgba(3, 48, 67, 0.05) 70%);
}

.featured-work-card > div {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 4vw, 5rem);
}

.featured-work-card span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-work-card h3 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 2.8vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.featured-work-card p {
  max-width: 52rem;
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.featured-work-card:hover img,
.featured-work-card:focus-visible img {
  transform: scale(1.025);
}

.portfolio-heading {
  max-width: 84rem;
  margin-bottom: 5rem;
}

.portfolio-heading > p:last-child {
  max-width: 72rem;
  margin-top: 2rem;
  color: #5d686c;
  font-size: 1.6rem;
  line-height: 1.8;
}

.service-page-hero {
  overflow: hidden;
  padding-block: clamp(7rem, 8vw, 13rem);
  background: #edf3f4;
}

.service-page-hero-grid,
.case-study-hero-grid {
  display: grid;
  grid-template-columns: minmax(32rem, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(4rem, 7vw, 11rem);
}

.service-page-hero-copy,
.case-study-hero-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}

.service-page-hero h1,
.case-study-hero h1 {
  color: var(--blue);
  font-size: clamp(4rem, 5.5vw, 7.6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.service-page-hero-copy > p:not(.product-kicker),
.case-study-hero-grid > div > p:not(.product-kicker) {
  max-width: 65rem;
  color: #526166;
  font-size: clamp(1.65rem, 1.4vw, 2rem);
  line-height: 1.75;
}

.service-page-hero-media,
.case-study-hero figure {
  position: relative;
  overflow: hidden;
  min-height: 62rem;
  background: #d7e2e4;
}

.service-page-hero-media .responsive-picture,
.service-page-hero-media img,
.case-study-hero figure .responsive-picture,
.case-study-hero figure img {
  width: 100%;
  height: 100%;
}

.service-page-hero-media img,
.case-study-hero figure img {
  object-fit: cover;
}

.service-overview {
  padding-block: clamp(9rem, 9vw, 15rem);
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(7rem, 8vw, 12rem);
  background: #dce5e7;
}

.service-benefits article {
  min-height: 30rem;
  padding: clamp(2.5rem, 4vw, 5rem);
  background: var(--white);
}

.service-benefits article > span,
.service-process li > span,
.case-study-facts li > span {
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service-benefits h3 {
  margin-top: 5rem;
  color: var(--blue);
  font-size: 2.3rem;
  font-weight: 600;
}

.service-benefits p {
  margin-top: 1.6rem;
  color: #5d686c;
  font-size: 1.5rem;
  line-height: 1.75;
}

.service-process {
  padding-block: clamp(9rem, 9vw, 15rem);
  color: var(--white);
  background: var(--blue);
}

.service-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 8vw, 12rem);
}

.service-process h2,
.service-related h2 {
  color: var(--white);
}

.service-process ol {
  display: grid;
  list-style: none;
}

.service-process li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 2.2rem;
  padding-block: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-process li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-process h3 {
  font-size: 2rem;
  font-weight: 600;
}

.service-process li p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.45rem;
  line-height: 1.75;
}

.service-deliverables {
  padding-block: clamp(9rem, 9vw, 15rem);
}

.service-deliverables-heading,
.case-study-gallery-heading {
  max-width: 90rem;
}

.service-deliverables-heading > p:last-child {
  max-width: 74rem;
  margin-top: 2.5rem;
  color: #5d686c;
  font-size: 1.6rem;
  line-height: 1.85;
}

.service-gallery,
.case-study-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 6rem;
}

.service-gallery figure,
.case-study-gallery-grid figure {
  overflow: hidden;
  background: #edf3f4;
}

.service-gallery .responsive-picture,
.case-study-gallery-grid .responsive-picture {
  aspect-ratio: 16 / 10;
}

.service-gallery img,
.case-study-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-gallery figcaption,
.case-study-gallery-grid figcaption {
  padding: 1.8rem 2rem;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 600;
}

.service-faq {
  padding-block: clamp(9rem, 9vw, 15rem);
  background: #edf3f4;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: minmax(28rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(4rem, 8vw, 12rem);
}

.service-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #d7e2e4;
}

.service-faq-list article {
  min-height: 24rem;
  padding: 3rem;
  background: var(--white);
}

.service-faq-list h3 {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.service-faq-list p {
  margin-top: 1.5rem;
  color: #5d686c;
  font-size: 1.4rem;
  line-height: 1.75;
}

.service-related {
  padding-block: clamp(7rem, 8vw, 12rem);
  color: var(--white);
  background: #173945;
}

.service-related-inner,
.service-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(28rem, 0.8fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 12rem);
}

.service-related nav {
  display: grid;
}

.service-related nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  font-weight: 500;
}

.service-related nav a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-related nav svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.service-related nav a:hover svg {
  transform: translateX(0.5rem);
}

.service-cta {
  padding-block: clamp(8rem, 8vw, 13rem);
}

.service-cta .explore-button {
  justify-self: end;
}

.case-study-hero {
  overflow: hidden;
  padding-block: clamp(7rem, 8vw, 13rem);
  background: #edf3f4;
}

.case-study-hero .explore-actions {
  align-items: flex-start;
}

.case-study-summary {
  padding-block: clamp(9rem, 9vw, 15rem);
}

.case-study-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(7rem, 8vw, 12rem);
  background: #d7e2e4;
}

.case-study-facts li {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: 3rem;
  background: var(--white);
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 600;
}

.case-study-gallery {
  padding-block: clamp(9rem, 9vw, 15rem);
  background: #edf3f4;
}

.contact-section {
  overflow: hidden;
  padding: 25rem 0 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5.258vw + 0.317rem, 7.5rem);
}

.contact-image-wrap {
  width: 100%;
}

.contact-image-wrap .responsive-picture {
  width: 100%;
}

.contact-image {
  width: 100%;
  height: clamp(40rem, 52.581vw + 23.174rem, 95rem);
  object-fit: cover;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.contact-content h1 {
  color: var(--blue);
  font-size: clamp(3rem, 1.912vw + 2.388rem, 5rem);
  font-weight: 600;
  line-height: 1.2;
}

.contact-list {
  width: 100%;
  color: var(--body);
  font-size: clamp(1.6rem, 0.191vw + 1.539rem, 1.8rem);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1rem;
}

.contact-list svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list a:hover {
  color: var(--blue);
}

.contact-rule {
  width: 100%;
  border-top: 1px solid var(--cyan);
}

.contact-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.8rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 0.4rem;
  background: var(--white);
  font-size: 1.4rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-group input {
  min-height: 4.8rem;
  padding: 0.9rem 1.2rem;
}

.form-group textarea {
  min-height: 8rem;
  padding: 1rem 1.2rem;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(25, 158, 175, 0.15);
}

.form-group ::placeholder {
  color: #929292;
  opacity: 1;
}

.submit-button {
  align-self: flex-start;
  min-width: 17rem;
  margin-top: 0.4rem;
  cursor: pointer;
}

.legal-hero {
  padding: 12rem 0 8rem;
  color: var(--white);
  background: var(--blue);
}

.legal-hero h1 {
  font-size: clamp(3.2rem, 2.199vw + 2.496rem, 5.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.legal-hero p {
  max-width: 75rem;
  margin-top: 1.5rem;
  font-size: 1.8rem;
}

.legal-content {
  padding: 10rem 0 15rem;
}

.legal-prose {
  max-width: 92rem;
}

.legal-prose h2 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 600;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p {
  color: var(--body);
  font-size: 1.6rem;
  line-height: 1.85;
}

.legal-prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.status-page {
  display: flex;
  min-height: 65vh;
  align-items: center;
  padding: 10rem 0;
  background: var(--off-white);
}

.status-card {
  display: flex;
  max-width: 80rem;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 7rem;
  background: var(--white);
  text-align: center;
}

.status-icon {
  display: inline-flex;
  width: 6rem;
  height: 6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.status-icon svg {
  width: 2.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.status-card h1 {
  color: var(--blue);
  font-size: clamp(3rem, 1.912vw + 2.388rem, 5rem);
  font-weight: 600;
  line-height: 1.2;
}

.status-card p {
  max-width: 60rem;
  font-size: 1.7rem;
}

.status-card .quote-button {
  margin-top: 1rem;
}

.error-code {
  color: var(--cyan);
  font-size: 8rem !important;
  font-weight: 700;
  line-height: 1;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-logo {
    width: 10.5rem;
  }

  .main-nav ul {
    gap: 1.5rem;
  }

  .main-nav a {
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
    white-space: nowrap;
  }

  .quote-button {
    min-height: 4.4rem;
    gap: 0.8rem;
    padding-inline: 1.2rem;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
  }

  .quote-button svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 991px) {
  .main-nav,
  .header-actions > .quote-button {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr 1fr;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 102;
    top: 0;
    left: 0;
    display: flex;
    width: min(40rem, 100%);
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.5rem;
    padding: 4.5rem;
    background: var(--white);
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.12);
    transform: translate3d(-105%, 0, 0);
    visibility: hidden;
    transition: transform 350ms ease, visibility 350ms ease;
  }

  .mobile-menu.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .menu-close {
    align-self: flex-end;
    width: 2.4rem;
    padding: 0;
  }

  .menu-close svg {
    width: 100%;
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.5;
  }

  .mobile-nav {
    margin-top: 1rem;
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .mobile-nav a {
    display: block;
    padding-block: 1rem;
  }

  .mobile-quote {
    margin-top: 0.5rem;
    border-color: var(--cyan);
    font-size: 1.5rem;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms ease;
  }

  .menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .studio-visual {
    width: min(100%, 70rem);
  }

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

  .explore-home-grid,
  .pilot-home-grid,
  .explore-product-hero-grid,
  .explore-journey-grid,
  .explore-capabilities-grid,
  .explore-demo-inner {
    grid-template-columns: 1fr;
  }

  .explore-home-copy,
  .pilot-home-copy,
  .explore-product-intro {
    max-width: 68rem;
  }

  .explore-home-visual,
  .pilot-home-visual,
  .explore-product-visual,
  .explore-lot-visual {
    width: min(100%, 84rem);
  }

  .explore-home-visual,
  .pilot-home-visual,
  .explore-product-visual {
    margin-left: auto;
  }

  .pilot-home-copy {
    order: 1;
  }

  .pilot-home-visual {
    order: 2;
  }

  .explore-product-visual > figcaption {
    width: min(60rem, 90%);
  }

  .explore-modes-heading,
  .explore-mode,
  .explore-mode-reverse,
  .explore-mode-interior-heading {
    grid-template-columns: 1fr;
  }

  .explore-modes-heading {
    align-items: start;
  }

  .explore-modes-heading > p,
  .explore-mode-interior-heading > p {
    max-width: 68rem;
  }

  .explore-mode-nav {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scroll-snap-type: inline proximity;
  }

  .explore-mode-nav a {
    min-width: 17rem;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .explore-mode,
  .explore-mode-reverse {
    align-items: start;
  }

  .explore-mode-reverse .explore-mode-copy,
  .explore-mode-reverse .explore-mode-visual {
    order: initial;
  }

  .explore-mode-copy {
    max-width: 68rem;
  }

  .explore-mode-visual {
    width: min(100%, 90rem);
  }

  .explore-mode-reverse .explore-mode-visual,
  .explore-mode:nth-child(odd) .explore-mode-visual {
    margin-left: auto;
  }

  .explore-interior-visuals {
    grid-template-columns: 1fr;
  }

  .explore-interior-visuals figure {
    width: min(100%, 90rem);
  }

  .explore-interior-visuals figure:nth-child(2) {
    margin-left: auto;
  }

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

  .explore-interior-features li:nth-child(2) {
    border-right: 0;
  }

  .explore-interior-features li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(4, 79, 112, 0.12);
  }

  .explore-journey-grid {
    align-items: start;
  }

  .explore-steps {
    width: min(100%, 72rem);
    margin-left: auto;
  }

  .explore-capabilities-intro {
    position: static;
    max-width: 70rem;
  }

  .explore-capability-list {
    width: min(100%, 90rem);
    margin-left: auto;
  }

  .explore-demo-action {
    max-width: 62rem;
  }

  .service-page-hero-grid,
  .case-study-hero-grid,
  .service-overview-grid,
  .service-process-grid,
  .service-faq-grid,
  .service-related-inner,
  .service-cta-inner,
  .portfolio-intro-grid,
  .case-study-summary-grid {
    grid-template-columns: 1fr;
  }

  .service-page-hero-copy,
  .case-study-hero-grid > div,
  .service-overview-grid > div:first-child,
  .service-process header,
  .service-faq header,
  .portfolio-intro-grid > div:first-child,
  .case-study-summary-grid > div:first-child {
    max-width: 72rem;
  }

  .service-page-hero-media,
  .case-study-hero figure {
    min-height: 54rem;
  }

  .service-cta .explore-button {
    justify-self: start;
  }

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

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

  .footer-details-inner {
    grid-template-columns: 1fr;
  }

  .footer-about {
    align-items: center;
    text-align: center;
  }

  .footer-contact-grid {
    display: flex;
    width: 100%;
    margin-top: 3rem;
  }

  .contact-section {
    padding-top: 7.5rem;
  }

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

  .contact-image-wrap {
    order: 2;
    margin-top: 5.5rem;
  }

  .contact-content {
    order: 1;
  }
}

@media (max-width: 767px) {
  .explore-button {
    width: 100%;
  }

  .explore-actions {
    width: 100%;
    align-items: stretch;
  }

  .explore-text-link {
    justify-content: center;
    min-height: 4.4rem;
  }

  .explore-home::before,
  .pilot-home::before,
  .explore-product-hero::before,
  .explore-product-hero::after {
    display: none;
  }

  .explore-home-grid,
  .pilot-home-grid,
  .explore-product-hero-grid,
  .explore-journey-grid,
  .explore-capabilities-grid,
  .explore-demo-inner {
    gap: 5rem;
  }

  .explore-home-copy h2,
  .pilot-home-copy h2,
  .explore-product-intro h1 {
    font-size: clamp(4rem, 14vw, 5.4rem);
  }

  .explore-home-tagline,
  .pilot-home-tagline,
  .explore-product-tagline {
    font-size: 2.6rem;
  }

  .explore-browser-bar b {
    padding-right: 0;
    text-align: right;
  }

  .explore-live-label {
    right: 1rem;
  }

  .explore-home-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .pilot-dashboard-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .pilot-dashboard-frame figcaption strong {
    text-align: left;
  }

  .explore-product-visual > figcaption {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: 100%;
  }

  .explore-quick-features {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .explore-quick-features li {
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(4, 79, 112, 0.14);
  }

  .explore-quick-features li:not(:last-child)::after {
    display: none;
  }

  .explore-section-heading h2,
  .explore-modes-heading h2,
  .explore-capabilities-intro h2,
  .explore-demo h2 {
    font-size: 3.6rem;
  }

  .explore-modes {
    padding-block: 9rem;
  }

  .explore-modes-heading {
    gap: 2.8rem;
  }

  .explore-mode-nav {
    top: 0.8rem;
    margin-top: 4.5rem;
  }

  .explore-mode-nav a {
    min-width: 15.5rem;
    min-height: 5.6rem;
    padding: 1.2rem 1.4rem;
  }

  .explore-mode-list {
    margin-top: 7rem;
  }

  .explore-mode,
  .explore-mode-interior {
    scroll-margin-top: 8rem;
  }

  .explore-mode {
    gap: 4.5rem;
    padding-top: 5.5rem;
  }

  .explore-mode + .explore-mode,
  .explore-mode-interior {
    margin-top: 9rem;
  }

  .explore-mode-copy h3,
  .explore-mode-interior-heading h3 {
    font-size: 3rem;
  }

  .explore-mode-copy > p:not(.explore-mode-number),
  .explore-mode-interior-heading > p {
    font-size: 1.45rem;
  }

  .explore-mode-interior {
    padding-top: 5.5rem;
  }

  .explore-mode-interior-heading {
    gap: 3rem;
  }

  .explore-interior-visuals {
    gap: 4rem;
    margin-top: 4.5rem;
  }

  .explore-interior-features {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .explore-interior-features li,
  .explore-interior-features li:nth-child(2) {
    min-height: 7rem;
    border-right: 0;
    border-bottom: 1px solid rgba(4, 79, 112, 0.12);
  }

  .explore-interior-features li:last-child {
    border-bottom: 0;
  }

  .explore-journey-grid {
    margin-top: 5rem;
  }

  .explore-capability-list article {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1.6rem;
  }

  .explore-capability-list p {
    grid-column: 2;
  }

  .featured-work-grid,
  .service-benefits,
  .service-gallery,
  .case-study-gallery-grid {
    grid-template-columns: 1fr;
  }

  .featured-work-card {
    min-height: 48rem;
  }

  .service-benefits article {
    min-height: auto;
  }

  .service-benefits h3 {
    margin-top: 3rem;
  }

  .service-faq-list {
    grid-template-columns: 1fr;
  }

  .service-faq-list article {
    min-height: auto;
  }

  .service-page-hero-media,
  .case-study-hero figure {
    min-height: min(115vw, 52rem);
  }

  .portfolio-caption {
    opacity: 1;
    transform: none;
  }

  .case-study-hero .explore-actions {
    flex-direction: column;
  }

  .footer-about {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact-grid {
    flex-direction: column;
    gap: 4.5rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-list {
    justify-content: center;
  }
}

@media (max-width: 478px) {
  :root {
    --gutter: 2rem;
  }

  body {
    font-size: 1.5rem;
  }

  .site-logo {
    width: 10rem;
  }

  .header-actions {
    width: 100%;
  }

  .menu-button {
    width: 3.2rem;
  }

  .mobile-menu {
    width: 100%;
    padding: 4.5rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy p {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .studio {
    padding-block: 15rem;
  }

  .studio-copy h2 {
    font-size: 3rem;
  }

  .studio-visual {
    min-height: 50rem;
    margin-top: 4rem;
  }

  .studio-image {
    width: 72%;
  }

  .studio-image-secondary {
    top: 65%;
    left: 24%;
  }

  .solutions {
    padding: 15rem 2rem;
  }

  .solutions > .container {
    width: 100%;
  }

  .solutions h2 {
    font-size: 3rem;
  }

  .product-kicker {
    align-items: flex-start;
    font-size: 1.05rem;
  }

  .product-kicker > span {
    margin-top: 0.65rem;
  }

  .explore-home,
  .pilot-home,
  .explore-product-hero {
    padding-block: 8rem;
  }

  .explore-home-description,
  .pilot-home-description,
  .explore-product-description {
    font-size: 1.5rem;
  }

  .explore-browser-bar {
    min-height: 3.4rem;
  }

  .explore-browser-bar b {
    max-width: 17rem;
    justify-self: end;
  }

  .explore-live-label {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .explore-steps li {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card {
    height: 50rem;
  }

  .service-card-front h3 {
    font-size: 2.6rem;
  }

  .trust {
    padding-top: 10rem;
  }

  .trust-inner {
    gap: 3rem;
  }

  .trust-grid {
    gap: 2rem;
  }

  .trust-grid img {
    max-height: 5rem;
  }

  .footer-details {
    padding-inline: 0;
  }

  .footer-details-inner,
  .footer-bottom {
    width: 100%;
  }

  .page-hero {
    padding: 25rem 0 5rem;
  }

  .page-hero-content {
    width: 100%;
  }

  .page-hero-content h1 {
    font-size: 3.2rem;
  }

  .page-hero-content p {
    font-size: 1.6rem;
  }

  .portfolio {
    padding-block: 15rem;
  }

  .portfolio-grid {
    width: calc(100% - 4rem);
  }

  .breadcrumb ol {
    width: calc(100% - 4rem);
  }

  .featured-work-card {
    min-height: 42rem;
  }

  .service-page-hero h1,
  .case-study-hero h1 {
    font-size: 4rem;
  }

  .case-study-facts {
    grid-template-columns: 1fr;
  }

  .case-study-facts li {
    min-height: 13rem;
  }

  .contact-section {
    padding: 5rem 0;
  }

  .contact-grid {
    width: 100%;
  }

  .contact-image-wrap {
    order: 1;
    margin-top: 0;
  }

  .contact-content {
    order: 2;
    margin-top: 4rem;
  }

  .contact-image {
    height: min(112vw, 43.7rem);
  }

  .contact-content h1 {
    font-size: 3rem;
  }

  .contact-list {
    font-size: 1.6rem;
  }

  .submit-button {
    min-width: 14rem;
  }

  .legal-hero {
    padding: 8rem 0 6rem;
  }

  .legal-content {
    padding: 6rem 0 10rem;
  }

  .legal-prose h2 {
    font-size: 2.1rem;
  }

  .status-page {
    padding: 5rem 0;
  }

  .status-card {
    width: 100%;
    padding: 4rem 2rem;
  }
}

@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 [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
