* {
  box-sizing: border-box;
  margin: 0;
  font-family: system-ui, sans-serif;
}

body {
  background: #e5e7eb;
  color: #111827;
}

.cv-container {
  max-width: 1100px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* Sidebar */
.sidebar {
  background: #0f172a;
  color: #e5e7eb;
  padding: 2rem;
}

.sidebar h1 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.role {
  font-size: .9rem;
  color: #38bdf8;
  margin-bottom: 1.5rem;
}

.sidebar section {
  margin-bottom: 1.5rem;
}

.sidebar h3 {
  font-size: .85rem;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: .5rem;
}

.sidebar a {
  display: block;
  color: #e5e7eb;
  text-decoration: none;
  font-size: .9rem;
}

/* Content */
.content {
  padding: 2rem 3rem;
}

.block {
  margin-bottom: 2rem;
}

.block h2 {
  font-size: 1.1rem;
  border-bottom: 2px solid #38bdf8;
  padding-bottom: .3rem;
  margin-bottom: 1rem;
}

.job {
  margin-bottom: 1.5rem;
}

.job h4 {
  font-size: .95rem;
}

.job span {
  font-size: .8rem;
  color: #6b7280;
}

ul {
  margin-left: 1rem;
  margin-top: .5rem;
}

li {
  font-size: .9rem;
  margin-bottom: .3rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
