/* ============================================
   SIDDHI WANI PORTFOLIO — STYLES
   Palette: Electric Yellow + Hot Pink + Deep Navy
   Fonts: Plus Jakarta Sans
============================================ */

/* --- VARIABLES --- */
:root {
  --yellow: #FFED47;
  --yellow-light: #FFF8A0;
  --yellow-dark: #E6D400;
  --pink: #FF3CAC;
  --pink-light: #FF85D0;
  --pink-dark: #CC0080;
  --navy: #0D0D2B;
  --navy-mid: #1A1A45;
  --navy-light: #2A2A60;
  --white: #FFFFFF;
  --off-white: #F8F7FF;
  --gray: #8888AA;
  --font: 'Plus Jakarta Sans', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- CUSTOM CURSOR --- */
.cursor {
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid rgba(255, 237, 71, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:hover .cursor { opacity: 1; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* --- CONTAINER --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 237, 71, 0.1);
  border: 1px solid rgba(255, 237, 71, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.section-title.centered { text-align: center; }
.highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease 0.3s;
}
.highlight.visible::after { transform: scaleX(1); }

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(13, 13, 43, 0.85);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  border-bottom: 1px solid rgba(255, 237, 71, 0.1);
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo .dot { color: var(--yellow); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-weight: 700 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(255, 237, 71, 0.4) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--yellow); }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 4rem;
  gap: 4rem;
}

/* BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--yellow);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: #7B68EE;
  top: 50%; left: 40%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  flex: 1;
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-name {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-name .line-1 { display: block; color: var(--white); }
.hero-name .line-2 {
  display: block;
  color: var(--yellow);
  position: relative;
}
.accent-star {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--pink);
  animation: spin 4s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-roles {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.role-tag {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(255, 237, 71, 0.12);
  border: 1px solid rgba(255, 237, 71, 0.3);
  color: var(--yellow);
}
.role-tag.pink {
  background: rgba(255, 60, 172, 0.12);
  border-color: rgba(255, 60, 172, 0.3);
  color: var(--pink-light);
}
.role-divider { color: var(--gray); font-weight: 300; }

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-desc em { color: var(--yellow); font-style: normal; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: none;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 237, 71, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

/* HERO VISUAL */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.avatar-ring {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-inner {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 0 60px rgba(255, 237, 71, 0.3), 0 0 120px rgba(255, 60, 172, 0.2);
  animation: avatarPulse 3s ease-in-out infinite;
}
@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(255, 237, 71, 0.3), 0 0 120px rgba(255, 60, 172, 0.2); }
  50% { box-shadow: 0 0 80px rgba(255, 237, 71, 0.5), 0 0 160px rgba(255, 60, 172, 0.3); }
}

