/* ═══════════════════════════════════════════════════════════════════════════════
   CYBERPUNK COMMAND CENTER — PREMIUM PORTFOLIO CSS
   ═══════════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ─── @property for animated gradient borders ─── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --glow-pulse-opacity {
  syntax: '<number>';
  initial-value: 0.4;
  inherits: false;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ROOT VARIABLES
   ═══════════════════════════════════════════════════════════════════════════════ */
:root {
  --bg-deep: #050508;
  --bg: #0a0a0f;
  --bg-surface: #0d0d12;
  --bg-card: rgba(8, 8, 14, 0.7);
  --bg-card-solid: #0e0e14;
  --cyan: #00F0FF;
  --cyan-light: #5DF5FF;
  --cyan-dim: rgba(0, 240, 255, 0.08);
  --cyan-glow: rgba(0, 240, 255, 0.35);
  --cyan-glow-far: rgba(0, 240, 255, 0.08);
  --violet: #8B5CF6;
  --violet-glow: rgba(139, 92, 246, 0.3);
  --magenta: #FF006E;
  --magenta-glow: rgba(255, 0, 110, 0.25);
  --white: #FFFFFF;
  --text-primary: #E8EDF5;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 240, 255, 0.35);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

@media (min-width: 1024px) {
  html, body, a, button, input, textarea, [data-magnetic] {
    cursor: none !important;
  }
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) var(--bg-deep);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--cyan-light), var(--violet));
}

body {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 240, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 0, 110, 0.015) 0%, transparent 40%),
    var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ─── Animated TRON Grid Background ─── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-scroll 25s linear infinite;
  perspective: 800px;
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 85%);
}

/* ─── Vignette Overlay ─── */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, var(--bg-deep) 100%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(0, 240, 255, 0.2);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
@keyframes grid-scroll {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 80px, 80px 0; }
}

@keyframes scanline {
  0% { top: -2px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: calc(100% + 2px); opacity: 0; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
  50% { opacity: 0.3; box-shadow: 0 0 20px rgba(34, 197, 94, 0.9); }
}

@keyframes border-rotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

@keyframes terminal-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes scanline-full {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes hero-glow {
  0%, 100% { text-shadow: 0 0 40px rgba(0, 240, 255, 0.08), 0 0 80px rgba(0, 240, 255, 0.04); }
  50% { text-shadow: 0 0 60px rgba(0, 240, 255, 0.15), 0 0 120px rgba(0, 240, 255, 0.06); }
}

@keyframes status-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes loading-sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--bg-deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-out-expo), visibility 1s var(--ease-out-expo);
  overflow: hidden;
}


.preloader::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.preloader-content {
  width: 380px;
  z-index: 3;
  position: relative;
}

.terminal-text {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 0.82rem;
  margin-bottom: 24px;
  line-height: 2;
  height: 80px;
  text-shadow: 0 0 12px var(--cyan-glow), 0 0 30px rgba(0, 240, 255, 0.15);
  letter-spacing: 0.04em;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: -1px; bottom: -1px;
  left: 0; right: 0;
  border-radius: 4px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 16px var(--cyan), 0 0 40px var(--cyan-glow);
  transition: width 0.1s linear;
  border-radius: 4px;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(6px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CUSTOM CURSOR & SPOTLIGHT
   ═══════════════════════════════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan-glow);
  display: none;
}

.cursor-outline {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.25s var(--ease-spring), height 0.25s var(--ease-spring),
              background-color 0.2s, transform 0.1s ease-out;
  display: none;
}

@media (min-width: 1024px) {
  .cursor-dot, .cursor-outline { display: block; }
}

.cursor-dot.hovered {
  width: 14px; height: 14px;
  background: var(--white);
  box-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.4);
}

.cursor-outline.hovered {
  width: 64px; height: 64px;
  background: rgba(0, 240, 255, 0.08);
}

.mouse-spotlight {
  position: fixed; top: 0; left: 0;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.035) 0%, transparent 55%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) {
  .mouse-spotlight { display: block; }
}

[data-magnetic] { display: inline-block; }

