:root {
  --bg: #FAFAF8;
  --text: #111;
  --muted: #666;
  --card: #fff;

  --gold: #C7B299;
  --blue: #5F6F8F;
  --red: #7A2E2E;
}

body.dark {
  --bg: #111;
  --text: #eee;
  --muted: #aaa;
  --card: #1a1a1a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background .3s, color .3s;
}

.container {
  max-width: 1040px;
  margin: auto;
  padding: 80px 24px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }

p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 760px;
}

.section {
  margin-bottom: 110px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}

.section.visible {
  opacity: 1;
  transform: none;
}

.roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background: var(--card);
  padding: 32px;
  border: 1px solid rgba(0,0,0,.06);
}

.card.soulife { border-top: 4px solid var(--gold); }
.card.apps { border-top: 4px solid var(--blue); }
.card.music { border-top: 4px solid var(--red); }

.card span {
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--muted);
}

a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.2);
}

a:hover { opacity: .7; }

.links a {
  margin-right: 24px;
}

.topbar {
  position: fixed;
  top: 20px;
  right: 24px;
  display: flex;
  gap: 14px;
  font-size: 14px;
}

.topbar button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.footer {
  margin-top: 120px;
  font-size: 14px;
  color: var(--muted);
}
