:root {
  /* Blurple Accents */
  --blurple: #5865F2;
  --blurple-light: #7983F5;
  --blurple-dark: #3b47d4;
  --blurple-deep: #1e2a9c;
  --violet: #8B5CF6;
  --violet-light: #a78bfa;
  --pink: #ec4899;

  /* White Glassy System */
  --glass-bg: rgba(255,255,255,0.7);
  --glass-bg-hover: rgba(255,255,255,0.85);
  --glass-border: rgba(88,101,242,0.15);
  --glass-shadow: 0 8px 32px rgba(88,101,242,0.12);
  --glass-shadow-strong: 0 12px 40px rgba(88,101,242,0.18);

  /* Light Theme - Easy on eyes */
  --bg: #F7F8FC;
  --bg-secondary: #FFFFFF;
  --text: #1A1B2E;
  --text-secondary: #3D3F5C;
  --text-muted: rgba(26,27,46,0.6);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--blurple);
  border-radius: 50%; position: absolute; transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px; border: 1.5px solid rgba(88,101,242,0.4);
  border-radius: 50%; position: absolute; transform: translate(-50%,-50%);
  transition: all 0.18s ease;
}
body:hover .cursor-ring { opacity: 1; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.25;
}

/* ─── BACKGROUND ORBS ─── */
.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.08;
  animation: float-orb 20s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: var(--blurple); top: -200px; left: -100px; animation-duration: 22s; }
.orb-2 { width: 500px; height: 500px; background: var(--violet); top: 30%; right: -150px; animation-duration: 18s; animation-delay: -8s; }
.orb-3 { width: 400px; height: 400px; background: var(--blurple-light); bottom: -100px; left: 20%; animation-duration: 25s; animation-delay: -14s; }
.orb-4 { width: 300px; height: 300px; background: var(--pink); bottom: 20%; right: 10%; opacity: 0.06; animation-duration: 16s; animation-delay: -5s; }

@keyframes float-orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-60px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ─── GRID LINES ─── */
.grid-lines {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(88,101,242,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,101,242,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ─── LAYOUT ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; z-index: 1; }

/* ─── GLASS CARD ─── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.glass:hover {
  background: var(--glass-bg-hover);
  box-shadow: var(--glass-shadow-strong), inset 0 1px 0 rgba(255,255,255,1);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none;
}
.logo span { opacity: 0.6; }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--blurple);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--blurple); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav {
  padding: 0.55rem 1.4rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  color: white; text-decoration: none; font-size: 0.88rem; font-weight: 500;
  border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(88,101,242,0.3);
  transition: all 0.3s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(88,101,242,0.5); }

/* ─── HAMBURGER ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 0 4rem;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blurple-dark); margin-bottom: 1.5rem;
  padding: 0.4rem 1rem; border-radius: 50px;
  border: 1px solid rgba(88,101,242,0.25);
  background: rgba(88,101,242,0.08);
  animation: fade-up 0.8s ease both;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--blurple); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.8)} }

.hero-title {
  font-family: var(--font-display); font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.03em;
  animation: fade-up 0.8s ease 0.15s both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--blurple) 0%, var(--violet) 50%, #c084fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  margin-top: 1.5rem; font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 480px; animation: fade-up 0.8s ease 0.3s both;
}
.hero-ctas {
  margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fade-up 0.8s ease 0.45s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  color: white; text-decoration: none; font-weight: 500; font-size: 0.95rem;
  box-shadow: 0 0 30px rgba(88,101,242,0.3);
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(88,101,242,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  border: 1px solid var(--glass-border); background: var(--glass-bg);
  backdrop-filter: blur(12px); color: var(--text);
  text-decoration: none; font-weight: 500; font-size: 0.95rem;
  transition: all 0.3s; cursor: pointer;
}
.btn-ghost:hover { 
  border-color: var(--blurple); 
  background: rgba(88,101,242,0.08); 
  transform: translateY(-3px); 
}

/* stats row */
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  animation: fade-up 0.8s ease 0.6s both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }

/* hero visual */
.hero-visual {
  position: relative; animation: fade-in 1s ease 0.4s both;
}
.hero-card-main {
  padding: 2rem; position: relative;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.hero-card-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.78rem;
  background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.25);
  color: var(--blurple-dark); margin-bottom: 1rem;
}
.hero-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero-card-sub { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.hero-card-bar { height: 6px; border-radius: 3px; background: rgba(88,101,242,0.1); margin-bottom: 0.7rem; overflow: hidden; }
.hero-card-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blurple), var(--violet)); animation: bar-fill 2s ease 1s both; }
@keyframes bar-fill { from{width:0} }
.bar-a { width: 85%; }
.bar-b { width: 72%; }
.bar-c { width: 91%; }
.bar-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.3rem; }

