:root {
  --bg: #fbfaf8;
  --fg: #23262d;
  --muted: rgba(78, 87, 102, 0.6);
  --muted-70: rgba(78, 87, 102, 0.7);
  --muted-40: rgba(78, 87, 102, 0.4);

  --swatch-periwinkle: hsl(223 50% 89%);
  --swatch-lavender: hsl(256 41% 89%);
  --swatch-blush: hsl(19 26% 83%);
  --swatch-rose-light: hsl(348 43% 93%);
  --swatch-sage: hsl(124 10% 63%);
  --swatch-cream: hsl(27 21% 91%);
  --swatch-gray: hsl(330 2% 72%);
  --swatch-dusty-rose: hsl(357 44% 77%);
  --swatch-mauve: hsl(300 4% 84%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--fg);
}

.page {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.6;
  animation-name: float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 5s);
  animation-delay: var(--delay, 0s);
}

.circle--sm {
  width: 48px;
  height: 48px;
}

.circle--md {
  width: 64px;
  height: 64px;
}

.circle--lg {
  width: 80px;
  height: 80px;
}

.circle--periwinkle {
  background: var(--swatch-periwinkle);
}

.circle--lavender {
  background: var(--swatch-lavender);
}

.circle--blush {
  background: var(--swatch-blush);
}

.circle--rose-light {
  background: var(--swatch-rose-light);
}

.circle--sage {
  background: var(--swatch-sage);
}

.circle--cream {
  background: var(--swatch-cream);
}

.circle--gray {
  background: var(--swatch-gray);
}

.circle--dusty-rose {
  background: var(--swatch-dusty-rose);
}

.circle--mauve {
  background: var(--swatch-mauve);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade {
  opacity: 0;
  animation: fade-in-up 0.8s ease-out forwards;
}

.spacer {
  width: 100%;
}

.spacer--top {
  flex: 0.35;
}

.spacer--bottom {
  flex: 0.65;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 576px;
  margin: 0 auto;
}

.hero__logo {
  margin-bottom: 32px;
}

.hero__logo-img {
  height: 112px;
  width: auto;
  display: block;
}

.hero__kicker {
  margin-bottom: 32px;
}

.kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-70);
}

.headline {
  font-size: 24px;
  line-height: 1.375;
  font-weight: 300;
  margin: 0 0 16px;
}

.subhead {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--muted);
}

.notify-card {
  width: 100%;
  max-width: 420px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: var(--fg);
  padding: 8px 4px 0;
}

.notify-card__title {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: rgba(35, 38, 45, 0.75);
}

.notify-card__helper {
  margin: 0;
  font-size: 12px;
  color: rgba(35, 38, 45, 0.5);
}

.notify-card__form {
  margin-top: 14px;
}

.notify-card__copy,
.notify-card__form,
.notify-card__success {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.notify-card__success {
  display: none;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(35, 38, 45, 0.65);
  text-align: center;
  letter-spacing: 0.015em;
}

.notify-card__success p {
  margin: 0;
  font-weight: 500;
}

.notify-card__success p + p {
  margin-top: 4px;
  font-weight: 400;
}

.notify-card.is-success .notify-card__copy,
.notify-card.is-success .notify-card__form {
  display: none;
}

.notify-card.is-success .notify-card__success {
  display: block;
  animation: kit-success-in 450ms ease both;
}

.notify-card + .spacer--bottom {
  padding-top: 26px;
}

.formkit-form[data-uid="3e65e29144"] {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  font-family: inherit;
}

.formkit-form[data-uid="3e65e29144"] [data-style="clean"] {
  width: 100%;
}

.formkit-form[data-uid="3e65e29144"] .formkit-fields {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.formkit-form[data-uid="3e65e29144"] .formkit-field {
  flex: 1;
  margin: 0;
}

.formkit-form[data-uid="3e65e29144"] .formkit-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(35, 38, 45, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  color: inherit;
  transition: border-color 150ms ease;
}

.formkit-form[data-uid="3e65e29144"] .formkit-input::placeholder {
  color: rgba(35, 38, 45, 0.5);
}

.formkit-form[data-uid="3e65e29144"] .formkit-input:focus {
  outline: none;
  border-color: rgba(35, 38, 45, 0.35);
}

.formkit-form[data-uid="3e65e29144"] .formkit-submit {
  flex: 0 0 auto;
  background: rgba(35, 38, 45, 0.08);
  color: rgba(35, 38, 45, 0.78);
  border: 1px solid rgba(35, 38, 45, 0.16);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.01em;
  font-weight: 500;
  text-transform: none;
  opacity: 1;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

@media (max-width: 480px) {
  .notify-card {
    padding: 8px 0 0;
  }

  .formkit-form[data-uid="3e65e29144"] .formkit-fields {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .formkit-form[data-uid="3e65e29144"] .formkit-submit {
    width: 100%;
    text-align: center;
  }
}

.formkit-form[data-uid="3e65e29144"] .formkit-submit:hover {
  background: rgba(35, 38, 45, 0.12);
  border-color: rgba(35, 38, 45, 0.22);
  color: rgba(35, 38, 45, 0.86);
}

.formkit-form[data-uid="3e65e29144"] .formkit-alert-error {
  display: none;
}

.formkit-form[data-uid="3e65e29144"] [data-element="message"] {
  display: none !important;
  margin: 0;
  padding: 0;
  color: rgba(35, 38, 45, 0.9);
  line-height: 1.5;
  white-space: pre-line;
  font-weight: 500;
}

.formkit-form[data-uid="3e65e29144"] .formkit-message,
.formkit-form[data-uid="3e65e29144"] .formkit-alert-success {
  display: none !important;
}

@keyframes kit-success-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.formkit-form[data-uid="3e65e29144"] .formkit-spinner {
  display: none;
}

.kit-success {
  margin-top: 16px;
  padding: 16px 0;
  color: #23262d;
  font-size: 14px;
  line-height: 1.6;
}

.kit-success__eyebrow {
  /* letter-spacing: 0.18em; */
  font-size: 15px;
  color: rgba(35, 38, 45, 0.55);
  margin: 0 0 8px;
}

.kit-success__message {
  margin: 0 0 12px;
  font-weight: 500;
}

.kit-success__note {
  margin: 0 0 12px;
  color: rgba(35, 38, 45, 0.65);
}

.kit-success__links {
  display: inline-flex;
  gap: 10px;
  font-size: 13px;
}

.kit-success__links a {
  color: rgba(35, 38, 45, 0.65);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 150ms ease,
    border-color 150ms ease;
}

.kit-success__links a:hover {
  color: #23262d;
  border-color: rgba(35, 38, 45, 0.3);
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
}

.social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social__link {
  color: rgba(78, 87, 102, 0.6);
  transition: color 200ms ease;
}

.social__link:hover {
  color: var(--fg);
}

.copyright {
  font-size: 12px;
  line-height: 1;
  margin: 0;
  color: var(--muted-40);
}

@media (min-width: 768px) {
  .spacer--top {
    flex: 0.4;
  }

  .spacer--bottom {
    flex: 0.6;
  }

  .hero__logo {
    margin-bottom: 40px;
  }

  .hero__logo-img {
    height: 144px;
  }

  .hero__kicker {
    margin-bottom: 40px;
  }

  .kicker {
    font-size: 12px;
  }

  .headline {
    font-size: 30px;
  }

  .notify-card {
    max-width: 480px;
  }

  .subhead {
    font-size: 16px;
  }

  .footer {
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .hero__logo-img {
    height: 176px;
  }

  .headline {
    font-size: 36px;
  }
}
