.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0 0 12px;
  }
  
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
  }
  
  .brand {
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    color: #d946ef;
  }
  
  .site-nav {
    display: flex;
    gap: 26px;
    align-items: center;
  }
  
  .site-nav a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
  }

  .site-nav a:hover,
.site-nav a.active {
  color: #e879f9;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 14px 34px rgba(192, 38, 211, 0.22);
}

.btn-light {
  background: white;
  color: var(--dark-text);
}

.btn-outline {
    border-color: var(--border);
    background: transparent;
    color: var(--text);
  }
  
  .btn-ghost {
    border-color: rgba(192, 38, 211, 0.45);
    background: rgba(192, 38, 211, 0.08);
    color: #f0abfc;
  }
  
  .hero-card,
  .profile-card,
  .stat-card,
  .skill-card,
  .timeline-card,
  .education-card,
  .contact-card,
  .about-visual {
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
  }
  
  .hero-card,
  .profile-card,
  .contact-card,
  .about-visual {
    border-radius: var(--radius-xl);
  }
  
  .hero-card {
    padding: 42px;
  }
  
  .eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    color: var(--soft);
  }

  .hero-card h1,
.section-copy h2,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.08;
}

.hero-card h1 {
    margin: 0;
    font-size: clamp(38px, 3.8vw, 52px);
    line-height: 1.04;
    font-weight: 800;
    max-width: 600px;
    letter-spacing: -1.2px;
  }  

.hero-card h1 span {
  color: #f0abfc;
}

.hero-title .name {
    color: #d946ef;
  }  

.hero-description,
.section-copy p,
.timeline-card p,
.contact-description {
  color: var(--muted);
  line-height: 1.9;
}

.hero-description {
  max-width: 760px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.profile-card {
    padding: 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(192, 38, 211, 0.18), rgba(255, 255, 255, 0.04));
  }
  
  .profile-ring {
    width: 188px;
    height: 188px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #d946ef, #8b5cf6);
    box-shadow: 0 18px 36px rgba(192, 38, 211, 0.2);
  }
  
  .fade-in-up {
    opacity: 1;
    transform: translateY(0);
  }

  
  .profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #111116;
  }
  
  .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-card h2 {
    margin: 22px 0 8px;
  }
  
  .profile-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
  }

  .stat-card,
.skill-card,
.timeline-card,
.education-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.stat-card h3,
.skill-card h3,
.timeline-card h3,
.education-card h3 {
  margin: 0;
}

.stat-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
}

.stat-label {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--soft);
}

