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

:root {
  /* Color */
  --bg: #000000;
  --bg-2: #0a0a0a;
  --surface: #111111;
  --surface-2: #1c1c1e;
  --text: #f5f5f7;
  --text-muted: #86868b;
  --text-dim: #6e6e73;
  --border: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.18);
  --accent: #0a84ff;
  --accent-2: #5e5ce6;
  --gradient-1: linear-gradient(135deg, #ff6b9d 0%, #c471ed 50%, #12c2e9 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #4facfe 100%);
  --gradient-3: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-4: linear-gradient(135deg, #30cfd0 0%, #330867 100%);

  /* Typography */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Spacing scale (8px base) */
  --space-1: 0.5rem;     /* 8 */
  --space-2: 1rem;       /* 16 */
  --space-3: 1.5rem;     /* 24 */
  --space-4: 2rem;       /* 32 */
  --space-5: 3rem;       /* 48 */
  --space-6: 4rem;       /* 64 */
  --space-7: 6rem;       /* 96 */
  --space-8: 8.75rem;    /* 140 */

  /* Container widths */
  --container: 1100px;
  --container-narrow: 980px;
  --reading: 660px;

  /* Section padding */
  --section-y: 140px;
  --section-x: 22px;

  /* Section header rhythm */
  --header-eyebrow-to-title: 1rem;
  --header-title-to-sub: 1.5rem;
  --header-to-content: 3rem;

  /* Radii */
  --radius-card: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-pill: 980px;
}

@media (max-width: 768px) {
  :root { --section-y: 90px; }
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  scroll-padding-top: 60px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-weight: 400;
  transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
}

::selection { background: var(--accent); color: white; }
img, svg { display: block; max-width: 100%; }
kbd {
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 0.12rem 0.4rem;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin: 0 0.1rem;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: white;
  transition: transform 0.1s var(--ease-out), opacity 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: transform 0.18s var(--ease-out), width 0.25s, height 0.25s, opacity 0.2s, border-color 0.2s;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: rgba(255,255,255,0.9);
}
.cursor-ring.click { transform: translate(-50%, -50%) scale(0.7); }
body.touch .cursor-dot, body.touch .cursor-ring { display: none; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 52px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
}
nav.scrolled { background: rgba(0,0,0,0.85); }

.nav-inner {
  max-width: 1024px;
  width: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
}
.nav-logo::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient-1);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  color: var(--text);
  opacity: 0.78;
  text-decoration: none;
  transition: opacity 0.2s;
  position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-controls { display: flex; gap: 0.4rem; align-items: center; }

.ctrl {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: var(--sans);
}
.ctrl:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--border);
}
.ctrl:active { transform: scale(0.92); }
.ctrl svg { width: 14px; height: 14px; }

/* ===== FLUID GRADIENT BG ===== */
.fluid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  filter: blur(90px) saturate(120%);
  pointer-events: none;
}
.fluid-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  will-change: transform;
  mix-blend-mode: screen;
}
.fluid-blob.b1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, #c471ed 0%, #ff6b9d 60%, transparent 80%);
  top: -10%; left: 20%;
  animation: blob1 18s ease-in-out infinite;
}
.fluid-blob.b2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #0a84ff 0%, #5e5ce6 55%, transparent 80%);
  top: 10%; right: -5%;
  animation: blob2 22s ease-in-out infinite;
}
.fluid-blob.b3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #12c2e9 0%, #4facfe 55%, transparent 80%);
  bottom: -5%; left: -5%;
  animation: blob3 16s ease-in-out infinite;
}
.fluid-blob.b4 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #f093fb 0%, #c471ed 50%, transparent 80%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: blob4 20s ease-in-out infinite;
}
.fluid-blob.b5 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, #c471ed 40%, transparent 75%);
  top: 35%; right: 28%;
  opacity: 0.12;
  animation: blob5 14s ease-in-out infinite;
  filter: blur(10px);
}
@keyframes blob1 {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  33%      { transform: translate(80px,-60px) scale(1.12) rotate(60deg); }
  66%      { transform: translate(-60px,80px) scale(0.92) rotate(120deg); }
}
@keyframes blob2 {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  25%      { transform: translate(-100px,60px) scale(1.08) rotate(-45deg); }
  75%      { transform: translate(60px,-80px) scale(0.95) rotate(90deg); }
}
@keyframes blob3 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(70px,-50px) scale(1.15); }
  80%      { transform: translate(-40px,60px) scale(0.9); }
}
@keyframes blob4 {
  0%,100% { transform: translate(-50%,-50%) scale(1) rotate(0deg); }
  30%      { transform: translate(-50%,-50%) scale(1.2) rotate(90deg); }
  70%      { transform: translate(-50%,-50%) scale(0.85) rotate(180deg); }
}
@keyframes blob5 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.35; }
  50%      { transform: translate(-30px,40px) scale(1.3); opacity: 0.6; }
}
body.light .fluid-blob { opacity: 0.16; mix-blend-mode: multiply; }
body.light .fluid-bg { filter: blur(90px) saturate(100%); }
@media (prefers-reduced-motion: reduce) { .fluid-bg { display: none; } }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px var(--section-x) 80px;
  position: relative;
  overflow: hidden;
}

