:root {
  --ink: #00152f;
  --ink-deep: #000f24;
  --paper: #f4f1ea;
  --paper-bright: #faf8f3;
  --cobalt: #1357ff;
  --cobalt-hover: #3470ff;
  --paper-muted: rgba(244, 241, 234, 0.76);
  --ink-muted: rgba(0, 21, 47, 0.74);
  --line-dark: rgba(244, 241, 234, 0.22);
  --line-light: rgba(0, 21, 47, 0.19);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --max-width: 100rem;
  --header-height: 7rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.site-header::after {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: var(--ink);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  right: 0;
  height: 5rem;
  min-height: 5rem;
  background: rgba(0, 21, 47, 0.94);
  border-color: rgba(244, 241, 234, 0.14);
  backdrop-filter: blur(14px);
}

.wordmark,
.primary-nav,
.menu-button {
  position: relative;
  z-index: 1;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  font-size: clamp(0.95rem, 1.4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-size: 0.98rem;
}

.primary-nav > a:not(.button) {
  color: var(--paper-muted);
  transition: color 180ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  padding: 0.9rem 1.55rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--cobalt);
  border: 1px solid var(--cobalt);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease);
}

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

.button--compact {
  min-height: 3.25rem;
  padding-inline: 1.4rem;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(55rem, 100svh);
  padding: calc(var(--header-height) + clamp(5rem, 11vh, 8rem)) var(--gutter)
    clamp(5rem, 10vh, 7rem);
  overflow: hidden;
  align-items: center;
  background: var(--ink);
  isolation: isolate;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(52rem, 57vw);
  max-width: calc(var(--max-width) / 2);
}

.hero h1,
.about h2,
.approach h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4.2rem, 7.2vw, 7.8rem);
  line-height: 0.86;
}

.hero__content > p {
  max-width: 42rem;
  margin: 2.6rem 0 0;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  margin-top: 2.25rem;
  align-items: center;
  gap: 2rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.45rem 0;
  align-items: center;
  gap: 1.3rem;
  border-bottom: 2px solid var(--cobalt);
  font-weight: 500;
}

