:root {
  --blue: #1a3a8f;
  --blue-dark: #102a66;
  --red: #e0312b;
  --red-dark: #b3231e;
  --white: #ffffff;
  --grey-bg: #f4f6fb;
  --text: #232733;
  --muted: #5a6175;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(26, 58, 143, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.landing {
  max-width: 1080px;
  width: 100%;
  text-align: center;
}

.landing-header h1 {
  color: var(--white);
  font-size: 2rem;
  margin: 0 0 10px;
}

.landing-header p {
  color: #dde4f7;
  margin: 0 0 44px;
  font-size: 1.05rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.business-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.business-card.disabled {
  cursor: default;
  opacity: 0.6;
}

.business-card.disabled:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.business-logo {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.business-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business-logo.placeholder {
  background: var(--grey-bg);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 800;
}

.business-card h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.3rem;
}

.business-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.business-card .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.badge-visit {
  background: var(--red);
  color: var(--white);
}

.badge-soon {
  background: var(--grey-bg);
  color: var(--muted);
}

.wip-note {
  display: block;
  margin-top: 10px;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}
