/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
  --bg:        #0a0a14;
  --bg-alt:    #0d0d1c;
  --bg-card:   rgba(255, 255, 255, 0.04);
  --border:    rgba(255, 255, 255, 0.08);
  --text:      #e2e8f0;
  --muted:     #8892a4;
  --primary:   #7c3aed;
  --primary-l: #a78bfa;
  --accent:    #06b6d4;
  --accent-l:  #67e8f9;
  --green:     #10b981;
  --mono:      'JetBrains Mono', monospace;
  --sans:      'Inter', sans-serif;
  --r:         12px;
  --ease:      0.3s ease;
  --shadow:    0 4px 32px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(6, 182, 212, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cursor-ring.is-hovering {
  width: 60px; height: 60px;
  border-color: var(--primary-l);
  background: rgba(124, 58, 237, 0.08);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--ease), padding var(--ease), border-color var(--ease);
}
.navbar.is-scrolled {
  background: rgba(10, 10, 20, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
  cursor: none;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nav-link--cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  margin-left: 8px;
  border-radius: 50px;
  padding: 8px 20px;
}
.nav-link--cta:hover {
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Background layers --- */
.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-aurora--1 {
  width: 65vw; height: 65vh;
  top: -15%; left: -8%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.22) 0%, transparent 70%);
  animation: aurora1 11s ease-in-out infinite alternate;
}
.hero-aurora--2 {
  width: 55vw; height: 55vh;
  bottom: -10%; right: -8%;
  background: radial-gradient(ellipse, rgba(6,182,212,0.18) 0%, transparent 70%);
  animation: aurora2 14s ease-in-out infinite alternate;
}
.hero-aurora--3 {
  width: 35vw; height: 35vh;
  top: 35%; left: 38%;
  background: radial-gradient(ellipse, rgba(167,139,250,0.12) 0%, transparent 70%);
  animation: aurora3 17s ease-in-out infinite alternate;
}
@keyframes aurora1 { from { transform: translate(0,0) scale(1); }   to { transform: translate(6%,10%) scale(1.2); } }
@keyframes aurora2 { from { transform: translate(0,0) scale(1); }   to { transform: translate(-8%,-6%) scale(1.15); } }
@keyframes aurora3 { from { transform: translate(0,0) scale(1); }   to { transform: translate(12%,-12%) scale(1.3); } }

/* --- Floating tech badges --- */
.hero-float {
  position: absolute;
  z-index: 1;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  padding: 7px 15px;
  backdrop-filter: blur(12px);
  pointer-events: none;
  animation: floatBadge 5s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* --- Main content --- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

/* Status badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 30px;
  letter-spacing: 0.2px;
}
.hero-badge__pulse {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hero-badge__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0%    { transform: scale(1);   opacity: 0.5; }
  100%  { transform: scale(2.8); opacity: 0; }
}

/* Name */
.hero-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
  letter-spacing: -4px;
  margin-bottom: 22px;
}
.hero-name__first {
  font-size: clamp(62px, 10.5vw, 112px);
  font-weight: 900;
  color: #fff;
  display: inline-block;
  position: relative;
}
/* Glitch layers */
.hero-name__first::before,
.hero-name__first::after {
  content: 'Abdullah';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  font-weight: 900;
}
.hero-name__first::before {
  color: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
  animation: glitchA 7s steps(1) infinite;
}
.hero-name__first::after {
  color: var(--primary-l);
  clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
  animation: glitchB 7s steps(1) infinite;
}
@keyframes glitchA {
  0%,88%,100% { transform: translate(0); opacity: 0; }
  89%  { transform: translate(-5px,-2px); opacity: 1; }
  90%  { transform: translate(5px, 2px);  opacity: 1; }
  91%  { transform: translate(-2px,1px);  opacity: 1; }
  92%  { transform: translate(0);          opacity: 0; }
}
@keyframes glitchB {
  0%,90%,100% { transform: translate(0); opacity: 0; }
  91%  { transform: translate(5px,-2px);  opacity: 1; }
  92%  { transform: translate(-5px,2px);  opacity: 1; }
  93%  { transform: translate(2px,-1px);  opacity: 1; }
  94%  { transform: translate(0);          opacity: 0; }
}
.hero-name__last {
  font-size: clamp(62px, 10.5vw, 112px);
  font-weight: 900;
  display: inline-block;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary-l) 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-dot { color: var(--accent); -webkit-text-fill-color: var(--accent); }

