:root {
  --bg: #05010a;
  --card: #0b0614;
  --accent: #8b5cf6;      
  --accent-dark: #6d28d9; 
  --text: #e9e7ff;
  --muted: #a39fc9;
}

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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -20%, #1a0b2e, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

header {
  padding: 80px 20px;
  text-align: center;
  background: radial-gradient(
    1000px 400px at 50% -40%,
    rgba(139,92,246,.35),
    transparent
  );
}

header h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  margin-bottom: 10px;
}

header p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #f5f3ff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(139,92,246,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 45px rgba(139,92,246,.7);
}


main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

section {
  margin-bottom: 70px;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 25px;
}

.about {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.card {
  background: linear-gradient(
    180deg,
    rgba(139,92,246,.08),
    rgba(0,0,0,.6)
  );
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 18px;
  padding: 24px;
  box-shadow:
    0 0 25px rgba(0,0,0,.8),
    inset 0 0 40px rgba(139,92,246,.05);
}

.profile {
  text-align: center;
}

.profile img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid var(--accent);
  box-shadow: 0 0 35px rgba(139,92,246,.7);
}

.profile h3 {
  margin-bottom: 6px;
}

.profile p {
  color: var(--muted);
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(139,92,246,.2);
  color: #ddd6fe;
  font-weight: 600;
  margin-bottom: 12px;
}

.list {
  padding-left: 18px;
}

.list li {
  margin: 7px 0;
}

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

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.contact a {
  text-decoration: none;
  color: var(--text);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(139,92,246,.35);
  background: rgba(0,0,0,.35);
  transition: all .25s ease;
}

.contact a:hover {
  background: rgba(139,92,246,.15);
  box-shadow: 0 0 30px rgba(139,92,246,.5);
  transform: translateY(-2px);
}

footer {
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(139,92,246,.25);
}
