:root {
  --ink: #08232f;
  --ink-soft: #294854;
  --navy: #06212c;
  --navy-lift: #0b303e;
  --blue: #00b4d7;
  --blue-deep: #007f99;
  --blue-light: #58cee4;
  --foam: #edf8fa;
  --paper: #fafbf9;
  --white: #ffffff;
  --muted: #58717a;
  --line: #d8e6e9;
  --line-dark: rgba(255, 255, 255, 0.16);
  --font: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --container: 1180px;
  --section-space: clamp(5.5rem, 8vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

img {
  height: auto;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--navy);
  background: var(--blue-light);
}

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

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

.section {
  padding-block: var(--section-space);
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 2px;
  background: var(--blue);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow--light > span {
  background: var(--blue-light);
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--navy);
  border-radius: 0.7rem;
  padding: 0.9rem 1.4rem;
  color: var(--white);
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.button svg {
  width: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--small {
  min-height: 2.85rem;
  padding-inline: 1.05rem;
  font-size: 0.8rem;
}

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

.button--light:hover {
  border-color: var(--blue-light);
  color: var(--navy);
  background: var(--blue-light);
}

.button--dark {
  border-color: var(--navy);
  background: var(--navy);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding-block: 0.4rem;
  font-size: 0.88rem;
  font-weight: 750;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.text-link--arrow::before {
  margin-right: 0.5rem;
  content: "→";
}

.utility-bar {
  display: flex;
  min-height: 2.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.utility-bar__dot {
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-light);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.97);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 0.5rem 1.6rem rgba(8, 35, 47, 0.06);
}

.site-header__inner {
  display: flex;
  min-height: 5.1rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 10.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.4vw, 2.2rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--foam);
}

.hero__mark,
.hero__ring,
.hero-label {
  display: none;
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: 42rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: 4.5rem;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 35rem;
}

.hero h1 {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 5.7vw, 5.5rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.hero h1 em {
  color: var(--blue-deep);
  font-style: normal;
  font-weight: inherit;
}

.hero__lede {
  max-width: 31rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.hero__benefits span {
  color: var(--blue-deep);
  font-size: 0.85rem;
}

.hero__visual {
  position: relative;
  min-height: 32rem;
}

.hero__sun {
  position: absolute;
  top: 50%;
  left: 54%;
  width: min(31vw, 28rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.hero__system {
  position: absolute;
  z-index: 2;
  top: -7%;
  left: -5%;
  width: 88%;
  filter: drop-shadow(0 1.4rem 1.15rem rgba(2, 30, 40, 0.17));
  animation: system-float 7s ease-in-out infinite;
}

.hero__ro {
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: -6%;
  width: 43%;
  filter: drop-shadow(0 1.15rem 1rem rgba(2, 30, 40, 0.17));
  animation: system-float 8s 600ms ease-in-out infinite reverse;
}

.hero__foot {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 9rem 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(8, 35, 47, 0.13);
}

.hero__foot > p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 1.25rem 1.2rem 1.25rem 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__foot ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__foot li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-left: 1px solid rgba(8, 35, 47, 0.13);
  padding: 1.25rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__foot li span {
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 800;
}

@keyframes system-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.55rem);
  }
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.section-heading h2,
.process h2,
.service-area h2,
.finder h2,
.faq h2,
.consultation h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 4.6vw, 4.25rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.section-heading > p,
.section-heading--split > p,
.process__intro > p,
.faq__intro > p {
  max-width: 39rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-heading--split {
  display: block;
  max-width: 48rem;
}

.section-heading--split h2 {
  margin-bottom: 1.15rem;
}

.section-heading--split > p {
  margin-bottom: 0;
}

.signal-section {
  background: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal {
  position: relative;
  min-height: 16.5rem;
  border-right: 1px solid var(--line);
  padding: 1.8rem clamp(1.2rem, 2.3vw, 1.8rem) 2rem;
}

.signal:last-child {
  border-right: 0;
}

.signal__number {
  position: absolute;
  top: 1.6rem;
  right: 1.4rem;
  color: #8da2aa;
  font-size: 0.72rem;
  font-weight: 750;
}

.signal__icon {
  width: 2.5rem;
  margin: 2rem 0 2.4rem;
  fill: none;
  stroke: var(--blue-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.signal h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.signal p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.signal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.8rem;
}

.signal-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.signal-cta strong {
  color: var(--ink);
}

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

.solutions__word {
  display: none;
}

.solutions .container {
  position: relative;
}

.section-heading--light h2 {
  color: var(--white);
}

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

.solution-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(29rem, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  border-top: 1px solid var(--line-dark);
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.solution-feature--reverse .solution-feature__copy {
  order: 2;
}

.solution-feature__index {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-feature h3,
.specialty h3 {
  max-width: 32rem;
  margin-bottom: 1.15rem;
  color: var(--white);
  font-size: clamp(2.35rem, 3.8vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.solution-feature__copy > p,
.specialty__intro > p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.check-list {
  margin: 1.75rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border-top: 1px solid var(--line-dark);
  padding: 0.8rem 0 0.8rem 1.7rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.check-list li::before {
  position: absolute;
  top: 0.82rem;
  left: 0;
  color: var(--blue-light);
  content: "✓";
}

.solution-feature__media {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  border-radius: 1.25rem;
}

.solution-feature__media--blue {
  background: var(--blue);
}

.solution-feature__media--foam {
  background: var(--foam);
}

.solution-feature__media::before {
  position: absolute;
  top: -7rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.solution-feature__media > img,
.solution-feature__media picture {
  position: absolute;
  z-index: 2;
  inset: 1.25rem;
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  filter: drop-shadow(0 1.2rem 1rem rgba(3, 26, 34, 0.2));
}

.solution-feature__media > img {
  object-fit: contain;
}

.solution-feature__media picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-feature__media > span {
  position: absolute;
  z-index: 4;
  right: 1.4rem;
  bottom: 1.2rem;
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.solution-feature__media--blue > span {
  color: var(--white);
}

.specialty {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(4rem, 7vw, 6.5rem);
}

.specialty__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.specialty__item {
  border-top: 2px solid var(--blue);
  padding-top: 1rem;
}

.specialty__item img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.15rem;
  padding: 0.75rem;
  border-radius: 0.8rem;
  background: var(--navy-lift);
  object-fit: contain;
}

.specialty__item h4 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.specialty__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.65;
}

.process {
  background: var(--paper);
}

.process__grid {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.process__intro {
  max-width: 46rem;
}

.process__intro .button {
  margin-top: 1.2rem;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process__steps li {
  min-height: 15rem;
  border-right: 1px solid var(--line);
  padding: 2rem clamp(1.4rem, 3vw, 2.25rem) 2.25rem;
}

.process__steps li:last-child {
  border-right: 0;
}

.process__steps > li > span {
  display: block;
  margin-bottom: 3rem;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.process__steps h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  letter-spacing: -0.03em;
}

.process__steps p {
  max-width: 18rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-area {
  background: var(--white);
}

.service-area__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 7rem);
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.service-area__header h2 {
  max-width: 43rem;
  margin-bottom: 0;
}

.service-area__header > p {
  max-width: 35rem;
  margin-bottom: 0.3rem;
  color: var(--muted);
  line-height: 1.75;
}

.service-area__places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.service-area__place {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 2rem clamp(1.4rem, 3vw, 2.35rem) 2.25rem;
}

.service-area__place:last-child {
  border-right: 0;
}

.service-area__place > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-area__place h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  letter-spacing: -0.04em;
}

.service-area__place p {
  max-width: 20rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-area__resources {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 1.5rem;
  border-radius: 0.9rem;
  padding: 1.6rem clamp(1.5rem, 3vw, 2.25rem);
  background: var(--foam);
}

.service-area__resources strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.service-area__resources p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.service-area__resources nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.2rem;
}

.service-area__resources a {
  border-bottom: 1px solid currentColor;
  padding-block: 0.25rem;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 750;
  transition: color 180ms ease;
}

.service-area__resources a:hover {
  color: var(--navy);
}

.finder {
  background: var(--white);
}

.finder__shell {
  display: grid;
  min-height: 31rem;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-radius: 1.25rem;
  color: var(--white);
  background: var(--navy);
}

.finder__intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  padding: clamp(2.25rem, 4vw, 3.5rem);
}

.finder h2 {
  max-width: 22rem;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: clamp(2.65rem, 4vw, 3.7rem);
}

.finder__intro > p {
  color: rgba(255, 255, 255, 0.64);
}

.finder__progress {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 2.5rem;
}

.finder__progress span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 800;
}

.finder__progress span.is-active,
.finder__progress span.is-done {
  border-color: var(--blue-light);
  color: var(--navy);
  background: var(--blue-light);
}

.finder__progress i {
  width: 2.1rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.finder__questions {
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
}

.finder-step {
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
}

.finder-step legend {
  max-width: 36rem;
  margin-bottom: 2rem;
  padding: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.finder-options--three {
  grid-template-columns: repeat(3, 1fr);
}

.finder-options button {
  display: flex;
  min-height: 5.75rem;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 0.7rem;
  padding: 1.1rem;
  color: var(--white);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.finder-options button:hover,
.finder-options button:focus-visible {
  border-color: var(--blue-light);
  color: var(--navy);
  background: var(--blue-light);
}

.finder-options button span {
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 800;
}

.finder-options button:hover span,
.finder-options button:focus-visible span {
  color: var(--navy);
}

.finder-back {
  border: 0;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.finder-result {
  width: 100%;
}

.finder-result__label {
  display: block;
  margin-bottom: 1rem;
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finder-result h3 {
  max-width: 38rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 700;
}

.finder-result > p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.finder-result > small {
  display: block;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.finder-result__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.fit {
  border-top: 1px solid var(--line);
  background: var(--foam);
}

.fit-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.fit-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid #c8dce0;
  padding: 2rem clamp(1.4rem, 3vw, 2.3rem) 2.25rem;
}

.fit-option:last-child {
  border-right: 0;
}

.fit-option__number {
  margin-bottom: 1.6rem;
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 800;
}

.fit-option h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  letter-spacing: -0.04em;
}

.fit-option > p {
  min-height: 3.4rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.fit-option dl {
  margin: 0 0 1.5rem;
}

.fit-option dl > div {
  border-top: 1px solid #c8dce0;
  padding-block: 1rem;
}

.fit-option dl > div:last-child {
  border-bottom: 1px solid #c8dce0;
}

.fit-option dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-option dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.fit-option .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.clarity {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background: var(--blue);
}

.clarity__shape {
  display: none;
}

.clarity__inner {
  max-width: 52rem;
}

.clarity .eyebrow {
  color: var(--navy);
}

.clarity .eyebrow > span {
  background: var(--navy);
}

.clarity h2 {
  max-width: 48rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.clarity__inner > p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: rgba(6, 33, 44, 0.78);
  font-size: 1rem;
}

.clarity .button--light {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.clarity .button--light:hover {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

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

.faq__grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(4rem, 9vw, 8rem);
}

.faq__intro {
  align-self: start;
}

.faq__intro .text-link {
  margin-top: 0.75rem;
}

.faq__list {
  border-top: 2px solid var(--ink);
}

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

.faq summary {
  position: relative;
  padding: 1.45rem 3rem 1.45rem 0;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

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

.faq summary span,
.faq summary span::after {
  position: absolute;
  top: 50%;
  right: 0.1rem;
  width: 1rem;
  height: 1px;
  background: var(--blue-deep);
  content: "";
}

.faq summary span::after {
  right: 0;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 39rem;
  margin: -0.25rem 3rem 1.6rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.consultation {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.consultation::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 12rem;
  height: 4px;
  background: var(--blue);
  content: "";
}

.consultation__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(31rem, 1.2fr);
  gap: clamp(4rem, 8vw, 7rem);
}

.consultation__copy {
  padding-top: 0.75rem;
}

.consultation h2 {
  color: var(--white);
}

.consultation__copy > p:not(.eyebrow) {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.consultation__copy > ul {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.consultation__copy > ul li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  border-top: 1px solid var(--line-dark);
  padding-block: 1rem;
}

.consultation__copy > ul li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.consultation__copy li > span {
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 800;
}

.consultation__copy li strong,
.consultation__copy li small {
  display: block;
}

.consultation__copy li strong {
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
}

.consultation__copy li small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.77rem;
}

.consultation__form-wrap {
  position: relative;
  min-height: 41rem;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  background: var(--white);
}

.form-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.8rem;
  padding-bottom: 1.35rem;
}

.form-heading > span {
  grid-column: 1 / -1;
  margin-bottom: 0.45rem;
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  max-width: 24rem;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.form-heading p {
  margin: 0 0 0.15rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 750;
}

.field label small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 550;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bacdd1;
  border-radius: 0.55rem;
  padding: 0.8rem 0.9rem;
  background: var(--white);
  font-size: 0.92rem;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input,
.field select {
  min-height: 3.2rem;
}

.field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(0, 180, 215, 0.13);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b22d35;
}

.field__error {
  display: block;
  margin-top: 0.3rem;
  color: #9f2630;
  font-size: 0.7rem;
  line-height: 1.3;
}

.field__error:empty {
  display: none;
}

.consent {
  display: grid;
  grid-template-columns: 1.05rem 1fr;
  align-items: start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--blue-deep);
}

.button--submit {
  width: 100%;
  min-height: 3.65rem;
  justify-content: space-between;
  padding-inline: 1.25rem;
  border-color: var(--blue-deep);
  background: var(--blue-deep);
}

.button--submit:hover {
  border-color: var(--navy);
  background: var(--navy);
}

.button--submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

.form-status {
  border-left: 3px solid #b22d35;
  padding-left: 0.65rem;
  color: #8e2028;
  font-size: 0.75rem;
}

.form-status:empty {
  display: none;
}

.form-success {
  position: absolute;
  inset: 0;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
}

.form-success > span:first-child {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  margin-bottom: 3.5rem;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-light);
  font-size: 1.3rem;
  font-weight: 800;
}

.form-success h3 {
  max-width: 28rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 750;
}

.form-success > p:not(.eyebrow) {
  max-width: 28rem;
  color: var(--muted);
}

.form-success .text-link {
  border: 0;
  margin-top: 1.25rem;
  padding-inline: 0;
  background: transparent;
  cursor: pointer;
}

.site-footer {
  padding-block: 4rem 2rem;
  color: var(--white);
  background: #04171f;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 3rem;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 3rem;
}

.site-footer__brand {
  width: 10.5rem;
}

.site-footer__top > p {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding-top: 1.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.site-footer__bottom p {
  margin: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

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

.js .reveal--delay-1 {
  transition-delay: 70ms;
}

.js .reveal--delay-2 {
  transition-delay: 140ms;
}

.js .reveal--delay-3 {
  transition-delay: 210ms;
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr);
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 6vw, 4.8rem);
  }

  .solution-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
    gap: 3.5rem;
  }

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

  .consultation__grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(29rem, 1.24fr);
    gap: 3.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 5.25rem;
  }

  html {
    scroll-padding-top: 5.25rem;
  }

  .container {
    width: min(calc(100% - 2.5rem), var(--container));
  }

  .site-header__inner {
    min-height: 4.6rem;
  }

  .brand {
    width: 9.2rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    gap: 0.4rem;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: calc(2.15rem + 4.6rem) 0 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 1.25rem 7rem;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
  }

  .site-nav .button {
    margin-top: 1.4rem;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 4rem 2rem;
  }

  .hero__copy {
    max-width: 40rem;
  }

  .hero__visual {
    min-height: min(66vw, 34rem);
  }

  .hero__sun {
    width: min(53vw, 27rem);
  }

  .hero__system {
    top: -8%;
    left: 6%;
    width: 74%;
  }

  .hero__ro {
    right: 5%;
    width: 36%;
  }

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

  .hero__foot > p {
    padding: 1rem 0;
  }

  .hero__foot ol {
    border-top: 1px solid rgba(8, 35, 47, 0.13);
  }

  .hero__foot li:first-child {
    border-left: 0;
  }

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

  .signal:nth-child(2) {
    border-right: 0;
  }

  .signal:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .solution-feature,
  .solution-feature--reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .solution-feature--reverse .solution-feature__copy {
    order: initial;
  }

  .solution-feature__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .process__steps li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process__steps li:last-child {
    border-bottom: 0;
  }

  .process__steps > li > span {
    margin-bottom: 1.5rem;
  }

  .service-area__header,
  .service-area__resources {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-area__resources nav {
    justify-content: flex-start;
  }

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

  .finder__intro {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .finder__progress {
    margin-top: 2rem;
    padding-top: 0;
  }

  .fit-options {
    grid-template-columns: 1fr;
  }

  .fit-option {
    border-right: 0;
    border-bottom: 1px solid #c8dce0;
  }

  .fit-option:last-child {
    border-bottom: 0;
  }

  .fit-option > p {
    min-height: 0;
  }

  .faq__grid,
  .consultation__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .consultation__copy,
  .consultation__form-wrap {
    max-width: 42rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .site-footer__bottom nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --section-space: 4.5rem;
  }

  html {
    scroll-padding-top: 4.6rem;
  }

  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .utility-bar {
    display: none;
  }

  .site-header__inner {
    min-height: 4.4rem;
  }

  .brand {
    width: 8.8rem;
  }

  .site-nav {
    inset: 4.4rem 0 0;
    padding-inline: 1rem;
  }

  .button {
    min-height: 3.35rem;
  }

  .hero__grid {
    gap: 0.5rem;
    padding-block: 3.5rem 1rem;
  }

  .hero h1 {
    max-width: 21rem;
    margin-bottom: 1.25rem;
    font-size: clamp(3.05rem, 14vw, 3.7rem);
    letter-spacing: -0.06em;
    line-height: 1;
  }

  .hero__lede {
    max-width: 21rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .hero__benefits li {
    font-size: 0.8rem;
  }

  .hero__visual {
    min-height: 20.5rem;
    margin-inline: -0.25rem;
  }

  .hero__sun {
    width: 17rem;
  }

  .hero__system {
    top: -1%;
    left: 0;
    width: 85%;
  }

  .hero__ro {
    right: -2%;
    bottom: -2%;
    width: 43%;
  }

  .hero__foot {
    display: none;
  }

  .section-heading h2,
  .process h2,
  .service-area h2,
  .faq h2,
  .consultation h2 {
    font-size: clamp(2.2rem, 10.8vw, 2.75rem);
    line-height: 1.08;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading > p,
  .section-heading--split > p,
  .process__intro > p,
  .faq__intro > p {
    font-size: 0.95rem;
  }

  .eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.7rem;
  }

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

  .signal,
  .signal:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.25rem 0 1.5rem 3.5rem;
  }

  .signal:last-child {
    border-bottom: 0;
  }

  .signal__number {
    display: none;
  }

  .signal__icon {
    position: absolute;
    top: 1.3rem;
    left: 0;
    width: 2.25rem;
    margin: 0;
  }

  .signal-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 1.5rem;
  }

  .solution-feature {
    gap: 2.5rem;
    padding-block: 3.5rem;
  }

  .solution-feature h3,
  .specialty h3 {
    font-size: clamp(2.1rem, 10vw, 2.65rem);
  }

  .solution-feature__media {
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 0.9rem;
  }

  .solution-feature__media > span {
    right: 1rem;
    bottom: 0.8rem;
    font-size: 0.58rem;
  }

  .specialty {
    gap: 2.5rem;
    padding-top: 3.5rem;
  }

  .specialty__items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .specialty__item {
    display: grid;
    grid-template-columns: 7rem 1fr;
    column-gap: 1rem;
  }

  .specialty__item img {
    grid-row: 1 / 3;
    margin: 0;
  }

  .specialty__item h4 {
    align-self: end;
  }

  .process__grid {
    gap: 2.5rem;
  }

  .process__steps li {
    padding: 1.5rem 0;
  }

  .service-area__header {
    margin-bottom: 2.5rem;
  }

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

  .service-area__place {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.6rem 0;
  }

  .service-area__place:last-child {
    border-bottom: 0;
  }

  .service-area__place > span {
    margin-bottom: 0.9rem;
  }

  .service-area__place p {
    max-width: 28rem;
  }

  .service-area__resources {
    margin-top: 1rem;
    padding: 1.4rem;
  }

  .finder__shell {
    border-radius: 0.9rem;
  }

  .finder__intro {
    padding: 2rem 1.25rem;
  }

  .finder h2 {
    max-width: 19rem;
    font-size: 2.35rem;
  }

  .finder__questions {
    min-height: 0;
    align-items: flex-start;
    padding: 2rem 1.25rem;
  }

  .finder-step legend {
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
  }

  .finder-options,
  .finder-options--three {
    grid-template-columns: 1fr;
  }

  .finder-options button {
    min-height: 4.25rem;
  }

  .finder-result h3 {
    font-size: 2rem;
  }

  .finder-result__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
  }

  .fit-option {
    padding: 1.75rem 0;
  }

  .fit-option__number {
    margin-bottom: 1rem;
  }

  .fit-option h3 {
    font-size: 1.65rem;
  }

  .clarity h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .faq__grid {
    gap: 2.5rem;
  }

  .faq summary {
    padding-block: 1.25rem;
    font-size: 0.92rem;
  }

  .faq details p {
    margin-right: 0;
    font-size: 0.88rem;
  }

  .consultation__grid {
    width: 100%;
    gap: 2.75rem;
  }

  .consultation__copy {
    width: calc(100% - 2rem);
    margin-inline: auto;
  }

  .consultation__form-wrap {
    width: 100%;
    max-width: none;
    min-height: 0;
    border-radius: 0;
    padding: 2rem 1rem;
  }

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

  .form-heading strong {
    font-size: 1.7rem;
  }

  .form-heading p {
    margin-top: 0.4rem;
  }

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

  .field--full {
    grid-column: auto;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
  }

  .form-success {
    padding: 2.5rem 1.25rem;
  }

  .site-footer {
    padding-top: 3.25rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__top > p {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__top .button {
    width: 100%;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer__bottom nav {
    grid-column: auto;
    gap: 1rem;
  }

}

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