@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("public/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("public/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #101918;
  --ink-soft: #42504e;
  --paper: #f4f2eb;
  --paper-deep: #ebe7dd;
  --white: #fffef9;
  --brand: #0989ad;
  --brand-dark: #073846;
  --brand-mid: #0b586b;
  --line: rgba(16, 25, 24, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --container: 1240px;
  --radius: 3px;
  --shadow: 0 24px 70px rgba(5, 35, 42, 0.15);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

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

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--brand-mid);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #83d4e5;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.5vw, 5.6rem);
  line-height: 0.98;
}

.section {
  padding: 144px 0;
}

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--brand-dark);
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: white;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 22px;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition:
    background 250ms ease,
    border 250ms ease,
    color 250ms ease,
    transform 250ms ease;
}

.button svg,
.solution-item svg,
.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - 2px), 0);
}

.button svg {
  transition: transform 300ms var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.button:focus-visible,
.email-option:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.social-links a:focus-visible,
.scroll-cue:focus-visible {
  outline: 2px solid #8edbed;
  outline-offset: 5px;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-dark);
}

.button--light:hover {
  border-color: #87d9ea;
  background: #87d9ea;
  color: var(--brand-dark);
}

.button--small {
  min-height: 44px;
  gap: 12px;
  padding: 0 18px;
}

.text-link {
  display: inline-flex;
  position: relative;
  align-items: center;
  color: var(--brand-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding-bottom: 6px;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(0.25);
}

.text-link--light {
  color: white;
}

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

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(244, 242, 235, 0.94);
  box-shadow: 0 10px 35px rgba(7, 56, 70, 0.07);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: grid;
  height: 78px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 500;
}

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

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

.site-nav a.is-active {
  color: #9ce4f1;
}

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

.site-header.is-scrolled .site-nav a.is-active {
  color: var(--brand);
}

.nav-cta {
  justify-self: end;
}

.site-header:not(.is-scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.site-header:not(.is-scrolled) .nav-cta:hover {
  border-color: white;
  background: white;
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  --spot-x: 50%;
  --spot-y: 45%;
  display: flex;
  position: relative;
  min-height: 760px;
  min-height: max(760px, 100vh);
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
  color: white;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle 340px at var(--spot-x) var(--spot-y), rgba(145, 222, 236, 0.14), transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms ease;
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  animation: heroZoom 16s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 32, 39, 0.92) 0%, rgba(5, 32, 39, 0.69) 38%, rgba(5, 32, 39, 0.08) 76%),
    linear-gradient(0deg, rgba(4, 27, 34, 0.62) 0%, transparent 36%);
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-eyebrow {
  color: #9ce4f1;
}

.hero h1 {
  max-width: 830px;
  margin: 0 0 30px;
  font-size: clamp(3.8rem, 7.4vw, 7.25rem);
  line-height: 0.89;
  text-wrap: balance;
}

