body.auth-page {
  min-height: 100vh;
  margin: 0;
  color: var(--ink, #101828);
  background: #f4f5f8;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.auth-brand,
.auth-nav {
  display: flex;
  align-items: center;
}

.auth-brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  color: inherit;
}

.auth-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--ink, #101828);
}

.auth-nav {
  gap: 8px;
}

.auth-nav a,
.link-button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  font-weight: 850;
}

.auth-nav a {
  display: inline-flex;
  align-items: center;
}

.auth-main {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.auth-narrow {
  width: min(520px, 100%);
  margin: 0 auto;
}

.auth-copy,
.auth-card,
.dashboard-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.auth-copy {
  padding: 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue, #1d4ed8);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-copy h1,
.dashboard-card h1,
.dashboard-card h2,
.auth-card h1 {
  margin: 0 0 12px;
  line-height: 1.05;
}

.auth-copy h1 {
  max-width: 680px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.auth-copy p,
.dashboard-card p,
.form-status {
  color: var(--muted, #667085);
  line-height: 1.55;
}

.auth-card,
.dashboard-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field,
.field-row label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 850;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field input,
.field textarea,
.field select,
.field-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink, #101828);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.field textarea {
  min-height: 124px;
  padding-top: 12px;
  resize: vertical;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-button,
.secondary-button,
.google-button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.primary-button {
  padding: 0 18px;
  border: 1px solid var(--blue, #1d4ed8);
  color: #fff;
  background: var(--blue, #1d4ed8);
}

.secondary-button {
  padding: 0 18px;
  border: 1px solid var(--border);
  color: var(--ink, #101828);
  background: #fff;
}

.google-button {
  width: 100%;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--border);
  color: var(--ink, #101828);
  background: #fff;
}

.google-dot {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #4285f4;
  font-size: 0.82rem;
  font-weight: 900;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted, #667085);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border);
}

.primary-button:disabled,
.secondary-button:disabled,
.google-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
}

.form-status[data-tone="error"] {
  color: #b42318;
}

.form-status[data-tone="success"] {
  color: #087f5b;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fafc;
  color: #344054;
  font-size: 0.84rem;
  font-weight: 900;
}

.badge.verified {
  border-color: rgba(8, 127, 91, 0.28);
  color: #087f5b;
  background: #ecfdf3;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 18px;
}

.dashboard-hero {
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.dashboard-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.dashboard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.listing-list {
  display: grid;
  gap: 10px;
}

.mini-listing {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.mini-listing strong {
  line-height: 1.25;
}

.mini-listing span {
  color: var(--muted, #667085);
  font-size: 0.9rem;
}

.checkout-box {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.landlord-main {
  width: min(1040px, calc(100vw - 32px));
}

.landlord-topbar .auth-brand {
  gap: 12px;
}

.landlord-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: start;
}

.landlord-intro {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 18px;
}

.landlord-pill {
  width: fit-content;
  margin: 0;
  padding: 7px 16px;
  border-radius: 999px;
  color: #111827;
  background: #e5e7eb;
  font-size: 0.78rem;
  font-weight: 900;
}

.landlord-intro h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.landlord-intro > p:not(.landlord-pill) {
  margin: 0;
  color: var(--muted, #667085);
  font-size: 1.08rem;
  line-height: 1.55;
}

.landlord-benefits {
  display: grid;
  gap: 12px;
}

.landlord-benefits article,
.landlord-plan,
.listing-preview-panel,
.next-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.landlord-benefits article {
  grid-template-columns: auto 1fr;
}

.landlord-benefits span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--ink, #101828);
  font-weight: 900;
}

.landlord-benefits strong,
.landlord-plan strong,
.listing-preview-panel strong,
.next-panel strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 900;
}

.landlord-benefits p,
.landlord-plan,
.landlord-plan li,
.listing-preview-panel p,
.next-panel p,
.section-heading p,
.landlord-terms {
  margin: 0;
  color: var(--muted, #667085);
  line-height: 1.48;
}

.landlord-plan {
  background: #f8fafc;
}

.landlord-plan ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.listing-preview-panel {
  background: #f8fafc;
}

.preview-eyebrow {
  margin: 0 0 4px;
  color: var(--muted, #667085);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.landlord-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}

.landlord-section {
  display: grid;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-2, #f0f2f6);
}

.section-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.section-heading > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--ink, #101828);
  font-weight: 900;
}

.section-heading h2 {
  margin: 0 0 3px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.category-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.category-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 850;
}

.category-picker label {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 14px 10px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.category-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-picker label:has(input:checked) {
  border-color: var(--ink, #101828);
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px var(--ink, #101828);
}

.category-picker span {
  color: var(--muted, #667085);
  font-size: 1.4rem;
}

.category-picker strong {
  font-size: 0.88rem;
}

.upload-field {
  display: grid;
  gap: 6px;
  min-height: 110px;
  padding: 18px;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  cursor: pointer;
  text-align: center;
}

.upload-field input {
  width: min(100%, 290px);
  font: inherit;
}

.upload-field span {
  font-weight: 900;
}

.upload-field small,
.landlord-terms {
  color: var(--muted, #667085);
}

.next-panel {
  grid-template-columns: 1fr;
  background: #f8fafc;
}

.landlord-submit {
  width: 100%;
}

.landlord-terms {
  text-align: center;
  font-size: 0.8rem;
}

.subscribe-main {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 56px;
}

.subscribe-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--border, #d0d5dd);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.subscribe-card h1 {
  margin: 0;
  color: var(--ink, #101828);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.subscribe-card p {
  margin: 0;
  color: var(--muted, #667085);
  line-height: 1.6;
}

.subscribe-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border, #d0d5dd);
  border-radius: 8px;
  background: #f8fafc;
}

.subscribe-price strong {
  color: var(--ink, #101828);
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
}

.subscribe-price span {
  color: var(--muted, #667085);
  font-weight: 800;
}

.subscribe-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2, #344054);
}

.subscribe-list li {
  position: relative;
  padding-left: 18px;
}

.subscribe-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink, #101828);
}

.subscribe-auth {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border, #d0d5dd);
  border-radius: 8px;
  background: #f8fafc;
}

.subscribe-button {
  width: 100%;
  min-height: 56px;
}

.subscribe-button[data-loading="true"] {
  opacity: .8;
}

.subscribe-button[data-loading="true"]::after {
  content: "Opening checkout...";
}

@media (max-width: 760px) {
  .auth-topbar {
    padding: 0 14px;
  }

  .auth-nav {
    gap: 6px;
  }

  .auth-nav a {
    padding: 0 9px;
    font-size: 0.85rem;
  }

  .auth-main {
    padding-top: 22px;
  }

  .auth-grid,
  .dashboard-layout,
  .dashboard-actions,
  .landlord-layout,
  .field-row {
    grid-template-columns: 1fr;
  }

  .landlord-intro {
    position: static;
  }

  .auth-copy,
  .auth-card,
  .dashboard-card,
  .dashboard-hero,
  .landlord-card {
    padding: 18px;
  }

  .auth-copy h1 {
    font-size: 2.15rem;
  }

  .landlord-intro h1,
  .dashboard-hero h1 {
    font-size: 2.25rem;
  }

  .category-picker {
    grid-template-columns: 1fr;
  }

  .subscribe-card {
    padding: 20px;
  }
}
