:root {
  --bg: #000000;
  --azure: #00E5FF;
  --purple: #7A00FF;
  --white: #FFFFFF;
  --azure-dim: rgba(0,229,255,0.15);
  --purple-dim: rgba(122,0,255,0.15);
  --azure-glow: 0 0 20px rgba(0,229,255,0.6), 0 0 60px rgba(0,229,255,0.2);
  --purple-glow: 0 0 20px rgba(122,0,255,0.6), 0 0 60px rgba(122,0,255,0.2);
  --mixed-glow: 0 0 30px rgba(0,229,255,0.4), 0 0 80px rgba(122,0,255,0.3);
  --font-display: 'Century Gothic', 'Arial Black', 'Gill Sans', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}



/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--azure);
  text-shadow: var(--azure-glow);
  text-transform: uppercase;
}
.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--azure);
  box-shadow: var(--azure-glow);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--azure); text-shadow: var(--azure-glow); }
.nav-links a:hover::after { width: 100%; }

/* ===================== HERO ===================== */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 10vw;
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--azure);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 1;
  animation: fadeSlideUp 1s ease 0.3s forwards;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  opacity: 1;
  animation: fadeSlideUp 1s ease 0.5s forwards;
}
.hero-name .line1 { display: block; color: var(--white); }
.hero-name .line2 {
  display: block;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,229,255,0.4));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-top: 24px;
  letter-spacing: 0.05em;
  opacity: 1;
  animation: fadeSlideUp 1s ease 0.8s forwards;
}
.hero-tagline .accent {
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  line-height: 1.8;
  max-width: 580px;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 1;
  animation: fadeSlideUp 1s ease 1s forwards;
}

.hero-cta {
  display: inline-block;
  margin-top: 44px;
  padding: 16px 44px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(90deg, var(--azure), var(--purple));
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  opacity: 1;
  animation: fadeSlideUp 1s ease 1.2s forwards;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--purple), var(--azure));
  opacity: 1;
  transition: opacity 0.4s;
}
.hero-cta:hover { 
  box-shadow: 0 0 40px rgba(0,229,255,0.5), 0 0 80px rgba(122,0,255,0.3);
}
.hero-cta:hover::before { opacity: 1; }
.hero-cta span { position: relative; z-index: 1; }

/* Scan lines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,229,255,0.012) 2px,
    rgba(0,229,255,0.012) 4px
  );
  pointer-events: none;
}

/* Gradient blob */
.hero-blob {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(ellipse at 50% 50%, 
    rgba(122,0,255,0.15) 0%, 
    rgba(0,229,255,0.08) 40%, 
    transparent 70%);
  animation: blobPulse 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes blobPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 80%);
  pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 1;
  animation: fadeIn 1s ease 2s forwards;
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1px solid rgba(0,229,255,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--azure);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: var(--azure-glow);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===================== SECTION BASE ===================== */
section {
  padding: 120px 10vw;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--azure);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-title .grad {
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label,
.visible .section-title {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== ABOUT ===================== */
#about {
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-bottom: 20px;
  transition: opacity 0.7s, transform 0.7s;
}
.about-text p strong {
  color: var(--white);
  font-weight: 700;
}
.about-text p:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.2s; }
.about-text p:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.35s; }
.about-text p:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.5s; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,229,255,0.15);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--purple));
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, transparent 60%);
  opacity: 1;
  transition: opacity 0.3s;
}
.stat-card:hover::after { opacity: 1; }
.stat-card:hover { border-color: rgba(0,229,255,0.4); box-shadow: var(--azure-glow); }

.stat-card:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stat-card:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stat-card:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stat-card:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.5s; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ===================== PORTFOLIO ===================== */
#portfolio {
  padding: 120px 0;
  overflow: hidden;
}
#portfolio .section-header {
  padding: 0 10vw;
  margin-bottom: 60px;
}

.portfolio-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.portfolio-track-wrapper::before,
.portfolio-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 15vw;
  z-index: 10;
  pointer-events: none;
}
.portfolio-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, transparent 100%);
}
.portfolio-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #000 0%, transparent 100%);
}

