/* ===== CSS Variables & Design Tokens ===== */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0d0d0d;
  --bg-tertiary: #171717;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --text-primary: #fcfcfc;
  --text-secondary: rgba(252, 252, 252, 0.7);
  --text-muted: rgba(252, 252, 252, 0.4);
  --accent-primary: #cba358;
  --accent-secondary: #ebd09c;
  --accent-tertiary: #927438;
  --accent-glow: rgba(203, 163, 88, 0.35);
  --gradient-primary: linear-gradient(
    135deg,
    #ebd09c 0%,
    #cba358 50%,
    #927438 100%
  );
  --gradient-bg: radial-gradient(
    ellipse at 50% 0%,
    rgba(203, 163, 88, 0.15) 0%,
    transparent 50%
  );
  --border-color: rgba(203, 163, 88, 0.15);
  --border-glow: rgba(203, 163, 88, 0.3);
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;
  --container-padding: clamp(1rem, 5vw, 2rem);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight {
  color: var(--accent-primary);
  font-weight: 600;
}

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  pointer-events: none;
  z-index: -2;
}
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-base);
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-base);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem var(--container-padding) 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}
.hero-content {
  flex: 1;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.title-line {
  display: block;
  font-size: 0.4em;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.title-name {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease 0.5s forwards;
  opacity: 0;
}
.orbit-container {
  position: relative;
  width: 350px;
  height: 350px;
}
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border-color);
  border-radius: 50%;
}
.orbit-1 {
  width: 200px;
  height: 200px;
  animation: rotate 20s linear infinite;
}
.orbit-2 {
  width: 280px;
  height: 280px;
  animation: rotate 25s linear infinite reverse;
}
.orbit-3 {
  width: 350px;
  height: 350px;
  animation: rotate 30s linear infinite;
}
.orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-glow);
}
.hero-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.avatar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}
.avatar-inner {
  position: relative;
  width: 120px;
  height: 120px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-initials {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

section {
  padding: var(--section-padding) 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about { background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text { max-width: 520px; }
.about-lead { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1.5rem; line-height: 1.6; }
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; }
.about-text strong { color: var(--text-primary); }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Code Window */
.code-window { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
.code-header { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1rem; background: var(--bg-tertiary); border-bottom: 1px solid var(--border-color); }
.code-dots { display: flex; gap: 6px; }
.code-dots span { width: 12px; height: 12px; border-radius: 50%; }
.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27ca40; }
.code-title { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }
.code-body { padding: 1.5rem; overflow-x: auto; }
.code-body pre { font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.8; }
.code-keyword { color: #c792ea; }
.code-variable { color: #82aaff; }
.code-property { color: #c3e88d; }
.code-string { color: #c3e88d; }
.code-boolean { color: #ff9cac; }
.code-number { color: #f78c6c; }
.code-function { color: #82aaff; }
.code-param { color: #f78c6c; }

/* Academics Section */
.academics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.academic-card { position: relative; padding: 2.5rem 2rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); text-align: center; transition: var(--transition-base); }
.academic-card:hover { background: var(--bg-card-hover); border-color: var(--border-glow); transform: translateY(-4px); }
.academic-card.featured { background: linear-gradient(135deg, rgba(203, 163, 88, 0.1) 0%, rgba(146, 116, 56, 0.05) 100%); border-color: var(--border-glow); }
.academic-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--bg-tertiary); border-radius: var(--radius-md); margin: 0 auto 1.5rem; }
.academic-icon svg { width: 28px; height: 28px; stroke: var(--accent-primary); }
.academic-score { font-size: 3.5rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.5rem; }
.score-denominator { font-size: 1.5rem; font-weight: 600; }
.academic-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.academic-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.academic-badge { display: inline-block; padding: 0.5rem 1rem; background: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 500; color: var(--accent-primary); }

/* Projects Section */
.projects { background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.project-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition-base); display: flex; flex-direction: column; }
.project-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.project-image { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--border-color); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-image img { transform: scale(1.05); }
.project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 5, 5, 0.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-base); }
.project-card:hover .project-overlay { opacity: 1; }
.project-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.project-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.project-category { font-size: 0.8rem; font-weight: 600; color: var(--accent-primary); letter-spacing: 0.5px; text-transform: uppercase; }
.project-status { font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); }
.project-status.live { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.project-status.dev { background: rgba(203, 163, 88, 0.1); color: var(--accent-primary); border: 1px solid var(--border-color); }
.project-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-primary); }
.project-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
.project-tech { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.project-tech span { font-size: 0.75rem; padding: 0.4rem 0.8rem; background: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: var(--radius-full); color: var(--text-muted); }

/* Skills Section */
.skills { background: var(--bg-primary); padding: var(--section-padding) 0; }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1.5rem; }
.skill-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; padding: 2rem 1rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: var(--transition-base); text-align: center; }
.skill-card:hover { border-color: var(--border-glow); background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.skill-card img { width: 44px; height: 44px; transition: var(--transition-base); filter: drop-shadow(0 0 8px rgba(203, 163, 88, 0.1)); }
.skill-card:hover img { transform: scale(1.15); filter: drop-shadow(0 0 12px rgba(203, 163, 88, 0.5)); }
.skill-card span { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); transition: var(--transition-base); }
.skill-card:hover span { color: var(--text-primary); }

/* Traits Section */
.traits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trait-card { position: relative; padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: var(--transition-base); }
.trait-card:hover { background: var(--bg-card-hover); border-color: var(--border-glow); transform: translateY(-4px); }
.trait-card.featured { background: linear-gradient(135deg, rgba(203, 163, 88, 0.1) 0%, rgba(146, 116, 56, 0.05) 100%); border-color: var(--border-glow); }
.trait-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--bg-tertiary); border-radius: var(--radius-md); margin-bottom: 1.25rem; }
.trait-icon svg { width: 24px; height: 24px; stroke: var(--accent-primary); }
.trait-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.trait-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.trait-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.75rem; background: var(--gradient-primary); border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 600; }
.traits-more { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border-color); }
.more-traits-container { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.more-trait { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-full); font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition-base); }
.more-trait:hover { border-color: var(--border-glow); color: var(--text-primary); }
.more-trait-icon { display: flex; align-items: center; justify-content: center; }
.more-trait-icon svg { width: 18px; height: 18px; stroke: var(--accent-primary); }

