@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800;900&display=swap");

:root {
  --pink: #ff66c4;
  --pink-strong: #f238ad;
  --pink-soft: #ffe4f5;
  --yellow: #fff45c;
  --yellow-soft: #fffbd1;
  --ink: #1e1020;
  --muted: #715f70;
  --line: #f0d7e8;
  --surface: #ffffff;
  --surface-tint: #fff8fc;
  --danger: #b42342;
  --success: #087443;
  --shadow: 0 18px 50px rgba(255, 102, 196, 0.18);
  --font-family:
    "Assistant",
    "Heebo",
    "Rubik",
    "Segoe UI",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 102, 196, 0.12), transparent 30rem),
    linear-gradient(225deg, rgba(255, 244, 92, 0.22), transparent 26rem),
    #fff;
  font-family: var(--font-family);
}

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

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
select,
input,
textarea {
  letter-spacing: 0;
}

.site-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: 0.7rem 5vw;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 102, 196, 0.18);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 132px;
  height: 52px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--pink-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 8px 0 var(--pink);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 var(--pink-strong);
}

.button:active {
  transform: translateY(1px);
  box-shadow: 0 5px 0 var(--pink-strong);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.button-primary {
  background: var(--pink);
  box-shadow: 0 8px 0 var(--yellow);
}

.button-primary:hover {
  box-shadow: 0 10px 0 #f3de00;
}

.button-yellow {
  background: var(--yellow);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

.button-wide {
  width: 100%;
  margin-top: 1rem;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: center;
  max-width: 1160px;
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 4rem 5vw 3rem;
}

.hero-copy h1,
.section-heading h2,
.intro-section h2,
.split-section h2,
.cta-band h2,
.form-intro h2,
.login-copy h1,
.admin-title h1 {
  margin: 0;
  line-height: 1.04;
  font-weight: 950;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: 4rem;
}

.hero-subtitle {
  max-width: 690px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.75;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.72rem;
  border: 1px solid rgba(255, 102, 196, 0.28);
  border-radius: 999px;
  color: #67214f;
  background: var(--yellow-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.microcopy {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  place-items: center;
  gap: 1.2rem;
}

.hero-logo {
  width: min(92vw, 440px);
  padding: 1rem;
  border: 1px solid rgba(255, 102, 196, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.phone-preview {
  position: relative;
  width: min(100%, 320px);
  min-height: 190px;
  padding: 1.2rem;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 102, 196, 0.96), rgba(255, 244, 92, 0.9)),
    #fff;
  box-shadow: 10px 10px 0 var(--ink);
}

.phone-preview p {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  max-width: 12rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 950;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

.frame-dot {
  position: absolute;
  display: block;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.dot-one {
  left: 2rem;
  top: 2.4rem;
  width: 32px;
  height: 32px;
}

.dot-two {
  left: 5rem;
  top: 5rem;
  width: 18px;
  height: 18px;
}

.dot-three {
  left: 7.3rem;
  top: 3.3rem;
  width: 54px;
  height: 54px;
}

.camera-line {
  position: absolute;
  right: 1.1rem;
  top: 5rem;
  width: 125px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
}

.section-narrow,
.section-block,
.cta-band,
.form-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4.5rem 5vw;
}

.intro-section {
  text-align: center;
}

.intro-section h2,
.section-heading h2,
.split-section h2,
.form-intro h2 {
  font-size: 2.65rem;
}

.intro-section p,
.split-section p,
.cta-band p,
.form-intro p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.steps-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card,
.content-card,
.stat-card,
.mobile-lead-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(255, 102, 196, 0.11);
}

.step-card {
  min-height: 235px;
  padding: 1.2rem;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.step-card:hover,
.content-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 0 0 5px var(--pink-soft);
}

.step-card h3,
.content-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.22rem;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: center;
}

.note-line {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--yellow-soft);
  color: var(--ink) !important;
}

.chip-cloud,
.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip-cloud span,
.choices label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(255, 102, 196, 0.28);
  border-radius: 999px;
  background: #fff;
  color: #3a2437;
  font-weight: 850;
}

.chip-cloud span:nth-child(2n),
.choices label:nth-child(3n) {
  background: var(--pink-soft);
}

.chip-cloud span:nth-child(3n),
.choices label:nth-child(4n) {
  background: var(--yellow-soft);
}

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

.content-card {
  min-height: 136px;
  padding: 1rem;
  background: #fff;
}

.content-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--pink);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: linear-gradient(90deg, var(--pink), var(--yellow));
}

