:root {
  /* Dark mode (default) */
  --bg-1: #0f0f14;
  --bg-2: #0a0b12;
  --bg-3: #151620;
  --text-1: #eef1f6;
  --text-2: #aab0c0;
  --text-3: #7a8090;
  --accent-1: #7c7cff;
  --accent-2: #75e0d6;
  --accent-3: #ff8bd1;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-br: rgba(255, 255, 255, 0.2);
  --glass-hover: rgba(255, 255, 255, 0.12);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 20px 50px rgba(20, 20, 40, 0.4);
  --shadow-glow: 0 0 30px rgba(124, 124, 255, 0.3);
  --radius-1: 18px;
  --radius-2: 24px;
  --radius-3: 36px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-theme="light"] {
  --bg-1: #f8f9fa;
  --bg-2: #ffffff;
  --bg-3: #f0f2f5;
  --text-1: #1a1a2e;
  --text-2: #4a5568;
  --text-3: #718096;
  --accent-1: #6366f1;
  --accent-2: #14b8a6;
  --accent-3: #ec4899;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-br: rgba(0, 0, 0, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.9);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.2);
}

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

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, 'Inter', Arial, sans-serif;
  color: var(--text-1);
  background: radial-gradient(1200px 800px at 70% 10%, rgba(27, 28, 43, 0.8) 0%, var(--bg-2) 60%),
              radial-gradient(900px 600px at 10% 90%, rgba(20, 24, 42, 0.8) 0%, var(--bg-1) 60%),
              linear-gradient(180deg, var(--bg-2), var(--bg-1));
  background-attachment: fixed;
  cursor: none;
  transition: background 0.6s var(--ease-out), color 0.6s var(--ease-out);
}

[data-theme="light"] body {
  background: radial-gradient(1200px 800px at 70% 10%, rgba(248, 250, 252, 0.9) 0%, var(--bg-2) 60%),
              radial-gradient(900px 600px at 10% 90%, rgba(255, 255, 255, 0.9) 0%, var(--bg-1) 60%),
              linear-gradient(180deg, var(--bg-2), var(--bg-1));
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-1);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 20px var(--accent-1);
}

.cursor-dot.hover {
  width: 40px;
  height: 40px;
  background: rgba(124, 124, 255, 0.2);
  border: 2px solid var(--accent-1);
}

.cursor-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  box-shadow: 0 0 10px var(--accent-2);
}

/* Canvas particles */
#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.6;
}

.ambient-light {
  position: fixed;
  inset: -20vh -20vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60vh 60vh at 80% 10%, rgba(124, 124, 255, 0.15), transparent 60%),
    radial-gradient(70vh 50vh at 10% 80%, rgba(117, 224, 214, 0.1), transparent 60%),
    radial-gradient(90vh 60vh at 50% 50%, rgba(255, 139, 209, 0.08), transparent 70%);
  filter: blur(60px) saturate(120%);
  transition: opacity 0.6s var(--ease-out);
}

[data-theme="light"] .ambient-light {
  opacity: 0.3;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  backdrop-filter: blur(20px) saturate(180%);
  background: var(--glass);
  border-bottom: 1px solid var(--glass-br);
  box-shadow: var(--shadow-dark);
}

.brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--text-1);
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  color: var(--text-2);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.35s var(--ease-out);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text-1);
  background: var(--glass-hover);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-dark);
}

.theme-toggle {
  background: var(--glass);
  border: 1px solid var(--glass-br);
  border-radius: 12px;
  padding: 8px;
  cursor: none;
  color: var(--text-2);
  transition: all 0.3s var(--ease-out);
  margin-right: 12px;
}

.theme-toggle:hover {
  background: var(--glass-hover);
  color: var(--accent-1);
  transform: rotate(180deg);
}