.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: var(--space-4);
  max-width: 1000px;
}

.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 0.2s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.4s; }

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

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: var(--reading);
  margin: 0 auto var(--space-5);
  line-height: 1.55;
  letter-spacing: -0.005em;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.typewriter {
  display: inline-block;
  color: var(--text);
  font-weight: 500;
  position: relative;
}
.typewriter::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1.05em;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 3px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-cta {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.btn {
  padding: 0.78rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, transform 0.15s, box-shadow 0.25s, border-color 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
  position: relative;
  will-change: transform;
  min-height: 44px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 24px -8px rgba(10,132,255,0.6);
}
.btn-primary:hover {
  background: #0070dd;
  box-shadow: 0 6px 32px -6px rgba(10,132,255,0.8);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--accent);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-strong);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
  z-index: 2;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  margin: 0.7rem auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ===== FEATURE SECTIONS ===== */
.feature {
  padding: var(--section-y) var(--section-x);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--header-eyebrow-to-title);
  color: var(--accent);
}

.feature-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto var(--header-title-to-sub);
  max-width: 900px;
}

.feature-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: var(--reading);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin: 0 auto var(--header-to-content);
}

/* ===== 3D BRAIN ===== */
.brain-3d {
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  position: relative;
  margin-top: 1rem;
  cursor: grab;
}
.brain-3d:active { cursor: grabbing; }
.brain-3d canvas { display: block; }

/* ===== CAPABILITIES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-3);
  max-width: var(--container);
  width: 100%;
}

/* Shared surface styling for all card-like elements */
.feature-card,
.project-card,
.exp-row,
.stack-cat,
.projects-empty {
  background: linear-gradient(180deg, #1c1c1e 0%, #0c0c0e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.feature-card:hover,
.project-card:hover,
.exp-row:hover,
.stack-cat:hover {
  border-color: var(--border-strong);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}

.feature-card {
  padding: var(--space-5) var(--space-4);
  text-align: left;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card:hover::before { opacity: 1; }

.feature-card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  transition: transform 0.4s var(--ease-out);
}
.feature-card:hover .feature-card-icon { transform: rotate(8deg) scale(1.05); }
.feature-card:nth-child(1) .feature-card-icon { background: var(--gradient-1); }
.feature-card:nth-child(2) .feature-card-icon { background: var(--gradient-2); }
.feature-card:nth-child(3) .feature-card-icon { background: var(--gradient-3); }
.feature-card:nth-child(4) .feature-card-icon { background: var(--gradient-4); }
.feature-card:nth-child(5) .feature-card-icon { background: var(--gradient-1); }
.feature-card:nth-child(6) .feature-card-icon { background: var(--gradient-2); }

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.feature-card .tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.feature-card .tools span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.28rem 0.7rem;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.04);
}

/* ===== PROJECTS ===== */
.projects {
  padding: var(--section-y) var(--section-x);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

#projectsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--space-3);
  margin: var(--header-to-content) 0;
  text-align: left;
}

