@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
:root {
  --primary-50: #f3e8ff;
  --primary-100: #e4ccff;
  --primary-200: #c896ff;
  --primary-300: #a855f7;
  --primary-400: #9333ea;
  --primary-500: #7c3aed;
  --primary-600: #6d28d9;
  --primary-700: #5b21b6;
  --primary-800: #4c1d95;
  --primary-900: #3b0764;
  --accent-pink: #ec4899;
  --accent-blue: #6366f1;
  --accent-cyan: #06b6d4;
  --accent-rose: #f43f5e;
  --dark-950: #0a0a0f;
  --dark-900: #0d0d14;
  --dark-800: #13131d;
  --dark-700: #1a1a28;
  --dark-600: #242436;
  --dark-500: #2e2e44;
  --dark-400: #3d3d5c;
  --dark-300: #6b6b8a;
  --dark-200: #9898b4;
  --dark-100: #c8c8dc;
  --text-primary: #f8f8ff;
  --text-secondary: #b8b8d4;
  --text-muted: #7878a0;
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  --gradient-hero: linear-gradient(135deg, #1a0533 0%, #0d0d14 30%, #150a28 60%, #0d0d14 100%);
  --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.04) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  --gradient-text: linear-gradient(135deg, #c896ff 0%, #ec4899 50%, #a855f7 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);
  --shadow-glow-pink: 0 0 20px rgba(236, 72, 153, 0.3);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --border-glow: 1px solid rgba(124, 58, 237, 0.3);
  --section-padding: 120px 0;
  --container-max: 1280px;
  --container-padding: 0 24px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--dark-950);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-300);
  margin-bottom: 16px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-400);
  box-shadow: 0 0 10px var(--primary-400);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-400);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-base);
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: var(--border-subtle);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-glow);
}
.nav-logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition-base);
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.1);
}
.nav-links a.active {
  color: var(--primary-300);
}
.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-primary) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
}
.nav-cta:hover::before {
  opacity: 1;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), 0 8px 32px rgba(124, 58, 237, 0.4);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 50px 0 10px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(2px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.4) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    var(--dark-950) 100%
  );
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-600);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-pink);
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 5s;
  opacity: 0.2;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  margin-top: auto;
  margin-bottom: auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-200);
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s infinite;
}
.hero-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 8px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
}
.hero-logo::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  z-index: -1;
  animation: rotate-border 4s linear infinite;
}
@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-title .wave-text {
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-flow 4s linear infinite;
}
@keyframes gradient-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 8px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow), 0 12px 40px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: var(--border-glass);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-3px);
}
.btn-icon {
  width: 20px;
  height: 20px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}
.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-400);
  border-radius: 2px;
  animation: scroll-bounce 1.5s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}
.stats-bar {
  position: relative;
  z-index: 2;
  width: 100%;
}
.stats-bar .container {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero .stats-bar {
  margin-top: 0;
}
.hero .stats-bar .container {
  padding: 10px 20px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.3) 50%, transparent 100%);
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.projects {
  padding: var(--section-padding);
  position: relative;
}
.projects-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: var(--border-glass);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}
.tab-btn:hover {
  color: var(--text-primary);
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.08);
}
.tab-btn.active {
  color: white;
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.projects-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.project-card {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  flex: 1 1 300px;
  max-width: 380px;
}
.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.project-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.project-card:hover .project-card-image img {
  transform: scale(1.08);
}
.project-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(0deg, var(--dark-800) 0%, transparent 100%);
}
.project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}
.project-status.in-progress {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.project-status.completed {
  background: rgba(124, 58, 237, 0.2);
  color: var(--primary-300);
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.project-card-body {
  padding: 24px;
}
.project-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.project-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.project-tag {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-300);
  border: 1px solid rgba(124, 58, 237, 0.15);
}
.project-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-300);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}
.project-card-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.project-card-btn svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-base);
}
.project-card-btn:hover svg {
  transform: translateX(3px);
}
.team {
  padding: var(--section-padding);
  position: relative;
}
.team-subsection {
  margin-bottom: 80px;
}
.team-subsection:last-child {
  margin-bottom: 0;
}
.team-subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.team-subsection-title .icon {
  font-size: 1.3rem;
}
.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.team-card:hover::before {
  opacity: 1;
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-base);
}
.team-card:hover .team-avatar {
  border-color: var(--primary-400);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.team-card:hover .team-avatar img {
  transform: scale(1.1);
}
.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.team-role {
  font-size: 0.85rem;
  color: var(--primary-300);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  color: var(--text-muted);
}
.team-social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.team-social-link svg {
  width: 16px;
  height: 16px;
}
.contact {
  padding: var(--section-padding);
  position: relative;
}
.contact-wrapper {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: var(--radius-2xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(124, 58, 237, 0.05) 60deg,
    transparent 120deg,
    rgba(236, 72, 153, 0.05) 180deg,
    transparent 240deg,
    rgba(99, 102, 241, 0.05) 300deg,
    transparent 360deg
  );
  animation: rotate-bg 20s linear infinite;
}
@keyframes rotate-bg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.contact-content {
  position: relative;
  z-index: 2;
}
.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
  animation: float-icon 3s ease-in-out infinite;
}
@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.contact-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}
.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
  position: relative;
  overflow: hidden;
}
.discord-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
}
.discord-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(88, 101, 242, 0.5);
}
.discord-btn:hover::before {
  opacity: 1;
}
.discord-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.footer {
  border-top: var(--border-subtle);
  padding: 48px 0 32px;
  position: relative;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}
.footer-logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-base);
}
.footer-links a:hover {
  color: var(--primary-300);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.3) 50%, transparent 100%);
  margin: 0;
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--dark-800);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-spring);
}
.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}
.modal-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-body {
  padding: 32px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  z-index: 3;
}
.modal-close:hover {
  background: rgba(124, 58, 237, 0.5);
  transform: rotate(90deg);
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.modal-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-900);
    border-left: var(--border-subtle);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: var(--transition-base);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 18px;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }
  .stat-item::after {
    display: none;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .team-card {
    max-width: 100%;
    width: 100%;
  }
  .contact-wrapper {
    padding: 40px 24px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .projects-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .hero-logo {
    width: 90px;
    height: 90px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  .contact-icon svg {
    width: 30px;
    height: 30px;
  }
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-900);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-500);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-600);
}
::selection {
  background: rgba(124, 58, 237, 0.3);
  color: var(--text-primary);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: grid;
  animation: fadeInUp 0.5s ease-out;
}
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.discord-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  margin-top: auto;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.25);
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}
.discord-copy-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
}
.discord-copy-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}
.discord-copy-btn:hover::before {
  opacity: 1;
}
.discord-copy-btn:active {
  transform: translateY(-1px) scale(0.98);
}
.discord-copy-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.discord-copy-btn .dc-btn-text {
  transition: all 0.3s ease;
}
.discord-copy-btn .dc-btn-copied {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  color: #a5f3a5;
  font-weight: 700;
}
.discord-copy-btn.copied {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}
.discord-copy-btn.copied .dc-btn-text {
  opacity: 0;
  transform: translateY(-10px);
}
.discord-copy-btn.copied .dc-btn-copied {
  opacity: 1;
  transform: translateY(0);
}
.copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 3000;
  padding: 14px 28px;
  background: rgba(34, 197, 94, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  color: #a5f3a5;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.copy-toast svg {
  width: 18px;
  height: 18px;
  fill: #22c55e;
}
.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--transition-base);
  width: 100%;
  justify-content: center;
  text-decoration: none;
}
.portfolio-btn:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--primary-400);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.25);
}