/* ============================================================
   MANTRA MAKWANA PORTFOLIO — HACKER DARK THEME
   ============================================================ */

:root {
  --green: #00ff41;
  --green-dim: #00cc33;
  --green-glow: rgba(0, 255, 65, 0.3);
  --green-faint: rgba(0, 255, 65, 0.08);
  --bg: #0a0a0a;
  --bg2: #0d0d0d;
  --bg3: #111111;
  --bg4: #161616;
  --border: rgba(0, 255, 65, 0.15);
  --border-bright: rgba(0, 255, 65, 0.4);
  --text: #c8ffc8;
  --text-dim: #5a8a5a;
  --text-muted: #3a5a3a;
  --white: #e8ffe8;
  --red: #ff4444;
  --yellow: #ffcc00;
  --cyan: #00ffff;
  --font-mono: 'JetBrains Mono', 'Share Tech Mono', 'Courier New', monospace;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --shadow-green: 0 0 20px rgba(0, 255, 65, 0.2);
  --shadow-green-lg: 0 0 40px rgba(0, 255, 65, 0.15);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: none; font-family: var(--font-mono); }

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

/* ── SELECTION ── */
::selection { background: var(--green); color: var(--bg); }

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

/* ── SECTION ── */
.section { padding: 100px 0; position: relative; }
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  opacity: 0.8;
}
.section-label::before { content: '// '; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}
.accent { color: var(--green); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }
.btn-primary {
  background: var(--green);
  color: var(--bg);
}
.btn-primary:hover { color: var(--bg); box-shadow: var(--shadow-green); }
.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover { color: var(--bg); box-shadow: var(--shadow-green); }

