/* ─────────────────── RESET & VARIABLES ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #04050d;
  --bg-navy:    #070b18;
  --bg-card:    rgba(255,255,255,0.04);
  --glass:      rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.09);
  --purple-1:   #6d28d9;
  --purple-2:   #8b5cf6;
  --purple-3:   #a78bfa;
  --purple-4:   #c4b5fd;
  --neon:       #9f5ff8;
  --text:       #f1f5f9;
  --muted:      #94a3b8;
  --dim:        #4a5568;
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --glow-sm:    0 0 20px rgba(139,92,246,0.25);
  --glow-md:    0 0 40px rgba(139,92,246,0.35);
  --glow-lg:    0 0 80px rgba(139,92,246,0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─────────────────── SCROLLBAR ─────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--purple-2); border-radius: 3px; }

/* ─────────────────── NOISE TEXTURE ─────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─────────────────── NAV ─────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 6%;
  background: rgba(4,5,13,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.4px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-hire {
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 20px rgba(109,40,217,0.4);
  transition: var(--transition) !important;
}
.nav-hire:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(109,40,217,0.55) !important; }

/* ─────────────────── HERO ─────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50fr 50fr;
  align-items: center;
  gap: 2rem;
  padding: 8rem 4% 5rem;
  position: relative;
  overflow: hidden;
}

/* Background orbs */
.hero-orb-1, .hero-orb-2, .hero-orb-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,40,217,0.22) 0%, transparent 70%);
  top: -10%; left: -10%;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  bottom: 0; right: 5%;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, transparent 70%);
  top: 40%; left: 40%;
}

/* Grid dots background */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139,92,246,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-left, .hero-right { position: relative; z-index: 1; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--purple-3);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px #22c55e; }
  50% { box-shadow: 0 0 14px #22c55e, 0 0 4px #22c55e; }
}

/* Headline */
.hero-headline {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
}
.hero-headline .name-glow {
  background: linear-gradient(135deg, var(--purple-2), var(--purple-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(139,92,246,0.5));
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.btn-fill {
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(109,40,217,0.45), 0 0 0 1px rgba(139,92,246,0.2);
  position: relative;
  overflow: hidden;
}
.btn-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(109,40,217,0.6), 0 0 0 1px rgba(139,92,246,0.3); }
.btn-fill:hover::before { opacity: 1; }

.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: rgba(139,92,246,0.5); background: rgba(139,92,246,0.08); color: var(--purple-3); transform: translateY(-2px); }

/* Social pills */
.social-pills {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.social-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.social-pill:hover { color: var(--text); border-color: rgba(139,92,246,0.4); background: rgba(139,92,246,0.08); transform: translateY(-2px); }

/* ─────────────────── HERO RIGHT ─────────────────── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-scene {
  position: relative;
  width: 520px;
  height: 520px;
  flex-shrink: 0;
}

/* Outer spinning ring */
.ring-outer {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(139,92,246,0.8) 60deg,
    rgba(196,181,253,0.9) 120deg,
    transparent 180deg,
    rgba(109,40,217,0.6) 240deg,
    transparent 360deg
  );
  animation: spin 6s linear infinite;
  filter: blur(1px);
}
@keyframes spin { to { transform: rotate(360deg); } }

.ring-outer::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg-deep);
}

/* Glow behind */
.portrait-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.35) 0%, rgba(139,92,246,0.15) 40%, transparent 70%);
  filter: blur(30px);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Portrait image */
.portrait-img {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  border: 3px solid rgba(139,92,246,0.4);
}
.portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.05) contrast(1.05);
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--purple-3);
  animation: float-particle linear infinite;
  opacity: 0;
  z-index: 3;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5); }
}
.p1 { width: 6px; height: 6px; bottom: 60px; left: 20px;  animation-duration: 3.5s; animation-delay: 0s; }
.p2 { width: 4px; height: 4px; bottom: 40px; right: 30px; animation-duration: 4s;   animation-delay: 0.8s; background: var(--purple-4); }
.p3 { width: 8px; height: 8px; bottom: 80px; left: 50px;  animation-duration: 5s;   animation-delay: 1.5s; }
.p4 { width: 3px; height: 3px; bottom: 30px; right: 60px; animation-duration: 3s;   animation-delay: 2.2s; background: #c4b5fd; }
.p5 { width: 5px; height: 5px; bottom: 100px; left: 0px;  animation-duration: 4.5s; animation-delay: 0.4s; }
.p6 { width: 4px; height: 4px; bottom: 50px; right: 10px; animation-duration: 3.8s; animation-delay: 1.1s; background: var(--purple-4); }
.p7 { width: 7px; height: 7px; bottom: 20px; left: 80px;  animation-duration: 4.2s; animation-delay: 2.7s; }
.p8 { width: 3px; height: 3px; bottom: 70px; right: 80px; animation-duration: 5.5s; animation-delay: 0.6s; background: #e0d4ff; }

/* Floating stat chips */
.stat-chip {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
  animation: chip-float 4s ease-in-out infinite;
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.chip-1 { top: 20px; left: -30px; animation-delay: 0s; }
.chip-2 { bottom: 40px; right: -20px; animation-delay: 1.5s; }
.chip-icon { font-size: 1.1rem; }
.chip-label { font-size: 0.72rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.chip-sub { font-size: 0.65rem; color: var(--muted); }

/* ─────────────────── SECTION BASE ─────────────────── */
section { padding: 6.5rem 6%; position: relative; z-index: 1; }
section:nth-child(even) { background: linear-gradient(to bottom, rgba(7,11,24,0.5), var(--bg-deep)); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-3);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.section-line {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--purple-2), var(--purple-4));
  border-radius: 2px;
  margin: 0.8rem 0 1rem;
}
.section-desc {
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 3.5rem;
  font-size: 0.97rem;
}

/* ─────────────────── SERVICES ─────────────────── */
#services {
  background: linear-gradient(to bottom, var(--bg-deep), rgba(7,11,24,0.8));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.6), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.15), var(--glow-sm);
}
.service-card:hover::before, .service-card:hover::after { opacity: 1; }

