/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --bg:        #0a0a0f;
  --bg2:       #0f0f1a;
  --surface:   #13131f;
  --surface2:  #1a1a2e;
  --border:    rgba(255,255,255,0.07);
  --accent:    #7c3aed;
  --accent2:   #a855f7;
  --accent3:   #06b6d4;
  --text:      #e2e8f0;
  --text2:     #94a3b8;
  --text3:     #64748b;
  --white:     #ffffff;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Space Grotesk', sans-serif;
  --font-head: 'Syne', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }

.accent { color: var(--accent2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent2);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(168,85,247,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; background: var(--accent3); }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 52px; height: 52px; border-color: var(--accent3); }

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { position: relative; width: 100px; height: 100px; }

.loader-svg { width: 100%; height: 100%; animation: spin 1.4s linear infinite; }

.loader-circle {
  fill: none;
  stroke: var(--accent2);
  stroke-width: 3;
  stroke-dasharray: 200;
  stroke-dashoffset: 150;
  stroke-linecap: round;
}

.loader-letter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 800;
  color: var(--white);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

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

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

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo .dot { color: var(--accent2); }

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--accent2);
  border-radius: 2px;
  transition: left 0.3s, right 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { left: 1rem; right: 1rem; }

.nav-pill {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
}
.nav-pill::after { display: none; }
.nav-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(124,58,237,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 7rem 2rem 4rem;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(124,58,237,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(6,182,212,0.07) 0%, transparent 60%),
              var(--bg);
}

#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.glow-1 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.15);
  top: -100px; right: 10%;
  animation: floatGlow 8s ease-in-out infinite;
}
.glow-2 {
  width: 350px; height: 350px;
  background: rgba(6,182,212,0.1);
  bottom: 0; left: 5%;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero > * { position: relative; z-index: 1; }

.hero-content {
  flex: 1; max-width: 620px;
  animation: heroFadeIn 1s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--accent2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-greeting {
  font-size: 1.1rem; color: var(--text2);
  margin-bottom: 0.5rem;
}

.hero-name {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}

.name-line { display: block; }
.name-line .dot { 
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-typed {
  font-size: 1.25rem; color: var(--text2);
  margin-bottom: 1.5rem; min-height: 2rem;
}

.typed-cursor {
  color: var(--accent2);
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc {
  font-size: 1rem; color: var(--text2);
  margin-bottom: 2rem; max-width: 500px;
  line-height: 1.8;
}
.hero-desc a { color: var(--accent2); border-bottom: 1px solid rgba(168,85,247,0.4); transition: var(--transition); }
.hero-desc a:hover { border-color: var(--accent2); }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-socials { display: flex; gap: 0.75rem; }

.social-link {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

/* ── Hero Visual / Orb ── */
.hero-visual {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4rem;
  animation: heroFadeIn 1s 0.3s ease both;
}

.orb-wrapper {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}

.orb-core {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--white);
  box-shadow: 0 0 60px rgba(124,58,237,0.5), 0 0 120px rgba(124,58,237,0.2);
  animation: orbPulse 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes orbPulse {
  0%,100% { box-shadow: 0 0 60px rgba(124,58,237,0.5), 0 0 120px rgba(124,58,237,0.2); }
  50%      { box-shadow: 0 0 80px rgba(168,85,247,0.7), 0 0 160px rgba(168,85,247,0.3); }
}

.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.2);
  animation: orbSpin linear infinite;
}
.ring-1 { width: 180px; height: 180px; animation-duration: 8s; border-color: rgba(168,85,247,0.3); }
.ring-2 { width: 260px; height: 260px; animation-duration: 14s; animation-direction: reverse; }
.ring-3 { width: 340px; height: 340px; animation-duration: 20s; border-color: rgba(6,182,212,0.15); }

@keyframes orbSpin { to { transform: rotate(360deg); } }

.orb-dot {
  position: absolute;
  width: 40px; height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  animation: orbSpin linear infinite;
}
.dot-1 { color: #e34c26; top: 10px; left: 50%; margin-left: -20px; animation-duration: 8s; }
.dot-2 { color: #264de4; right: 10px; top: 50%; margin-top: -20px; animation-duration: 8s; animation-direction: reverse; }
.dot-3 { color: #f7df1e; bottom: 10px; left: 50%; margin-left: -20px; animation-duration: 8s; }
.dot-4 { color: #3776ab; left: 10px; top: 50%; margin-top: -20px; animation-duration: 8s; animation-direction: reverse; }

/* ── Scroll Down ── */
.scroll-down {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text3); font-size: 0.75rem; letter-spacing: 1px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--text3);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--accent2);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   SECTIONS SHARED
═══════════════════════════════════════════ */
.section { padding: 7rem 0; }

.section-head { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--accent2);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: center;
}

.about-left { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.about-img-wrap { position: relative; }

.about-img-box {
  width: 260px; height: 260px;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; color: var(--accent2);
  position: relative; z-index: 1;
  box-shadow: var(--shadow-lg);
}

.about-img-deco {
  position: absolute; border-radius: var(--radius);
  border: 1px solid rgba(124,58,237,0.3);
}
.deco-1 {
  width: 100%; height: 100%;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), transparent);
  z-index: 0;
}
.deco-2 {
  width: 60px; height: 60px;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.deco-2::after { content: '⚡'; }

.about-status {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem; color: var(--text2);
}

.status-dot {
  width: 8px; height: 8px;
  background: #22c55e; border-radius: 50%;
  animation: pulse 2s infinite;
}

.about-right h3 {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
}

.about-right p {
  color: var(--text2); margin-bottom: 1rem; line-height: 1.8;
}
.about-right p a { color: var(--accent2); border-bottom: 1px solid rgba(168,85,247,0.3); }
.about-right p a:hover { border-color: var(--accent2); }

.about-stats {
  display: flex; gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-box { text-align: center; }

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus { font-size: 1.4rem; font-weight: 700; color: var(--accent2); }

.stat-box p { font-size: 0.8rem; color: var(--text3); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 1px; }

.about-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ═══════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════ */
.projects { background: var(--bg); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.project-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  top: -50px; right: -50px;
  pointer-events: none;
  transition: var(--transition);
}
.project-card:hover .project-glow { transform: scale(1.5); }

.project-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.5rem;
}

.project-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(168,85,247,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent2);
}

.project-ext {
  width: 36px; height: 36px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.85rem;
  transition: var(--transition);
}
.project-ext:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(-45deg);
}

.project-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem;
}

.project-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }

.project-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, rgba(61,220,132,0.15), rgba(61,220,132,0.05));
  border: 1px solid rgba(61,220,132,0.3);
  color: #3ddc84;
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.project-icon.android-icon { background: linear-gradient(135deg, rgba(61,220,132,0.2), rgba(61,220,132,0.05)); border-color: rgba(61,220,132,0.3); color: #3ddc84; }

.project-features {
  list-style: none;
  margin-bottom: 1.2rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.project-features li {
  font-size: 0.82rem; color: var(--text2);
  display: flex; align-items: center; gap: 0.5rem;
}
.project-features li i { color: var(--accent2); font-size: 0.75rem; flex-shrink: 0; }

.project-tags span {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  color: var(--accent2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 500;
}

/* ═══════════════════════════════════════════
   SKILLS
═══════════════════════════════════════════ */
.skills { background: var(--bg2); }

.skills-categories { display: flex; flex-direction: column; gap: 3.5rem; }

.skill-cat-title {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  color: var(--text2);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
  text-transform: uppercase; letter-spacing: 2px;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.skill-cat-title i { color: var(--accent2); font-size: 0.9rem; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1rem;
}

.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 0.8rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  transition: var(--transition);
  cursor: default;
  position: relative; overflow: hidden;
}
.skill-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent);
  opacity: 0; transition: var(--transition);
}
.skill-card:hover { border-color: rgba(124,58,237,0.5); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.skill-card:hover::before { opacity: 1; }

.skill-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}
.skill-card:hover .skill-icon { transform: scale(1.2) rotate(-8deg); }

.skill-card span { font-size: 0.78rem; font-weight: 600; color: var(--text2); text-align: center; }

/* Brand colors — single definition */
.skill-icon.html    { background: rgba(227,76,38,0.12);   color: #e34c26; }
.skill-icon.css     { background: rgba(38,77,228,0.12);   color: #264de4; }
.skill-icon.js      { background: rgba(247,223,30,0.12);  color: #e8c900; }
.skill-icon.ts      { background: rgba(49,120,198,0.12);  color: #3178c6; }
.skill-icon.php     { background: rgba(119,123,180,0.12); color: #777bb4; }
.skill-icon.py      { background: rgba(55,118,171,0.12);  color: #3776ab; }
.skill-icon.java    { background: rgba(237,117,0,0.12);   color: #ed7500; }
.skill-icon.kotlin  { background: rgba(127,82,255,0.12);  color: #7f52ff; }
.skill-icon.c       { background: rgba(0,89,156,0.12);    color: #00599c; }
.skill-icon.lua     { background: rgba(110,110,181,0.12); color: #6e6eb5; }
.skill-icon.dart    { background: rgba(0,180,216,0.12);   color: #00b4d8; }
.skill-icon.bash    { background: rgba(80,200,120,0.12);  color: #50c878; }
.skill-icon.react   { background: rgba(97,218,251,0.12);  color: #61dafb; }
.skill-icon.vue     { background: rgba(65,184,131,0.12);  color: #41b883; }
.skill-icon.angular { background: rgba(221,0,49,0.12);    color: #dd0031; }
.skill-icon.node    { background: rgba(83,158,67,0.12);   color: #539e43; }
.skill-icon.laravel { background: rgba(255,45,32,0.12);   color: #ff2d20; }
.skill-icon.bootstrap{background: rgba(121,82,179,0.12);  color: #7952b3; }
.skill-icon.sass    { background: rgba(204,102,153,0.12); color: #cc6699; }
.skill-icon.flutter { background: rgba(84,182,246,0.12);  color: #54b6f6; }
.skill-icon.android { background: rgba(61,220,132,0.12);  color: #3ddc84; }
.skill-icon.electron{ background: rgba(47,213,255,0.12);  color: #2fd5ff; }
.skill-icon.db      { background: rgba(0,117,143,0.12);   color: #00758f; }
.skill-icon.mongo   { background: rgba(71,162,72,0.12);   color: #47a248; }
.skill-icon.pg { background: rgba(51,103,145,0.12); color: #336791; position: relative; }
.pg-badge {
  position: absolute; bottom: -4px; right: -4px;
  background: #336791; color: #fff;
  font-size: 0.45rem; font-weight: 800;
  padding: 1px 3px; border-radius: 3px;
  letter-spacing: 0.5px; line-height: 1.4;
}
.skill-icon.redis   { background: rgba(220,50,47,0.12);   color: #dc322f; }
.skill-icon.aws     { background: rgba(255,153,0,0.12);   color: #ff9900; }
.skill-icon.firebase{ background: rgba(255,202,40,0.12);  color: #ffca28; }
.skill-icon.docker  { background: rgba(13,183,237,0.12);  color: #0db7ed; }
.skill-icon.git     { background: rgba(240,80,50,0.12);   color: #f05032; }
.skill-icon.linux   { background: rgba(255,204,0,0.12);   color: #ffcc00; }
.skill-icon.figma   { background: rgba(162,89,255,0.12);  color: #a259ff; }
.skill-icon.ps      { background: rgba(49,168,255,0.12);  color: #31a8ff; }
.skill-icon.unity   { background: rgba(200,200,200,0.08); color: #cccccc; }
.skill-icon.blender { background: rgba(234,118,0,0.12);   color: #ea7600; }
.skill-icon.arduino { background: rgba(0,151,167,0.12);   color: #0097a7; }
.skill-icon.nginx   { background: rgba(0,163,81,0.12);    color: #009900; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--bg); }

.contact-cta-banner {
  max-width: 780px; margin: 0 auto 3rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.contact-cta-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.25), transparent 65%);
  top: -150px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.contact-cta-inner {
  position: relative; z-index: 1;
}
.contact-cta-emoji { font-size: 3rem; display: block; margin-bottom: 1rem; }
.contact-cta-inner h3 {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.5px;
}
.contact-cta-inner p { font-size: 1rem; color: var(--text2); }

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
}

.contact-card {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), transparent 60%);
  opacity: 0; transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.contact-card:hover::before { opacity: 1; }

.cc-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.contact-card:hover .cc-icon { transform: scale(1.12) rotate(-6deg); }

.cc-icon.phone  { background: rgba(34,197,94,0.15);  color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.cc-icon.email  { background: rgba(168,85,247,0.15); color: var(--accent2); border: 1px solid rgba(168,85,247,0.2); }
.cc-icon.github { background: rgba(255,255,255,0.07);color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.cc-icon.fb     { background: rgba(24,119,242,0.15); color: #1877f2; border: 1px solid rgba(24,119,242,0.2); }

.cc-text { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; position: relative; z-index: 1; }
.cc-text span   { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.cc-text strong { font-size: 0.95rem; color: var(--text); font-weight: 600; }

.cc-arrow {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.75rem;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.contact-card:hover .cc-arrow {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: var(--white);
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 800;
  color: var(--white);
}
.footer-logo .dot { color: var(--accent2); }

.footer-copy { font-size: 0.85rem; color: var(--text3); }

.footer-socials { display: flex; gap: 0.6rem; }

.footer-socials a {
  width: 36px; height: 36px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   COPY TOAST
═══════════════════════════════════════════ */
.copy-toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--surface2);
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--text);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 9000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  display: flex; align-items: center; gap: 0.5rem;
}
.copy-toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-socials { justify-content: center; }
  .hero-visual { padding-left: 0; margin-top: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-left { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-cta-banner { padding: 1.8rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 75%; max-width: 320px; height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; padding: 0.75rem 1rem; width: 100%; }
  .hamburger { display: flex; }
  .orb-wrapper { width: 240px; height: 240px; }
  .orb-core { width: 80px; height: 80px; font-size: 1.8rem; }
  .ring-1 { width: 130px; height: 130px; }
  .ring-2 { width: 185px; height: 185px; }
  .ring-3 { width: 240px; height: 240px; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section { padding: 5rem 0; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.8rem; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .projects-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}