.hover-image-reveal {
  position: absolute;
  right: 5%;
  width: 460px; height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9), 0 0 30px var(--cyan-glow);
  transition: opacity 0.45s var(--ease-spring), transform 0.45s var(--ease-spring);
}

.hover-image-reveal.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 1024px) {
  .hover-image-reveal { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow:
    0 1px 0 rgba(0, 240, 255, 0.06),
    0 4px 40px rgba(0, 0, 0, 0.6);
  transition: background 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

/* Navbar horizontal scanline */
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: loading-sweep 4s linear infinite;
  opacity: 0.4;
}

/* Subtle top glow */
.navbar::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.25), transparent);
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
  position: relative;
}

.nav-logo .shield {
  color: var(--cyan);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px var(--cyan-glow));
}

/* Status dot on logo */
.nav-logo::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  margin-left: 8px;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse-dot 1.5s infinite;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: width 0.4s var(--ease-out-expo);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.nav-links a:hover {
  color: var(--white);
  text-shadow: 0 0 12px var(--cyan-glow);
}

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

.nav-links a.active {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-glow);
}

.nav-links a.active::after {
  width: 100%;
  background: var(--cyan);
}

.nav-cv-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--bg-deep);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 0 20px var(--cyan-glow), 0 4px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.nav-cv-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cv-btn:hover {
  background: var(--cyan-light);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.15);
  transform: translateY(-2px);
}

.nav-cv-btn:hover::before {
  left: 120%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 60px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.02) 0%, transparent 40%, transparent 60%, rgba(139, 92, 246, 0.015) 100%);
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

}

.hero-text {
  flex: 1;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-image {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  max-width: 530px;
  width: 100%;
  background: rgba(8, 8, 14, 0.5);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.8),
    0 0 1px rgba(0, 240, 255, 0.2),
    inset 0 0 40px rgba(0, 240, 255, 0.02);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  overflow: hidden;
  animation: border-rotate 8s linear infinite;
}

/* Rotating border glow on hero image */
.hero-image::before {
  content: 'MAINFRAME STATUS: ONLINE';
  position: absolute;
  top: 12px; left: 12px;
  background: var(--bg-deep);
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  border-radius: 3px;
  z-index: 10;
  animation: glow-pulse 3s infinite;
  text-shadow: 0 0 8px var(--cyan-glow);
}

.hero-image::after {
  content: 'IP: 192.168.1.1';
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  z-index: 10;
}

.hero-image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  mix-blend-mode: screen;
  filter: grayscale(100%) sepia(20%) hue-rotate(180deg) saturate(1.8) contrast(1.25) brightness(0.85);
  transition: transform 0.7s var(--ease-out-expo), filter 0.7s var(--ease-out-expo);
  border-radius: 4px;
}

.hero-image:hover img {
  transform: scale(1.03) translateY(-5px);
  filter: grayscale(0%) sepia(0%) hue-rotate(0deg) saturate(1) contrast(1.05) brightness(1);
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: status-pulse 2s infinite, pulse-dot 2s infinite;
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-name {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3em;
  color: var(--white);
  -webkit-text-fill-color: unset;
}

/* ─── Glitch Layer 1 (cyan shift) ─── */
.hero-name::before {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  color: var(--cyan);
  z-index: -1;
  clip-path: inset(0 0 0 0);
  animation: glitch-layer-1 4s infinite linear alternate-reverse;
  opacity: 0;
  pointer-events: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

/* ─── Glitch Layer 2 (violet shift) ─── */
.hero-name::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  color: var(--violet);
  z-index: -1;
  clip-path: inset(0 0 0 0);
  animation: glitch-layer-2 4s infinite linear alternate-reverse;
  opacity: 0;
  pointer-events: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

/* Hover activates glitch layers */
.hero-name:hover::before {
  opacity: 0.7;
}
.hero-name:hover::after {
  opacity: 0.7;
}

/* ─── Line wrapper for two-line layout ─── */
.hero-name__line {
  display: flex;
}

/* ─── Individual Character Styling ─── */
.hero-name__char {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(80px) rotateX(-90deg) scale(0.5);
  animation: char-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(1.8s + var(--i) * 0.07s);
  background: linear-gradient(180deg, var(--white) 0%, var(--cyan-light) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.3));
  transition: transform 0.4s var(--ease-spring), filter 0.4s, text-shadow 0.4s;
  cursor: default;
}

/* Hover per-letter effect */
.hero-name__char:hover {
  transform: translateY(-8px) scale(1.15) !important;
  filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.8)) drop-shadow(0 0 50px rgba(139, 92, 246, 0.4));
  animation: none;
  opacity: 1;
  -webkit-text-fill-color: var(--cyan-light);
}