.cta-band h2 {
  max-width: 660px;
  font-size: 2.4rem;
}

.cta-band p {
  margin: 0.4rem 0 0;
  color: var(--ink);
}

.form-section {
  padding-bottom: 6rem;
}

.form-card,
.login-panel {
  border: 2px solid rgba(255, 102, 196, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 251, 209, 0.65), rgba(255, 255, 255, 0) 18rem),
    #fff;
  box-shadow: var(--shadow);
}

.form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem;
}

.form-intro {
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.form-grid,
.form-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field,
.choice-group,
.consent-group {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.field span,
.field-label,
.choice-group legend,
.consent-group legend {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-weight: 950;
}

.choice-group,
.consent-group {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
}

.multi-select-field {
  position: relative;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
}

.multi-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 52px;
  padding: 0.78rem 0.9rem;
  border: 1px solid #d8bfd1;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
  text-align: right;
  cursor: pointer;
}

.multi-select-trigger::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-left: 2px solid var(--pink-strong);
  border-bottom: 2px solid var(--pink-strong);
  transform: rotate(-45deg);
  transition: transform 160ms ease;
}

.multi-select-field.is-open .multi-select-trigger::after {
  transform: rotate(135deg);
}

.multi-select-count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 950;
}

.multi-select-menu {
  position: absolute;
  right: 1rem;
  left: 1rem;
  top: calc(100% - 0.35rem);
  z-index: 40;
  display: grid;
  gap: 0.75rem;
  max-height: 360px;
  padding: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 102, 196, 0.38);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(30, 16, 32, 0.18);
}

.multi-select-menu[hidden] {
  display: none;
}

.multi-select-search {
  margin: 0;
}

.multi-select-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.multi-select-options {
  display: grid;
  gap: 0.45rem;
  max-height: 210px;
  overflow: auto;
  padding-left: 0.2rem;
}

.multi-select-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.multi-select-option:hover,
.multi-select-option:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-soft);
}

.selected-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-height: 30px;
  color: var(--muted);
  font-weight: 750;
}

.selected-cities span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--ink);
  font-weight: 850;
}

.inline-group {
  margin: 0 0 1rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #d8bfd1;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--pink-strong);
}

.choices.compact {
  gap: 0.5rem;
}

.consent-group label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-errors {
  color: var(--danger);
  font-weight: 850;
}

.form-errors ul {
  margin: 0.6rem 0 0;
  padding: 0 1.2rem 0 0;
}

.success-state {
  padding: 1.5rem;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background: var(--pink-soft);
}

.success-state h3 {
  margin: 0 0 0.7rem;
  font-size: 1.75rem;
}

.success-state p {
  margin: 0.45rem 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.7;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
  min-height: 48px;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 25px rgba(30, 16, 32, 0.22);
  font-weight: 950;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.site-footer img {
  width: 108px;
}

.site-footer a {
  color: var(--pink-strong);
  text-decoration: none;
}

.login-page,
.admin-page {
  min-height: 100vh;
}

.login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem 5vw;
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 2rem;
  width: min(100%, 900px);
  padding: 1.4rem;
}

.login-logo {
  width: 220px;
  margin-bottom: 1.5rem;
}

.login-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 1rem;
}

.login-copy h1 {
  font-size: 3rem;
}

.login-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 750;
}

.login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.admin-header {
  position: sticky;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 950;
}

