:root {
  color-scheme: light;
  --ink: #101214;
  --paper: #f7f8f8;
  --paper-cool: #edf2f4;
  --white: #fff;
  --cobalt: #0b4f83;
  --cobalt-dark: #082f50;
  --line: rgb(16 18 20 / 18%);
  --line-light: rgb(255 255 255 / 26%);
  --muted: #525a61;
  --frame: 92rem;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5.5rem, 11vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
  font-family:
    "Helvetica Neue",
    "Neue Haas Grotesk Text Pro",
    Inter,
    Arial,
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.3em;
  transition: opacity 160ms ease;
}

a:hover {
  opacity: 0.62;
}

a:focus-visible {
  border-radius: 0.1rem;
  outline: 0.15rem solid currentColor;
  outline-offset: 0.35rem;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 650;
  transform: translateY(-160%);
}

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

.masthead {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.masthead--overlay {
  position: absolute;
  inset: 0 0 auto;
  border-bottom-color: rgb(16 18 20 / 12%);
  background: transparent;
}

.masthead__inner {
  display: flex;
  width: min(100%, var(--frame));
  min-height: 6.25rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav a {
  display: inline-flex;
  min-block-size: 2.75rem;
  align-items: center;
  text-decoration: none;
}

.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.5em;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: max(46rem, 100svh);
  overflow: hidden;
  align-items: center;
}

.hero__picture,
.hero__image,
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.94) contrast(1.015);
  animation: seam-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 78%) 0%, rgb(255 255 255 / 48%) 38%, transparent 67%),
    linear-gradient(0deg, rgb(247 248 248 / 10%), rgb(247 248 248 / 10%));
}

.hero__content {
  padding-top: 8rem;
  padding-bottom: 7rem;
  animation: copy-in 1s 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow,
.section-index,
.product-kicker,
.status,
.availability,
.practice-number,
.policy-aside > p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin: clamp(1.4rem, 3vw, 2.2rem) 0 0;
  font-size: clamp(3.2rem, 7.1vw, 7.4rem);
  font-weight: 320;
  letter-spacing: -0.062em;
  line-height: 0.93;
}

.hero__intro {
  max-width: 39rem;
  margin: clamp(2rem, 4.5vw, 3.7rem) 0 0;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.52;
}

