/* ==========================================================================
   PORTFOLIO STYLES
   Modern Dark Theme | Glassmorphism | Neon Accents
   ========================================================================== */

/* ── VARIABLES ── */
:root {
  /* Colors */
  --bg-color: #050508;
  --bg-surface: #0f1016;
  --bg-surface-light: #181a24;
  
  --text-main: #f0f2f8;
  --text-muted: #9499ab;
  --text-dark: #62677d;
  
  --accent-primary: #4dcedc; /* Cyper/Teal */
  --accent-primary-rgb: 77, 206, 220;
  --accent-secondary: #f43f5e; /* Rose/Red */
  --accent-secondary-rgb: 244, 63, 94;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(77, 206, 220, 0.3);
  
  /* Typography */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Layout */
  --container-width: 1200px;
  --nav-height: 80px;
  
  /* Transitions */
  --easing: cubic-bezier(0.19, 1, 0.22, 1);
  --trs-fast: 0.2s var(--easing);
  --trs-med: 0.5s var(--easing);
  --trs-slow: 0.8s var(--easing);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background-color: var(--accent-primary);
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-dark);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.accent {
  color: var(--accent-primary);
  text-shadow: 0 0 15px rgba(var(--accent-primary-rgb), 0.4);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
}

.section-tag {
  display: block;
  font-family: var(--font-mono);
  color: var(--accent-primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.section-header {
  margin-bottom: 4rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--trs-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: var(--accent-primary);
  box-shadow: 0 0 30px rgba(var(--accent-primary-rgb), 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(var(--accent-primary-rgb), 0.05);
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: var(--trs-med);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.logo-bracket { color: var(--accent-primary); opacity: 0.5; }
.logo-name { color: var(--text-main); letter-spacing: -0.05em; }
.nav-logo:hover .logo-bracket { opacity: 1; text-shadow: 0 0 10px var(--accent-primary); }

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

.nav-links a {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: var(--trs-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--trs-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  left: 0;
  transition: var(--trs-fast);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* ── HERO SECTION ── */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1.05); /* for subtle pan effect */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,8,0.2) 0%, rgba(5,5,8,1) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  transform-origin: top center;
  opacity: 0.5;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px); }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-firstname { font-weight: 300; }
.hero-lastname { font-weight: 900; background: linear-gradient(to right, var(--text-main), var(--text-muted)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent-primary);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}


/* ── COMMON SECTIONS ── */
section {
  padding: 8rem 0;
  position: relative;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

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

.about-photo-frame {
  aspect-ratio: 4/5;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-photo, .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: var(--accent-primary);
  filter: blur(100px);
  opacity: 0.15;
  z-index: 1;
}

.about-bio {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.about-bio strong {
  color: var(--text-main);
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-primary);
  font-family: var(--font-mono);
}

.stat-number::after {
  content: '+';
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}


/* ── GAMES CARD ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--trs-med);
  display: flex;
  flex-direction: column;
  position: relative;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(var(--accent-primary-rgb), 0.1);
}

.game-card-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.game-card:hover .game-thumb {
  transform: scale(1.05);
}

.game-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-surface) 0%, transparent 50%);
}

.play-btn, .play-btn-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(var(--accent-primary-rgb), 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trs-fast);
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.play-btn { width: 60px; height: 60px; }
.play-btn-lg { width: 80px; height: 80px; }

.game-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.play-btn:hover, .play-btn-lg:hover {
  background: #fff;
  color: var(--accent-primary);
  transform: translate(-50%, -50%) scale(1.1) !important;
}

.game-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 5;
}

.game-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-genre {
  font-size: 0.75rem;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.game-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.game-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.game-tags, .showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 0.25rem 0.6rem;
  background: var(--bg-surface-light);
  border-radius: 4px;
  color: var(--text-muted);
}

.steam-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--trs-fast);
}

.steam-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: var(--trs-fast);
}

.steam-link:hover { color: var(--accent-primary); }
.steam-link:hover .steam-icon { opacity: 1; color: var(--accent-primary); }


/* ── SHOWCASE ── */
#showcase {
  background: linear-gradient(to bottom, var(--bg-color), var(--bg-surface), var(--bg-color));
}

.showcase-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.showcase-item:last-child { margin-bottom: 0; }

.showcase-item--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.showcase-item--reverse .showcase-media {
  order: 2;
}

.showcase-item--reverse .showcase-info {
  order: 1;
}

.showcase-media {
  position: relative;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.showcase-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.video-frame:hover .showcase-thumb { opacity: 0.5; }
.video-frame:hover .play-btn-lg { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.showcase-number {
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: -1rem;
  opacity: 0.5;
}

.showcase-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.showcase-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.showcase-annotations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.showcase-annotations li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--accent-primary);
  border-radius: 0 4px 4px 0;
}

.ann-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 5px rgba(var(--accent-primary-rgb), 0.5));
}

.showcase-annotations strong {
  color: #fff;
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.showcase-annotations div {
  font-size: 0.95rem;
  color: var(--text-muted);
}


/* ── SKILLS ── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.skill-cat-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.skill-pct {
  font-family: var(--font-mono);
  color: var(--accent-primary);
}

.skill-bar-track {
  height: 6px;
  background: var(--bg-surface-light);
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  width: 0; /* Animated in JS */
  border-radius: 3px;
  transition: width 1.5s var(--easing);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.pill {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--trs-fast);
}

.pill:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(var(--accent-primary-rgb), 0.05);
  box-shadow: 0 0 15px rgba(var(--accent-primary-rgb), 0.2);
  transform: translateY(-2px);
}


/* ── CONTACT ── */
#contact {
  text-align: center;
}

.contact-grid {
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--trs-fast);
  text-align: center;
}

.contact-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  background: linear-gradient(to bottom, var(--bg-surface), var(--bg-surface-light));
}

.contact-card-icon {
  color: var(--text-main);
  transition: var(--trs-fast);
}

.contact-card:hover .contact-card-icon {
  color: var(--accent-primary);
  transform: scale(1.1);
}

.contact-card-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 0.875rem;
  color: var(--text-muted);
}


/* ── FOOTER ── */
#footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
}

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

.footer-logo {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-text {
  color: var(--text-dark);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--accent-primary);
}


/* ── MODAL (VIDEO OR IMAGE) ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

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

.modal-content {
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 1200px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s var(--easing);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trs-fast);
}

.modal-close:hover {
  background: var(--accent-secondary);
  transform: rotate(90deg);
}

.modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.modal-video-wrap iframe,
.modal-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ── ANIMATIONS (REVEAL) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

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


/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .about-grid, .showcase-item, .showcase-item--reverse {
    grid-template-columns: 1fr;
  }
  
  .showcase-item--reverse .showcase-media { order: 1; }
  .showcase-item--reverse .showcase-info { order: 2; }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--easing);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.5rem;
  }
  
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .stat-number { font-size: 2.5rem; }
  
  section { padding: 5rem 0; }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
