:root {
  --bg: #f5f7f6;
  --panel: #ffffff;
  --panel-border: #e3e7e5;

  --text: #1a1a1a;
  --muted: #6b7280;

  --green: #7aa300;   /* Münch green */
  --yellow: #f2c300;  /* Münch yellow */

  --accent: var(--green);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.hero {
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 56px;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 0 0 16px;
  font-weight: 800;
}

.subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;

  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;

  padding: 20px;
  min-height: 200px;

  transition: all 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: var(--green);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.card h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.card p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

.badge {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.badge.live {
  background: rgba(122, 163, 0, 0.12);
  color: var(--green);
  border: 1px solid rgba(122, 163, 0, 0.3);
}
.badge.proto {
  background: #f1f3f2;
  color: #555;
  border: 1px solid #e0e0e0;
}

.cta {
  color: var(--accent);
  font-weight: 700;
}
.logo {
  height: 65px;
  background: var(--bg);   /* match page background */
  padding: 6px 10px;
  margin-right: 4px;
  border-radius: 8px;
}

.open-link {
  font-weight: 500;
  color: var(--green);
}

.open-link:hover {
  text-decoration: underline;
}