@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --navy: #0a0f1e;
  --navy-2: #0f1629;
  --navy-3: #151d35;
  --navy-4: #1e2846;
  --navy-card: rgba(15, 22, 41, 0.85);
  --cyan: #00c8ff;
  --cyan-dim: rgba(0, 200, 255, 0.12);
  --cyan-glow: rgba(0, 200, 255, 0.3);
  --indigo: #6366f1;
  --indigo-dim: rgba(99, 102, 241, 0.12);
  --emerald: #10d9a0;
  --emerald-dim: rgba(16, 217, 160, 0.12);
  --amber: #f59e0b;
  --white: #f0f4ff;
  --white-80: rgba(240, 244, 255, 0.8);
  --white-50: rgba(240, 244, 255, 0.5);
  --white-20: rgba(240, 244, 255, 0.2);
  --white-08: rgba(240, 244, 255, 0.08);
  --white-04: rgba(240, 244, 255, 0.04);
  --border: rgba(0, 200, 255, 0.15);
  --border-subtle: rgba(240, 244, 255, 0.07);
  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 200, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--cyan); color: var(--navy); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-2); }
::-webkit-scrollbar-thumb { background: var(--navy-4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo em {
  font-style: normal;
  color: var(--cyan);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-50);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--cyan); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-nav {
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  transition: all 0.2s var(--ease);
  border: 1px solid var(--border);
  color: var(--cyan);
  background: var(--cyan-dim);
}
.btn-nav:hover {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--cyan-dim);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}
.hero-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-name span {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white-50);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-role-divider {
  width: 6px; height: 6px;
  background: var(--border);
  border-radius: 50%;
}

.hero-bio {
  font-size: 1.0625rem;
  color: var(--white-50);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: var(--navy);
  transition: all 0.2s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.3);
}
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--white-80);
  transition: all 0.2s var(--ease);
  background: transparent;
  cursor: pointer;
}
.btn-outline-hero:hover {
  background: var(--white-08);
  border-color: var(--white-20);
  transform: translateY(-2px);
}

.hero-metrics {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.metric {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.metric-value em {
  font-style: normal;
  color: var(--cyan);
}
.metric-label {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-top: 0.35rem;
  letter-spacing: 0.5px;
}

/* ─── EXPERIENCE (Timeline) ────────────────────────── */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.experience-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
}

.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2.5rem 0 2.5rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.exp-item:last-child { border-bottom: none; }
.exp-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 2.7rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.exp-meta {}
.exp-period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.exp-type {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-50);
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  display: inline-block;
}

.exp-body {}
.exp-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.exp-subtitle {
  font-size: 0.875rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 1rem;
}
.exp-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.stack-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0, 200, 255, 0.2);
  letter-spacing: 0.3px;
}
.exp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.exp-bullets li {
  font-size: 0.9rem;
  color: var(--white-80);
  display: flex;
  gap: 0.75rem;
  line-height: 1.6;
}
.exp-bullets li::before {
  content: '›';
  color: var(--cyan);
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ─── PROJECTS ────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.project-card:hover::before { opacity: 1; }

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.project-icon-box {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 200, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.project-icon-box svg { width: 20px; height: 20px; }
.project-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.badge-live {
  background: rgba(16, 217, 160, 0.12);
  color: var(--emerald);
  border: 1px solid rgba(16, 217, 160, 0.2);
}
.badge-published {
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.project-desc {
  font-size: 0.875rem;
  color: var(--white-50);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.project-achievement {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.project-achievement svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.project-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: var(--white-04);
  color: var(--white-50);
  border: 1px solid var(--border-subtle);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}
.project-link:hover { gap: 0.7rem; }
.project-link svg { width: 14px; height: 14px; }

/* ─── SKILLS ────────────────────────────────────────── */
.skills-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.skill-group {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.skill-group:hover { border-color: var(--border); }
.skill-group-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.skill-group-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-dim);
  color: var(--cyan);
}
.skill-group-icon svg { width: 16px; height: 16px; }
.skill-group-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}
.skill-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.s-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: var(--white-08);
  border: 1px solid var(--border-subtle);
  color: var(--white-80);
  transition: all 0.2s;
}
.s-tag:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
  border-color: rgba(0,200,255,0.2);
}

/* ─── EDUCATION ─────────────────────────────────────── */
.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.edu-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.edu-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.edu-card:hover { transform: translateY(-3px); }
.edu-card:hover::after { opacity: 1; }

.edu-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.edu-degree {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.edu-institution {
  font-size: 0.875rem;
  color: var(--white-50);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.edu-detail {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
}
.edu-detail.gate {
  background: rgba(99,102,241,0.12);
  color: var(--indigo);
  border: 1px solid rgba(99,102,241,0.2);
}
.edu-detail.cgpa {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0,200,255,0.2);
}

/* ─── CERTIFICATIONS / ACHIEVEMENTS ─────────────────── */
.achievements-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.cert-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.3s;
}
.cert-card:hover { border-color: var(--border); }
.cert-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-icon svg { width: 18px; height: 18px; }
.cert-icon.gold {
  background: rgba(245,158,11,0.12);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.2);
}
.cert-icon.blue {
  background: var(--indigo-dim);
  color: var(--indigo);
  border: 1px solid rgba(99,102,241,0.2);
}
.cert-icon.green {
  background: var(--emerald-dim);
  color: var(--emerald);
  border: 1px solid rgba(16,217,160,0.2);
}
.cert-body {}
.cert-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.cert-issuer {
  font-size: 0.775rem;
  color: var(--white-50);
}

/* ─── CONTACT ────────────────────────────────────────── */
#contact {
  background: linear-gradient(180deg, transparent, var(--navy-2) 30%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.contact-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-subtext {
  font-size: 0.975rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 1.25rem;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  transition: all 0.2s var(--ease);
}
.contact-link:hover {
  border-color: var(--border);
  background: var(--navy-3);
  transform: translateX(4px);
}
.contact-link-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,200,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.contact-link-icon svg { width: 16px; height: 16px; }
.contact-link-label { font-size: 0.7rem; font-weight: 600; color: var(--white-50); letter-spacing: 1px; }
.contact-link-value { font-size: 0.9rem; font-weight: 600; color: var(--white); }

.contact-form-box {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--white-50);
  letter-spacing: 0.5px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--navy-2);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-20); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--cyan-glow);
}
.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}
.form-status.success {
  display: block;
  background: var(--emerald-dim);
  color: var(--emerald);
  border: 1px solid rgba(16,217,160,0.2);
}
.form-status.error {
  display: block;
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--white-50);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--white-50);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .exp-item { grid-template-columns: 1fr; }
  .exp-item { padding-left: 2rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .skills-bento { grid-template-columns: repeat(2, 1fr); }
  .education-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .achievements-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--navy-2);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2rem;
    gap: 1.5rem;
  }
  .hero-role { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .hero-role-divider { display: none; }
  .hero-metrics { gap: 1.5rem; }
  .skills-bento { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a, .hero-actions button { width: 100%; justify-content: center; }
}

/* ─── ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