.hero h1 em {
  color: #92dcec;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

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

.hero-foot {
  display: flex;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  left: 0;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-caption,
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8edbed;
  box-shadow: 0 0 0 0 rgba(142, 219, 237, 0.55);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(142, 219, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(142, 219, 237, 0);
  }
}

.scroll-cue svg {
  width: 18px;
}

/* Metrics */
.metrics {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.15fr;
}

.metric {
  --pointer-x: 50%;
  --pointer-y: 50%;
  display: flex;
  position: relative;
  min-height: 205px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 36px clamp(24px, 3vw, 48px);
  transition:
    background-color 350ms var(--ease),
    color 350ms var(--ease),
    transform 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.metric::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 140px at var(--pointer-x) var(--pointer-y), rgba(9, 137, 173, 0.12), transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

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

.metric:hover {
  z-index: 2;
  box-shadow: 0 18px 44px rgba(7, 56, 70, 0.1);
  transform: translateY(-5px);
}

.metric:hover::before {
  opacity: 1;
}

.metric:hover strong {
  color: var(--brand);
}

.metric:first-child {
  border-left: 1px solid var(--line);
}

.metric strong {
  display: flex;
  align-items: flex-start;
  color: var(--brand-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3rem, 4.5vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
  transition: color 300ms ease;
}

.metric sup {
  margin: 9px 0 0 4px;
  color: var(--brand);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.metric > span {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.metric--statement {
  background: var(--brand-dark);
  color: white;
}

.metric--statement > span {
  max-width: 240px;
  margin: 0;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.45;
}

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

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 86px;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 60px;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.solutions-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(50px, 8vw, 110px);
}

.solution-list {
  border-top: 1px solid var(--line);
}

.solution-item {
  display: grid;
  position: relative;
  min-height: 150px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  padding: 32px 0;
  transition: padding 300ms var(--ease);
}

.solution-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--brand);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 350ms var(--ease);
}

.solution-item:hover,
.solution-item.is-active {
  background: linear-gradient(90deg, rgba(9, 137, 173, 0.075), transparent 82%);
  padding-left: 12px;
}

.solution-item:hover::before,
.solution-item.is-active::before {
  transform: scaleY(1);
  transform-origin: top;
}

.solution-number {
  color: var(--brand);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.solution-item h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.solution-item p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.solution-item svg {
  width: 22px;
  margin-top: 5px;
  color: var(--brand-mid);
  transition: transform 300ms var(--ease);
}

.solution-item:hover svg,
.solution-item.is-active svg {
  transform: translateX(5px);
}

.solutions-image {
  --image-x: 0px;
  --image-y: 0px;
  position: sticky;
  top: 110px;
  margin: 0;
  overflow: hidden;
  transition:
    box-shadow 450ms var(--ease),
    transform 450ms var(--ease);
}

.solutions-image img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: scale(1.025) translate3d(var(--image-x), var(--image-y), 0);
  transition:
    transform 500ms var(--ease),
    object-position 650ms var(--ease),
    filter 500ms ease;
}

.solutions-image[data-focus="0"] img {
  object-position: 18% center;
}

.solutions-image[data-focus="1"] img {
  object-position: 40% center;
}

.solutions-image[data-focus="2"] img {
  object-position: 66% center;
}

.solutions-image[data-focus="3"] img {
  object-position: 88% center;
}

.solutions-image:hover {
  box-shadow: 0 30px 90px rgba(5, 35, 42, 0.2);
  transform: translateY(-5px);
}

.solutions-image figcaption,
.image-note {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  padding-top: 14px;
  text-transform: uppercase;
}

.solutions-image figcaption {
  background: var(--paper);
}

.solutions-image figcaption span:last-child {
  color: var(--brand-mid);
}

[data-solutions-caption] {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

[data-solutions-caption].is-changing {
  opacity: 0;
  transform: translateY(5px);
}

/* Process */
.process {
  padding: 144px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(60px, 9vw, 135px);
}

.process-image {
  --image-x: 0px;
  --image-y: 0px;
  position: sticky;
  top: 110px;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: min(720px, 75vh);
  object-fit: cover;
  transform: scale(1.02) translate3d(var(--image-x), var(--image-y), 0);
  transition:
    transform 500ms var(--ease),
    filter 500ms ease;
}

.process-image:hover img {
  filter: saturate(1.06) contrast(1.02);
}

.process-image .image-note {
  background: var(--white);
}

.image-note {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.process-content h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.process-intro {
  max-width: 570px;
  margin: 34px 0 54px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.process-steps {
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  padding: 0;
}

.process-steps li {
  display: grid;
  position: relative;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 27px 0;
  transition:
    background 350ms var(--ease),
    padding 350ms var(--ease);
}

.process-steps li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--brand);
  content: "";
  transform: scaleY(0);
  transition: transform 350ms var(--ease);
}

.process-steps li:hover {
  background: linear-gradient(90deg, rgba(9, 137, 173, 0.07), transparent);
  padding-right: 12px;
  padding-left: 12px;
}

.process-steps li:hover::before {
  transform: scaleY(1);
}

.process-steps li > div {
  transition: transform 350ms var(--ease);
}

.process-steps li:hover > div {
  transform: translateX(5px);
}

.process-steps li > span {
  color: var(--brand);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.process-steps h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Story */
.story {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  padding-bottom: 100px;
}

.story-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 9vw;
}

.story-title {
  position: sticky;
  top: 120px;
}

.story-copy {
  padding-top: 58px;
}

.story-lead {
  margin-bottom: 52px;
  color: var(--brand-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.story-columns {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.story-columns p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.story-marquee {
  width: 100%;
  margin-top: 130px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--brand-dark);
  white-space: nowrap;
}

.story-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 38px;
  padding: 26px 0;
  animation: marquee 24s linear infinite;
}

.story-marquee span {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.story-marquee i {
  color: var(--brand);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Commitment */
.commitment {
  padding: 144px 0;
  background: var(--brand-dark);
  color: white;
}

.commitment-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 9vw;
}

.commitment-intro h2 {
  max-width: 610px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.commitment-intro > p:last-child {
  max-width: 560px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.commitment-cards {
  border-top: 1px solid var(--line-light);
}

.commitment-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  display: grid;
  position: relative;
  min-height: 156px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px 0;
  transition:
    padding 350ms var(--ease),
    background 350ms ease;
}

.commitment-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 180px at var(--pointer-x) var(--pointer-y), rgba(142, 219, 237, 0.13), transparent 75%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.commitment-card > * {
  position: relative;
  z-index: 1;
}

.commitment-card:hover {
  padding-right: 14px;
  padding-left: 14px;
}

.commitment-card:hover::after {
  opacity: 1;
}

.commitment-icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(140, 220, 237, 0.4);
  border-radius: 50%;
  color: #8edbed;
}

.commitment-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition: transform 450ms var(--ease);
}

.commitment-card:hover .commitment-icon {
  border-color: #8edbed;
  background: rgba(142, 219, 237, 0.08);
}

.commitment-card:hover .commitment-icon svg {
  transform: rotate(-6deg) scale(1.1);
}

.commitment-card h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.commitment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10vw;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  font-size: clamp(2.8rem, 4vw, 4.25rem);
}

.faq-heading > p:last-child {
  max-width: 350px;
  margin-top: 30px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
  list-style: none;
  transition:
    color 250ms ease,
    padding 300ms var(--ease);
}

.faq-list summary:hover {
  color: var(--brand-mid);
  padding-left: 8px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  width: 20px;
  color: var(--brand);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  transition: transform 250ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 52px 30px 0;
  color: var(--ink-soft);
}

/* Contact */
.contact {
  --spot-x: 50%;
  --spot-y: 50%;
  padding: 144px 0;
  position: relative;
  overflow: hidden;
  background: #092d37;
  color: white;
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 360px at var(--spot-x) var(--spot-y), rgba(26, 151, 180, 0.22), transparent 70%),
    linear-gradient(115deg, transparent 55%, rgba(255, 255, 255, 0.025));
  content: "";
  opacity: 0.65;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.contact-grid {
  display: grid;
  position: relative;
  z-index: 1;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  font-size: clamp(3.3rem, 6vw, 6.4rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 34px 0 50px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.contact-meta a {
  width: max-content;
  color: #9ce4f1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: white;
  padding: 11px 0 14px;
  transition: border-color 200ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #8edbed;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #ffb9ad;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8edbed 50%), linear-gradient(135deg, #8edbed 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% - 1px),
    calc(100% - 9px) calc(50% - 1px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form option {
  background: var(--brand-dark);
  color: white;
}

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

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 10px;
}

.form-footer p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.74rem;
}

.form-status {
  min-height: 1.4em;
  margin: -10px 0 0;
  color: #9ce4f1;
  font-size: 0.85rem;
}

.contact-form label > .field-error {
  color: #ffc5bb;
  font-size: 0.76rem;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.field-error:empty {
  display: none;
}

.form-status--error {
  color: #ffc5bb;
  font-weight: 500;
}

.email-options {
  display: grid;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 26px;
  scroll-margin-top: 92px;
}

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

.email-options__heading h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.email-options__heading p,
.email-options__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.email-options__sent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 20px;
}

.email-options__sent[hidden] {
  display: none;
}

.email-options__sent p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.email-options__sent strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
}

.email-options__sent span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.email-options__sent .button {
  flex: 0 0 auto;
}

.email-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.email-option {
  display: flex;
  min-height: 72px;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.email-option span {
  color: rgba(255, 255, 255, 0.55);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
}

.email-option:hover {
  border-color: #8edbed;
  background: rgba(142, 219, 237, 0.12);
  transform: translateY(-2px);
}

.email-option--copy {
  grid-column: 1 / -1;
}

/* Footer */
.site-footer {
  background: #061f27;
  color: white;
}

.footer-top {
  display: grid;
  min-height: 245px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.brand--footer img {
  width: 46px;
  height: 46px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.84rem;
}

.social-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 3px;
  transition: color 200ms ease;
}

.social-links a:hover {
  color: #8edbed;
}

.footer-bottom {
  display: grid;
  min-height: 88px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
  color: rgba(255, 255, 255, 0.7);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

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

/* Responsive */
@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.79rem;
  }

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

  .metric:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .solutions-image img {
    min-height: 500px;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section,
  .process,
  .commitment,
  .contact {
    padding: 104px 0;
  }

  .nav-wrap {
    display: flex;
    justify-content: space-between;
  }

  .nav-wrap > .brand {
    position: relative;
    z-index: 3;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: transform 250ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav {
    display: flex;
    position: fixed;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    justify-content: safe center;
    gap: 17px;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    padding: 90px 9vw;
    padding:
      max(96px, calc(env(safe-area-inset-top) + 76px))
      max(9vw, env(safe-area-inset-right))
      max(40px, env(safe-area-inset-bottom))
      max(9vw, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 250ms ease,
      transform 250ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(2rem, 7vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.05em;
  }

  .site-header.is-menu-open {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 32, 39, 0.91) 0%, rgba(5, 32, 39, 0.67) 70%, rgba(5, 32, 39, 0.3) 100%),
      linear-gradient(0deg, rgba(4, 27, 34, 0.65), transparent 45%);
  }

  .section-heading,
  .solutions-layout,
  .process-grid,
  .story-grid,
  .commitment-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 60px;
    gap: 30px;
  }

  .solutions-layout,
  .process-grid,
  .commitment-grid,
  .faq-grid,
  .contact-grid {
    gap: 70px;
  }

  .solutions-image,
  .process-image,
  .story-title,
  .faq-heading,
  .contact-copy {
    position: static;
  }

  .solutions-image {
    order: -1;
  }

  .solutions-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .process-image img {
    height: 680px;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-marquee {
    margin-top: 90px;
  }

  .faq-heading > p:last-child {
    max-width: 480px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .process,
  .commitment,
  .contact {
    padding: 82px 0;
  }

  .brand {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-wrap {
    height: 68px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 148px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.6rem);
    line-height: 0.92;
  }

  .hero-copy {
    max-width: 94%;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .hero-foot {
    bottom: 22px;
  }

  .hero-caption {
    max-width: 235px;
    line-height: 1.4;
  }

  .scroll-cue span {
    display: none;
  }

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

  .metric {
    min-height: 150px;
    padding: 24px 18px;
  }

  .metric strong {
    font-size: 3rem;
  }

  .metric > span {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .metric--statement > span {
    font-size: 0.86rem;
  }

  .section-heading,
  .solutions-layout,
  .process-grid,
  .commitment-grid,
  .faq-grid,
  .contact-grid {
    gap: 48px;
  }

  .solution-item {
    min-height: auto;
    grid-template-columns: 34px 1fr;
    padding: 25px 0;
  }

  .solution-item svg {
    display: none;
  }

  .solutions-image figcaption span:first-child {
    max-width: 220px;
  }

  .process-image img {
    height: 510px;
  }

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

  .story-columns {
    gap: 4px;
  }

  .story-lead {
    margin-bottom: 38px;
  }

  .story-marquee {
    margin-top: 70px;
  }

  .commitment-card {
    grid-template-columns: 58px 1fr;
    gap: 17px;
  }

  .commitment-icon {
    width: 48px;
    height: 48px;
  }

  .faq-list summary {
    min-height: 82px;
  }

  .form-row {
    gap: 27px;
  }

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

  .form-footer .button {
    width: 100%;
  }

  .email-options__grid {
    grid-template-columns: 1fr;
  }

  .email-options__sent {
    align-items: stretch;
    flex-direction: column;
  }

  .email-options__sent .button {
    width: 100%;
  }

  .email-option--copy {
    grid-column: auto;
  }

  .footer-top {
    min-height: auto;
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 64px 0;
  }

  .footer-top > p {
    text-align: left;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-bottom {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .footer-bottom span:nth-child(2) {
    text-align: left;
  }

  .footer-bottom a {
    justify-self: start;
  }
}

@media (hover: hover) and (pointer: fine) {
  [data-depth-image],
  [data-depth-image] img,
  .button {
    will-change: transform;
  }
}

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

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