.portfolio-track {
  display: flex;
  gap: 50px;
  padding: 40px 15vw;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.portfolio-track::-webkit-scrollbar { display: none; }

/* Monitor mockup */
.project-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  perspective: 1000px;
  transition: opacity 0.6s, transform 0.6s;
}
.project-card { opacity: 1; transform: translateY(0); }

.monitor-wrap {
  transform: rotateY(0deg) rotateX(0deg);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  transform-style: preserve-3d;
}

.monitor {
  background: #0a0a0a;
  border: 2px solid rgba(0,229,255,0.2);
  border-radius: 12px 12px 4px 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.project-card:hover .monitor {
  border-color: var(--azure);
  box-shadow: var(--azure-glow), 0 20px 80px rgba(0,229,255,0.15), inset 0 0 30px rgba(0,229,255,0.05);
}

.monitor-bar {
  height: 28px;
  background: #111;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.url-bar {
  flex: 1;
  height: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 7px;
  margin-left: 10px;
}

.monitor-screen {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.screen-content {
  width: 100%;
  animation: screenScroll 8s ease-in-out infinite;
}
.project-card:hover .screen-content {
  animation-play-state: running;
}
@keyframes screenScroll {
  0%, 20% { transform: translateY(0); }
  80%, 100% { transform: translateY(-40%); }
}

/* Generated website previews */
.mock-site {
  width: 100%;
  padding: 0;
  background: #0d0d0d;
}
.mock-hero {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.mock-title {
  height: 14px;
  border-radius: 3px;
  width: 60%;
}
.mock-subtitle {
  height: 8px;
  border-radius: 2px;
  width: 40%;
  opacity: 0.6;
  background: rgba(255,255,255,0.2);
}
.mock-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-row {
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
}
.mock-row.short { width: 70%; }
.mock-row.med { width: 85%; }
.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 20px 16px;
}
.mock-card-item {
  height: 50px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}

.monitor-stand {
  width: 30%;
  height: 18px;
  background: #0d0d0d;
  border: 2px solid rgba(0,229,255,0.1);
  border-top: none;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
  transition: border-color 0.3s;
}
.project-card:hover .monitor-stand { border-color: rgba(0,229,255,0.3); }
.monitor-base {
  width: 55%;
  height: 6px;
  background: #111;
  border-radius: 3px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Glow border effect */
.monitor::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(122,0,255,0.1));
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: none;
}
.project-card:hover .monitor::after { opacity: 1; }

.card-info {
  padding: 20px 4px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}
.card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 10px;
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--azure);
  letter-spacing: 0.08em;
  border-radius: 2px;
  background: rgba(0,229,255,0.05);
}

/* ===================== SERVICES ===================== */
#services {
  background: linear-gradient(180deg, #000 0%, rgba(10,0,20,0.8) 50%, #000 100%);
}

.services-intro {
  margin-top: 24px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  line-height: 1.7;
  transition: opacity 0.6s 0.15s, transform 0.6s 0.15s;
}
.services-intro { opacity: 1; transform: none; }
.services-price-start {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(0,229,255,0.4));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: opacity 0.6s, transform 0.6s, border-color 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure), var(--purple), transparent);
  opacity: 0.6;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, rgba(122,0,255,0.05) 100%);
  opacity: 1;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(0,229,255,0.35);
  box-shadow: 0 0 40px rgba(0,229,255,0.08), inset 0 0 40px rgba(0,229,255,0.03);
  transform: translateY(-6px) !important;
}
.service-card:hover::after { opacity: 1; }

.service-card { opacity: 1; transform: translateY(0); }







.service-card.featured {
  border-color: rgba(0,229,255,0.3);
  background: rgba(0,229,255,0.04);
}
.service-card.featured::before {
  opacity: 1;
  box-shadow: 0 0 10px rgba(0,229,255,0.5);
}

.service-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 3px 10px;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  color: #000;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service-price .currency {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.service-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--azure);
  color: var(--azure);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s, background 0.3s;
}
.service-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--azure);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: -1;
}
.service-btn:hover { color: #000; }
.service-btn:hover::before { transform: scaleX(1); }

/* ===================== PROCESS ===================== */
#process {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-bottom: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  opacity: 0.4;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  position: relative;
}
.step:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.step:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.step:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
.step:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.4s; }
.step:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.5s; }

