/* ============================================
   PRAKASHDEEP SINGH GOLAN — Personal Website
   ============================================ */

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --gold: #f59e0b;
  --green: #10b981;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --gradient-1: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-2: linear-gradient(135deg, #06b6d4, #7c3aed);
  --gradient-3: linear-gradient(135deg, #f59e0b, #ec4899, #7c3aed);
  --border: rgba(124, 58, 237, 0.2);
  --border-hover: rgba(168, 85, 247, 0.5);
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-sans: 'Space Grotesk', system-ui, sans-serif;
}

/* Light mode theme */
body.light-mode {
  --bg-dark: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f1f3;
  --text-primary: #1a1a2e;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(124, 58, 237, 0.15);
  --border-hover: rgba(168, 85, 247, 0.4);
}

body.light-mode #intro-screen {
  background: #ffffff;
}

body.light-mode .terminal-window {
  background: #f8f9fa;
  border-color: rgba(124, 58, 237, 0.3);
}

body.light-mode .terminal-header {
  background: #e8e9eb;
  border-bottom-color: rgba(124, 58, 237, 0.15);
}

body.light-mode .terminal-body {
  color: #1a1a2e;
}

body.light-mode .code-block {
  background: #f5f5f7;
  border-color: rgba(124, 58, 237, 0.15);
  color: #1a1a2e;
}

body.light-mode .code-keyword { color: #7c3aed; }
body.light-mode .code-var { color: #0369a1; }
body.light-mode .code-prop { color: #c1121f; }
body.light-mode .code-string { color: #15803d; }

body.light-mode .section-bg-gradient {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(124, 58, 237, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(236, 72, 153, 0.03) 0%, transparent 70%);
}

body.light-mode .hero-bg-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
}

body.light-mode #navbar {
  background: rgba(248, 249, 250, 0.95);
}

body.light-mode .about-card:hover {
  background: #f9f9fb;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hidden { display: none !important; }

/* ============================================
   INTRO TERMINAL SCREEN
   ============================================ */

#intro-screen {
  position: fixed;
  inset: 0;
  background: #050508;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 2rem;
}

.terminal-window {
  width: min(700px, 92vw);
  background: #0d0d14;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.15), 0 0 120px rgba(236, 72, 153, 0.08);
  overflow: hidden;
  animation: terminalAppear 0.6s ease-out;
}

@keyframes terminalAppear {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.terminal-header {
  background: #1a1a2e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca41; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.terminal-body {
  padding: 24px;
  min-height: 280px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.8;
}

#terminal-output {
  color: var(--text-secondary);
}

#terminal-output .cmd-line {
  color: var(--purple-light);
}

#terminal-output .output-line {
  color: var(--text-secondary);
  padding-left: 0;
}

#terminal-output .output-highlight {
  color: var(--pink);
  font-weight: 700;
}

#terminal-output .output-success {
  color: var(--green);
}

.terminal-cursor-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.prompt {
  color: var(--purple-light);
  white-space: nowrap;
}

#typing-text {
  color: var(--text-primary);
}

.cursor {
  color: var(--pink);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

#skip-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#skip-btn:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

/* ============================================
   NAVIGATION
   ============================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--purple-light);
}

.nav-right-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.visitor-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.1));
  border: 1.5px solid var(--border-hover);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: default;
}

.visitor-counter:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.15));
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.visitor-icon {
  font-size: 1.1rem;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 49%, 100% { opacity: 1; }
  50%, 99% { opacity: 0.6; }
}

.visitor-count {
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.theme-toggle {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.15));
  border: 1.5px solid var(--border-hover);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.theme-toggle:hover {
  border-color: var(--purple-light);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.2));
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.2);
}

.theme-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.theme-toggle:active .theme-icon {
  transform: rotate(20deg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--purple-light);
}

.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px; height: 400px;
  background: var(--purple);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px; height: 300px;
  background: var(--pink);
  bottom: 10%; left: -80px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px; height: 200px;
  background: var(--cyan);
  top: 40%; right: 30%;
  animation-delay: 4s;
}

.shape-4 {
  width: 250px; height: 250px;
  background: var(--gold);
  bottom: 20%; right: 10%;
  animation-delay: 1s;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.greeting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--purple-light);
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.name-line-1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.name-line-2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.tagline-prefix {
  color: var(--pink);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.hero-desc em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

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

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  transform: translateY(-2px);
}

/* ---- HERO PHOTO ---- */

.hero-photo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-glow-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--purple), var(--pink), var(--cyan), var(--purple));
  animation: spin-glow 8s linear infinite;
  filter: blur(2px);
  opacity: 0.6;
}

