/* i Canan Technology - Production Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap');

:root {
  --brand-primary: #6366F1;
  --brand-accent: #06B6D4;
  --brand-surface: #F8FAFC;
  --brand-dark: #0F172A;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
}

/* Base resets & corporate defaults */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: white; color: var(--brand-dark); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Typography */
.font-display { font-family: 'Outfit', sans-serif; }
.gradient-text {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Corporate Cards & Containers */
.card-corporate {
  background: white;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.card-corporate:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.1);
}

.nav-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
}

/* Buttons */
.btn-shine {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.btn-shine:hover::after { left: 100%; top: 100%; }

/* Animations */
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}
.animate-drift { animation: drift 15s infinite ease-in-out; }
.animate-drift-slow { animation: drift 25s infinite ease-in-out; }

/* Marquee / Carousel */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }

/* Custom Cursor */
.custom-cursor {
  width: 20px; height: 20px;
  background: transparent;
  border: 2px solid rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}

.custom-cursor-dot {
  width: 4px; height: 4px;
  background: var(--brand-dark);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(to right, var(--brand-primary), var(--brand-accent));
  z-index: 10001;
  width: 0%;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

/* Kinetic Scene (Desktop) */
@media (max-width: 1023px) { .kinetic-scene { display: none; } }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Glow Orbs */
.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; z-index: 1; pointer-events: none;
}