.floating-chip {
  position: absolute; padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.78rem;
  animation: float-chip 4s ease-in-out infinite;
}
.chip-1 { top: -20px; right: 20px; animation-delay: -1s; }
.chip-2 { bottom: 20px; left: -30px; animation-delay: -2.5s; }
@keyframes float-chip { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-10px) rotate(2deg)} }

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blurple); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--blurple);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── SERVICES ─── */
#services { padding: 8rem 0; }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  padding: 2.2rem; transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(88,101,242,0.08), rgba(139,92,246,0.04));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(88,101,242,0.2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(88,101,242,0.15), rgba(139,92,246,0.15));
  border: 1px solid rgba(88,101,242,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.4rem;
}
.service-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.7rem; }
.service-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.service-tag {
  display: inline-block; margin-top: 1.2rem; padding: 0.3rem 0.8rem;
  border-radius: 50px; font-size: 0.72rem; letter-spacing: 0.05em;
  background: rgba(88,101,242,0.1); border: 1px solid rgba(88,101,242,0.2);
  color: var(--blurple-dark);
}

/* ─── PROJECTS ─── */
#projects { padding: 8rem 0; }
.projects-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap; }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.proj-card { padding: 0; overflow: hidden; position: relative; cursor: pointer; transition: all 0.4s; }
.proj-card:hover { transform: translateY(-6px); box-shadow: 0 24px 80px rgba(88,101,242,0.25); }
.proj-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: linear-gradient(135deg, var(--blurple-deep), rgba(139,92,246,0.6));
  position: relative; overflow: hidden;
}
.proj-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.proj-img-inner.gradient-a { background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.proj-img-inner.gradient-b { background: linear-gradient(135deg, #f1f3f5, #dee2e6); }
.proj-img-inner.gradient-c { background: linear-gradient(135deg, #e9ecef, #ced4da); }
.proj-img-inner.gradient-d { background: linear-gradient(135deg, #dee2e6, #adb5bd); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,27,46,0.9) 0%, transparent 60%);
  padding: 1.8rem; display: flex; flex-direction: column; justify-content: flex-end;
}
.proj-category { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blurple-light); margin-bottom: 0.5rem; }
.proj-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: white; }
.proj-arrow {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(88,101,242,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--blurple);
  opacity: 0; transform: scale(0.8); transition: all 0.3s;
}
.proj-card:hover .proj-arrow { opacity: 1; transform: scale(1); }
.proj-large { grid-column: span 7; }
.proj-small { grid-column: span 5; }
.proj-full { grid-column: span 12; }
.proj-third { grid-column: span 4; }
.proj-large .proj-img { aspect-ratio: 4/3; }

/* ─── ABOUT ─── */
#about { padding: 8rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-wrapper {
  aspect-ratio: 1; border-radius: 24px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--blurple-deep), rgba(139,92,246,0.6));
}
.about-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  height: 100%;
}
.about-quadrant {
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.about-quadrant:nth-child(1) { background: linear-gradient(135deg, rgba(88,101,242,0.4), rgba(88,101,242,0.1)); }
.about-quadrant:nth-child(2) { background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(236,72,153,0.1)); }
.about-quadrant:nth-child(3) { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(88,101,242,0.2)); }
.about-quadrant:nth-child(4) { background: linear-gradient(135deg, rgba(88,101,242,0.1), rgba(139,92,246,0.3)); }

.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  padding: 1.2rem 1.5rem; text-align: center;
}
.about-badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--blurple); }
.about-badge-text { font-size: 0.8rem; color: var(--text-muted); }

.about-content { }
.about-desc { color: var(--text-secondary); line-height: 1.8; margin-top: 1.2rem; font-size: 0.97rem; }
.values-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; border-radius: 14px;
  background: var(--bg-secondary); border: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.value-item:hover { background: rgba(88,101,242,0.06); border-color: rgba(88,101,242,0.25); }
