body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0d1117;
  color: white;
}

section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 60px;
  margin-top: 60px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  background: linear-gradient(
    to bottom right,
    #0d1117,
    #1f2937
  );
}

.overlay {
  max-width: 700px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sub {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.tags span {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 12px;
  background: #111827;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cta a {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 20px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.thinking {
  padding: 100px 10%;
  background: #111827;
}

.container {
  max-width: 800px;
}

.thinking h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.thinking p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.work {
  padding: 100px 10%;
  background: #0d1117;
}

.project {
  margin-top: 40px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.project + .project {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}

.project h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.project p {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project ul {
  margin-left: 20px;
  margin-bottom: 1rem;
}

.project li {
  margin-bottom: 8px;
}

.project:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.result {
  font-style: italic;
  opacity: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  opacity: 0.65;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: rgba(255,255,255,0.15);
}