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

body {
  background-color: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
  line-height: 1.5;
  background-image: radial-gradient(#000000 0.75px, transparent 0.75px);
  background-size: 24px 24px;
  background-position: -19px -19px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 2px solid #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 900;
  border: 2px solid #000000;
  padding: 4px 10px;
  box-shadow: 3px 3px 0px #000000;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  margin-left: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  text-decoration: underline;
}

.wrapper {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.hero-section {
  border: 2px solid #000000;
  background: #ffffff;
  padding: 40px;
  box-shadow: 6px 6px 0px #000000;
  margin-bottom: 60px;
}

.status-badge {
  display: inline-block;
  border: 2px solid #000000;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: #ffffff;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-role {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-summary {
  font-size: 1.05rem;
  max-width: 800px;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  background: #ffffff;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  transition: all 0.15s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px dashed #000000;
}

.stat-card {
  border: 2px solid #000000;
  padding: 16px;
}

.stat-value {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.section {
  margin-bottom: 60px;
}

.section-title-box {
  display: inline-block;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  padding: 6px 16px;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0px #000000;
}

.section-title-box h2 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  border: 2px solid #000000;
  background: #ffffff;
  padding: 28px;
  box-shadow: 5px 5px 0px #000000;
  transition: transform 0.15s ease;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px #000000;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 2px solid #000000;
  padding-bottom: 12px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.card-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-meta {
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #000000;
  padding: 2px 8px;
}

.bullet-list {
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.bullet-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 2px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0;
}

.chip {
  border: 1px solid #000000;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  background: #ffffff;
}

.skills-box {
  border: 2px solid #000000;
  background: #ffffff;
  padding: 28px;
  box-shadow: 5px 5px 0px #000000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px dashed #000000;
  padding-bottom: 12px;
}

.skill-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.skill-cat {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer {
  border-top: 2px solid #000000;
  background: #ffffff;
  padding: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .skill-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