.section-copy h2,
.section-heading h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-copy p {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.about-visual {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
  }
  
  .about-icon-box {
    width: 240px;
    height: 240px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 38, 211, 0.1);
    position: relative;
  }
  
  .about-icon-box span {
    font-size: 5rem;
  }
  
  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }
  
  .tag-list span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(192, 38, 211, 0.55);
    background: rgba(192, 38, 211, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
  }

  .timeline-year {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(192, 38, 211, 0.22);
    position: relative;
  }
  
  .timeline-item:not(:last-child) .timeline-year::after {
    content: "";
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% + 40px);
    background: rgba(217, 70, 239, 0.38);
  }
  
  .timeline-company {
    margin: 10px 0 4px;
    color: #f0abfc;
    font-weight: 600;
  }
  
  .timeline-meta,
  .education-card span,
  .contact-item span {
    color: var(--soft);
    font-size: 0.92rem;
  }
  
  .education-year {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #f0abfc;
    margin-bottom: 12px;
  }

  .contact-card {
    padding: 40px;
  }
  
  .contact-description {
    max-width: 740px;
    margin-top: 16px;
  }
  
  .contact-item {
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
  }
  
  .contact-item strong {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
  }
  
  
  .delay-1 {
    transition-delay: 0.12s;
  }
  
  .delay-2 {
    transition-delay: 0.24s;
  }

  @media (max-width: 960px) {
    .site-nav {
      position: absolute;
      top: 88px;
      left: 20px;
      right: 20px;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      padding: 18px 20px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: rgba(12, 12, 16, 0.95);
    }
  
    .site-nav.open {
      display: flex;
    }
  
    .menu-toggle {
      display: inline-flex;
    }
  
    .nav-cta {
      display: none;
    }
  }
  
  @media (max-width: 800px) {
    .hero-card,
    .contact-card,
    .profile-card,
    .about-visual {
      padding: 28px;
    }
  
    .timeline-year::after {
      display: none;
    }
  }

  .hero-title {
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    max-width: 720px;
    letter-spacing: -1px;
  }
  
  .hero-title .name {
    color: #d946ef;
    white-space: nowrap;
  }

  .experience-list {
    margin-top: 12px;
    padding-left: 18px;
  }
  
  .experience-list li {
    margin-bottom: 6px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .timeline-location {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
  }
  
  .timeline-meta {
    margin-top: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
  }
  
  .timeline-tech {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #c084fc;
  }
  
  .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .timeline-left h3 {
    margin: 0;
  }
  
  .timeline-company {
    margin-top: 4px;
    color: rgba(255,255,255,0.7);
  }
  
  .timeline-right {
    text-align: right;
  }
  
  .timeline-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
  }
  
  .timeline-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }
  
  .education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
  }
  
  .education-card {
    padding: 26px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg,#0f0f13,#111118);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  
  .education-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192,38,211,0.4);
  }
  
  .education-year {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #d946ef;
    font-weight: 600;
  }
  
  .education-degree {
    margin-top: 6px;
    color: rgba(255,255,255,0.85);
  }
  
  .education-meta {
    margin-top: 4px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
  }
  
  .education-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }
  
  .education-focus span {
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(192,38,211,0.35);
    color: #e9d5ff;
    background: rgba(192,38,211,0.08);
  }

  .education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .education-left h3 {
    margin: 0;
  }
  
  .education-degree {
    margin-top: 4px;
    color: rgba(255,255,255,0.7);
  }
  
  .education-right {
    text-align: right;
  }
  
  .education-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
  }
  
  .education-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }
  
  @media (max-width: 768px) {

    .education-header {
      flex-direction: column;
      gap: 6px;
    }
  
    .education-right {
      text-align: left;
    }
  
  }
  
  .education-left h3 {
    font-size: 1.1rem;
  }

  .timeline-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  
  .timeline-tech-tags span {
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(192, 38, 211, 0.35);
    color: #e9d5ff;
    background: rgba(192, 38, 211, 0.08);
  }
  
  .achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
  }
  
  .achievement-card {
    padding: 26px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg,#0f0f13,#111118);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  
  .achievement-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192,38,211,0.4);
  }
  
  .achievement-card h3 {
    margin-bottom: 6px;
  }
  
  .achievement-meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {

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

  .achievement-card {
    padding: 28px;
    border-radius: 16px;
  
    border: 1px solid rgba(255,255,255,0.08);
  
    background: linear-gradient(
      140deg,
      #0f0f13,
      #12121a
    );
  
    transition: all 0.3s ease;
  }
  
  .achievement-card:hover {
    transform: translateY(-6px);
  
    border-color: rgba(192,38,211,0.5);
  
    box-shadow: 0 0 40px rgba(192,38,211,0.25);
  }
  
  .achievement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    margin-bottom: 6px;
  }

  .achievement-badge {
    font-size: 0.75rem;
  
    padding: 6px 12px;
  
    border-radius: 999px;
  
    border: 1px solid rgba(192,38,211,0.6);
  
    color: #d946ef;
  
    background: rgba(192,38,211,0.08);
  }
  
  .achievement-meta {
    color: rgba(255,255,255,0.6);
  
    font-size: 0.9rem;
  
    margin-bottom: 10px;
  }
  
  .achievement-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  
  .achievement-link {
    color: #d946ef;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  
  .achievement-link:hover {
    text-decoration: underline;
  }
  
  

  /* =========================
   Footer
========================= */

.site-footer {
    margin-top: 80px;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about h3 {
    color: #d946ef;
    margin-bottom: 10px;
  }
  
  .footer-about p {
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }
  
  .footer-links h4 {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: #f472b6;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
  }
  
  .hero-title {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(50px, 4.8vw, 74px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.05em;
  }  
  
  .hero-title .name {
    color: #d946ef;
  }
  
  .hero-description {
    max-width: 700px;
    margin-top: 28px;
  }
  
  .hero-card {
    padding: 54px 34px 34px 34px;
  }
  