:root {
  color-scheme: light;
  --navy-950: #041225;
  --navy-900: #061a36;
  --navy-800: #0a2850;
  --blue-650: #075bd8;
  --blue-500: #168cf0;
  --aqua-400: #21c3e8;
  --gold-400: #ffd322;
  --ink: #10243e;
  --muted: #607086;
  --line: #dce6ee;
  --mist: #f2f8fb;
  --white: #ffffff;
  --success: #087d58;
  --danger: #b3261e;
  --shadow: 0 24px 70px rgb(1 20 43 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.hero {
  min-height: min(820px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  background: var(--navy-950);
}

.hero__content {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 76px) clamp(28px, 6vw, 92px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgb(22 140 240 / 24%), transparent 27rem),
    linear-gradient(145deg, var(--navy-800), var(--navy-950) 74%);
}

.hero__content::before,
.hero__content::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(33 195 232 / 16%);
  border-radius: 50%;
  content: "";
}

.hero__content::before {
  width: 34rem;
  height: 34rem;
  right: -20rem;
  top: -15rem;
}

.hero__content::after {
  width: 26rem;
  height: 26rem;
  left: -17rem;
  bottom: -18rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(38px, 7vh, 72px);
}

.brand-lockup__logo {
  width: clamp(86px, 8vw, 124px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgb(0 0 0 / 28%));
}

.brand-lockup__name {
  padding-left: 18px;
  border-left: 1px solid rgb(255 255 255 / 25%);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.brand-lockup__name span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.brand-lockup__name strong {
  color: var(--white);
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  font-weight: 730;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--aqua-400);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: currentcolor;
}

.eyebrow--dark {
  color: var(--blue-650);
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--gold-400);
  font-style: normal;
}

.hero__intro {
  max-width: 630px;
  margin: 27px 0 0;
  color: rgb(255 255 255 / 74%);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.75;
}

.launch-form {
  max-width: 670px;
  margin-top: 36px;
}

.launch-form__label {
  display: block;
  margin-bottom: 11px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 760;
}

.launch-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.launch-form__field {
  display: flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 8px;
  background: var(--white);
}

.launch-form__field:focus-within {
  outline: 3px solid rgb(33 195 232 / 38%);
  outline-offset: 2px;
}

.launch-form__field svg {
  width: 21px;
  height: 21px;
  margin-left: 18px;
  fill: none;
  stroke: #74849a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.launch-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 17px 17px 17px 12px;
  color: var(--ink);
  background: transparent;
}

.launch-form input::placeholder {
  color: #7c899a;
}

.launch-form button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  padding: 0 24px;
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 10px 26px rgb(255 211 34 / 17%);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.launch-form button:hover {
  background: #ffde4a;
  transform: translateY(-1px);
}

.launch-form button:focus-visible,
.info-card a:focus-visible,
.facebook-link:focus-visible,
footer a:focus-visible,
.back-link:focus-visible {
  outline: 3px solid var(--aqua-400);
  outline-offset: 3px;
}

.launch-form button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.launch-form button svg,
.facebook-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.launch-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.turnstile-container {
  max-width: 300px;
  margin-top: 12px;
}

.turnstile-container:empty {
  display: none;
}

.launch-form__privacy {
  margin: 11px 0 0;
  color: rgb(255 255 255 / 52%);
  font-size: 0.72rem;
  line-height: 1.5;
}

.launch-form__privacy a {
  color: rgb(255 255 255 / 78%);
  text-underline-offset: 3px;
}

.launch-form__status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 720;
}

.launch-form__status[data-state="success"] {
  color: #73edc2;
}

.launch-form__status[data-state="error"] {
  color: #ffaaa4;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin: 28px 0 0;
  padding: 0;
  color: rgb(255 255 255 / 56%);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.service-list li {
  position: relative;
}

.service-list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-400);
  content: "";
}

.hero__photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #449be2;
}

.hero__photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(4 18 37 / 30%), transparent 30%),
    linear-gradient(0deg, rgb(4 18 37 / 72%), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 49%;
  transform: scale(1.012);
}

.hero__photo-caption {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(28px, 5vw, 55px);
  left: clamp(24px, 4vw, 54px);
  color: var(--white);
}

.hero__photo-caption span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__photo-caption strong {
  font-size: clamp(1rem, 1.5vw, 1.27rem);
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(40px, 7vw, 105px);
  padding: clamp(72px, 9vw, 122px) clamp(24px, 6vw, 92px);
  background:
    linear-gradient(180deg, var(--white), var(--mist));
}

.visit__heading {
  align-self: start;
}