.project-card {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); }
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.project-card:hover::before { transform: scaleX(1); }
.project-card:nth-child(2)::before { background: var(--gradient-2); }
.project-card:nth-child(3)::before { background: var(--gradient-3); }
.project-card:nth-child(4)::before { background: var(--gradient-4); }
.project-card:nth-child(5)::before { background: var(--gradient-1); }
.project-card:nth-child(6)::before { background: var(--gradient-2); }

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.project-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-icon-wrap svg { width: 18px; height: 18px; fill: var(--text); }
.project-stats {
  display: flex;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.project-stats span { display: inline-flex; align-items: center; gap: 0.3rem; }
.project-stats svg { width: 13px; height: 13px; fill: var(--text-muted); }

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.project-card .desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.lang-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 0.3rem;
}
.lang-Python { background: #3572A5; }
.lang-JavaScript { background: #f1e05a; }
.lang-TypeScript { background: #3178c6; }
.lang-Jupyter, .lang-JupyterNotebook { background: #DA5B0B; }
.lang-HTML { background: #e34c26; }
.lang-CSS { background: #563d7c; }
.lang-Shell { background: #89e051; }

.project-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease-out);
}
.project-card:hover .project-arrow { transform: translateX(6px); }

.projects-empty {
  padding: var(--space-5);
  color: var(--text-muted);
  text-align: center;
}

.projects-loading {
  padding: 3rem;
  color: var(--text-muted);
  text-align: center;
  grid-column: 1 / -1;
}
.spinner {
  display: inline-block;
  width: 24px; height: 24px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.projects-cta { text-align: center; margin-top: 1rem; }

/* ===== PROJECT MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 0.25s var(--ease-out);
}
.modal-panel {
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #1a1a1c 0%, #0b0b0d 100%);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
  animation: modalIn 0.35s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.12); }
.modal-close:active { transform: scale(0.92); }

.modal-body h2 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 var(--space-5) var(--space-1) 0;
  line-height: 1.2;
}
.modal-body .modal-tagline {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.modal-body .modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-body .modal-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.modal-body h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.4rem 0 0.7rem;
}
.modal-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.modal-body .topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.modal-body .topic-list span {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.28rem 0.75rem;
  background: rgba(10,132,255,0.1);
  color: var(--accent);
  border-radius: 100px;
  border: 1px solid rgba(10,132,255,0.2);
}
.modal-body .modal-actions {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ===== COMMAND PALETTE ===== */
.cmdk {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 22px 22px;
}
.cmdk.open { display: flex; }
.cmdk-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.2s var(--ease-out);
}
.cmdk-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(180deg, #1a1a1c 0%, #0b0b0d 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  animation: modalIn 0.25s var(--ease-out);
}
.cmdk-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.cmdk-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.cmdk-input-wrap input::placeholder { color: var(--text-dim); }
.cmdk-kbd {
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 0.18rem 0.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  color: var(--text-muted);
}
.cmdk-list {
  list-style: none;
  max-height: 50vh;
  overflow-y: auto;
  padding: 0.5rem;
}
.cmdk-list li {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  transition: background 0.12s;
}
.cmdk-list li.active, .cmdk-list li:hover { background: rgba(10,132,255,0.15); }
.cmdk-list li .cmdk-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.cmdk-list li .cmdk-text { flex: 1; }
.cmdk-list li .cmdk-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}
.cmdk-list li .cmdk-hint {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-dim);
}
.cmdk-list .cmdk-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-dim);
  cursor: default;
}
.cmdk-list .cmdk-empty:hover { background: transparent; }
.cmdk-footer {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(0,0,0,0.3);
}

/* ===== SHIPPED / PRODUCTION WORK ===== */
.shipped {
  padding: var(--section-y) var(--section-x);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.shipped-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--space-3);
  margin: var(--header-to-content) 0 var(--space-5);
  text-align: left;
}
.shipped-card {
  background: linear-gradient(180deg, #1c1c1e 0%, #0c0c0e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.shipped-card:not(.offline):hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.shipped-card.offline { opacity: 0.7; cursor: default; }

.shipped-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}
.shipped-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
}
.shipped-icon img { width: 22px; height: 22px; }
.shipped-status {
  font-size: 0.7rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
}
.shipped-status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.shipped-status.live {
  color: #30d158;
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.25);
}
.shipped-status.live .dot {
  background: #30d158;
  box-shadow: 0 0 8px #30d158;
  animation: pulse 2s ease-in-out infinite;
}
.shipped-status.offline {
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.shipped-status.offline .dot { background: var(--text-dim); }

.shipped-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.shipped-url {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
}
.shipped-card.offline .shipped-url { color: var(--text-dim); }
.shipped-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
  margin-top: 0.2rem;
}
.shipped-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
}
.shipped-chips span {
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.04);
}