.step-icon {
  width: 72px; height: 72px;
  border: 2px solid rgba(0,229,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 20px;
}
.step-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--purple));
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s;
}
.step:hover .step-icon {
  border-color: var(--azure);
  box-shadow: var(--azure-glow);
}
.step:hover .step-icon::before { opacity: 0.3; }

.step-icon svg {
  width: 28px; height: 28px;
  stroke: var(--azure);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(0,229,255,0.5);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* ===================== CONTACT ===================== */
#contact {
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122,0,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.5);
  margin-top: 30px;
  line-height: 1.8;
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}
.contact-desc { opacity: 1; transform: none; }

.contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  margin: 40px 0;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.3));
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s, filter 0.3s;
}
.contact-email { opacity: 1; transform: none; }
.contact-email:hover { filter: drop-shadow(0 0 30px rgba(0,229,255,0.7)); }

.contact-btn {
  display: inline-block;
  padding: 18px 60px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  transition: opacity 0.6s 0.4s, transform 0.6s 0.4s, box-shadow 0.3s;
}
.contact-btn { opacity: 1; transform: none; }
.contact-btn:hover {
  box-shadow: 0 0 60px rgba(0,229,255,0.5), 0 0 120px rgba(122,0,255,0.3);
  transform: scale(1.03) !important;
}

/* ===================== FOOTER ===================== */
footer {
  padding: 40px 10vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--azure);
  text-shadow: var(--azure-glow);
}
.footer-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-shadow: none;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Glitch text effect */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--azure), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glitch::before {
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, 2px);
  opacity: 0.7;
}
.glitch::after {
  animation: glitch2 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(2px, -2px);
  opacity: 0.7;
}
@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(-2px, 2px); opacity: 0; }
  92% { transform: translate(-2px, 2px); opacity: 0.7; clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%); }
  94% { transform: translate(2px, -2px); clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
  96% { transform: translate(-2px, 2px); clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%); }
  98% { opacity: 0; }
}
@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(2px, -2px); opacity: 0; }
  93% { transform: translate(2px, -2px); opacity: 0.7; clip-path: polygon(0 55%, 100% 55%, 100% 75%, 0 75%); }
  95% { transform: translate(-2px, 2px); clip-path: polygon(0 65%, 100% 65%, 100% 85%, 0 85%); }
  97% { transform: translate(2px, -2px); clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%); }
  99% { opacity: 0; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  nav { padding: 16px 5vw; }
  .nav-links { gap: 24px; }
  section { padding: 80px 5vw; }
  #portfolio .section-header { padding: 0 5vw; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 14px 4vw; }
  .nav-links { display: none; }
  #hero { padding: 0 6vw; }
  section { padding: 70px 6vw; }
  #portfolio .section-header { padding: 0 6vw; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .timeline { flex-direction: column; gap: 40px; align-items: flex-start; padding-left: 40px; }
  .timeline::before { top: 0; bottom: 0; left: 20px; width: 1px; height: auto; right: auto; }
  .step { flex-direction: row; text-align: left; gap: 20px; width: 100%; }
  .step-icon { flex-shrink: 0; width: 56px; height: 56px; margin-bottom: 0; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}

.portfolio-track-wrapper{
 position:relative;
 overflow:hidden;
}

.portfolio-track{
 display:flex;
 gap:30px;
 overflow-x:auto;
 scroll-behavior:smooth;
}

.portfolio-nav{
 position:absolute;
 top:50%;
 transform:translateY(-50%);
 background:#000;
 color:white;
 border:none;
 font-size:30px;
 padding:10px 15px;
 cursor:pointer;
 z-index:10;
}

.prev{ left:10px }
.next{ right:10px }

.portfolio-track::after{
 content:"→";
 position:absolute;
 right:10px;
 top:50%;
 transform:translateY(-50%);
 font-size:24px;
 opacity:.5;
 animation:hint 2s infinite;
}

@keyframes hint{
 0%{transform:translate(0,-50%)}
 50%{transform:translate(10px,-50%)}
 100%{transform:translate(0,-50%)}
}