.value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.value-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.value-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── SHOP ─── */
#shop { padding: 8rem 0; }
.shop-header { text-align: center; margin-bottom: 4rem; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-card { overflow: hidden; transition: all 0.4s; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 80px rgba(88,101,242,0.25); }
.product-img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.product-img.p-a { background: linear-gradient(135deg, rgba(88,101,242,0.2), rgba(139,92,246,0.3)); }
.product-img.p-b { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(236,72,153,0.2)); }
.product-img.p-c { background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(88,101,242,0.3)); }
.product-img.p-d { background: linear-gradient(135deg, rgba(88,101,242,0.3), rgba(6,182,212,0.15)); }
.product-img .product-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.7rem; font-weight: 500;
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  color: white;
}
.product-info { padding: 1.3rem; background: var(--bg-secondary); }
.product-cat { font-size: 0.72rem; color: var(--blurple); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.product-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.product-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--blurple); }
.btn-cart {
  padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.8rem;
  background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.25);
  color: var(--blurple-dark); cursor: pointer; transition: all 0.3s;
}
.btn-cart:hover { background: var(--blurple); color: white; box-shadow: 0 0 20px rgba(88,101,242,0.4); }

/* ─── TESTIMONIALS ─── */
#testimonials { padding: 8rem 0; }
.testimonials-track { display: flex; gap: 1.5rem; overflow: hidden; }
.testimonials-inner {
  display: flex; gap: 1.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.testimonials-inner:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.testi-card { padding: 2rem; border-radius: 20px; width: 360px; flex-shrink: 0; }
.testi-stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  color: white;
}
.testi-name { font-weight: 500; font-size: 0.88rem; }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }

/* ─── PROCESS ─── */
#process { padding: 8rem 0; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--glass-border); border-radius: 20px; overflow: hidden; }
.process-step {
  padding: 2.5rem 2rem; background: var(--bg-secondary);
  backdrop-filter: blur(20px); position: relative;
  transition: background 0.3s;
}
.process-step:hover { background: rgba(88,101,242,0.05); }
.step-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: rgba(88,101,242,0.15); line-height: 1; margin-bottom: 1rem;
}
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; }
.step-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── TEAM ─── */
#team { padding: 8rem 0; }
.team-header { text-align: center; margin-bottom: 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { text-align: center; padding: 2.5rem 1.5rem; transition: all 0.4s; }
.team-card:hover { transform: translateY(-8px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--blurple), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: white;
  border: 2px solid rgba(88,101,242,0.3);
  box-shadow: 0 0 30px rgba(88,101,242,0.25);
}
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.3rem; }
.team-role { font-size: 0.82rem; color: var(--blurple); margin-bottom: 0.8rem; }
.team-bio { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.team-socials { display: flex; gap: 0.7rem; justify-content: center; margin-top: 1rem; }
.team-social {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(88,101,242,0.1); border: 1px solid rgba(88,101,242,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  transition: all 0.3s; text-decoration: none; color: var(--blurple-dark);
}
.team-social:hover { background: var(--blurple); color: white; transform: translateY(-3px); }
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* ─── CTA BANNER ─── */
#cta { padding: 6rem 0; }
.cta-box {
  padding: 5rem 4rem; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(88,101,242,0.12), rgba(139,92,246,0.08));
  border: 1px solid rgba(88,101,242,0.25);
}
.cta-box::before {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(88,101,242,0.2), transparent);
  border-radius: 50%; top: -100px; left: 50%; transform: translateX(-50%);
  filter: blur(60px);
}
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; position: relative; }
.cta-sub { color: var(--text-secondary); font-size: 1rem; margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer { 
  padding: 4rem 0 2rem; 
  border-top: 1px solid var(--glass-border); 
  background: var(--bg-secondary);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; background: linear-gradient(135deg, var(--blurple), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blurple); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(88,101,242,0.1); flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-soc-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  text-decoration: none; transition: all 0.3s; color: var(--text-secondary);
}
.footer-soc-link:hover { background: rgba(88,101,242,0.15); border-color: rgba(88,101,242,0.4); transform: translateY(-3px); color: var(--blurple); }

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cursor { display: none; }
  body { cursor: auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-eyebrow { margin: 0 auto 1.5rem; }
  .hero-sub { margin: 1.5rem auto 0; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .proj-large, .proj-small, .proj-full, .proj-third { grid-column: span 12; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-links { 
    display: none; position: fixed; inset: 0; top: 0; 
    background: rgba(255,255,255,0.97); 
    backdrop-filter: blur(24px); 
    flex-direction: column; align-items: center; justify-content: center; 
    gap: 2.5rem; z-index: 99; 
      height: 100dvh;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 101; }
  .cta-box { padding: 3rem 2rem; }
  .projects-header { flex-direction: column; align-items: flex-start; }
  #services, #projects, #about, #shop, #testimonials, #process, #team { padding: 5rem 0; }

 /* covers dynamic viewport on iOS Safari */
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.2rem); }
  .section-title { font-size: clamp(1.75rem, 8vw, 2rem); }
  .btn-primary, .btn-ghost { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}