:root {
  color-scheme: light;
  --ink: #251f2f;
  --muted: #766b84;
  --paper: #ffffff;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --line: rgba(37, 31, 47, 0.12);
  --shadow: rgba(37, 31, 47, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "Nunito", "Avenir Next", system-ui, sans-serif;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 4px solid rgba(255, 121, 176, 0.55);
  outline-offset: 4px;
}

.site-header {
  width: 100%;
  min-height: 1in;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
}

.logo-mark {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.landing-shell {
  min-height: 100vh;
  display: grid;
  gap: 4rem;
  padding: 0 1rem 2rem;
}

.hero-card {
  width: 100%;
  min-height: calc(100vh - 1in - 1rem);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: var(--panel);
  box-shadow: 0 18px 70px var(--shadow);
  padding: clamp(1.1rem, 5vw, 4rem);
}

.eyebrow {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(255, 121, 176, 0.35);
  border-radius: 999px;
  background: #fff7fb;
  color: #9c3867;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 900;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.claim-box {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel-strong);
  padding: clamp(1rem, 3vw, 1.35rem);
  width: min(100%, 42rem);
  text-align: left;
}

.claim-box label {
  color: var(--ink);
  font-weight: 900;
}

.username-field {
  min-height: 4.2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(37, 31, 47, 0.13);
  border-radius: 999px;
  background: #fff7fb;
  padding: 0.45rem 0.7rem 0.45rem 1rem;
  box-shadow: inset 0 2px 14px rgba(37, 31, 47, 0.05);
}

.username-field span {
  color: var(--muted);
  font-weight: 900;
}

.username-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 900;
  outline: 0;
}

.username-field input::placeholder {
  color: rgba(118, 107, 132, 0.52);
}

.availability {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.availability.is-good {
  color: #167b58;
}

.availability.is-bad {
  color: #b3325d;
}

button {
  min-height: 3.8rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-weight: 1000;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

button:hover,
button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 31, 47, 0.2);
}

.company-footer {
  width: calc(100% - 2in);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: 1in auto 0;
  border-top: 1px solid var(--line);
  padding: 0.55rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.footer-legal {
  display: grid;
  gap: 0.25rem;
}

.footer-legal p,
.footer-legal address {
  margin: 0;
}

.footer-legal p {
  color: var(--ink);
  font-weight: 800;
}

.footer-legal address {
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 0.12rem;
  text-underline-offset: 0.22rem;
}

@media (max-width: 620px) {
  .site-header {
    min-height: 1in;
    padding: 0 0.75rem;
  }

  .landing-shell {
    padding: 0 0.75rem 1.25rem;
  }

  .hero-card {
    min-height: calc(100vh - 1in - 0.75rem);
    border-radius: 30px;
  }

  h1 {
    max-width: 13ch;
  }

  .username-field {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 0.9rem 1rem;
  }

  .company-footer {
    width: calc(100% - 1rem);
    flex-direction: column;
    margin-top: 1in;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