/* Ambient glow pulse on resolved characters */
.hero-name__char.resolved {
  animation: char-glow-pulse 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.3s);
  opacity: 1;
  transform: none;
}

/* Period/dot has special color */
.hero-name__char:last-child {
  -webkit-text-fill-color: var(--cyan);
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
}

/* ─── Character Reveal Keyframe ─── */
@keyframes char-reveal {
  0% {
    opacity: 0;
    transform: translateY(80px) rotateX(-90deg) scale(0.5);
    filter: blur(8px) drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 0.7;
    filter: blur(2px) drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0) drop-shadow(0 0 12px rgba(0, 240, 255, 0.3));
  }
}

/* ─── Ambient glow pulse for resolved chars ─── */
@keyframes char-glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.15));
  }
}

/* ─── Glitch Keyframes ─── */
@keyframes glitch-layer-1 {
  0% { clip-path: inset(40% 0 50% 0); transform: translate(-3px, -2px); }
  5% { clip-path: inset(10% 0 85% 0); transform: translate(2px, 1px); }
  10% { clip-path: inset(80% 0 5% 0); transform: translate(-1px, 3px); }
  15% { clip-path: inset(0 0 0 0); transform: translate(0); }
  20% { clip-path: inset(25% 0 65% 0); transform: translate(3px, -1px); }
  25% { clip-path: inset(0 0 0 0); transform: translate(0); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

@keyframes glitch-layer-2 {
  0% { clip-path: inset(60% 0 10% 0); transform: translate(3px, 2px); }
  5% { clip-path: inset(5% 0 80% 0); transform: translate(-2px, -1px); }
  10% { clip-path: inset(70% 0 15% 0); transform: translate(1px, -3px); }
  15% { clip-path: inset(0 0 0 0); transform: translate(0); }
  20% { clip-path: inset(35% 0 55% 0); transform: translate(-3px, 1px); }
  25% { clip-path: inset(0 0 0 0); transform: translate(0); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 22px;
  text-shadow: 0 0 20px var(--cyan-glow);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--bg-deep);
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px var(--cyan-glow), 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: var(--cyan-light);
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.15), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover::before {
  left: 120%;
}

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-primary);
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(var(--bg-deep), var(--bg-deep)), linear-gradient(135deg, var(--cyan), var(--violet));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.06), rgba(139, 92, 246, 0.06));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-secondary:hover {
  color: var(--cyan);
  box-shadow: 0 0 25px var(--cyan-glow), 0 0 50px rgba(0, 240, 255, 0.08);
  transform: translateY(-3px);
  background-image: linear-gradient(rgba(0, 240, 255, 0.06), rgba(0, 240, 255, 0.06)), linear-gradient(135deg, var(--cyan), var(--violet)) !important;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.hero-location {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════════════════════════════════════════ */
.marquee-wrapper {
  overflow: hidden;
  padding: 14px 0;
  background: rgba(0, 240, 255, 0.015);
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 0 rgba(0, 240, 255, 0.04), 0 -1px 0 rgba(0, 240, 255, 0.04);
}

/* Gradient fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.7);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 18px;
  transition: color 0.3s;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
}

.marquee-track span:hover {
  color: var(--cyan);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}

.section:nth-of-type(even) {
  background: rgba(0, 240, 255, 0.008);
}

.section:nth-of-type(odd) {
  background: rgba(139, 92, 246, 0.005);
}

/* Section grid background */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.01) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Section divider glow */
.section + .section::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 240, 255, 0.12) 20%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(0, 240, 255, 0.12) 80%,
    transparent
  );
  z-index: 1;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 0 15px var(--cyan-glow);
  position: relative;
  z-index: 1;
  padding-left: 16px;
  box-shadow: -4px 0 12px rgba(0, 240, 255, 0.15);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.06);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT / PROFILE SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.about-highlight {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-highlight span {
  color: var(--cyan);
  text-shadow: 0 0 16px var(--cyan-glow);
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-quote {
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.04), rgba(139, 92, 246, 0.02));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  backdrop-filter: blur(8px);
  box-shadow: -3px 0 0 var(--cyan), -6px 0 12px rgba(0, 240, 255, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 16px;
  font-size: 3rem;
  color: rgba(0, 240, 255, 0.15);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

/* ─── Identity Card ─── */
.identity-card {
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.5), rgba(4, 5, 8, 0.3));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(0, 240, 255, 0.15);

  transition: transform 0.6s var(--ease-spring), box-shadow 0.4s;
}