/* ── CURSOR ── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
  box-shadow: 0 0 8px var(--green);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
  opacity: 0.6;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--green);
  opacity: 1;
  background: var(--green-faint);
}

/* ── BOOT SCREEN ── */
.boot-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.boot-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.boot-content { text-align: center; width: 360px; }
.boot-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 32px;
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px var(--green);
}
.boot-name { color: var(--white); }
.bracket { color: var(--green); }
.boot-bar-wrap {
  width: 100%;
  height: 3px;
  background: var(--bg4);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.boot-bar {
  height: 100%;
  width: 0%;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--green);
}
.boot-status { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 12px; }
.boot-cursor { color: var(--green); animation: blink 1s infinite; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px var(--green-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--green); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { padding: 8px 18px; font-size: 0.8rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green);
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.matrix-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--green);
  margin-bottom: 24px;
  background: var(--green-faint);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-greeting {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.hero-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-role {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 24px;
  min-height: 1.8em;
}
.role-prefix { color: var(--text-dim); }
.type-cursor { animation: blink 1s infinite; }
.hero-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.stat { display: flex; flex-direction: column; }
.stat-val {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label { font-size: 0.7rem; color: var(--text-dim); margin-top: 4px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CUBE ── */
.cube-scene {
  width: 120px; height: 120px;
  perspective: 600px;
  margin: 0 auto 32px;
}
.cube {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 12s linear infinite;
}
.cube-face {
  position: absolute;
  width: 120px; height: 120px;
  border: 1px solid var(--border-bright);
  background: rgba(0, 255, 65, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  backdrop-filter: blur(4px);
}
.cube-face.front  { transform: translateZ(60px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(60px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(60px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(60px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(60px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(60px); }

/* ── TERMINAL ── */
.terminal-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
}
.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.t-dot.red    { background: #ff5f57; }
.t-dot.yellow { background: #febc2e; }
.t-dot.green  { background: #28c840; }
.t-title { font-size: 0.75rem; color: var(--text-dim); margin-left: 8px; }
.terminal-body { padding: 16px; font-size: 0.8rem; line-height: 2; }
.t-line { display: block; }
.t-line.dim { color: var(--text-dim); }
.t-line.green { color: var(--green); }
.t-prompt { color: var(--green); margin-right: 8px; }
.t-cursor { animation: blink 1s infinite; color: var(--green); }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  animation: float 3s ease-in-out infinite;
}
.scroll-arrow { color: var(--green); font-size: 1rem; }

/* ── GLITCH ── */
.glitch { position: relative; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.glitch::before {
  color: #ff0040;
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  color: #00ffff;
  animation: glitch2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

/* ── ABOUT ── */
.about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-bio p {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.9;
}
.neon-text { color: var(--green); text-shadow: 0 0 8px var(--green-glow); }
.hl { color: var(--white); }
.code-block {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg3);
}
.code-header {
  padding: 8px 16px;
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-dim);
}
.code-body {
  padding: 20px;
  font-size: 0.82rem;
  line-height: 1.9;
  overflow-x: auto;
  white-space: pre;
}
.ck { color: #cc99ff; }
.cs { color: #99ff99; }
.cb { color: #ff9966; }
.about-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trait-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.trait-card:hover {
  border-color: var(--border-bright);
  background: var(--green-faint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.trait-icon { font-size: 1.5rem; flex-shrink: 0; }
.trait-label { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.trait-desc { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

/* ── SKILLS ── */
.skills { background: var(--bg); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.skill-group {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition);
}
.skill-group:hover { border-color: var(--border-bright); }
.skill-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.skill-group-title { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.skill-bars { display: flex; flex-direction: column; gap: 20px; }
.skill-bar-item {}
.skill-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.skill-name { font-size: 0.85rem; color: var(--white); }
.skill-pct { font-size: 0.75rem; color: var(--green); }
.skill-track {
  height: 4px;
  background: var(--bg4);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.skill-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--green-glow);
}
.skill-tag { font-size: 0.68rem; color: var(--text-muted); }
.tech-cloud { text-align: center; }
.tech-cloud-label { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 20px; }
.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tech-badge {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-dim);
  transition: all var(--transition);
}
.tech-badge:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-faint);
}

/* ── PROJECTS ── */
.projects { background: var(--bg2); }
.project-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-faint);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.project-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green-lg);
}
.project-card.featured { border-color: rgba(0, 255, 65, 0.25); }
.project-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.65rem;
  color: var(--green);
  background: var(--green-faint);
  border: 1px solid var(--border-bright);
  padding: 3px 8px;
  border-radius: 10px;
}
.project-status-badge {
  position: absolute;
  top: 40px; right: 16px;
  font-size: 0.65rem;
  color: var(--yellow);
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 3px 8px;
  border-radius: 10px;
}
.project-icon { font-size: 2rem; }
.project-title { font-size: 1rem; font-weight: 600; color: var(--white); }
.project-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.7; flex: 1; }
.project-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.project-tech-tag {
  padding: 3px 10px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.project-links { display: flex; gap: 16px; margin-top: 4px; }
.project-link {
  font-size: 0.8rem;
  color: var(--green);
  transition: opacity var(--transition);
}
.project-link:hover { opacity: 0.7; }
.project-card.hidden { display: none; }
.projects-footer { text-align: center; }

/* ── CONTACT ── */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--green);
}
.status-text { font-size: 0.8rem; color: var(--green); }
.contact-blurb {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-socials { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.social-row:hover {
  border-color: var(--border-bright);
  background: var(--green-faint);
  transform: translateX(4px);
}
.social-icon { font-size: 1.1rem; color: var(--green); width: 24px; text-align: center; }
.social-info { flex: 1; }
.social-label { display: block; font-size: 0.8rem; color: var(--white); }
.social-handle { display: block; font-size: 0.72rem; color: var(--text-dim); }
.social-arrow { color: var(--text-dim); font-size: 0.9rem; }
.contact-terminal { margin-top: 8px; }
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.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-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.05em; }
.form-label::before { content: '> '; color: var(--green); }
.form-input {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green-faint);
}
.form-textarea { min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.8rem; color: var(--text-dim); max-width: 240px; line-height: 1.7; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.7rem; color: var(--green); letter-spacing: 0.1em; margin-bottom: 4px; }
.footer-link { font-size: 0.8rem; color: var(--text-dim); transition: color var(--transition); }
.footer-link:hover { color: var(--green); }
.footer-stack-item { font-size: 0.75rem; color: var(--text-muted); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-status { display: flex; align-items: center; gap: 8px; color: var(--green); }

/* ── SCANLINES ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9990;
}

/* ── ANIMATIONS ── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes rotateCube {
  0%   { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-3px, 1px); opacity: 0.8; }
  94% { transform: translate(3px, -1px); opacity: 0.8; }
  96% { transform: translate(-2px, 2px); opacity: 0.8; }
  98% { transform: translate(0); opacity: 0; }
}
@keyframes glitch2 {
  0%, 85%, 100% { transform: translate(0); opacity: 0; }
  87% { transform: translate(3px, -1px); opacity: 0.8; }
  89% { transform: translate(-3px, 1px); opacity: 0.8; }
  91% { transform: translate(2px, -2px); opacity: 0.8; }
  93% { transform: translate(0); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-traits { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}
@media (max-width: 480px) {
  .hero-name { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .contact-form-wrap { padding: 24px; }
}