:root {
  --paper-50: #f8fafc;
  --paper-100: #f1f5f9;
  --paper-200: #e2e8f0;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --clay: #2563eb;
  --clay-dark: #1d4ed8;
  --clay-muted: #93c5fd;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
}

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

html,
body {
  margin: 0;
}

.page {
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: var(--slate-700);
  background: linear-gradient(to bottom, var(--paper-100), #fff, var(--paper-50));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(to bottom right, #fff, var(--paper-50), rgba(241, 245, 249, 0.6));
}

.hero__blob {
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
  filter: blur(64px);
}

.hero__blob--right {
  right: -4rem;
  top: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(37, 99, 235, 0.1);
}

.hero__blob--left {
  left: -6rem;
  bottom: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(165, 180, 252, 0.1);
}

.hero__container {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.hero__layout {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  justify-items: flex-start;
  grid-template-columns: minmax(0, 100%);
  grid-template-areas:
    "copy"
    "media"
    "btn";
}

.hero__copy {
  grid-area: copy;
  width: min(100%, 48rem);
  justify-self: flex-start;
}

.hero__layout > .btn--hero {
  grid-area: btn;
  justify-self: flex-start;
}

.hero__eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--clay);
}

.hero__title {
  margin: 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

.hero__lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--slate-600);
}

.hero__list {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--slate-600);
}

.hero__list li + li {
  margin-top: 0.375rem;
}

.hero__list li::marker {
  color: rgba(37, 99, 235, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:focus-visible {
  outline: none;
}

.btn--hero {
  margin-top: 0;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, var(--clay), var(--clay-dark));
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.2), 0 4px 6px -4px rgba(30, 58, 138, 0.2);
}

.btn--hero:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.25), 0 8px 10px -6px rgba(30, 58, 138, 0.25);
}

.btn--hero:focus-visible {
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.4), 0 0 0 4px #fff;
}

.hero__media {
  grid-area: media;
  display: flex;
  justify-content: flex-start;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-glow {
  position: absolute;
  inset: -1.25rem;
  border-radius: 2rem;
  opacity: 0.9;
  filter: blur(40px);
  background: linear-gradient(to top right, rgba(37, 99, 235, 0.25), rgba(199, 210, 254, 0.2));
}

.hero__image {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: min(100%, 390px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.section--alt {
  background: rgba(248, 250, 252, 0.6);
}

.section--white {
  background: #fff;
}

.section__container {
  margin: 0 auto;
  padding: 0 1rem;
}

.section__container--md {
  max-width: 60rem;
}

.section__container--lg {
  max-width: 72rem;
}

.section__title {
  margin: 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section__text {
  color: var(--slate-600);
}

.section__text--spaced > * + * {
  margin-top: 1rem;
}

.section__text--top-space {
  margin-top: 1.5rem;
}

.section__text--max {
  max-width: 48rem;
}

.list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--slate-600);
}

.list li::marker {
  color: var(--clay);
}

.list--disc {
  list-style: disc;
}

.list--decimal {
  list-style: decimal;
}

.list--decimal li::marker {
  font-weight: 600;
}

.list--top-space {
  margin-top: 1.5rem;
}

.list li + li {
  margin-top: 0.625rem;
}

.list--decimal li + li {
  margin-top: 0.875rem;
}

.text-strong {
  font-weight: 600;
  color: var(--ink);
}

.text-link {
  font-weight: 500;
  color: var(--clay);
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.4);
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.text-link:hover {
  color: var(--clay-dark);
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--top-space {
  margin-top: 2.5rem;
}

.card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--paper-200);
  background: linear-gradient(to bottom, #fff, rgba(248, 250, 252, 0.5));
  box-shadow: 0 14px 35px -20px rgba(15, 23, 42, 0.35), 0 2px 10px -4px rgba(15, 23, 42, 0.12);
}

.card__title {
  margin: 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.card__list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.contact {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--ink), var(--ink-soft));
  color: var(--slate-200);
}

.contact__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact__title {
  margin: 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
}

.contact__lead {
  margin-top: 0.75rem;
  color: var(--slate-300);
}

.contact__form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
}

.contact__input,
.contact__textarea {
  width: 100%;
  margin-top: 0.375rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--slate-400);
}

.contact__textarea {
  resize: vertical;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35);
}

.contact__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  min-height: 1.5rem;
  margin-top: 0.5rem;
}

.contact__meta-type {
  margin: 0;
  font-size: 0.875rem;
  color: var(--clay-muted);
}

.contact__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--slate-300);
}

.contact__checkbox {
  width: 1rem;
  height: 1rem;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 0.25rem;
  accent-color: var(--clay);
}

.btn--contact {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, var(--clay), var(--clay-dark));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -4px rgba(0, 0, 0, 0.25);
}

.btn--contact:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.25);
}

.btn--contact:focus-visible {
  box-shadow: 0 0 0 2px var(--clay-muted), 0 0 0 4px var(--ink);
}

.is-hidden {
  display: none;
}

@media (min-width: 640px) {
  .hero__container,
  .section__container,
  .contact__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section,
  .contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section__title,
  .contact__title {
    font-size: 1.875rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero__layout {
    justify-items: flex-start;
  }

  .hero__copy {
    justify-self: flex-start;
  }

  .hero__layout > .btn--hero {
    justify-self: flex-start;
  }

  .hero__media {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero__container {
    padding: 6rem 2rem;
  }

  .hero__layout {
    width: fit-content;
    max-width: 100%;
    justify-items: stretch;
    column-gap: 3rem;
    row-gap: 1.75rem;
    align-items: start;
    grid-template-columns: minmax(0, min(48rem, 100%)) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "copy media"
      "btn media";
  }

  .hero__copy {
    justify-self: start;
    width: min(100%, 48rem);
  }

  .hero__layout > .btn--hero {
    justify-self: start;
  }

  .hero__media {
    justify-content: flex-end;
    align-self: center;
  }

  .hero__image {
    max-width: 380px;
  }

  .hero__title {
    font-size: 2.75rem;
  }

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