.menu {
  display: none;
  background: none;
  border: none;
  cursor: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

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

/* Parallax layers */
.parallax {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.3;
  transition: opacity 0.6s var(--ease-out);
}

[data-theme="light"] .layer {
  mix-blend-mode: multiply;
  opacity: 0.15;
}

.layer-1 {
  background-image: 
    radial-gradient(120px 120px at 10% 30%, rgba(111, 217, 207, 0.3), transparent 60%),
    radial-gradient(160px 160px at 80% 70%, rgba(124, 124, 255, 0.3), transparent 70%);
}

.layer-2 {
  background-image: 
    radial-gradient(100px 100px at 20% 80%, rgba(255, 139, 209, 0.25), transparent 60%),
    radial-gradient(140px 140px at 70% 20%, rgba(111, 217, 207, 0.2), transparent 70%);
}

.layer-3 {
  background-image: 
    radial-gradient(160px 160px at 50% 50%, rgba(124, 124, 255, 0.2), transparent 70%);
}

/* Main sections */
main {
  width: 100%;
}

.section {
  padding: 140px 20px;
  position: relative;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  color: var(--text-2);
  font-size: 18px;
  margin-top: 8px;
}

/* Hero */
.hero {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding-top: 80px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.greeting h1 {
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.greeting .name {
  color: var(--accent-1);
  text-shadow: 0 6px 24px rgba(124, 124, 255, 0.4);
  display: inline-block;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 6px 24px rgba(124, 124, 255, 0.4); }
  50% { text-shadow: 0 6px 32px rgba(124, 124, 255, 0.6); }
}

.subtitle {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 20px;
  font-weight: 300;
}

.hero-visuals {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 20px 0;
}

.floating-guitar {
  color: var(--accent-1);
  animation: float-guitar 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(124, 124, 255, 0.3));
}

@keyframes float-guitar {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.code-particles {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.code-particles .particle {
  color: var(--accent-2);
  font-size: 18px;
  font-weight: 600;
  opacity: 0.7;
  animation: float-particle 3s ease-in-out infinite;
}

.code-particles .particle:nth-child(1) { animation-delay: 0s; }
.code-particles .particle:nth-child(2) { animation-delay: 0.5s; }
.code-particles .particle:nth-child(3) { animation-delay: 1s; }
.code-particles .particle:nth-child(4) { animation-delay: 1.5s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-10px); opacity: 1; }
}

.soundbar {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  align-items: flex-end;
}

.soundbar .bar {
  width: 6px;
  height: 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
  opacity: 0.9;
  animation: bar 1.4s infinite ease-in-out;
  box-shadow: 0 6px 18px rgba(124, 124, 255, 0.3);
}

.soundbar .bar:nth-child(2) { animation-delay: 0.12s; }
.soundbar .bar:nth-child(3) { animation-delay: 0.24s; }
.soundbar .bar:nth-child(4) { animation-delay: 0.36s; }
.soundbar .bar:nth-child(5) { animation-delay: 0.48s; }
.soundbar .bar:nth-child(6) { animation-delay: 0.6s; }
.soundbar .bar:nth-child(7) { animation-delay: 0.72s; }
.soundbar .bar:nth-child(8) { animation-delay: 0.84s; }

@keyframes bar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1.2); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 12px;
}

.scroll-indicator .mouse {
  width: 18px;
  height: 28px;
  border-radius: 10px;
  border: 2px solid var(--text-3);
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--text-3);
  animation: wheel 1.6s infinite;
}

@keyframes wheel {
  0% { opacity: 0.2; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 6px); }
  100% { opacity: 0.2; transform: translate(-50%, 0); }
}

/* About */
.about .card {
  padding: 40px;
  border-radius: var(--radius-3);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-soft);
  margin-bottom: 48px;
}

.about .lead {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-1);
}

.about p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 16px;
}

.about .poem {
  color: var(--text-2);
  font-style: italic;
  line-height: 1.8;
  padding: 24px;
  border-left: 3px solid var(--accent-1);
  background: var(--glass);
  border-radius: 12px;
  margin-top: 24px;
}

.digital-symphony {
  margin: 48px 0;
}

.digital-symphony h3 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--text-1);
}

.digital-symphony > p {
  color: var(--text-2);
  margin-bottom: 32px;
}

.symphony-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.symphony-item {
  padding: 28px;
  border-radius: var(--radius-2);
  background: var(--glass);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-soft);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.symphony-item:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-glow);
}

.symphony-item .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.symphony-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-1);
}

.symphony-item p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

.timeline-section {
  margin-top: 64px;
  position: relative;
}

.timeline-section h3 {
  font-size: 32px;
  margin-bottom: 48px;
  color: var(--text-1);
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 80px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
  border-radius: 2px;
}

.timeline-moments {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline-moment {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-moment .dot {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-1), var(--accent-1));
  box-shadow: 0 0 20px var(--accent-1);
  border: 3px solid var(--bg-2);
}