/* Orbiting tags */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.1);
  animation: orbitSpin linear infinite;
}
.orbit-1 { width: 220px; height: 220px; animation-duration: 8s; }
.orbit-2 { width: 280px; height: 280px; animation-duration: 12s; animation-direction: reverse; }
.orbit-3 { width: 320px; height: 320px; animation-duration: 16s; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.orbit-dot {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
}
.orbit-dot span {
  display: block;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 237, 71, 0.4);
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
  animation: counterSpin linear infinite;
}
.orbit-1 .orbit-dot span { animation-duration: 8s; }
.orbit-2 .orbit-dot span { animation-duration: 12s; animation-direction: reverse; }
.orbit-3 .orbit-dot span { animation-duration: 16s; }
@keyframes counterSpin { to { transform: rotate(-360deg); } }

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   MARQUEE
============================================ */
.marquee-section {
  background: var(--yellow);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 2px solid var(--yellow-dark);
  border-bottom: 2px solid var(--yellow-dark);
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-content span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.marquee-content .mx { color: var(--pink); font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   ABOUT
============================================ */
.about { background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.about-text strong { color: var(--yellow); font-weight: 700; }
.about-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.interest-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: background var(--transition), border-color var(--transition);
}
.interest-tag:hover {
  background: rgba(255, 237, 71, 0.1);
  border-color: rgba(255, 237, 71, 0.3);
}

.about-cards { display: flex; flex-direction: column; gap: 1rem; }
.edu-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.edu-card:hover {
  background: rgba(255, 237, 71, 0.06);
  border-color: rgba(255, 237, 71, 0.2);
  transform: translateX(6px);
}
.edu-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255, 237, 71, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.edu-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.edu-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.edu-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(255, 237, 71, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ============================================
   SKILLS
============================================ */
.skills {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.skills::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 237, 71, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.skill-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.skill-card.pink-card::before { background: linear-gradient(90deg, var(--pink), var(--pink-dark)); }
.skill-card.yellow-card::before { background: linear-gradient(90deg, var(--yellow), var(--pink)); }
.skill-card:hover { transform: translateY(-6px); border-color: rgba(255, 237, 71, 0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.skill-card:hover::before { transform: scaleX(1); }
.skill-card.pink-card:hover { border-color: rgba(255, 60, 172, 0.25); }

.skill-icon {
  width: 48px; height: 48px;
  background: rgba(255, 237, 71, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--yellow);
}
.skill-icon svg { width: 24px; height: 24px; }
.skill-card.pink-card .skill-icon { background: rgba(255, 60, 172, 0.1); color: var(--pink-light); }
.skill-card.yellow-card .skill-icon { background: rgba(255, 237, 71, 0.1); color: var(--yellow); }

.skill-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.skill-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.skill-level {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-card.pink-card .skill-bar { background: linear-gradient(90deg, var(--pink), var(--pink-dark)); }
.skill-card.yellow-card .skill-bar { background: linear-gradient(90deg, var(--yellow), var(--pink)); }

/* ============================================
   PROJECTS
============================================ */
.projects { background: var(--navy); }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 237, 71, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.project-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 237, 71, 0.06) 0%, rgba(255, 60, 172, 0.04) 100%);
  border-color: rgba(255, 237, 71, 0.2);
}
.project-card.pink-project {
  background: rgba(255, 60, 172, 0.04);
  border-color: rgba(255, 60, 172, 0.1);
}
.project-card.yellow-project {
  background: rgba(255, 237, 71, 0.04);
  border-color: rgba(255, 237, 71, 0.1);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.project-card.featured:hover { border-color: rgba(255, 237, 71, 0.4); box-shadow: 0 24px 60px rgba(255, 237, 71, 0.1); }
.project-card.pink-project:hover { border-color: rgba(255, 60, 172, 0.3); box-shadow: 0 24px 60px rgba(255, 60, 172, 0.1); }

.project-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.project-card.pink-project .project-tag { color: var(--pink-light); }
.project-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.project-card.featured h3 { font-size: 2rem; }
.project-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.project-tech span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.highlight-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.project-number {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}

/* ============================================
   ACHIEVEMENTS
============================================ */
.achievements { background: var(--navy-mid); }
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.achievement-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.achievement-card:hover { transform: translateY(-6px); border-color: rgba(255, 237, 71, 0.25); }
.achievement-card.pink-ach:hover { border-color: rgba(255, 60, 172, 0.25); }
.achievement-card.yellow-ach:hover { border-color: rgba(255, 237, 71, 0.4); }
.ach-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}
.achievement-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.achievement-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   CONTACT
============================================ */
.contact { background: var(--navy); }
.contact-inner {
  background: linear-gradient(135deg, rgba(255, 237, 71, 0.06) 0%, rgba(255, 60, 172, 0.06) 100%);
  border: 1px solid rgba(255, 237, 71, 0.15);
  border-radius: 32px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 237, 71, 0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-inner .section-label { margin: 0 auto 1.5rem; }
.contact-inner .section-title { margin-bottom: 1rem; }
.contact-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}
.contact-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 237, 71, 0.12);
  border-color: rgba(255, 237, 71, 0.4);
  box-shadow: 0 12px 32px rgba(255, 237, 71, 0.15);
}
.contact-btn.pink-btn:hover {
  background: rgba(255, 60, 172, 0.12);
  border-color: rgba(255, 60, 172, 0.4);
  box-shadow: 0 12px 32px rgba(255, 60, 172, 0.15);
}
.contact-btn.yellow-btn:hover {
  background: rgba(255, 237, 71, 0.15);
  border-color: rgba(255, 237, 71, 0.5);
}
.contact-icon { font-size: 1rem; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
}
.footer-logo .dot { color: var(--yellow); }
.footer p {
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { flex-direction: column; text-align: center; padding: 8rem 2rem 4rem; }
  .hero-content { max-width: 100%; }
  .hero-roles { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-visual { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: 1; }
  .achievements-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .contact-inner { padding: 3rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section { padding: 5rem 0; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .btn, .contact-btn, .hamburger { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 3rem; }
  .hero-stats { gap: 1.2rem; }
  .stat-num { font-size: 1.5rem; }
  .contact-links { flex-direction: column; align-items: center; }
}