.visit__heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.visit__heading > p:last-child {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

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

.info-card {
  min-height: 290px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(27px, 3vw, 39px);
  background: rgb(255 255 255 / 78%);
}

.info-card__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid #b8dff1;
  border-radius: 50%;
  color: var(--blue-650);
  background: #eaf8fd;
}

.info-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.info-card--facebook .info-card__icon svg {
  fill: currentcolor;
  stroke: none;
}

.info-card__label {
  margin: 0 0 8px;
  color: var(--blue-650);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.15rem, 1.45vw, 1.38rem);
  line-height: 1.35;
}

.info-card h3 a {
  text-decoration: none;
}

.info-card > p:not(.info-card__label) {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.info-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.info-card__actions a,
.facebook-link {
  color: var(--blue-650);
  font-size: 0.77rem;
  font-weight: 830;
  text-decoration: none;
  text-underline-offset: 4px;
}

.info-card__actions a:hover {
  text-decoration: underline;
}

.phone-list,
.hours-list {
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.phone-list li,
.hours-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 10px 0;
}

.phone-list a {
  color: var(--navy-900);
  font-size: 0.83rem;
  font-weight: 770;
  text-decoration: none;
}

.phone-list span,
.hours-list dt,
.hours-list dd {
  color: var(--muted);
  font-size: 0.72rem;
}

.hours-list dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 740;
  text-align: right;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(24px, 6vw, 92px);
  color: rgb(255 255 255 / 54%);
  background: var(--navy-950);
  font-size: 0.72rem;
}

footer p {
  margin: 0;
}

footer > a {
  color: rgb(255 255 255 / 74%);
  text-underline-offset: 3px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__brand img {
  width: 34px;
  height: auto;
}

.footer__brand b {
  color: var(--gold-400);
}

.privacy-page,
.not-found-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at top left, #e8f9ff, transparent 33rem),
    var(--mist);
}

.privacy-header {
  border-bottom: 1px solid var(--line);
  padding: 17px clamp(22px, 6vw, 84px);
  background: var(--navy-950);
}

.privacy-header a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 760;
  text-decoration: none;
}

.privacy-header img {
  width: 47px;
  height: auto;
}

.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) 24px;
}

.privacy-content h1,
.not-found-page h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.privacy-content__lead {
  margin: 25px 0 52px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.privacy-content section {
  border-top: 1px solid var(--line);
  padding: 27px 0;
}

.privacy-content h2 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.privacy-content section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.privacy-content section a {
  color: var(--blue-650);
}

.privacy-content__updated {
  margin: 34px 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.back-link {
  color: var(--blue-650);
  font-size: 0.86rem;
  font-weight: 760;
  text-underline-offset: 4px;
}

.not-found-page {
  display: grid;
  place-items: center;
  padding: 25px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgb(22 140 240 / 30%), transparent 30rem),
    var(--navy-950);
}

.not-found-page main {
  max-width: 680px;
  text-align: center;
}

.not-found-page img {
  width: 100px;
  height: auto;
  margin: 0 auto 30px;
}

.not-found-page .eyebrow {
  justify-content: center;
}

.not-found-page h1 {
  color: var(--white);
}

.not-found-page p:not(.eyebrow) {
  color: rgb(255 255 255 / 65%);
}

.not-found-page a {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 8px;
  padding: 13px 20px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  }

  .hero__content {
    padding-inline: clamp(25px, 5vw, 58px);
  }

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

  .visit__heading {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 56px;
  }

  .brand-lockup {
    margin-bottom: 45px;
  }

  .hero__photo {
    min-height: 410px;
  }

  .hero__photo > img {
    object-position: 50% 44%;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 630px) {
  .hero__content {
    padding: 28px 20px 46px;
  }

  .brand-lockup {
    gap: 13px;
    margin-bottom: 40px;
  }

  .brand-lockup__logo {
    width: 76px;
  }

  .brand-lockup__name {
    padding-left: 13px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.15rem);
  }

  .hero__intro {
    margin-top: 21px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .launch-form {
    margin-top: 29px;
  }

  .launch-form__row {
    grid-template-columns: 1fr;
  }

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

  .service-list {
    gap: 8px 19px;
  }

  .service-list li:not(:last-child)::after {
    right: -11px;
  }

  .hero__photo {
    min-height: 330px;
  }

  .hero__photo > img {
    object-position: 50% 42%;
  }

  .visit {
    padding: 64px 20px;
  }

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

  .info-card {
    min-height: auto;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 26px 20px;
  }

  footer p,
  footer > a {
    grid-column: auto;
    grid-row: auto;
  }

  .phone-list li,
  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .hours-list dd {
    text-align: left;
  }
}

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