:root {
  --bg: #0a0a0f;
  --text: #d4d4d8;
  --text-muted: #71717a;
  --text-dim: #3f3f46;
  --accent: #22d3ee;
  --border: rgba(255, 255, 255, 0.06);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

html { -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

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

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}

.logo-mark {
  color: var(--accent);
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

/* Intro */
.intro {
  margin-bottom: 48px;
}

.tagline {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bio {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 48px 0;
}

/* Section labels */
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Project */
.project {
  margin-bottom: 48px;
}

.project-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.project-info {
  flex: 1;
}

.project-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.project-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-links {
  display: flex;
  gap: 20px;
}

.project-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.project-links a:hover {
  opacity: 0.7;
}

.project-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 2px;
}

.project-tags span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  text-align: right;
  white-space: nowrap;
}

/* Channel */
.channel {
  margin-bottom: 48px;
}

.channel-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.channel-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--mono);
  transition: opacity 0.2s;
}

.channel-link:hover {
  opacity: 0.7;
}

/* Footer */
.footer {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 520px) {
  .page { padding: 40px 20px; }
  .header { margin-bottom: 40px; }
  .project-row { flex-direction: column; gap: 20px; }
  .project-tags { flex-direction: row; flex-wrap: wrap; }
  .project-tags span { text-align: left; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { justify-content: center; }
}