.service-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(109,40,217,0.15);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(109,40,217,0.25);
  box-shadow: 0 0 16px rgba(139,92,246,0.3);
}
.service-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.service-desc {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.tag-group { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  background: rgba(109,40,217,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  color: var(--purple-4);
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

/* ─────────────────── EXPERIENCE ─────────────────── */
#experience { background: var(--bg-deep); }

.exp-layout {
  display: grid;
  grid-template-columns: 20fr 40fr 40fr;
  gap: 2.5rem;
  align-items: start;
}

.exp-header { padding-top: 0.25rem; }
.exp-header .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.exp-header .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.exp-header .section-line { margin: 0.8rem 0 1rem; }
.exp-header .section-desc { font-size: 0.875rem; max-width: 100%; margin-bottom: 0; }

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--purple-2) 0%,
    rgba(139,92,246,0.5) 60%,
    transparent 100%
  );
}

.tl-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.tl-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109,40,217,0.8), rgba(139,92,246,0.6));
  border: 2px solid rgba(139,92,246,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(139,92,246,0.1), 0 0 20px rgba(139,92,246,0.2);
}

.tl-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  flex: 1;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.tl-card:hover {
  border-color: rgba(139,92,246,0.3);
  box-shadow: var(--glow-sm);
  transform: translateX(4px);
}
.tl-role {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.tl-org {
  color: var(--purple-3);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139,92,246,0.1) 0%, transparent 70%);
}
.stat-card:hover {
  border-color: rgba(139,92,246,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), var(--glow-sm);
}
.stat-emoji { font-size: 1.75rem; margin-bottom: 0.75rem; }
.stat-num {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-2), var(--purple-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ─────────────────── SKILLS ─────────────────── */
#skills {
  background: linear-gradient(to bottom, rgba(7,11,24,0.5), var(--bg-deep));
}

.skills-layout {
  display: grid;
  grid-template-columns: 25fr 75fr;
  gap: 3rem;
  align-items: start;
}

.skills-header { padding-top: 0.25rem; }
.skills-header .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.skills-header .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.skills-header .section-line { margin: 0.8rem 0 1rem; }
.skills-header .section-desc { font-size: 0.875rem; max-width: 100%; margin-bottom: 0; }

.skills-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.skills-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}
.skills-panel-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.skill-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
}
.skill-item { position: relative; }
.skill-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}
.skill-name { font-weight: 600; font-size: 0.9rem; }
.skill-pct {
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.25);
  color: var(--purple-3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.skill-bar {
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
  position: relative;
}
.skill-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2), var(--purple-3));
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.skill-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 50px;
  filter: blur(3px);
  animation: skill-shine 2s ease-in-out infinite;
}
@keyframes skill-shine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ─────────────────── FOOTER ─────────────────── */
footer {
  background: rgba(4,5,13,0.95);
  border-top: 1px solid var(--glass-border);
  padding: 2.5rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-left .nav-logo { font-size: 1.2rem; }
.footer-copy {
  color: var(--dim);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.footer-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--purple-3); }

/* ─────────────────── SCROLL ANIMATIONS ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-sub, .section-desc { margin-left: auto; margin-right: auto; }
  .hero-actions, .social-pills { justify-content: center; }
  .portrait-scene { width: 300px; height: 300px; }
  .chip-1 { top: 5px; left: -10px; font-size: 0.8rem; padding: 0.4rem 0.65rem; }
  .chip-2 { bottom: 10px; right: -10px; font-size: 0.8rem; padding: 0.4rem 0.65rem; }
  .exp-layout { grid-template-columns: 1fr; gap: 2rem; }
  .exp-header .section-title { font-size: 1.8rem; }
  .skill-row { grid-template-columns: 1fr; }
  .skills-panel { padding: 2rem 1.75rem; }
  .skills-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  #hero { padding: 7rem 5% 4rem; }
  section { padding: 5rem 5%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-right { justify-content: center; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
}