/* Philosophy Section */
.philosophy { background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.philosophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.philosophy-card { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: var(--transition-base); }
.philosophy-card:hover { border-color: var(--border-glow); }
.philosophy-number { font-size: 3rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.3; margin-bottom: 1rem; }
.philosophy-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.philosophy-card p { color: var(--text-secondary); line-height: 1.6; }
.quote-section { margin-top: 4rem; text-align: center; }
.quote { position: relative; max-width: 800px; margin: 0 auto; padding: 2rem; }
.quote-mark { position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-size: 6rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.2; line-height: 1; }
.quote p { font-size: 1.5rem; font-weight: 500; font-style: italic; line-height: 1.6; color: var(--text-secondary); }

/* Contact Section */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-content { max-width: 500px; }
.contact-desc { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: var(--transition-base); }
.contact-link:hover { background: var(--bg-card-hover); border-color: var(--border-glow); transform: translateX(8px); }
.contact-link-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--bg-tertiary); border-radius: var(--radius-md); }
.contact-link-icon svg { width: 24px; height: 24px; stroke: var(--accent-primary); }
.contact-link-text { flex: 1; }
.contact-link-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-link-value { font-weight: 600; }
.contact-link-arrow { width: 20px; height: 20px; stroke: var(--text-muted); transition: var(--transition-base); }
.contact-link:hover .contact-link-arrow { stroke: var(--accent-primary); transform: translate(4px, -4px); }

/* Contact Card */
.contact-visual { display: flex; justify-content: center; }
.contact-card { width: 320px; padding: 2rem; background: linear-gradient(135deg, rgba(203, 163, 88, 0.1) 0%, rgba(146, 116, 56, 0.05) 100%); border: 1px solid var(--border-glow); border-radius: var(--radius-xl); box-shadow: 0 20px 60px rgba(203, 163, 88, 0.15); }
.contact-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-card-avatar { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--gradient-primary); border-radius: 50%; font-size: 1.25rem; font-weight: 800; }
.contact-card-info h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-card-info span { font-size: 0.85rem; color: var(--text-muted); }
.contact-card-status { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); border-radius: var(--radius-md); margin-bottom: 1.5rem; font-size: 0.85rem; color: #22c55e; }
.status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
.contact-card-traits { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trait-tag { padding: 0.5rem 1rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-full); font-size: 0.8rem; color: var(--text-secondary); }

/* Footer */
.footer { padding: 3rem 0; border-top: 1px solid var(--border-color); }
.footer-content { text-align: center; }
.footer-logo { margin-bottom: 1rem; }
.footer-text { color: var(--text-secondary); margin-bottom: 0.5rem; }
.footer-copyright { font-size: 0.85rem; color: var(--text-muted); }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* Responsive */
@media (max-width: 1024px) { .traits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg-secondary); border-left: 1px solid var(--border-color); flex-direction: column; justify-content: center; padding: 2rem; transition: var(--transition-base); }
  .nav-menu.active { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
  .hero-cta { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .orbit-container { width: 280px; height: 280px; }
  .orbit-3 { width: 280px; height: 280px; }
  .about-content, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-stats { justify-content: center; }
  .academics-grid { grid-template-columns: 1fr; }
  .traits-grid, .philosophy-grid { grid-template-columns: 1fr; }
  .contact-visual { order: -1; }
  .scroll-indicator { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .more-traits-container { flex-direction: column; align-items: stretch; }
  .quote p { font-size: 1.125rem; }
  .academic-score { font-size: 2.5rem; }
}
