:root {
  color-scheme: light;
  --hpc-blue: #007aff;
  --hpc-blue-dark: #0057d9;
  --hpc-coral: #ff6b57;
  --hpc-label: #111114;
  --hpc-secondary: #515154;
  --hpc-tertiary: #7a7a80;
  --hpc-fill: #f5f5f7;
  --hpc-elevated: #ffffff;
  --hpc-separator: rgba(60, 60, 67, 0.16);
  --hpc-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --hpc-radius: 8px;
  --hpc-max-width: 1160px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--hpc-label);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

picture {
  display: contents;
}

a {
  color: var(--hpc-blue);
  text-decoration: none;
}

a:hover {
  color: var(--hpc-blue-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(0, 122, 255, 0.38);
  outline-offset: 3px;
}

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

button,
.btn,
.nav-link,
.site-footer a,
.hpc-text-link {
  min-height: 44px;
}

.skip-link {
  background: var(--hpc-blue);
  border-radius: var(--hpc-radius);
  color: #fff;
  font-weight: 700;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 2000;
}

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

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--hpc-max-width);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
}

.container-fluid {
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.row > * {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.g-0 {
  gap: 0;
  margin-left: 0;
  margin-right: 0;
}

.g-0 > * {
  padding-left: 0;
  padding-right: 0;
}

.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-10,
.col-lg-12,
.col-md-6,
.col-sm-6,
.col-sm-8,
.col-sm-4,
.col-md-7,
.col-md-8,
.col-md-10 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-md-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-md-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }

  .offset-md-1 {
    margin-left: 8.3333%;
  }

  .offset-md-2 {
    margin-left: 16.6667%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-lg-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-lg-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.ms-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-bottom: auto;
  margin-top: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.p-5 {
  padding: clamp(1.5rem, 5vw, 3rem) !important;
}

.py-4 {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
}

.py-5 {
  padding-bottom: 3rem !important;
  padding-top: 3rem !important;
}

.text-center {
  text-align: center !important;
}

.text-white {
  color: #fff !important;
}

.text-muted {
  color: var(--hpc-secondary) !important;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.rounded {
  border-radius: var(--hpc-radius) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 999px !important;
}

.shadow-sm {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.bg-dark,
.bg-black {
  background: #1d1d1f !important;
}

.bg-primary {
  background: var(--hpc-coral) !important;
}

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

.float-end {
  float: right;
}

.display-4 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.06;
}

.display-5 {
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: 1.12;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--hpc-radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--hpc-blue);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--hpc-blue-dark);
  color: #fff;
}

.btn-secondary,
.btn-outline-secondary {
  background: #fff;
  border-color: var(--hpc-separator);
  color: var(--hpc-label);
}

.btn-secondary:hover,
.btn-outline-secondary:hover,
.btn-secondary:focus,
.btn-outline-secondary:focus {
  background: var(--hpc-fill);
  color: var(--hpc-label);
}

.btn-xl {
  min-height: 52px;
  padding: 0.95rem 1.65rem;
}

.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1030;
}

.collapse:not(.show) {
  display: none;
}

.navbar,
.site-nav {
  align-items: center;
  display: flex;
  min-height: 64px;
}

.navbar .container,
.site-nav__inner {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.navbar-brand,
.site-brand {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
  color: #fff;
}

.navbar-dark .nav-link:hover,
.navbar-dark .navbar-brand:hover {
  color: rgba(255, 255, 255, 0.82);
}

.navbar-toggler,
.site-menu-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--hpc-radius);
  color: currentColor;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-left: auto;
  width: 44px;
}

.navbar-toggler-icon,
.site-menu-button__icon {
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 7px currentColor, 0 -7px currentColor;
  display: block;
  height: 2px;
  width: 20px;
}

.navbar-collapse,
.site-nav__menu {
  flex-basis: 100%;
  width: 100%;
}

.navbar-nav,
.site-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0;
}

