body.zumidate-page.hosting-page {
  background: #fff;
  color: #0f172a;
  --text-soft: #475569;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hosting-shell {
  width: min(1120px, 96vw);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 26px) 0 clamp(28px, 5vw, 46px);
  display: grid;
  gap: 18px;
  flex: 1;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid transparent;
  transition: all 120ms ease;
  background: rgba(15, 23, 42, 0.03);
}

.nav-links a:hover {
  border-color: rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}

.nav-links a.active {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(15, 23, 42, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #0f172a;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.2);
}

.footer {
  width: min(1120px, 96vw);
  margin: auto auto 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.footer small {
  color: #475569;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.04);
  font-weight: 700;
}

.hosting-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(16px, 4vw, 24px);
  padding: clamp(18px, 4vw, 24px);
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: rgba(15, 23, 42, 0.02);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.hosting-hero h1 {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.hosting-hero p {
  margin: 0 0 12px;
  color: var(--text-soft, #cfc8df);
  line-height: 1.6;
}

.card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 10px;
}

.card h3 {
  margin: 0;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--text-soft, #cfc8df);
  line-height: 1.5;
}

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

.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(120deg, #ff72c6, #2ed49c);
  color: #0a0812;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition:
    transform 120ms ease,
    opacity 120ms ease;
}

.btn-inline.secondary {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  box-shadow: none;
}

.auth-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 10px;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-note {
  margin: 0;
  color: var(--text-soft, #cfc8df);
}

.pill.user-pill {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.is-locked {
  opacity: 0.55;
  pointer-events: auto;
}

.lock-hint {
  color: #9f1239;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lock-hint i {
  color: #be185d;
}

body.is-signed-in .hosting-hero {
  display: none;
}

@media (max-width: 960px) {
  .hosting-hero {
    grid-template-columns: 1fr;
  }
}