/* Scanning line on identity card */

.identity-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 240, 255, 0.12),
    0 0 1px rgba(0, 240, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 0 rgba(0, 240, 255, 0.25);
}

.identity-header {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  text-shadow: 0 0 10px var(--cyan-glow);
  box-shadow: 0 1px 0 rgba(0, 240, 255, 0.08);
}

.identity-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  transition: background 0.3s, padding-left 0.3s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.identity-row:hover {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.03), transparent);
  padding-left: 8px;
}

.identity-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.identity-value {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.identity-value.active {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STATS GRID
   ═══════════════════════════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;

}

.stat-card {
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.5), rgba(4, 5, 8, 0.3));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(0, 240, 255, 0.15);

  transition: transform 0.6s var(--ease-spring), box-shadow 0.4s;
}


.stat-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 240, 255, 0.12),
    0 0 1px rgba(0, 240, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 0 rgba(0, 240, 255, 0.25);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.stat-card:hover .stat-number {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CAPABILITIES / SKILLS
   ═══════════════════════════════════════════════════════════════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;

}

.skill-card {
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.5), rgba(4, 5, 8, 0.3));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(0, 240, 255, 0.15);

  transition: transform 0.6s var(--ease-spring), box-shadow 0.4s;
}


.skill-card:hover {
  transform: translateY(-12px) rotateX(2deg) scale(1.02);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 240, 255, 0.12),
    0 0 1px rgba(0, 240, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 0 rgba(0, 240, 255, 0.25);
}

.skill-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0, 240, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 1.5rem;
  color: var(--cyan);
  transition: all 0.5s var(--ease-spring);
  position: relative;
}

.skill-card:hover .skill-icon {
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan-light);
  box-shadow: 0 0 30px var(--cyan-glow), 0 0 60px rgba(0, 240, 255, 0.1);
  transform: scale(1.12) rotate(5deg);
}

.skill-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 32px; right: 32px;
}

.skill-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.skill-card:hover .skill-name {
  color: var(--cyan-light);
}

.skill-list {
  list-style: none;
}

.skill-list li {
  position: relative;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 12px 0 12px 22px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.skill-list li::before {
  content: '▹';
  position: absolute;
  left: 0; top: 12px;
  color: var(--cyan);
  font-size: 1.1rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.skill-list li:hover {
  color: var(--white);
  padding-left: 28px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.04), transparent);
}

.skill-list li:hover::before {
  opacity: 1;
  left: 6px;
  text-shadow: 0 0 12px var(--cyan-glow);
}

.skill-list li:last-child {
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   EXPERIENCE TIMELINE
   ═══════════════════════════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-top: 10px;
  z-index: 1;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    var(--cyan),
    rgba(0, 240, 255, 0.15) 30%,
    rgba(139, 92, 246, 0.1) 70%,
    transparent
  );
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3), 0 0 20px rgba(0, 240, 255, 0.1);
}

