:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090b14;
  color: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, rgba(67, 56, 202, 0.18), transparent 35%),
    linear-gradient(180deg, #0f172a 0%, #070a12 100%);
}

header {
  padding: 4rem 1.5rem 2rem;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #a78bfa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: #f8fafc;
}

.hero p {
  margin: 0 0 1.75rem;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-avatar {
  display: flex;
  justify-content: center;
}

.hero-avatar img {
  width: min(240px, 100%);
  border-radius: 32px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.95rem 1.8rem;
  border-radius: 9999px;
  background: #7c3aed;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #5b21b6;
}

.button-secondary {
  background: rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.button-secondary:hover {
  background: rgba(148, 163, 184, 0.18);
}

main {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  flex: 1;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  margin: 0 0 1.25rem;
  font-size: 2rem;
  color: #eef2ff;
}

.section p,
.section ul,
.section li {
  margin: 0;
  line-height: 1.75;
  color: #cbd5e1;
}

.section ul {
  padding-left: 1.25rem;
}

.section li {
  margin-bottom: 0.75rem;
}

.section.intro {
  padding: 2rem 0 1rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}

.stat-card {
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.stat-card div {
  margin-bottom: 1.25rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.stat-card p,
.stat-card a {
  margin: 0;
  color: #cbd5e1;
  text-decoration: none;
}

.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1rem;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 9999px;
  color: #e2e8f0;
  font-weight: 600;
  white-space: nowrap;
}

.tool-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}

.tool-card {
  padding: 1.5rem;
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.tool-card h3 {
  margin-top: 0;
  color: #eef2ff;
}

.experience-list {
  display: grid;
  gap: 1.5rem;
}

.experience-card {
  padding: 1.75rem;
  background: #111827;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.experience-card h3 {
  margin-top: 0;
  color: #eef2ff;
}

.meta {
  color: #94a3b8;
  margin: 0.35rem 0 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding: 1rem 1.5rem;
  color: #94a3b8;
}

code {
  background: rgba(148, 163, 184, 0.12);
  padding: 0.2rem 0.35rem;
  border-radius: 0.35rem;
  color: #e2e8f0;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  header {
    padding-top: 3rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .button,
  .button-secondary {
    width: 100%;
    justify-content: center;
  }
}
