/* MARK: - Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  background: #fff;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* MARK: - Typography */
h2 {
  font-size: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

/* MARK: - Tagline */
.tagline {
  font-size: 1.4em;
  font-weight: 300;
  color: #111;
  margin-bottom: 12px;
}

/* MARK: - Team Cards */
.team-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.team-card {
  background: #f7f7f7;
  padding: 24px;
  flex: 1;
  min-width: 200px;
}

.team-card h3 {
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.team-card .role {
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.92em;
  margin-bottom: 0;
}

/* MARK: - Tag Lists */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  background: #111;
  color: #fff;
  padding: 7px 14px;
  font-size: 0.82em;
  letter-spacing: 0.5px;
}