.moment-content {
  padding: 20px;
  border-radius: var(--radius-1);
  background: var(--glass);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-soft);
  transition: all 0.3s var(--ease-out);
}

.moment-content:hover {
  transform: translateX(8px);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-glow);
}

.moment-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-1);
}

.moment-content p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

/* Universe / Projects */
.universe {
  background: var(--bg-3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.project-card {
  padding: 32px;
  border-radius: var(--radius-2);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-soft);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}

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

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-glow);
}

.project-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-1);
}

.project-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.tags span {
  padding: 6px 12px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-br);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
}

/* Guitar Corner */
.guitar-corner {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
}

.guitar-content {
  padding: 48px;
  border-radius: var(--radius-3);
  text-align: center;
}

.guitar-content h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-1);
}

.guitar-content .quote {
  font-size: 24px;
  font-style: italic;
  color: var(--accent-2);
  margin-bottom: 32px;
  font-weight: 300;
}

.waveform-container {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 80px;
}

.wave-bar {
  width: 8px;
  background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(124, 124, 255, 0.3);
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 80px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 70px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 50px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 30px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 50px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 70px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 80px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 60px; animation-delay: 1s; }
.wave-bar:nth-child(12) { height: 40px; animation-delay: 1.1s; }

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

.guitar-text {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Socials */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-2);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-soft);
  text-decoration: none;
  color: var(--text-1);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}

.social-card:hover::before {
  opacity: 0.15;
}

.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-glow);
}

.social-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(124, 124, 255, 0.3);
  transition: all 0.4s var(--ease-out);
}

.social-card:hover .social-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(124, 124, 255, 0.5);
}

.social-icon {
  color: white;
  width: 32px;
  height: 32px;
}

.social-card span:last-child {
  font-size: 18px;
  font-weight: 600;
}

/* Contact */
.form-wrap {
  padding: 48px;
  border-radius: var(--radius-3);
  max-width: 600px;
  margin: 0 auto;
}

.form-wrap h2 {
  font-size: 36px;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text-1);
}

.form-subtitle {
  text-align: center;
  color: var(--text-2);
  margin-bottom: 32px;
  font-size: 16px;
}

.field {
  position: relative;
  margin: 24px 0;
}

.field input,
.field textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-br);
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--text-1);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(124, 124, 255, 0.1), var(--shadow-glow);
  background: var(--glass-hover);
}

.field label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  background: var(--bg-2);
  padding: 0 8px;
  border-radius: 8px;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  font-size: 16px;
}

.field textarea + label {
  top: 22px;
  transform: none;
}

.field input:not(:placeholder-shown) + label,
.field input:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field textarea:focus + label {
  top: -10px;
  font-size: 12px;
  color: var(--accent-1);
  background: var(--bg-2);
}

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

.btn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
  font-weight: 600;
  font-size: 16px;
  cursor: none;
  box-shadow: 0 12px 30px rgba(124, 124, 255, 0.4);
  transition: all 0.3s var(--ease-out);
  margin-top: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(124, 124, 255, 0.5);
}

.form-status {
  min-height: 24px;
  color: var(--accent-2);
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-2);
  border-top: 1px solid var(--glass-br);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glass effect utility */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 0 0 1px var(--glass-br), var(--shadow-soft);
}

/* Responsive */
@media (max-width: 1024px) {
  .projects-grid,
  .symphony-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-line {
    left: 14px;
  }
  
  .timeline-moment {
    padding-left: 50px;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--glass-br);
  }
  
  .nav.active {
    display: flex;
  }
  
  .menu {
    display: flex;
  }
  
  .section {
    padding: 100px 16px;
  }
  
  .projects-grid,
  .symphony-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-visuals {
    flex-direction: column;
    gap: 24px;
  }
  
  .about .card,
  .guitar-content,
  .form-wrap {
    padding: 32px 24px;
  }
  
  .greeting h1 {
    font-size: 32px;
  }
}

/* Disable custom cursor on mobile */
@media (hover: none) and (pointer: coarse) {
  body {
    cursor: auto;
  }
  
  .cursor-dot,
  .cursor-trail {
    display: none;
  }
  
  .theme-toggle,
  .menu,
  .btn,
  .nav a,
  .social-card {
    cursor: pointer;
  }
}
