
:root {
  --primary: #10B981;
  --primary-light: #34D399;
  --secondary: #06B6D4;
  --accent: #F59E0B;
  --bg-dark: #0A0F0A;
  --bg-card: rgba(16, 185, 129, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(16, 185, 129, 0.12);
  --text-primary: #ECFDF5;
  --text-secondary: #A7F3D0;
  --text-muted: #6B7280;
  --gradient-1: linear-gradient(135deg, #10B981, #06B6D4);
  --gradient-2: linear-gradient(135deg, #F59E0B, #10B981);
  --gradient-3: linear-gradient(135deg, #06B6D4, #10B981, #34D399);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.18);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-accent: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Particle canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Layout ─────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
  50%       { box-shadow: 0 0 40px rgba(16, 185, 129, 0.4); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 15, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-bracket { color: var(--primary); }
.logo-text    { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(16, 185, 129, 0.1);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 24px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  animation: pulse-glow 2s ease infinite;
  box-shadow: 0 0 8px #00e676;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 500;
}

.role-prefix  { color: var(--secondary); }
.role-text    { color: var(--text-primary); }

.cursor-blink {
  color: var(--primary);
  animation: blink 1s step-end infinite;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.hero-orb-container {
  position: relative;
  width: 500px;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(16, 185, 129, 0.7) 0%,
    rgba(6, 182, 212, 0.4) 35%,
    rgba(5, 150, 105, 0.15) 65%,
    transparent 100%);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(4px);
}

.hero-person-photo {
  position: relative;
  z-index: 3;
  height: 420px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
}

.f-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  animation: floatShape 4s ease-in-out infinite;
}

.f-pink-circle  { width:18px; height:18px; background:#ff4fd8; top:60px; right:80px; box-shadow:0 0 12px #ff4fd8; animation-delay:0s; }
.f-teal-circle  { width:14px; height:14px; background:#00e5c8; bottom:160px; left:60px; box-shadow:0 0 10px #00e5c8; animation-delay:0.8s; }
.f-blue-square  { width:36px; height:36px; border-radius:10px; background:#38bdf8; top:80px; right:20px; box-shadow:0 0 16px rgba(56,189,248,0.6); transform:rotate(15deg); animation-delay:1.2s; }
.f-purple-pill  { width:60px; height:28px; border-radius:50px; background:rgba(139,92,246,0.7); bottom:120px; left:20px; animation-delay:0.4s; }
.f-cyan-dot     { width:10px; height:10px; background:#22d3ee; top:160px; right:30px; box-shadow:0 0 8px #22d3ee; animation-delay:1.6s; }
.f-magenta-blob { width:44px; height:22px; border-radius:50px; background:rgba(236,72,153,0.65); bottom:80px; left:80px; animation-delay:2s; }

.code-badge {
  position: absolute;
  z-index: 4;
  background: rgba(10, 15, 10, 0.82);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: floatShape 5s ease-in-out infinite;
}

.badge-role  { top:55px; left:30px; animation-delay:0.3s; }
.badge-stack { bottom:100px; right:0; animation-delay:1s; }

.cb-key   { color: #34D399; }
.cb-colon { color: #A7F3D0; }
.cb-val   { color: #06B6D4; }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease infinite;
}

/* ── About ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-image-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.about-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  overflow: hidden;
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-quick-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 10px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.info-icon { color: var(--primary); display: flex; }

.about-content { padding-top: 8px; }

.about-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.tech-stack { margin-top: 28px; }

.tech-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.tech-tag {
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ── Skills ─────────────────────────────────────────── */
.skills-cloud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.skill-group {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.skill-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.skill-group-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-pill {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.07);
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  cursor: default;
}

.skill-pill:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

/* ── Projects ───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover::before { opacity: 1; }

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-category {
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 1px;
}

.project-links { display: flex; gap: 10px; }

.project-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.project-link:hover {
  color: var(--primary);
  background: rgba(16, 185, 129, 0.15);
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.project-description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.project-tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.08);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ── Experience ─────────────────────────────────────── */
.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.column-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.column-title svg { color: var(--primary); }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.timeline-item {
  position: relative;
  padding: 24px;
  padding-left: 28px;
}

.timeline-dot {
  position: absolute;
  left: -6px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.exp-role {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.exp-company {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--secondary);
}

.exp-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.exp-type {
  padding: 2px 10px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--primary);
}

.exp-period {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.exp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.edu-details {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-1);
  flex-shrink: 0;
}

/* ── Contact ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-input {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn { align-self: flex-start; margin-top: 8px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.social-icon { color: var(--primary); display: flex; }

.social-name {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.location-icon { color: var(--accent); }

.location-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

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

/* ── Footer ─────────────────────────────────────────── */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-glass);
  background: rgba(10, 15, 10, 0.6);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-brand { text-align: center; }

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
  width: 100%;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-built {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .section-header { margin-bottom: 40px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: rgba(10, 15, 10, 0.97);
    backdrop-filter: blur(20px);
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-glass);
  }

  .nav-links.active { right: 0; }
  .nav-link { font-size: 1.2rem; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero-title { font-size: 2.2rem; }
  .hero-role  { justify-content: center; font-size: 1.2rem; }
  .hero-description { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats   { justify-content: center; }

  .hero-orb-container { width: 320px; height: 300px; }
  .hero-orb           { width: 260px; height: 260px; }
  .hero-person-photo  { height: 290px; }
  .code-badge         { font-size: 0.72rem; padding: 6px 10px; }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-heading { font-size: 1.3rem; }

  .skills-cloud  { grid-template-columns: 1fr; }

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

  .exp-layout { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}

.column-title--spaced { margin-top: 32px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