.text-link svg {
  width: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.reach-lines {
  pointer-events: none;
}

.reach-lines svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.reach-lines path {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.reach-lines--hero {
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: 5%;
  width: 62%;
  height: 70%;
  color: rgba(244, 241, 234, 0.31);
}

.reach-lines--hero path {
  stroke-width: 0.9;
}

.mobile-product-cues {
  position: absolute;
  z-index: 1;
  right: clamp(4rem, 10vw, 11rem);
  bottom: clamp(5rem, 10vh, 8rem);
  width: 23rem;
  height: 28rem;
  pointer-events: none;
}

.phone-frame {
  position: absolute;
  display: flex;
  width: 10.8rem;
  height: 22.5rem;
  padding: 2.8rem 1rem 1.1rem;
  flex-direction: column;
  border: 1px solid rgba(244, 241, 234, 0.3);
  border-radius: 1.9rem;
  background: rgba(0, 21, 47, 0.68);
  box-shadow: 0 2rem 5rem rgba(0, 8, 20, 0.28);
  backdrop-filter: blur(5px);
}

.phone-frame--back {
  top: 0;
  right: 0.5rem;
  opacity: 0.52;
  transform: rotate(7deg);
}

.phone-frame--front {
  right: 8.8rem;
  bottom: 0;
  transform: rotate(-4deg);
}

.phone-frame__island {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 3.25rem;
  height: 0.85rem;
  border: 1px solid rgba(244, 241, 234, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-ui {
  display: block;
}

.phone-ui--title {
  width: 58%;
  height: 0.45rem;
  margin-bottom: 1.25rem;
  background: rgba(244, 241, 234, 0.68);
}

.phone-ui--feature {
  height: 7rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(19, 87, 255, 0.8);
  background: rgba(19, 87, 255, 0.12);
}

.phone-ui--line {
  width: 90%;
  height: 1px;
  margin: 0.45rem 0;
  background: rgba(244, 241, 234, 0.34);
}

.phone-ui--short {
  width: 58%;
}

.phone-ui--dock {
  display: flex;
  margin-top: auto;
  padding-top: 0.75rem;
  justify-content: space-around;
  border-top: 1px solid rgba(244, 241, 234, 0.15);
}

.phone-ui--dock i {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.55);
}

.phone-ui--dock i:first-child {
  background: var(--cobalt);
}

.reach-lines__lower {
  opacity: 0.52;
}

.reach-lines__axis {
  opacity: 0.35;
}

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

.section-label {
  display: flex;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  gap: 0.8rem;
  color: var(--cobalt);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-label::after {
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.about {
  position: relative;
  min-height: 41rem;
  padding: clamp(5.5rem, 9vw, 8rem) var(--gutter);
  overflow: hidden;
}

.about__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.75fr);
  align-items: end;
  gap: clamp(4rem, 9vw, 10rem);
}

.about h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.about p {
  max-width: 38rem;
  margin: 2.25rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

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

.product-path__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  min-height: 7.25rem;
  padding: 1.35rem 0;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line-light);
}

.product-path__item > span {
  align-self: start;
  padding-top: 0.25rem;
  color: var(--cobalt);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.product-path h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.product-path p {
  margin: 0.55rem 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.reach-lines--about {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 55%;
  height: 43%;
  color: var(--cobalt);
  opacity: 0.38;
}

.reach-lines--about path {
  stroke-width: 1;
}

.approach {
  padding: clamp(5.5rem, 8vw, 7rem) var(--gutter) clamp(4.5rem, 7vw, 6rem);
  background: var(--ink);
}

.approach h2 {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
}

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

.approach-list li {
  display: grid;
  grid-template-columns: minmax(6rem, 0.45fr) minmax(15rem, 1.3fr) minmax(18rem, 1fr);
  min-height: 8.75rem;
  padding: 1.5rem 0;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
  border-bottom: 1px solid var(--line-dark);
}

.approach-list__number {
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-variant-numeric: lining-nums;
  line-height: 1;
}

.approach-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.approach-list p {
  max-width: 30rem;
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.contact {
  position: relative;
  min-height: 48rem;
  padding: clamp(6rem, 10vw, 9rem) var(--gutter) clamp(9rem, 16vw, 14rem);
  overflow: hidden;
}

.contact .section-label {
  position: relative;
  z-index: 2;
}

.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(27rem, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 10rem);
}

.contact h2 {
  font-size: clamp(3.6rem, 6vw, 6.25rem);
  line-height: 0.92;
}

.contact p {
  max-width: 39rem;
  margin: 2.25rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.company-details {
  position: relative;
  z-index: 2;
  display: grid;
  margin: clamp(4.5rem, 8vw, 7rem) 0 0;
  grid-template-columns: 1.25fr 1fr 0.8fr 1.2fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.company-details > div {
  min-width: 0;
  padding: 1.5rem clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--line-light);
}

.company-details > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.company-details dt {
  margin-bottom: 0.65rem;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
}

.company-details dd a {
  color: var(--cobalt);
}

.company-details dd a + a {
  margin-left: 0.75rem;
}

.email-link {
  display: flex;
  min-height: 7.5rem;
  padding: 1.5rem 2rem;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--cobalt);
  color: var(--cobalt);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 650;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.email-link:hover {
  color: #fff;
  background: var(--cobalt);
  transform: translateY(-3px);
}

.email-link svg {
  width: 2.3rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.reach-lines--contact {
  position: absolute;
  right: 0;
  bottom: 3rem;
  left: 0;
  height: 8rem;
  color: var(--cobalt);
}

.reach-lines--contact path {
  stroke-width: 1;
}

.site-footer {
  padding: 3.5rem var(--gutter) 4.5rem;
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  min-height: 15rem;
  padding-top: 3.5rem;
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  border-top: 1px solid var(--line-dark);
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-wordmark::after {
  width: min(15rem, 100%);
  height: 1px;
  margin-top: 2rem;
  background: var(--cobalt);
  content: "";
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-nav a {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-muted);
  transition: color 180ms ease;
}

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

.site-footer__legal {
  padding: 0 0 0 4rem;
  border-left: 1px solid var(--line-dark);
  color: var(--paper-muted);
}

.site-footer__legal p {
  margin: 0 0 0.35rem;
}

.site-footer__legal a {
  color: #5b86ff;
}

.legal-links {
  display: flex;
  margin-top: 1.2rem;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.legal-links a {
  color: var(--paper-muted);
  text-decoration: underline;
  text-decoration-color: rgba(244, 241, 234, 0.3);
  text-underline-offset: 0.25rem;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-page .site-header {
  position: relative;
  max-width: none;
}

.legal-main {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter) clamp(6rem, 10vw, 10rem);
}

.legal-main__inner {
  width: min(100%, 54rem);
  margin: 0 auto;
}

.legal-main__kicker {
  margin: 0 0 1.5rem;
  color: var(--cobalt);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.legal-main h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.legal-main__intro {
  max-width: 42rem;
  margin: 2rem 0 4rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: 2.75rem;
}

.legal-content section {
  padding-top: 2.2rem;
  border-top: 1px solid var(--line-light);
}

.legal-content h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  line-height: 1.75;
}

.legal-content p {
  margin: 0.8rem 0;
}

.legal-content ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.policy-meta {
  margin-top: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.support-actions {
  display: grid;
  margin: 2rem 0 4rem;
  gap: 1rem;
}

.support-actions a {
  display: flex;
  min-height: 5rem;
  padding: 1.2rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--cobalt);
  color: var(--cobalt);
  font-weight: 650;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.support-actions a:hover {
  color: #fff;
  background: var(--cobalt);
}

@media (min-width: 100rem) {
  .site-header,
  .hero,
  .about,
  .approach,
  .contact,
  .site-footer {
    padding-right: calc((100vw - var(--max-width)) / 2 + 5rem);
    padding-left: calc((100vw - var(--max-width)) / 2 + 5rem);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 5.75rem;
  }

  .menu-button {
    display: inline-flex;
    width: 4rem;
    height: 3rem;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    border: 0;
    color: var(--paper);
    background: transparent;
    font: 600 0.8rem/1 var(--sans);
  }

  .menu-button__icon {
    display: flex;
    width: 1.5rem;
    flex-direction: column;
    gap: 0.4rem;
  }

  .menu-button__icon i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .primary-nav {
    position: fixed;
    z-index: 0;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    padding: 2rem var(--gutter) 2.5rem;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 180ms ease,
      transform 220ms var(--ease);
  }

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

  .primary-nav > a:not(.button) {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.25rem;
  }

  .primary-nav .button {
    margin-top: 1.5rem;
  }

  .legal-nav {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: flex;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .legal-nav > a:not(.button) {
    display: none;
  }

  .legal-nav .button {
    min-height: 2.8rem;
    margin: 0;
    padding-inline: 1rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 47rem;
    padding-top: calc(var(--header-height) + 5.5rem);
    align-items: start;
  }

  .hero__content {
    width: min(100%, 39rem);
  }

  .reach-lines--hero {
    right: -25%;
    bottom: -3%;
    width: 95%;
    height: 54%;
    opacity: 0.85;
  }

  .mobile-product-cues {
    right: -2.5rem;
    bottom: 1rem;
    width: 14rem;
    height: 18rem;
    opacity: 0.3;
  }

  .phone-frame {
    width: 7.2rem;
    height: 15rem;
    padding: 2rem 0.7rem 0.75rem;
    border-radius: 1.3rem;
  }

  .phone-frame--front {
    right: 5.8rem;
  }

  .phone-frame__island {
    top: 0.55rem;
    width: 2.2rem;
    height: 0.55rem;
  }

  .phone-ui--feature {
    height: 4.5rem;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about {
    min-height: 43rem;
  }

  .about__grid {
    gap: 2rem;
  }

  .product-path {
    width: min(100%, 38rem);
  }

  .reach-lines--about {
    right: -14%;
    width: 85%;
    height: 28%;
  }

  .approach-list li {
    grid-template-columns: 5rem 1fr;
    gap: 1rem 2rem;
  }

  .approach-list p {
    grid-column: 2;
  }

  .contact__grid {
    gap: 3.5rem;
  }

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

  .company-details > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .company-details > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .email-link {
    width: min(100%, 34rem);
    min-height: 6rem;
  }

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

  .site-footer__legal {
    grid-column: 1 / -1;
    padding: 2rem 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .wordmark {
    letter-spacing: 0.25em;
  }

  .menu-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    min-height: 45rem;
    padding-top: calc(var(--header-height) + 4.5rem);
  }

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

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .reach-lines--hero {
    right: -80%;
    bottom: -5%;
    width: 165%;
    height: 46%;
  }

  .mobile-product-cues {
    display: none;
  }

  .section-label {
    margin-bottom: 2.25rem;
  }

  .about {
    min-height: 52rem;
    padding-top: 5.5rem;
  }

  .about h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .reach-lines--about {
    right: -30%;
    width: 125%;
    height: 24%;
  }

  .approach {
    padding-top: 5.5rem;
  }

  .approach h2 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .approach-list li {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2rem 0 2.25rem;
    gap: 0.75rem;
  }

  .approach-list__number {
    font-size: 2.6rem;
  }

  .approach-list h3 {
    font-size: 2rem;
  }

  .approach-list p {
    grid-column: 1;
  }

  .contact {
    min-height: 55rem;
    padding-top: 5.5rem;
  }

  .contact h2 {
    font-size: clamp(3.15rem, 15vw, 4.3rem);
  }

  .email-link {
    min-height: 5rem;
    padding: 1rem;
    gap: 0.8rem;
    font-size: clamp(1rem, 4.7vw, 1.25rem);
  }

  .email-link svg {
    width: 1.75rem;
  }

  .company-details {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .company-details > div,
  .company-details > div:first-child,
  .company-details > div:nth-child(3) {
    padding: 1.2rem 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .company-details > div:first-child {
    border-top: 0;
  }

  .reach-lines--contact {
    bottom: 1rem;
  }

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

  .footer-nav {
    max-width: none;
  }

  .site-footer__legal {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
