:root {
  --aura: #7b5aa6;
  --aura-deep: #3d255f;
  --lime: #d0db28;
  --ink: #17252b;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(208, 219, 40, .18), transparent 28vw),
    linear-gradient(140deg, #f8f7fb, #fff 46%, #f1eef8);
  color: var(--ink);
  font-family: "Alexandria", "Tajawal", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.tenant-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 6vw, 70px) clamp(16px, 4vw, 36px);
}

.tenant-hero {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.tenant-hero p,
.tenant-hero h1,
.tenant-hero span {
  margin: 0;
}

.tenant-hero p {
  color: var(--aura);
  font-weight: 800;
  letter-spacing: 0;
}

.tenant-hero h1 {
  color: var(--aura-deep);
  font-size: clamp(34px, 7vw, 72px);
  line-height: 1.12;
  text-wrap: balance;
}

.tenant-hero span {
  max-width: 720px;
  color: #5b6570;
  font-size: 18px;
  line-height: 1.8;
  text-wrap: pretty;
}

.tenant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tenant-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 18px 50px rgba(61,37,95,.12);
  outline: 1px solid rgba(0,0,0,.08);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(.2, 0, 0, 1);
}

.tenant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 3px rgba(0,0,0,.05), 0 24px 60px rgba(61,37,95,.18);
}

.tenant-card:active {
  transform: scale(.96);
}

.tenant-logo {
  width: 132px;
  height: 64px;
  object-fit: contain;
}

.tenant-card h2 {
  margin: 0;
  color: var(--aura-deep);
  font-size: 24px;
  text-wrap: balance;
}

.tenant-card span {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--lime);
  color: #fff;
  font-weight: 800;
}

.empty-state {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  color: #5b6570;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 18px 50px rgba(61,37,95,.12);
}