.timeline-item {
  position: relative;
  padding: 28px 0 28px 64px;
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease-spring);
  z-index: 2;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 42px; right: -20px;
  background: rgba(0, 240, 255, 0.015);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.timeline-item:hover {
  transform: translateX(12px);
}

.timeline-item:hover::after {
  opacity: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.06);
  background: rgba(0, 240, 255, 0.025);
}

.timeline-dot {
  position: absolute;
  left: 13px; top: 34px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg-deep);
  z-index: 3;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4), 0 0 24px rgba(0, 240, 255, 0.15);
}

.timeline-item:hover .timeline-dot {
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(0, 240, 255, 0.15);
  transform: scale(1.4);
}

.timeline-item:first-child .timeline-dot {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
  animation: glow-pulse 2s infinite;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.timeline-role {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.timeline-company {
  color: var(--cyan);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 18px;
  text-shadow: 0 0 12px var(--cyan-glow);
}

.timeline-details {
  list-style: none;
}

.timeline-details li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 8px;
  transition: color 0.3s, padding-left 0.3s;
}

.timeline-item:hover .timeline-details li {
  color: var(--text-secondary);
}

.timeline-details li::before {
  content: '▹';
  position: absolute;
  left: 0; top: 0;
  color: var(--cyan);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-details li::before {
  text-shadow: 0 0 8px var(--cyan-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CERTIFICATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;

}

.cert-card {
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.5), rgba(4, 5, 8, 0.3));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(0, 240, 255, 0.15);

  transition: transform 0.6s var(--ease-spring), box-shadow 0.4s;
}

/* Scanning line */

.cert-card:hover {
  transform: translateY(-12px) rotateX(2deg) scale(1.02);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 240, 255, 0.12),
    0 0 1px rgba(0, 240, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 0 rgba(0, 240, 255, 0.25);
}

.cert-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.72rem;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.15);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-spring);
  z-index: 10;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.cert-card:hover .cert-badge {
  background: var(--cyan);
  color: var(--bg-deep);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: scale(1.15);
}

.cert-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: color 0.3s;
}

.cert-card:hover .cert-name {
  color: var(--white);
}

.cert-issuer {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.cert-year {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════════════════════════════════ */
.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 30px 0 80px 0;
  position: relative;
  z-index: 1;

}

.project-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.8), rgba(4, 5, 8, 0.6));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px 28px;
  border-radius: 40px 40px 0 0;
  box-shadow:
    0 -24px 60px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(0, 240, 255, 0.15);
  transition: all 0.6s var(--ease-out-expo);
  position: sticky;

  overflow: hidden;
}

/* Corner brackets */
.project-card::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 12px; height: 12px;
  opacity: 0.15;
  transition: all 0.4s var(--ease-spring);
  pointer-events: none;
  z-index: 5;
  box-shadow: -2px -2px 0 var(--cyan);
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 20px; right: 20px;
  width: 12px; height: 12px;
  opacity: 0.15;
  transition: all 0.4s var(--ease-spring);
  pointer-events: none;
  z-index: 5;
  box-shadow: 2px 2px 0 var(--cyan);
}

.project-card:hover {
  box-shadow:
    0 -20px 60px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(0, 240, 255, 0.08),
    inset 0 0 30px rgba(0, 240, 255, 0.02);
}

.project-card:hover::before,
.project-card:hover::after {
  opacity: 0.8;
  width: 22px; height: 22px;
  filter: drop-shadow(0 0 6px var(--cyan));
}

.project-card:nth-child(1) { top: 100px; z-index: 10; }
.project-card:nth-child(2) { top: 130px; z-index: 20; }
.project-card:nth-child(3) { top: 160px; z-index: 30; }
.project-card:nth-child(4) { top: 190px; z-index: 40; }

.project-card:nth-child(even) {
  flex-direction: row-reverse;
}

.project-img {
  width: 48%;
  max-width: 620px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 1px rgba(0, 240, 255, 0.1);
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s ease,
              box-shadow 0.6s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  position: relative;
}

.project-card:hover .project-img {
  transform: scale(1.02) translate3d(0, 0, 0);
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.6);
}

