:root {
  --bg: #0b0f14;
  --surface: #131922;
  --border: #232b36;
  --border-hover: #3a4656;
  --text-primary: #eef2f6;
  --text-secondary: #9aa7b5;
  --text-muted: #5c6673;
  --accent: #4da3ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Instrument Sans', sans-serif;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 20px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px;
}

.subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

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

.tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}

a.tile:hover {
  border-color: var(--border-hover);
}

.tile-placeholder {
  border-style: dashed;
  color: var(--text-muted);
}

.tile-icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.tile-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.tile-placeholder .tile-title {
  color: var(--text-muted);
}

.tile-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.tile-placeholder .tile-desc {
  color: var(--text-muted);
}

footer {
  margin-top: auto;
  padding-top: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
