:root {
  --bg: #07060a;
  --panel: #0f0e14;
  --muted: #9aa0b2;
  --neon1: #9b59ff;
  --neon2: #7b2be6;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #e6e9f2;
  line-height: 1.5;
}

/* Container */
.site-container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(155,89,255,0.2), rgba(123,43,230,0.15));
  box-shadow: 0 0 15px rgba(155,89,255,0.3);
  color: var(--neon1);
  font-weight: 800;
  font-size: 18px;
  text-shadow: 0 0 8px rgba(155,89,255,0.9);
}

.brand-text .name {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-text .sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.top-nav {
  display: flex;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(155,89,255,0.2);
  background: linear-gradient(180deg, rgba(155,89,255,0.08), rgba(123,43,230,0.06));
  color: var(--neon1);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav-btn:hover {
  background: rgba(155,89,255,0.15);
  box-shadow: 0 0 12px rgba(155,89,255,0.5);
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-left,
.hero-right {
  flex: 1;
  min-width: 280px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  box-shadow: 0 0 20px rgba(155,89,255,0.08);
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.neon {
  color: var(--neon1);
  text-shadow: 0 0 10px rgba(155,89,255,0.9), 0 0 20px rgba(123,43,230,0.6);
}

.hero-sub {
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(155,89,255,0.3);
  background: rgba(155,89,255,0.1);
  color: var(--neon1);
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  background: rgba(155,89,255,0.2);
  box-shadow: 0 0 15px rgba(155,89,255,0.5);
}

.status {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Profile */
.profile {
  text-align: center;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 1px solid rgba(155,89,255,0.3);
  box-shadow: 0 0 25px rgba(155,89,255,0.1);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meta-role {
  color: var(--muted);
  font-size: 0.85rem;
}

.meta-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.meta-location {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

/* Sections */
.section {
  margin-bottom: 40px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--neon1), var(--neon2));
  box-shadow: 0 0 12px rgba(155,89,255,0.9);
}

.panel {
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border: 1px solid rgba(255,255,255,0.05);
  width: 100%;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-col,
.right-col {
  flex: 1;
  min-width: 280px;
}

/* Skills */
.skills-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(155,89,255,0.3);
  background: rgba(155,89,255,0.08);
  color: var(--neon1);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Projects */
.project {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.thumb {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  background: rgba(155,89,255,0.1);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--neon1);
}

.proj-title {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #fff;
}

.proj-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Contact */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 6px 0;
  color: var(--muted);
}

.contact-item strong {
  color: #fff;
  width: 100px;
  min-width: 80px;
}

/* Footer */
.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Nav & Responsiveness */
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-nav {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    background: var(--panel);
    border-radius: 8px;
    padding: 0 12px;
    transition: all 0.4s ease;
    opacity: 0;
  }

  .top-nav.show {
    max-height: 500px;
    opacity: 1;
    padding: 12px;
  }

  .nav-btn {
    width: 100%;
    text-align: left;
  }

  .hero,
  .two-column {
    flex-direction: column;
    gap: 20px;
  }

  .hero-left,
  .hero-right,
  .left-col,
  .right-col {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .project {
    flex-direction: column;
  }

  .thumb {
    width: 100%;
    height: 60px;
  }

  .site-container {
    padding: 12px;
    margin: 0 10px;
  }
}
/* Hero CTA buttons same style as project blocks */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-row .btn {
  flex: 1; /* equal width */
  min-width: 120px; /* prevent too small on mobile */
  height: 50px; /* same height as project thumbnails */
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(155,89,255,0.3);
  background: rgba(155,89,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.cta-row .btn:hover {
  background: rgba(155,89,255,0.2);
  box-shadow: 0 0 15px rgba(155,89,255,0.5);
}

/* Status text stays below buttons */
.cta-row .status {
  width: 100%;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* Responsive: stack buttons on mobile */
@media (max-width: 900px) {
  .cta-row {
    flex-direction: column;
  }
  .cta-row .btn {
    width: 100%;
  }
}