.project-img:hover {
  transform: scale(1.06) translate3d(0, 0, 0) !important;
  filter: brightness(1.1) saturate(1.1) !important;
  box-shadow: 0 24px 60px rgba(0, 240, 255, 0.25), 0 0 80px rgba(0, 240, 255, 0.1) !important;
  z-index: 25;
}

/* ─── Project Carousel ─── */
.project-carousel {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 1px rgba(0, 240, 255, 0.1);
  transition: box-shadow 0.4s;
}

.project-carousel:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 240, 255, 0.1);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  image-rendering: -webkit-optimize-contrast;
}

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

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 5, 8, 0.8);
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: all 0.35s var(--ease-out-expo);
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.project-carousel:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  background: rgba(0, 240, 255, 0.15);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev { left: 15px; }
.carousel-nav.next { right: 15px; }

.carousel-dots {
  position: absolute;
  bottom: 15px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
  background: rgba(5, 5, 8, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.carousel-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dots .dot.active {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan-glow);
  transform: scale(1.3);
}

.project-content {
  width: 47%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.project-name {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.project-card:hover .project-name {
  background: linear-gradient(90deg, var(--white), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: max-content;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

.project-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(139, 92, 246, 0.06));
  opacity: 0;
  transition: opacity 0.3s;
}

.project-link:hover {
  background: rgba(0, 240, 255, 0.06);
  color: var(--cyan);
  box-shadow: 0 0 25px var(--cyan-glow), 0 0 50px rgba(0, 240, 255, 0.08);
  gap: 16px;
  transform: translateX(4px);
}

.project-link:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   EDUCATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;

}

.edu-card {
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.5), rgba(4, 5, 8, 0.3));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(0, 240, 255, 0.15);

  transition: transform 0.6s var(--ease-spring), box-shadow 0.4s;
}

/* Scanning line */

.edu-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 240, 255, 0.12),
    0 0 1px rgba(0, 240, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 0 rgba(0, 240, 255, 0.25);
}

.edu-degree {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: color 0.3s;
}

.edu-card:hover .edu-degree {
  color: var(--cyan-light);
}

.edu-school {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.edu-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  padding-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TRAFFIC BOX / MINI GAME
   ═══════════════════════════════════════════════════════════════════════════════ */
.traffic-box {
  height: 260px;
  background: var(--bg-deep);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 10px 0;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.9),
    0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Scanline overlay on traffic box */
.traffic-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.log-line {
  color: #10B981;
  padding: 6px 20px;
  display: flex;
  gap: 15px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.log-line:hover {
  background: rgba(16, 185, 129, 0.04);
}

.log-anomalous {
  color: #EF4444;
  cursor: crosshair;
  font-weight: bold;
  background: rgba(239, 68, 68, 0.04);
  text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.log-anomalous:hover {
  background: rgba(239, 68, 68, 0.12);
  box-shadow: inset 0 0 20px rgba(239, 68, 68, 0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-value a {
  color: var(--cyan);
  transition: opacity 0.3s, text-shadow 0.3s;
}

.contact-value a:hover {
  opacity: 0.85;
  text-shadow: 0 0 12px var(--cyan-glow);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-link {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-spring);
  font-size: 1.1rem;
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 1px rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(0, 240, 255, 0.1), 0 0 1px var(--cyan);
  transform: translateY(-4px);
  background: rgba(0, 240, 255, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
  box-shadow: 0 -1px 0 rgba(0, 240, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.3s;
}

.form-group:focus-within label {
  color: var(--cyan);
}

.form-group input,
.form-group textarea {
  background: rgba(8, 8, 14, 0.8);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: box-shadow 0.4s, background 0.3s;
  outline: none;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.form-group input:hover,
.form-group textarea:hover {
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 240, 255, 0.15);
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.15),
    0 0 40px rgba(0, 240, 255, 0.05),
    inset 0 2px 8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 240, 255, 0.3);
  background: rgba(8, 8, 14, 0.95);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 60px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 8, 0.8));
  position: relative;
  z-index: 1;
  box-shadow: 0 -1px 0 rgba(0, 240, 255, 0.06);
}

/* Gradient top border glow */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 240, 255, 0.15) 25%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(0, 240, 255, 0.15) 75%,
    transparent
  );
}

