:root {
  --bg: #0b0f14;
  --bg-alt: #10151c;
  --text: #eef2f5;
  --text-dim: #9aa7b2;
  --accent: #35c99a;
  --accent-dim: #1f7a5c;
  --border: #1e2530;
  --maxw: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

nav.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}

nav.site-nav a.active,
nav.site-nav a:hover {
  color: var(--text);
}

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-photo {
  flex: 0 0 220px;
}

.hero-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.hero-copy { flex: 1 1 380px; }

h1 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 16px;
}

h1 strong { color: var(--text); }
h1 em { color: var(--accent); font-style: normal; }

p { color: var(--text-dim); margin: 0 0 16px; }

.hero-copy p { font-size: 17px; color: var(--text); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.social-row a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

section { margin-bottom: 56px; }

h2 {
  font-size: 22px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 16px;
  background: var(--bg-alt);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card .meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
}

.pill {
  display: inline-block;
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 999px;
  padding: 2px 10px;
  margin-right: 8px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

@media (max-width: 640px) {
  .hero { flex-direction: column; }
  .hero-photo, .hero-photo img { width: 160px; height: 160px; }
}