.shipped-metrics {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.metric { display: flex; flex-direction: column; gap: 0.2rem; }
.metric-num {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

body.light .shipped-card {
  background: white;
  border-color: rgba(0,0,0,0.06);
}
body.light .shipped-card:not(.offline):hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18);
}
body.light .shipped-chips span { background: rgba(0,0,0,0.04); }
body.light .shipped-icon { background: rgba(0,0,0,0.04); }

/* ===== SPECS ===== */
.specs {
  padding: var(--section-y) var(--section-x);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6) var(--space-4);
  margin-top: var(--header-to-content);
  text-align: center;
}
.spec-item .num {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.spec-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.spec-item .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.35;
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: var(--section-y) var(--section-x);
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.exp-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--header-to-content);
}
.exp-row {
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: var(--space-4);
  align-items: start;
}
.exp-row:hover { transform: translateY(-3px); }
.exp-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--mono);
}
.exp-info h4 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.exp-info .org {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.exp-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.exp-badge {
  font-size: 0.7rem;
  padding: 0.35rem 0.8rem;
  background: rgba(10, 132, 255, 0.15);
  color: var(--accent);
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== STACK ===== */
.stack-block {
  padding: var(--section-y) var(--section-x);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.stack-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--space-3);
  margin-top: var(--header-to-content);
  text-align: left;
}
.stack-cat { padding: var(--space-4); }
.stack-cat:hover { transform: translateY(-3px); }
.stack-cat h5 {
  font-size: 0.74rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.stack-cat-items { display: flex; flex-direction: column; gap: 0.65rem; }
.stack-cat-items span { font-size: 1rem; color: var(--text); }

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-y) var(--section-x);
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(94, 92, 230, 0.18), transparent 50%);
}
.contact h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto var(--header-title-to-sub);
  max-width: 900px;
}
.contact p {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: var(--reading);
  margin: 0 auto var(--header-to-content);
  line-height: 1.55;
}
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  padding: 1.8rem 22px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.78rem;
  border-top: 1px solid var(--border);
}
footer a { color: var(--text-muted); text-decoration: none; margin: 0 0.4rem; }
footer a:hover { color: var(--accent); }
.kbd-hint { margin-left: 0.3rem; }
@media (max-width: 600px) { .kbd-hint { display: block; margin: 0.4rem 0 0; } }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== LIGHT MODE ===== */
body.light {
  background: #fbfbfd;
  color: #1d1d1f;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --text-dim: #86868b;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
}
body.light .feature-card,
body.light .exp-row,
body.light .stack-cat,
body.light .project-card,
body.light .projects-empty {
  background: white;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
body.light .feature-card:hover,
body.light .exp-row:hover,
body.light .stack-cat:hover,
body.light .project-card:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18);
}
body.light nav {
  background: rgba(251,251,253,0.72);
  border-bottom-color: rgba(0,0,0,0.08);
}
body.light nav.scrolled { background: rgba(251,251,253,0.92); }
body.light .ctrl { background: rgba(0,0,0,0.06); color: #1d1d1f; }
body.light .ctrl:hover { background: rgba(0,0,0,0.12); }
body.light .feature-card .tools span,
body.light .project-icon-wrap { background: rgba(0,0,0,0.05); }
body.light .exp-badge { background: rgba(10,132,255,0.1); }
body.light .contact {
  background: radial-gradient(ellipse at top, rgba(94, 92, 230, 0.1), transparent 50%);
}
body.light .modal-panel,
body.light .cmdk-panel {
  background: white;
  border-color: rgba(0,0,0,0.08);
}
body.light .modal-close { background: rgba(0,0,0,0.06); }
body.light .cmdk-list li.active,
body.light .cmdk-list li:hover { background: rgba(10,132,255,0.08); }
body.light kbd {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
}
body.light .btn-secondary { background: rgba(0,0,0,0.03); }
body.light .neural-canvas { opacity: 0.35; }
body.light .cursor-dot, body.light .cursor-ring { mix-blend-mode: difference; }

/* ===== ABOUT ===== */
.about {
  padding: var(--section-y) var(--section-x);
  max-width: var(--container);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-6);
  align-items: center;
}
.about-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.about-portrait img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(94,92,230,0.2), rgba(10,132,255,0.15));
  border: 3px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px -20px rgba(94,92,230,0.4), 0 0 0 6px rgba(94,92,230,0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.about-portrait img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 40px 100px -20px rgba(196,113,237,0.5), 0 0 0 6px rgba(196,113,237,0.1);
}
.about-portrait-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--space-2);
  text-align: center;
}
.about-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.about-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
  margin-top: 0.2rem;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.about-quote {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: var(--text);
  border: none;
  position: relative;
  padding-left: var(--space-4);
}
.about-quote::before {
  content: '\201C';
  position: absolute;
  left: -0.3rem;
  top: -0.4em;
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    justify-items: center;
    text-align: center;
  }
  .about-portrait img { max-width: 200px; }
  .about-body { align-items: center; }
  .about-quote { padding-left: var(--space-3); padding-right: var(--space-3); max-width: 600px; }
  .about-quote::before { left: -0.2rem; }
  .about-chips { justify-content: center; }
}
.about-chips span {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  letter-spacing: 0.02em;
  transition: border-color 0.3s, color 0.3s;
}
.about-chips span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== EDUCATION MODULES ===== */
.edu-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.edu-modules span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.25rem 0.7rem;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}
.edu-badge {
  background: rgba(94,92,230,0.15) !important;
  color: #5e5ce6 !important;
}