/* Typed role */
.hero-role {
  font-family: var(--mono);
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--accent);
  margin-bottom: 40px;
  min-height: 26px;
}
.typed-cursor { color: var(--accent); }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 44px;
}
.hero-stat { text-align: center; }
.hero-stat__num {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-stat__plus {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  vertical-align: top;
  line-height: 1;
}
.hero-stat__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.hero-stat__sep {
  width: 1px;
  height: 44px;
  background: var(--border);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Magnetic buttons (JS handles movement, CSS handles reset) */
.magnetic-btn { transition: transform 0.25s ease, box-shadow var(--ease), border-color var(--ease), background var(--ease); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.55);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--wide { width: 100%; justify-content: center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  70%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   SECTIONS
   ======================================== */
.section     { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.container   { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* ========================================
   SKILLS
   ======================================== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.skill-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12);
}
.skill-card__icon {
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.skill-card__icon--ai    { background: rgba(124, 58, 237, 0.14); }
.skill-card__icon--fe    { background: rgba(6, 182, 212, 0.14); }
.skill-card__icon--be    { background: rgba(16, 185, 129, 0.14); }
.skill-card__icon--cloud { background: rgba(251, 191, 36, 0.14); }
.skill-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.chip:hover { transform: scale(1.07); }
.chip--ai    { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.3); color: var(--primary-l); }
.chip--fe    { background: rgba(6,182,212,0.1);   border-color: rgba(6,182,212,0.3);   color: var(--accent-l); }
.chip--be    { background: rgba(16,185,129,0.1);  border-color: rgba(16,185,129,0.3);  color: #6ee7b7; }
.chip--cloud { background: rgba(251,191,36,0.1);  border-color: rgba(251,191,36,0.3);  color: #fde68a; }

/* ========================================
   PROJECTS
   ======================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.pcard:hover {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.2), var(--shadow);
}
.pcard__img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pcard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.pcard:hover .pcard__img img { transform: scale(1.07); }
.pcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.94) 0%, rgba(10,10,20,0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--ease);
}
.pcard:hover .pcard__overlay { opacity: 1; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pcard__tags span {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(124, 58, 237, 0.8);
  color: #fff;
  backdrop-filter: blur(6px);
  letter-spacing: 0.2px;
}
.pcard__body { padding: 20px 22px 22px; }
.pcard__year {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.pcard__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.pcard__body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.pcard__loom {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 50px;
  padding: 5px 14px 5px 10px;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  cursor: none;
}
.pcard__loom:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--accent);
  color: var(--accent-l);
  transform: translateY(-1px);
}
.loom-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ========================================
   EXPERIENCE
   ======================================== */
.exp-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.exp-col-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.mt-exp { margin-top: 48px; }
.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 3px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent) 60%, transparent);
  border-radius: 2px;
}
.tl-item { position: relative; margin-bottom: 20px; }
.tl-dot {
  position: absolute;
  left: -30px; top: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--muted);
  border: 2px solid var(--bg);
}
.tl-dot--live {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: border-color var(--ease);
}
.tl-card:hover { border-color: rgba(6, 182, 212, 0.3); }
.tl-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.tl-period {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}
.tl-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tl-badge--now {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.tl-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.tl-company {
  display: block;
  font-size: 13px;
  color: var(--primary-l);
  font-weight: 600;
  margin-bottom: 8px;
}
.tl-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* AI Projects */
.ai-list { display: flex; flex-direction: column; gap: 12px; }
.ai-item {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  transition: border-color var(--ease);
}
.ai-item:hover { border-color: rgba(124, 58, 237, 0.35); }
.ai-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.ai-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.ai-item p { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ========================================
   CONTACT
   ======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-tagline {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  transition: color var(--ease);
  cursor: none;
}
.contact-link:hover { color: var(--accent); }
.contact-link .uil { font-size: 20px; color: var(--accent); }
.social-row { display: flex; gap: 12px; }
.soc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--muted);
  transition: all var(--ease);
  cursor: none;
}
.soc-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-2px);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.finput {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  resize: vertical;
  cursor: none;
}
.finput::placeholder { color: var(--muted); }
.finput:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}
.ftextarea { min-height: 140px; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.site-footer p { font-size: 14px; color: var(--muted); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .skills-grid   { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-layout    { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links .nav-link { font-size: 20px; padding: 12px 24px; }
  .nav-links .nav-link--cta { margin-left: 0; }
  .nav-toggle { display: flex; }
  .hero-name { letter-spacing: -2px; }
}
@media (max-width: 580px) {
  .skills-grid   { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  /* Restore cursor on touch devices */
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .btn, .nav-link, .contact-link, .soc-btn,
  .finput, .nav-toggle { cursor: pointer; }
}