@keyframes spin-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.photo-gradient-frame {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(124, 58, 237, 0.15);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(124, 58, 237, 0.05) 0%,
    rgba(236, 72, 153, 0.05) 40%,
    rgba(10, 10, 15, 0.6) 100%
  );
  pointer-events: none;
}

.photo-badge {
  position: absolute;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-primary);
  z-index: 3;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-top {
  top: 20px;
  right: -20px;
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--green);
}

.badge-bottom {
  bottom: 40px;
  left: -20px;
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-arrow {
  font-size: 1.2rem;
}

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

/* ============================================
   SECTIONS — SHARED STYLES
   ============================================ */

section {
  padding: 6rem 0;
  position: relative;
}

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

.section-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

#about {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d18 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.code-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

.code-card:hover {
  border-color: var(--border-hover);
}

.code-header {
  background: #1a1a2e;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

.code-lang {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.code-block {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
  overflow-x: auto;
  white-space: pre;
}

.code-keyword { color: #c792ea; }
.code-var { color: #82aaff; }
.code-prop { color: #f07178; }
.code-string { color: #c3e88d; }

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.fact-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.highlight-card {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
}

.highlight-card:hover {
  border-color: rgba(245, 158, 11, 0.6);
  background: rgba(245, 158, 11, 0.08);
}

.fact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fact-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.fact-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */

#manifesto {
  background: #0d0d18;
  position: relative;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.manifesto-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.manifesto-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.manifesto-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}

.manifesto-item:hover::before {
  opacity: 1;
}

.manifesto-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.manifesto-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.manifesto-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   VIBE CHECK SECTION
   ============================================ */

#vibe {
  background: linear-gradient(180deg, #0d0d18 0%, var(--bg-dark) 100%);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.status-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.status-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.status-dot.pulse {
  animation: pulse-dot 1.5s ease-in-out infinite;
  background: var(--gold);
}

.status-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.status-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.fun-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-light);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 120px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

#contact {
  background: #0d0d18;
  position: relative;
  overflow: hidden;
}

.contact-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-message {
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.terminal-prompt {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.prompt-text {
  color: var(--purple-light);
}

.prompt-cmd {
  color: var(--text-secondary);
}

.terminal-output-line {
  color: var(--green);
  margin: 8px 0 16px 0;
  font-size: 1rem;
}

.cursor-blink {
  color: var(--pink);
  animation: blink 1s step-end infinite;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  border-color: var(--purple-light);
  background: rgba(124, 58, 237, 0.15);
  transform: translateX(4px);
}

.link-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.footer-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-small {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ============================================
   ZOEYAI HIGHLIGHT
   ============================================ */

.zoeyai-highlight {
  margin: 3rem 0 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.zoeyai-highlight:hover {
  border-color: var(--border-hover);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.12) 100%);
  transform: translateY(-2px);
}

.zoeyai-highlight h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.zoeyai-link {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0 8px;
}

.zoeyai-link:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .manifesto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fun-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text {
    align-items: center;
    order: 2;
  }

  .hero-photo-container {
    order: 1;
  }

  .greeting-badge {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .photo-gradient-frame {
    width: 280px;
    height: 360px;
  }

  .photo-glow-ring {
    width: 310px;
    height: 310px;
  }

  .badge-top { right: -10px; }
  .badge-bottom { left: -10px; }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fun-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  section { padding: 4rem 0; }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .fun-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-light);
}

/* ============================================
   SELECTION COLOR
   ============================================ */

::selection {
  background: rgba(124, 58, 237, 0.4);
  color: var(--text-primary);
}

/* ============================================
   CONTACT MODAL
   ============================================ */

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.contact-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1001;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  width: min(500px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(124, 58, 237, 0.2);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 4px 8px;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-light);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: var(--font-sans);
}

.btn-send {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-send:active {
  transform: translateY(0);
}
