@font-face {
  font-family: "Nyght Serif";
  src: url("/font/NyghtSerif-Light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Cascadia Code";
  src: url("/font/CascadiaCode-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Cascadia Code";
  src: url("/font/CascadiaCode.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #0e111a;
  --muted: #5f6575;
  --accent: #1f3ff4;
  --accent-soft: rgba(31, 63, 244, 0.09);
  --border: rgba(15, 33, 74, 0.13);
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(0deg, rgba(31, 63, 244, 0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(31, 63, 244, 0.04) 0 1px, transparent 1px 80px),
    linear-gradient(0deg, rgba(31, 63, 244, 0.025) 0 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-weight: 300;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  width: min(1080px, calc(100vw - 40px));
  height: 58px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 1px rgba(255, 255, 255, 0.76),
    0 16px 40px rgba(15, 33, 74, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.brand,
.home-link {
  text-decoration: none;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plans-link,
.footer-plan-button,
.inline-plan-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
}

.plans-link {
  font-size: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
}

.brand i {
  color: var(--muted);
  font-style: normal;
}

.brand strong {
  color: var(--accent);
  font-weight: 500;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.home-link span {
  color: var(--accent);
}

.page-shell {
  width: min(780px, calc(100vw - 32px));
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  padding: 92px 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.entry-screen {
  width: 100%;
  min-height: 540px;
  flex: 1;
  padding: clamp(34px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(31, 63, 244, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.56),
    inset 0 1px rgba(255, 255, 255, 0.85),
    0 20px 50px rgba(15, 33, 74, 0.09);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.entry-screen > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.entry-screen h1 {
  max-width: 620px;
  margin: 16px 0;
  font: 400 clamp(38px, 6vw, 64px) / 1.03 "Nyght Serif", Georgia, serif;
  letter-spacing: 0;
}

.entry-screen > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.entry-button {
  margin-top: 30px;
}

.access-screen h1 {
  font-size: clamp(32px, 5vw, 48px);
}

#access-form {
  width: min(440px, 100%);
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
}

#campaign-form {
  width: min(500px, 100%);
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
}

#campaign-form input {
  border-radius: 12px 0 0 12px;
}

#campaign-form button {
  min-width: 170px;
  border-radius: 0 999px 999px 0;
}

.campaign-sent-screen strong {
  color: var(--text);
}

.campaign-dev-link {
  margin-top: 24px;
  text-decoration: none;
}

#access-form input {
  border-radius: 12px 0 0 12px;
}

#access-form button {
  min-width: 130px;
  border-radius: 0 999px 999px 0;
}

.access-message {
  min-height: 20px;
  margin: 14px 0 0 !important;
  color: var(--danger) !important;
  font-size: 13px !important;
}

.access-screen > .support-button {
  margin-top: 18px;
}

#lead-form {
  position: relative;
  width: 100%;
  min-height: 0;
  flex: 1;
  padding: clamp(24px, 3.5vh, 38px) clamp(24px, 5vw, 56px) 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31, 63, 244, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.56),
    inset 0 1px rgba(255, 255, 255, 0.85),
    0 20px 50px rgba(15, 33, 74, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-head {
  flex: 0 0 auto;
  padding-bottom: 19px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.form-head p {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0;
}

.form-head h2 {
  margin: 0;
  font: 400 clamp(25px, 3vw, 32px) / 1.12 "Nyght Serif", Georgia, serif;
  letter-spacing: 0;
}

.step-indicator {
  display: flex;
  gap: 5px;
}

.form-head-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.invite-badge {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  white-space: nowrap;
}

.balance-badge {
  padding: 5px 8px;
  border: 1px solid rgba(31, 63, 244, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--accent);
  font-size: 11px;
  white-space: nowrap;
}

.invite-badge.invalid {
  background: rgba(180, 35, 24, 0.08);
  color: var(--danger);
}

.step-indicator span {
  width: 22px;
  height: 4px;
  display: block;
  border-radius: 999px;
  background: rgba(31, 63, 244, 0.14);
}

.step-indicator span.active {
  background: var(--accent);
}

.form-step {
  min-height: 0;
  flex: 1;
  display: none;
  flex-direction: column;
  padding-top: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.form-step.active {
  display: flex;
  animation: reveal 0.25s ease;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

label,
legend {
  display: block;
  margin-bottom: 7px;
  color: #343a4a;
  font-size: 12px;
  font-weight: 500;
}

legend {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-tip {
  position: relative;
  width: 17px;
  height: 17px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(31, 63, 244, 0.22);
  border-radius: 50%;
  background: white;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
}

.info-tip > span {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 9px);
  width: 260px;
  padding: 10px 12px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 4px);
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(15, 33, 74, 0.12);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}

.info-tip:hover > span,
.info-tip:focus-visible > span {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

label small {
  color: var(--muted);
  font-weight: 300;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

input,
select {
  height: 44px;
  padding: 0 13px;
  font-size: 14px;
}

textarea {
  min-height: 116px;
  flex: 1;
  max-height: 190px;
  padding: 14px;
  resize: none;
  font-size: 15px;
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 63, 244, 0.08);
}

.textarea-head {
  display: flex;
  justify-content: space-between;
}

.textarea-head > span {
  color: var(--muted);
  font-size: 12px;
}

.textarea-head b {
  color: var(--accent);
  font-weight: 500;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.preference-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
}

.segmented {
  height: 38px;
  padding: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(31, 63, 244, 0.04);
}

.language-options {
  grid-template-columns: repeat(2, 1fr);
}

.segmented label {
  margin: 0;
  cursor: pointer;
}

.segmented input,
.background-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.segmented span {
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
}

.segmented input:checked + span {
  background: white;
  color: var(--accent);
  box-shadow: 0 2px 7px rgba(15, 33, 74, 0.09);
}

.background-field {
  margin-top: 14px;
}

.background-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.background-options label {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  cursor: pointer;
}

.swatch {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 0 0 2px transparent;
}

.swatch.white {
  background: #fff;
}

.swatch.gray {
  background: #e9ebef;
}

.swatch.blue {
  background: #1f3ff4;
}

.swatch.green {
  background: #20b267;
}

.swatch.custom {
  background: rgba(31, 63, 244, 0.08);
  color: var(--accent);
  font-size: 15px;
}

.background-options input:checked + .swatch {
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--accent);
}

.background-options small {
  color: var(--muted);
  font-size: 11px;
}

.motion-note {
  margin-top: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 10px;
  background: var(--accent-soft);
}

.motion-note p {
  margin: 0;
  color: #39415b;
  font-size: 12px;
  line-height: 1.5;
}

.duration-note {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}

.duration-note a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  text-align: right;
}

.inline-plan-button {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 500;
  text-align: right;
}

.inline-plan-button b {
  font-weight: 300;
}

.duration-note b {
  font-weight: 300;
}

.step-footer {
  min-height: 46px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-footer.end {
  margin-top: auto;
}

.step-actions {
  display: flex;
  gap: 10px;
}

#content-state {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

#content-state > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfd3dd;
}

#content-state.ready {
  color: var(--accent);
}

#content-state.ready > i {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(31, 63, 244, 0.08);
}

.primary-button {
  min-width: 146px;
  height: 43px;
  padding: 0 15px 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 16px rgba(31, 63, 244, 0.22);
  font-size: 13px;
  font-weight: 300;
}

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

.primary-button > span {
  font-size: 15px;
}

.primary-button:disabled {
  opacity: 0.56;
  cursor: wait;
}

.text-button {
  height: 40px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 14px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5f6575 50%),
    linear-gradient(135deg, #5f6575 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 13px) 19px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.email-block {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 19px;
}

.email-row input {
  border-radius: 12px 0 0 12px;
}

.email-row button {
  min-width: 104px;
  border: 0;
  border-radius: 0 12px 12px 0;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
}

.code-status {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.code-status.checking {
  color: var(--accent);
}

.code-status.verified {
  color: #287447;
}

.code-status.invalid {
  color: var(--danger);
}

.delivery-summary {
  max-width: 560px;
  margin: 25px auto 0;
  padding: 14px 0;
  display: grid;
  display: block;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.delivery-summary p {
  margin: 0;
  color: #39415b;
  font-size: 13px;
  line-height: 1.55;
}

.form-message {
  position: static;
  flex: 0 0 auto;
  min-height: 18px;
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--danger);
  font-size: 12px;
}

.form-message.is-success {
  color: var(--accent);
}

.form-message a {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.form-message.is-success a {
  display: none;
}

.success-state {
  min-height: 0;
  flex: 1;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.success-state.active {
  display: flex;
}

.success-content {
  width: min(560px, 100%);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 24px rgba(31, 63, 244, 0.22);
  font-size: 23px;
}

.success-label {
  margin: 18px 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.success-content h2 {
  max-width: 520px;
  margin: 0;
  font: 400 clamp(31px, 3.7vw, 42px) / 1.08 "Nyght Serif", Georgia, serif;
}

.success-delivery {
  max-width: 520px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.success-delivery strong {
  color: var(--text);
}

.success-balance {
  margin: 8px 0 0;
  color: var(--accent);
  font-size: 13px;
}

.long-form-note {
  width: 100%;
  margin-top: 24px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(31, 63, 244, 0.12);
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 12px;
}

.long-form-note a {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.long-form-note b {
  font-weight: 300;
}

.success-actions {
  width: 100%;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.success-actions small {
  color: var(--muted);
  font-size: 11px;
}

.success-link {
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(31, 63, 244, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

footer {
  padding: 12px 4px 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

footer a {
  text-decoration: none;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links > a:not(.support-button) {
  color: var(--accent);
  font-weight: 500;
}

.footer-plan-button {
  font-size: 11px;
  font-weight: 500;
}

.support-button {
  padding: 8px 12px;
  border: 1px solid rgba(31, 63, 244, 0.16);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.payment-home-link {
  margin-top: 26px;
  text-decoration: none;
}

.pricing-dialog {
  width: min(680px, calc(100vw - 28px));
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  color: var(--text);
  box-shadow: 0 30px 90px rgba(15, 33, 74, 0.22);
}

.pricing-dialog::backdrop {
  background: rgba(14, 17, 26, 0.42);
  backdrop-filter: blur(5px);
}

.pricing-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  color: var(--muted);
  font-size: 20px;
}

.pricing-label {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
}

.pricing-dialog h2 {
  margin: 0;
  font: 400 36px / 1.1 "Nyght Serif", Georgia, serif;
}

.pricing-list {
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.pricing-row {
  min-height: 72px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px 112px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-row strong,
.pricing-row span {
  display: block;
}

.pricing-row strong {
  font-size: 13px;
  font-weight: 500;
}

.pricing-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.pricing-rate {
  text-align: right;
}

.pricing-row > a {
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  text-decoration: none;
}

.plan-unavailable {
  margin: 0 !important;
  text-align: right;
}

.pricing-message {
  min-height: 18px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (min-height: 850px) {
  #lead-form {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    width: calc(100vw - 24px);
    height: 50px;
    padding: 0 16px;
  }

  .brand {
    font-size: 11px;
  }

  .home-link {
    font-size: 11px;
  }

  .header-links {
    gap: 10px;
  }

  .page-shell {
    width: calc(100vw - 24px);
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 78px;
    padding-bottom: 12px;
    justify-content: flex-start;
    overflow: visible;
  }

  .entry-screen {
    min-height: calc(100dvh - 104px);
    padding: 30px 22px;
    border-radius: 18px;
  }

  .entry-screen h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  #access-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #campaign-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #access-form input,
  #access-form button,
  #campaign-form input,
  #campaign-form button {
    width: 100%;
    border-radius: 999px;
  }

  #lead-form {
    min-height: 610px;
    flex: none;
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .form-head {
    padding-bottom: 14px;
  }

  .form-head h2 {
    font-size: 23px;
  }

  .form-step {
    padding-top: 15px;
    overflow: visible;
  }

  textarea {
    min-height: 100px;
  }

  .preference-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .background-field {
    margin-top: 10px;
  }

  .background-options {
    justify-content: space-between;
    gap: 8px;
  }

  .motion-note {
    margin-top: 10px;
  }

  .duration-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .inline-plan-button {
    text-align: left;
  }

  .duration-note a {
    text-align: left;
  }

  .step-footer {
    margin-top: 10px;
  }

  .context-grid {
    gap: 12px 10px;
  }

}

@media (max-width: 480px) {
  .form-head h2 {
    font-size: 20px;
  }

  .step-indicator span {
    width: 15px;
  }

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

  #lead-form {
    min-height: 680px;
  }

  .background-options small {
    display: none;
  }

  .primary-button {
    min-width: 132px;
  }

  footer {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
  }

  .success-content h2 {
    font-size: 30px;
  }

  .long-form-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .success-actions {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .pricing-dialog {
    padding: 28px 20px 22px;
  }

  .pricing-row {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .pricing-row > a,
  .plan-unavailable {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .page-shell {
    padding-top: 88px;
    padding-bottom: 12px;
  }

  .entry-screen {
    min-height: 0;
  }

  #lead-form {
    min-height: 0;
    padding-top: 20px;
  }

  .form-head {
    padding-bottom: 13px;
  }

  .form-step {
    padding-top: 13px;
  }

  textarea {
    min-height: 80px;
    max-height: 120px;
  }

  .preference-grid,
  .background-field,
  .motion-note {
    margin-top: 9px;
  }

  .step-footer {
    margin-top: 8px;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  #lead-form,
  .entry-screen {
    background: #ffffff;
  }
}