.nav-link,
.site-nav__links a {
  align-items: center;
  border-radius: var(--hpc-radius);
  display: flex;
  font-weight: 700;
  padding: 0.65rem 0.85rem;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-toggler,
  .site-menu-button {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse,
  .site-nav__menu {
    display: flex !important;
    flex-basis: auto;
    width: auto;
  }

  .navbar-expand-lg .navbar-nav,
  .site-nav__links {
    align-items: center;
    flex-direction: row;
    padding-top: 0;
  }
}

.site-header {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--hpc-separator);
  color: var(--hpc-label);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .site-nav__inner {
  min-height: 68px;
}

.site-brand {
  gap: 0.65rem;
}

.site-brand__mark {
  align-items: center;
  background: url("../img/favicon.svg") center / contain no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(10, 132, 255, 0.12), 0 4px 12px rgba(10, 132, 255, 0.16);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  overflow: hidden;
  width: 34px;
}

.site-header a {
  color: var(--hpc-label);
}

.site-header a:hover,
.site-header .active {
  color: var(--hpc-blue);
}

.site-nav__cta {
  background: var(--hpc-coral);
  color: #fff !important;
}

.site-main {
  min-height: 55vh;
}

.page-hero {
  background: var(--hpc-fill);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.page-hero__layout {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
}

.page-hero h1,
.policy-page h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.page-hero p,
.content-section p,
.policy-page p,
.policy-page li {
  color: var(--hpc-secondary);
  font-size: 1.08rem;
}

.eyebrow {
  color: var(--hpc-coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--hpc-radius);
  box-shadow: var(--hpc-shadow);
  object-fit: cover;
  width: 100%;
}

.content-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.content-grid {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-card {
  background: var(--hpc-elevated);
  border: 1px solid var(--hpc-separator);
  border-radius: var(--hpc-radius);
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.feature-card h2,
.feature-card h3 {
  margin: 0 0 0.65rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.policy-page {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.policy-page h2 {
  margin-top: 2.5rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
}

.form-control {
  background: #fff;
  border: 1px solid var(--hpc-separator);
  border-radius: var(--hpc-radius);
  color: var(--hpc-label);
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  width: 100%;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  left: -9999px;
  position: absolute;
}

.invalid-feedback {
  color: #b42318;
  display: none;
  font-size: 0.92rem;
}

.is-invalid + .invalid-feedback {
  display: block;
}

.was-validated .form-control:invalid {
  border-color: #b42318;
}

.was-validated .form-control:invalid + .invalid-feedback {
  display: block;
}

.alert {
  border: 1px solid var(--hpc-separator);
  border-radius: var(--hpc-radius);
  margin: 1rem 0;
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
}

.alert-success {
  background: #eefbf3;
  border-color: #abe2bf;
  color: #176b35;
}

.alert-danger {
  background: #fff1f0;
  border-color: #f4b8b3;
  color: #912018;
}

.btn-close {
  background: transparent;
  border: 0;
  color: currentColor;
  font-size: 1.35rem;
  height: 44px;
  line-height: 1;
  position: absolute;
  right: 0.35rem;
  top: 0.35rem;
  width: 44px;
}

.btn-close::before {
  content: "x";
}

.site-footer {
  background: var(--hpc-fill);
  border-top: 1px solid var(--hpc-separator);
  color: var(--hpc-secondary);
  padding: 3rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(140px, 0.55fr));
}

.site-footer h2 {
  color: var(--hpc-label);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.site-footer p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.site-footer a {
  align-items: center;
  display: flex;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.site-footer__legal {
  border-top: 1px solid var(--hpc-separator);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.site-footer__legal a {
  display: inline;
  margin-bottom: 0;
  min-height: auto;
}

.site-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

.site-reveal.site-revealed {
  opacity: 1;
  transform: none;
}

.site-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.88);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  padding: 2rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1080;
}

.site-lightbox.is-open {
  display: flex;
}

.site-lightbox__image {
  max-height: calc(100vh - 6rem);
  max-width: min(100%, 1100px);
}

.site-lightbox__button {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 2rem;
  height: 3rem;
  justify-content: center;
  position: absolute;
  width: 3rem;
}

.site-lightbox__button:hover,
.site-lightbox__button:focus {
  background: rgba(255, 255, 255, 0.24);
}

.site-lightbox__close {
  right: 1rem;
  top: 1rem;
}

.site-lightbox__prev {
  left: 1rem;
}

.site-lightbox__next {
  right: 1rem;
}

@media (max-width: 991.98px) {
  .page-hero__layout,
  .content-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .navbar .container,
  .site-nav__inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .inline-actions .btn {
    width: 100%;
  }

  .site-lightbox {
    padding: 1rem;
  }

  .site-lightbox__button {
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}

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