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

body {
  background: #0d0d0d;
  color: #e8e8e8;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  border-bottom: 0.5px solid #2a2a2a;
}

.nav-name {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

/* HERO */
.hero {
  padding: 3rem 2rem 2.5rem;
  border-bottom: 0.5px solid #1e1e1e;
}

.hero-tag {
  font-size: 12px;
  color: #22c55e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-family: monospace;
}

.hero-name {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 0.5px solid #1a3a1a;
  color: #22c55e;
  background: #0a1a0a;
  font-family: monospace;
}

/* SECTIONS */
.section {
  padding: 2rem;
  border-bottom: 0.5px solid #1e1e1e;
}

.section-title {
  font-size: 11px;
  color: #22c55e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: monospace;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.card {
  background: #0a1a0a;
  border: 0.5px solid #1a3a1a;
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.card-label {
  font-size: 11px;
  color: #22c55e;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  font-family: monospace;
}

.card-title {
  font-size: 14px;
  font-weight: bold;
  color: #e0e0e0;
  margin-bottom: 0.4rem;
}

.card-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.card-tag {
  font-size: 10px;
  color: #22c55e;
  border: 0.5px solid #1a3a1a;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: monospace;
}

.card-link {
  font-size: 11px;
  color: #22c55e;
  text-decoration: none;
  font-family: monospace;
}

.card-link:hover {
  text-decoration: underline;
}

/* EXPERIENCES */
.exp-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-top: 5px;
  flex-shrink: 0;
}

.exp-title {
  font-size: 14px;
  font-weight: bold;
  color: #e0e0e0;
  margin-bottom: 2px;
}

.exp-sub {
  font-size: 12px;
  color: #555;
}

/* CONTACT */
.contact-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 0.8rem;
}

/* FOOTER */
footer {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 12px;
  color: #444;
}

.footer-link {
  font-size: 12px;
  color: #22c55e;
  text-decoration: none;
  font-family: monospace;
}