.footer-left p {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-left .footer-name {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-top-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-top-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 240, 255, 0.04);
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-top-btn:hover {
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-2px);
}

.footer-top-btn:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered reveal for cards in grids */
.reveal.visible .skill-card,
.reveal.visible .stat-card,
.reveal.visible .cert-card,
.reveal.visible .edu-card {
  animation: float 6s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.5s);
  animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HAMBURGER MENU
   ═══════════════════════════════════════════════════════════════════════════════ */
.hamburger {
  display: none;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.35s var(--ease-out-expo);
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out-expo);
}

.hamburger:hover {
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.hamburger:hover span {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan-glow);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HUD OVERLAY SYSTEM
   ═══════════════════════════════════════════════════════════════════════════════ */
.hud-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 2;
}



.hud-data {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(0, 240, 255, 0.3);
  text-transform: uppercase;
  z-index: 3;
}

.hud-data--left {
  left: 20px;
  bottom: 20px;
}

.hud-data--right {
  right: 20px;
  bottom: 20px;
  text-align: right;
}

.hud-data span {
  transition: color 0.3s;
}

/* ─── Hero Decorator ─── */
.hero-decorator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-decorator__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.3;
}

.hero-decorator__line:last-child {
  background: linear-gradient(-90deg, var(--cyan), transparent);
}

.hero-decorator__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: rgba(0, 240, 255, 0.4);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ANIMATED GRADIENT CARD SCANLINES
   ═══════════════════════════════════════════════════════════════════════════════ */
.skill-card,
.stat-card,
.cert-card,
.edu-card {
  position: relative;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   ENHANCED VISUAL HIERARCHY
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Bigger glowing timeline dots */
.timeline-dot {
  width: 18px !important;
  height: 18px !important;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4), 0 0 24px rgba(0, 240, 255, 0.15) !important;
}

/* Active nav link gets glow */
.nav-links a.active {
  text-shadow: 0 0 12px var(--cyan-glow);
}

@media (max-width: 768px) {
  .hud-overlay { display: none; }
  .hero-decorator { margin-bottom: 16px; }
  .hud-data { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-cv-btn {
    display: none;
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s var(--ease-out-expo);
  }

  .nav-links.mobile-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem !important;
    letter-spacing: 0.3em !important;
  }

  .navbar {
    padding: 0 20px;
  }

  .hero {
    padding: 100px 24px 40px;
  }

  .hero-content-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

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

  .hero-image {
    flex: 0 0 250px;
    justify-content: center;
  }

  .hero-image img {
    max-width: 250px;
  }

  .section {
    padding: 60px 24px;
  }

  .about-grid,
  .contact-grid,
  .projects-grid,
  .edu-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid,
  .certs-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }

  .project-card,
  .project-card:nth-child(even) {
    flex-direction: column;
    gap: 32px;
    padding: 30px 16px;
  }

  .project-img,
  .project-carousel,
  .project-content {
    width: 100%;
  }

  .project-name {
    font-size: 1.6rem;
  }

  .hero-name {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    justify-content: center;
  }
  .hero-name__line {
    justify-content: center;
  }

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

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 60px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .skills-grid,
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-card,
  .project-card:nth-child(even) {
    flex-direction: column;
    gap: 32px;
  }

  .project-img,
  .project-carousel,
  .project-content {
    width: 100%;
  }

  .hero-content-wrapper {
    gap: 40px;
  }

  .section {
    padding: 80px 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   WIDE SCREEN ENHANCEMENTS (1600px+)
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1600px) {
  .section {
    padding: 120px 80px;
  }

  .hero {
    padding: 120px 80px 80px;
  }

  .hero-content-wrapper {
    max-width: 1600px;
  }

  .skills-grid {
    gap: 32px;
  }

  .stats-grid {
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY — REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body::before {
    animation: none;
  }

  .marquee-track {
    animation: none;
  }
}
