:root {
  --bg: #08080b;
  --card: #171717;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #d7d7d7;
  --secondary: #c7c7c7;
  --border: #2f2f2f;
  --accent: #f1f1f1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 65px;
}

.logo .material-symbols-outlined {
  font-size: 3rem;
}

header p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
}

section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.profile .role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.profile a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

footer span {
  color: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
}

.grouplink {
  color: #eeee;
  text-decoration: underline;
}

.grouplink:hover {
  text-decoration: none;
}