/* Affiliations / Languages */
.affiliations {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(180deg, rgba(28,28,30,0.4) 0%, rgba(12,12,14,0.4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.affiliations-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 200px;
  padding-top: 0.55rem;
  flex-shrink: 0;
}
.affiliations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}
.affiliation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  transition: border-color 0.3s, background 0.3s, transform 0.15s;
}
.affiliation-badge:hover {
  border-color: var(--accent);
  background: rgba(10,132,255,0.08);
  transform: translateY(-2px);
}
.affiliation-badge.past { opacity: 0.78; }
.affiliation-badge strong { font-weight: 600; }
.affiliation-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #c471ed);
  flex-shrink: 0;
}
.affiliation-dot.scrum { background: linear-gradient(135deg, #30cfd0, #4facfe); }
.affiliation-dot.ieee  { background: linear-gradient(135deg, #00629b, #5e5ce6); }
.affiliation-dot.lions { background: linear-gradient(135deg, #fee140, #fa709a); }
.affiliation-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--mono);
}
.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}
.lang-level {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  background: rgba(10,132,255,0.18);
  color: var(--accent);
  border-radius: var(--radius-sm);
  margin-left: 0.3rem;
}
body.light .affiliations { background: white; }
body.light .affiliation-badge { background: rgba(0,0,0,0.03); }
@media (max-width: 640px) {
  .affiliations { flex-direction: column; }
  .affiliations-label { min-width: 0; padding-top: 0; }
}

/* ===== GHOST BUTTON (CV) ===== */
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 500;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.04);
}
body.light .btn-ghost { color: var(--text-dim); }
body.light .btn-ghost:hover { color: var(--text); }
body.light .about-chips span { background: rgba(0,0,0,0.02); }

/* ===== MOBILE NAV ===== */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 30px; height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: 0.4rem;
}
.nav-menu-btn span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}
.nav-menu-btn.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 52px; left: 0; right: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 22px 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.2rem;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-mobile-drawer a:last-child { border-bottom: none; }
.nav-mobile-drawer a:hover { opacity: 1; }
body.light .nav-mobile-drawer { background: rgba(251,251,253,0.95); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .exp-row { grid-template-columns: 1fr; gap: var(--space-2); padding: var(--space-3); }
  .exp-badge { justify-self: start; }
  .specs-grid { gap: var(--space-5) var(--space-3); }
  .modal-panel { padding: var(--space-4) var(--space-3); }
  .cmdk { padding-top: 80px; }
  .cursor-dot, .cursor-ring { display: none; }
  .about-quote { padding: 0; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .neural-canvas { display: none; }
}
