:root {
  --lime: #c1ff72;
  --ink: #4f5260;
  --white: #ffffff;
  --mobile-content: 355px;
  --desktop-content: 900px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Satoshi", "Satoshi Fallback", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: #0878cf;
}
button, input { font: inherit; }
button { cursor: pointer; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 32px 0 38px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 67%;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(100% - 40px), var(--mobile-content));
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  width: 150px;
  height: auto;
  flex: 0 0 auto;
}

.hero__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: clamp(92px, 12svh, 132px);
}

.hero__eyebrow {
  margin: 0 0 31px;
  padding: 7px 17px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.17);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 8.5px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: .11em;
}

.hero__message h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 9vw, 39px);
  line-height: 1.07;
  letter-spacing: -0.043em;
  font-weight: 700;
  text-wrap: balance;
}

.hero__subtitle {
  width: 100%;
  margin: 25px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.hero__signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  height: 52px;
  margin: 28px 0 0;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  box-shadow: 0 9px 28px rgba(1,61,112,.14), inset 0 1px 0 rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__signup input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0 14px;
  caret-color: #fff;
  color: #fff;
  background: transparent;
  font-size: 9.8px;
  font-weight: 400;
}

.hero__signup input::placeholder {
  color: rgba(255,255,255,.89);
  opacity: 1;
  transition: opacity .12s ease;
}

.hero__signup input:focus::placeholder {
  opacity: 0;
}

.hero__signup input:focus,
.hero__signup input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.hero__signup button {
  align-self: stretch;
  min-width: 44%;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8.8px;
  font-weight: 600;
  letter-spacing: .035em;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease;
}

.hero__signup button:hover { transform: translateY(-1px); filter: brightness(.98); }
.hero__signup button:focus-visible {
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 2px;
}

.signup-success strong { margin-right: 6px; }

@media (min-width: 810px) {
  .hero {
    padding: 32px 10px 40px;
  }

  .hero__image {
    object-position: center top;
  }

  .hero__content {
    width: min(100%, var(--desktop-content));
  }

  .hero__logo {
    width: 162px;
  }

  .hero__message {
    max-width: 900px;
    margin-top: 82px;
  }

  .hero__eyebrow {
    margin-bottom: 34px;
    padding: 8px 18px;
    font-size: 10px;
  }

  .hero__message h1 {
    flex-direction: row;
    justify-content: center;
    gap: .22em;
    font-size: clamp(46px, 4.75vw, 66px);
    line-height: 1.01;
    white-space: nowrap;
  }
.hero__subtitle {
    max-width: 720px;
    margin-top: 32px;
    font-size: clamp(21px, 1.55vw, 25px);
    line-height: 1.4;
  }

  .hero__signup {
    width: min(640px, 100%);
    height: 56px;
    margin-top: 31px;
  }

  .hero__signup input {
    padding: 0 24px;
    font-size: 14px;
  }

  .hero__signup button {
    min-width: 218px;
    padding: 0 27px;
    font-size: 12px;
    letter-spacing: .04em;
  }

  .signup-success {
    width: min(560px, 100%);
    margin-top: 31px;
    font-size: 14px;
  }
}

@media (min-width: 1250px) {
  .hero__message {
    margin-top: 88px;
  }
}


.footer-banner{
width:100%;
margin:0;
padding:20px 24px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border-top:1px solid rgba(255,255,255,.28);
color:#fff;
text-align:center;
font-family:"Satoshi",system-ui,sans-serif;
font-size:17px;
font-weight:500;
letter-spacing:-0.01em;
}
.footer-banner a{
color:#fff;
font-weight:600;
text-decoration:none;
}
.footer-banner a:hover{opacity:.8;}
html,body{margin:0;padding:0;}


/* Keep the email field transparent while typing and when Safari/Chrome autofill it. */
.hero__signup input,
.hero__signup input:hover,
.hero__signup input:active,
.hero__signup input:focus,
.hero__signup input:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.hero__signup input:-webkit-autofill,
.hero__signup input:-webkit-autofill:hover,
.hero__signup input:-webkit-autofill:focus,
.hero__signup input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-out 0s;
}

.hero__signup input:autofill {
  color: #fff !important;
  background: transparent !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
}

.hero__signup.is-complete input {
  opacity: .72;
}

.hero__signup button.is-complete {
  cursor: default;
}

.hero__signup button .success-check {
  display: inline-block;
  margin-right: .38em;
  font-size: 1.08em;
  line-height: 1;
  transform: translateY(.02em);
}