.arrow-link {
  display: inline-flex;
  margin-top: 2.5rem;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.arrow-link span {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
}

.section {
  padding-block: var(--section-space);
  border-top: 1px solid var(--line);
}

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.section-grid--top {
  align-items: start;
}

.section-heading h2 {
  max-width: 13ch;
  margin: 1.3rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-body {
  max-width: 57rem;
}

.section-body p {
  margin: 0;
}

.section-body p + p {
  margin-top: 1.5em;
}

.section-body--large {
  font-size: clamp(1.65rem, 3.4vw, 3.25rem);
  font-weight: 330;
  letter-spacing: -0.048em;
  line-height: 1.14;
}

.section-body--large p + p {
  max-width: 32ch;
  color: var(--muted);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

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

.product-panel {
  position: relative;
  display: grid;
  min-height: 43rem;
  padding: clamp(1.6rem, 4vw, 4.5rem);
  overflow: hidden;
  grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--cobalt-dark);
  color: var(--white);
}

.product-panel::after {
  position: absolute;
  right: -13%;
  bottom: -27%;
  width: min(48vw, 43rem);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  box-shadow:
    0 0 0 6rem rgb(255 255 255 / 2.5%),
    0 0 0 12rem rgb(255 255 255 / 2.5%);
  content: "";
}

.product-panel__meta,
.product-panel__content {
  position: relative;
  z-index: 1;
}

.product-panel__meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-index--light {
  color: rgb(255 255 255 / 66%);
}

.status {
  width: fit-content;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-light);
}

.product-panel__content {
  align-self: center;
  max-width: 49rem;
}

.product-kicker {
  color: #a9cae4;
}

.product-compatibility {
  margin: 0.85rem 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.product-panel h2 {
  max-width: 12ch;
  margin: 1.6rem 0 0;
  font-size: clamp(3rem, 6.4vw, 6.7rem);
  font-weight: 310;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.product-description {
  max-width: 39rem;
  margin: 2.8rem 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  letter-spacing: -0.017em;
  line-height: 1.58;
}

.availability {
  margin-top: 2rem;
  color: rgb(255 255 255 / 54%);
}

.practice-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.practice-item {
  min-height: 20rem;
  padding: clamp(1.4rem, 3.2vw, 2.8rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-number {
  color: var(--cobalt);
}

.practice-item h3,
.principles-list h3 {
  margin: clamp(3rem, 7vw, 5.5rem) 0 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 460;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.practice-item p:last-child,
.principles-list p {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: -0.012em;
  line-height: 1.58;
}

.practice-item p:last-child {
  max-width: 26rem;
  margin: 1.25rem 0 0;
}

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

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

.principles-list article {
  display: grid;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(12rem, 0.62fr) minmax(0, 1fr);
  gap: 2rem;
}

.principles-list h3,
.principles-list p {
  margin: 0;
}

.principles-list p {
  max-width: 36rem;
}

.contact-band {
  position: relative;
  isolation: isolate;
  min-height: 42rem;
  overflow: hidden;
}

.contact-band__image,
.contact-band__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.contact-band__image {
  background-image: url("/assets/cobalt-seam.jpg");
  background-position: 56% center;
  background-size: cover;
}

.contact-band__veil {
  z-index: -1;
  background: linear-gradient(90deg, rgb(247 248 248 / 92%) 0%, rgb(247 248 248 / 72%) 48%, rgb(247 248 248 / 12%) 78%);
}

.contact-band__content {
  display: flex;
  min-height: 42rem;
  padding-block: var(--section-space);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-band h2 {
  max-width: 11ch;
  margin: 1.6rem 0 0;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  font-weight: 320;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.contact-band p:not(.section-index) {
  max-width: 35rem;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.button-link {
  display: inline-flex;
  min-height: 3.35rem;
  margin-top: 2.25rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid currentColor;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  padding-block: clamp(4rem, 8vw, 7rem) 2rem;
  background: var(--ink);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
}

.wordmark--footer {
  display: inline-block;
}

.site-footer__grid > div > p {
  max-width: 22rem;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 55%);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a {
  display: inline-flex;
  min-block-size: 2.75rem;
  align-items: center;
}

.site-footer address,
.company-contact address,
.policy-content address {
  font-style: normal;
  line-height: 1.65;
}

.site-footer address {
  color: rgb(255 255 255 / 65%);
  font-size: 0.82rem;
}

.site-footer__copyright {
  margin: clamp(5rem, 10vw, 9rem) 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 48%);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

/* Interior pages */

.page-hero {
  display: grid;
  min-height: 34rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
}

.page-hero__copy {
  display: flex;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  flex-direction: column;
  justify-content: center;
}

.page-hero__copy > * {
  width: min(100%, 48rem);
  margin-right: 0;
  margin-left: auto;
}

.page-hero h1 {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 310;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.page-hero__visual {
  background-image:
    linear-gradient(rgb(247 248 248 / 12%), rgb(247 248 248 / 12%)),
    url("/assets/cobalt-seam.jpg");
  background-position: 66% center;
  background-size: cover;
}

.page-hero__visual--support {
  background-position: 58% center;
}

.page-hero__visual--privacy {
  background-position: 48% center;
}

.page-hero__visual--about {
  background-position: 54% center;
}

/* About */

.about-brief__body {
  width: min(100%, 49rem);
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  font-weight: 350;
  letter-spacing: -0.03em;
  line-height: 1.42;
}

.about-brief__body p {
  margin: 0;
}

.about-brief__body p + p {
  max-width: 38rem;
  margin-top: 1.4em;
  color: var(--muted);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.6;
}

.policy-layout {
  display: grid;
  padding-block: var(--section-space);
  grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.policy-aside {
  align-self: start;
  position: sticky;
  top: 2rem;
}

.policy-aside time {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-aside nav {
  display: flex;
  margin-top: 3rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.76rem;
}

.policy-content {
  width: min(100%, 49rem);
}

.policy-content section {
  display: grid;
  padding: 2.2rem 0 3.2rem;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
}

.policy-content h2 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.policy-content p,
.policy-content address {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  letter-spacing: -0.012em;
  line-height: 1.68;
  grid-column: 2;
}

.policy-content p + p,
.policy-content p + address {
  margin-top: 1.15rem;
}

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

.support-lead__grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.55fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.support-lead h2 {
  max-width: 12ch;
  margin: 1.4rem 0 0;
  font-size: clamp(2.7rem, 5.8vw, 6rem);
  font-weight: 320;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.support-form-card {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--cobalt-dark);
  color: var(--white);
}

.support-form-card__intro {
  max-width: 36rem;
  margin: 0;
  color: rgb(255 255 255 / 70%);
  line-height: 1.55;
}

.support-direct__address {
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.support-direct__address a {
  color: var(--white);
  text-decoration-color: rgb(255 255 255 / 45%);
  text-underline-offset: 0.22em;
}

.support-direct__address a:hover {
  text-decoration-color: var(--white);
}

.support-direct__button {
  margin-top: 1.75rem;
  border-color: var(--white);
  background: var(--white);
  color: var(--cobalt-dark);
}

.support-direct .support-form__warning {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.support-form {
  display: grid;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
}

.support-form__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.support-form__field--wide {
  grid-column: 1 / -1;
}

.support-form label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.65rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 0;
  background: rgb(255 255 255 / 6%);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
}

.support-form select {
  cursor: pointer;
}

.support-form select option {
  background: var(--white);
  color: var(--ink);
}

.support-form textarea {
  min-height: 11rem;
  resize: vertical;
}

.support-form input:focus-visible,
.support-form select:focus-visible,
.support-form textarea:focus-visible {
  border-color: var(--white);
  outline: 0.15rem solid #a9cae4;
  outline-offset: 0.2rem;
}

.support-form__help {
  margin: 0.55rem 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.78rem;
  line-height: 1.5;
}

.support-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.support-form__warning {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.support-form__warning h3,
.support-form__warning p {
  margin: 0;
}

.support-form__warning h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.support-form__warning p {
  max-width: 42rem;
  margin-top: 0.65rem;
  color: rgb(255 255 255 / 68%);
  font-size: 0.86rem;
  line-height: 1.55;
}

.support-form__actions {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 1.25rem;
}

.support-form__submit {
  min-width: 11rem;
  margin-top: 0;
  border-color: var(--white);
  background: var(--white);
  color: var(--cobalt-dark);
  cursor: pointer;
}

.support-form__submit:hover {
  opacity: 0.82;
}

.support-form__submit:disabled {
  cursor: wait;
  opacity: 0.55;
}

.support-form__submit:focus-visible {
  outline: 0.15rem solid #a9cae4;
  outline-offset: 0.25rem;
}

.support-form__status {
  min-height: 1.5rem;
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.84rem;
  line-height: 1.5;
}

.support-form__status--success {
  color: #d8f4e1;
}

.support-form__status--error {
  color: #ffd5d2;
}

.company-contact {
  display: grid;
  max-width: 49rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  color: var(--muted);
  line-height: 1.65;
}

.company-contact p {
  margin: 0;
}

.page-hero--result {
  min-height: calc(100svh - 6.25rem);
}

/* Custom 404 */

.error-main {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
}

.error-main__image,
.error-main__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.error-main__image {
  background-image: url("/assets/cobalt-seam.jpg");
  background-position: center;
  background-size: cover;
}

.error-main__veil {
  z-index: -1;
  background: linear-gradient(90deg, rgb(247 248 248 / 92%), rgb(247 248 248 / 28%));
}

.error-main__content {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.error-main h1 {
  max-width: 10ch;
  margin: 1.5rem 0 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 310;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.error-main__content > p:not(.eyebrow) {
  max-width: 30rem;
  margin: 2rem 0 0;
  line-height: 1.55;
}

.error-main__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.error-main__links .arrow-link {
  margin-top: 2.25rem;
}

@keyframes seam-in {
  from {
    opacity: 0;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 68rem) {
  .page-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  }

  .practice-item {
    min-height: 18rem;
  }
}

@media (max-width: 52rem) {
  :root {
    --section-space: clamp(4.5rem, 14vw, 7rem);
  }

  .masthead__inner {
    min-height: 5.25rem;
  }

  .section-grid,
  .support-lead__grid,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .product-panel {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-panel__meta {
    align-items: flex-start;
    flex-direction: row;
    gap: 1.5rem;
  }

  .product-panel__content {
    padding-block: 3.5rem 2rem;
  }

  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .page-hero__copy > * {
    margin-left: 0;
  }

  .page-hero__visual {
    min-height: 15rem;
    background-position: 58% center;
  }

  .policy-aside {
    position: static;
  }

  .policy-aside nav {
    display: none;
  }

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

  .site-footer__copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 39rem) {
  :root {
    --gutter: 1.25rem;
  }

  .masthead__inner {
    min-height: 5rem;
    gap: 1rem;
  }

  .wordmark {
    font-size: 0.64rem;
    letter-spacing: 0.25em;
  }

  .primary-nav {
    gap: 1rem;
    font-size: 0.59rem;
    letter-spacing: 0.13em;
  }

  .hero {
    min-height: max(42rem, 100svh);
  }

  .hero__image {
    object-position: 60% center;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgb(255 255 255 / 78%) 0%, rgb(255 255 255 / 48%) 60%, rgb(255 255 255 / 8%) 100%);
  }

  .hero__content {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }

  .hero h1 {
    max-width: 9.6ch;
    font-size: clamp(2.85rem, 15vw, 4.1rem);
    line-height: 0.95;
  }

  .hero__intro {
    max-width: 21rem;
    font-size: 1rem;
  }

  .section-body--large {
    font-size: clamp(1.7rem, 8.5vw, 2.35rem);
  }

  .product-panel {
    padding: 1.4rem;
  }

  .product-panel__meta {
    flex-direction: column;
  }

  .product-panel h2 {
    font-size: clamp(2.8rem, 14.5vw, 4rem);
  }

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

  .practice-item {
    min-height: 17rem;
  }

  .principles-list article {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .contact-band,
  .contact-band__content {
    min-height: 36rem;
  }

  .contact-band__image {
    background-position: 62% center;
  }

  .contact-band__veil {
    background: linear-gradient(90deg, rgb(247 248 248 / 92%), rgb(247 248 248 / 54%));
  }

  .contact-band h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .page-hero__copy {
    padding-block: 4.5rem;
  }

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

  .policy-content section {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .policy-content p,
  .policy-content address {
    grid-column: 1;
  }

  .support-form-card {
    padding: 1.5rem;
  }

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

  .support-form__field--wide {
    grid-column: 1;
  }

  .support-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .support-form__submit {
    width: 100%;
    min-height: 3.5rem;
  }

  .page-hero--result {
    min-height: calc(100svh - 5rem);
  }

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

  .site-footer__copyright {
    margin-top: 2rem;
  }

  .error-main__veil {
    background: linear-gradient(90deg, rgb(247 248 248 / 88%), rgb(247 248 248 / 48%));
  }

  .error-main__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 22rem) {
  .masthead__inner {
    align-items: flex-start;
    padding-block: 1.1rem;
    flex-direction: column;
  }

  .primary-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero__content {
    padding-top: 10rem;
  }
}

.home-page {
  height: 100svh;
  overflow: hidden;
}

.home-page .hero {
  height: 100svh;
  min-height: 100svh;
}

.home-page .hero__content {
  padding-top: clamp(5.5rem, 12vh, 8rem);
  padding-bottom: clamp(2rem, 8vh, 7rem);
}

.home-page .hero h1 {
  font-size: clamp(3rem, min(7.1vw, 12vh), 7.4rem);
}

@media (max-width: 39rem) {
  .home-page .hero__content {
    padding-top: 5.5rem;
    padding-bottom: 1.5rem;
  }

  .home-page .hero h1 {
    font-size: clamp(2.65rem, min(15vw, 9.5vh), 4.1rem);
  }

  .home-page .hero__intro {
    margin-top: clamp(1.25rem, 4vh, 2rem);
    line-height: 1.45;
  }

  .home-page .arrow-link {
    margin-top: clamp(1.25rem, 4vh, 2.5rem);
  }
}

@media (max-width: 39rem) and (max-height: 24rem) {
  .home-page .hero__content {
    padding-top: 4.75rem;
    padding-bottom: 0.5rem;
  }

  .home-page .hero h1 {
    margin-top: 0.85rem;
    font-size: clamp(2.3rem, min(12vw, 12vh), 3rem);
  }

  .home-page .hero__intro {
    margin-top: 0.9rem;
    font-size: 0.9rem;
  }

  .home-page .arrow-link {
    margin-top: 0.9rem;
  }
}

@media (max-height: 18rem) {
  .home-page {
    height: auto;
    overflow: auto;
  }

  .home-page .hero {
    height: auto;
    min-height: 26rem;
  }
}

@media (max-width: 22rem) {
  .home-page .masthead__inner {
    min-height: 5rem;
    padding-block: 0;
    align-items: center;
    flex-direction: row;
  }

  .home-page .primary-nav {
    width: auto;
    justify-content: flex-start;
  }

  .home-page .hero__content {
    padding-top: 5.5rem;
  }
}

@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;
  }
}

@media print {
  .masthead,
  .site-footer,
  .page-hero__visual,
  .policy-aside nav {
    display: none;
  }

  body {
    background: #fff;
  }

  .page-hero {
    display: block;
    min-height: 0;
  }

  .page-hero__copy,
  .policy-layout {
    padding: 2rem 0;
  }
}