.admin-brand img {
  width: 120px;
}

.admin-main {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 2rem 5vw 4rem;
}

.admin-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-title h1 {
  font-size: 2.65rem;
}

.admin-title p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 750;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.stat-card {
  min-height: 118px;
  padding: 1rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 2rem;
  line-height: 1;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px auto auto;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.table-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.leads-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}

.leads-table th,
.leads-table td {
  padding: 0.82rem;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: top;
}

.leads-table th {
  background: var(--yellow-soft);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
}

.leads-table td {
  color: #3f313d;
  font-size: 0.92rem;
  font-weight: 650;
}

.lead-actions {
  display: flex;
  gap: 0.45rem;
}

.text-button {
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.text-button:hover {
  border-color: var(--pink);
  background: var(--pink-soft);
}

.danger-button:hover {
  border-color: var(--danger);
  color: var(--danger);
  background: #fff1f3;
}

.status-select {
  min-width: 145px;
  min-height: 38px;
  padding: 0.35rem 0.55rem;
}

.mobile-leads {
  display: none;
}

.mobile-lead-card {
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.mobile-lead-card h3 {
  margin: 0 0 0.35rem;
}

.mobile-lead-card p {
  margin: 0.25rem 0;
  color: var(--muted);
  font-weight: 750;
}

.empty-state,
.admin-message,
.login-message {
  margin: 0.8rem 0;
  color: var(--muted);
  font-weight: 850;
}

.login-message.error,
.admin-message.error {
  color: var(--danger);
}

.login-message.success,
.admin-message.success {
  color: var(--success);
}

.details-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 1rem;
  background: rgba(30, 16, 32, 0.32);
}

.details-dialog[hidden] {
  display: none;
}

.details-content {
  width: min(720px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.2rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(30, 16, 32, 0.28);
}

.details-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.details-head h2 {
  margin: 0;
  font-size: 1.8rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.detail-item {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
}

.detail-item span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.detail-item strong,
.detail-item a {
  color: var(--ink);
  font-weight: 850;
  word-break: break-word;
}

.internal-notes {
  margin-top: 1rem;
}

.internal-notes textarea {
  margin-top: 0.45rem;
}

.dialog-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 1050px) {
  .hero-section,
  .split-section,
  .login-panel {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 14ch;
    font-size: 3.15rem;
  }

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

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

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

  .admin-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 0.55rem 1rem;
  }

  .brand-logo {
    width: 106px;
    height: 46px;
  }

  .main-nav,
  .site-header .button-small {
    display: none;
  }

  .hero-section,
  .section-narrow,
  .section-block,
  .cta-band,
  .form-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-section {
    padding-top: 2.4rem;
    gap: 1.8rem;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-subtitle {
    font-size: 1.03rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .microcopy {
    width: 100%;
  }

  .hero-logo {
    width: min(100%, 340px);
  }

  .intro-section h2,
  .section-heading h2,
  .split-section h2,
  .form-intro h2,
  .admin-title h1 {
    font-size: 2.05rem;
  }

  .steps-grid,
  .content-grid,
  .form-grid,
  .form-columns,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .content-card {
    min-height: 108px;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band h2 {
    font-size: 1.9rem;
  }

  .form-card,
  .login-panel {
    padding: 1rem;
  }

  .choices label,
  .chip-cloud span {
    width: 100%;
    justify-content: flex-start;
  }

  .sticky-cta {
    display: inline-flex;
  }

  .login-copy {
    min-height: auto;
  }

  .login-copy h1 {
    font-size: 2.3rem;
  }

  .admin-header {
    align-items: start;
    flex-direction: column;
  }

  .admin-main {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .admin-title {
    align-items: stretch;
    flex-direction: column;
  }

  .stats-grid,
  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .table-shell {
    display: none;
  }

  .mobile-leads {
    display: block;
  }

  .dialog-actions {
    flex-direction: column;
  }
}
