/**
 * GEE33 Website Styles
 * Your Edge, Engineered.
 */

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
:root {
  /* Colors - Premium dark palette */
  --void: #000000;
  --void-up: #050508;
  --void-surface: #0a0a0f;
  --cream: #ffffff;
  --cream-90: rgba(255, 255, 255, 0.9);
  --cream-60: rgba(255, 255, 255, 0.6);
  --cream-40: rgba(255, 255, 255, 0.4);
  --cream-20: rgba(255, 255, 255, 0.2);
  --cream-10: rgba(255, 255, 255, 0.1);
  --cream-05: rgba(255, 255, 255, 0.05);
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-dark: #4f46e5;
  --accent-glow: rgba(99, 102, 241, 0.5);
  --accent-subtle: rgba(99, 102, 241, 0.1);
  --violet: #a855f7;
  --cyan: #22d3ee;
  --emerald: #34d399;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #22d3ee 100%);
  --gradient-text: linear-gradient(90deg, #6366f1, #a855f7, #22d3ee);
  
  /* Typography - Sora + Inter for cleaner look */
  --font-display: 'Sora', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  --space-4xl: 12rem;
  
  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 100px;
}

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

html {
  font-size: 16px;
  background: var(--void);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--void);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: white;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================================
   CUSTOM CURSOR
   ============================================================================ */
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--cream-40);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: 
    width 0.4s var(--ease-out-expo),
    height 0.4s var(--ease-out-expo),
    border-color 0.3s ease,
    background 0.3s ease;
}

.cursor-ring.hovering {
  width: 80px;
  height: 80px;
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.cursor-ring.hovering + .cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

/* ============================================================================
   BACKGROUND EFFECTS - DYNAMIC MESH
   ============================================================================ */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(168, 85, 247, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(34, 211, 238, 0.08), transparent);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  will-change: transform;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  top: -300px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 60%);
  top: 30%;
  right: -150px;
  animation-delay: -7s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 60%);
  bottom: -100px;
  left: 30%;
  animation-delay: -14s;
}

@keyframes 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, 30px) scale(1.02); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.grid-lines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.02;
  background-image: 
    linear-gradient(var(--cream) 1px, transparent 1px),
    linear-gradient(90deg, var(--cream) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

/* ============================================================================
   LAYOUT
   ============================================================================ */
.main {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.nav.scrolled {
  padding: var(--space-sm) var(--space-xl);
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-10);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  transition: transform 0.3s var(--ease-out-expo);
}

.logo:hover .logo-mark {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-wordmark .accent {
  background: linear-gradient(90deg, var(--accent), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--cream-40);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-60);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--cream);
}

.nav-cta {
  padding: 0.75rem 1.75rem;
  background: var(--cream);
  color: var(--void);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 10px 25px -10px var(--accent-glow);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ============================================================================
   HERO SECTION - DYNAMIC & IMMERSIVE
   ============================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  background: 
    radial-gradient(ellipse 40% 30% at 50% 40%, rgba(99, 102, 241, 0.12), transparent),
    radial-gradient(ellipse 30% 25% at 30% 60%, rgba(168, 85, 247, 0.08), transparent),
    radial-gradient(ellipse 35% 20% at 70% 50%, rgba(34, 211, 238, 0.06), transparent);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  padding: 0.5rem 1.25rem 0.5rem 0.75rem;
  background: var(--cream-05);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-full);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-label-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-glow);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 25px var(--accent-glow), 0 0 50px var(--accent-glow);
  }
}

.hero-label-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cream-60);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .word {
  display: inline-block;
  transform: translateY(120%);
  animation: slideUp 1s var(--ease-out-expo) forwards;
}

.hero-headline .line:nth-child(2) .word {
  animation-delay: 0.15s;
}

.hero-headline .line:nth-child(3) .word {
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--cream-60);
  max-width: 650px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero CTA Buttons */
.hero-ctas .btn-primary {
  background: var(--cream);
  color: var(--void);
  font-weight: 600;
  border: none;
}

.hero-ctas .btn-primary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px -10px var(--accent-glow);
}

/* Scroll Indicator */
.scroll-cue {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.scroll-line {
  width: 1px;
  height: 100px;
  background: var(--cream-20);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  50% { top: 100%; }
  100% { top: -50%; }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--cream-40);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

/* ============================================================================
   BUTTONS - PREMIUM STYLING
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary {
  background: var(--cream);
  color: var(--void);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 10px 30px -10px rgba(255, 255, 255, 0.3),
    0 20px 50px -20px var(--accent-glow);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Gradient border button */
.btn-gradient {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2rem;
  position: relative;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--void), var(--void)), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn-gradient:hover {
  background-image: linear-gradient(var(--accent-subtle), var(--accent-subtle)), var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-60);
  padding: 1rem 0;
}

.btn-ghost:hover {
  color: var(--cream);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-20);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

/* ============================================================================
   SECTION HEADERS
   ============================================================================ */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: var(--space-2xl);
}

.section-title .accent {
  display: inline;
}

/* ============================================================================
   REVEAL ANIMATION
   ============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s var(--ease-out-expo);
}

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

/* ============================================================================
   WHY SECTION (DIFFERENTIATORS)
   ============================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.why-card {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--void-surface) 0%, var(--void) 100%);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.why-card:hover {
  border-color: var(--cream-20);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: var(--cream-10);
  transform: translateY(-8px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.why-desc {
  font-size: 1rem;
  color: var(--cream-60);
  line-height: 1.75;
}

/* ============================================================================
   RESULTS/STATS SECTION
   ============================================================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cream-10);
  border-bottom: 1px solid var(--cream-10);
}

.result {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  border-right: 1px solid var(--cream-10);
}

.result:last-child {
  border-right: none;
}

.result-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-60) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-label {
  font-size: 0.9375rem;
  color: var(--cream-40);
  line-height: 1.5;
}

/* ============================================================================
   WORK/CASE STUDIES SECTION
   ============================================================================ */
.work-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--cream-05);
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  background: var(--void);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.work-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--void-surface);
  transition: width 0.5s var(--ease-out-expo);
  z-index: 0;
}

.work-item:hover::before {
  width: 100%;
}

.work-item > * {
  position: relative;
  z-index: 1;
}

.work-client {
  font-size: 0.875rem;
  color: var(--cream-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-outcome {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  transition: transform 0.4s var(--ease-out-expo);
}

.work-item:hover .work-outcome {
  transform: translateX(1rem);
}

.work-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.work-tag {
  font-size: 0.8125rem;
  color: var(--cream-40);
  padding: 0.5rem 1rem;
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-full);
}

.work-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--cream-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
}

.work-item:hover .work-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

.work-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--cream-60);
}

.work-item:hover .work-arrow svg {
  color: white;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--void-surface) 0%, var(--void) 100%);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.4s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--cream-20);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  height: 100%;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-size: 1rem;
  color: var(--cream-60);
  line-height: 1.75;
}

/* ============================================================================
   PROCESS SECTION
   ============================================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -1rem;
  width: calc(100% - 48px);
  height: 1px;
  background: var(--cream-10);
}

.process-step:last-child::after {
  display: none;
}

.process-num {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.9375rem;
  color: var(--cream-60);
  line-height: 1.7;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1;
}

.about-circle {
  position: absolute;
  inset: 8%;
  border: 1px solid var(--cream-10);
  border-radius: 50%;
  animation: spin 25s linear infinite;
}

.about-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px var(--accent-glow);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.about-center {
  position: absolute;
  inset: 28%;
  background: var(--void-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-05);
}

.about-center-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cream-40);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 2.2;
}

.about-content p {
  font-size: 1.1875rem;
  color: var(--cream-60);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-content p strong {
  color: var(--cream);
  font-weight: 600;
}

/* ============================================================================
   CONTACT SECTION - PREMIUM
   ============================================================================ */
.contact {
  background: linear-gradient(180deg, var(--void-up) 0%, var(--void) 100%);
  border-top: 1px solid var(--cream-10);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, var(--accent-subtle) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 1.125rem;
  color: var(--cream-60);
  margin-top: var(--space-md);
  line-height: 1.8;
}

/* ============================================================================
   FORMS
   ============================================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input {
  background: var(--void);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-sm);
  padding: 1.125rem 1.375rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--cream);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-input::placeholder {
  color: var(--cream-20);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.75rem;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--cream-05);
}

.footer-copy {
  font-size: 0.9375rem;
  color: var(--cream-40);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--cream-40);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--cream);
}

/* ============================================================================
   RESPONSIVE STYLES
   ============================================================================ */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .result {
    border-bottom: 1px solid var(--cream-10);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .about-visual {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 900px) {
  :root {
    --space-xl: 1.5rem;
    --space-4xl: 5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
  
  .hero-sub {
    font-size: 1.125rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .work-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
  }
  
  .work-outcome {
    font-size: 1.25rem;
  }
  
  .work-meta {
    justify-content: flex-start;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .result {
    border-right: none;
  }
  
  .footer {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .cursor-ring,
  .cursor-dot {
    display: none;
  }
  
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-ghost {
    width: auto;
  }
}

/* ============================================================================
   HERO BADGES
   ============================================================================ */
.hero-badges {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--cream-60);
  padding: 0.5rem 1rem;
  background: var(--cream-05);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  border-color: var(--accent);
  color: var(--cream);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ============================================================================
   SECTION DESCRIPTION
   ============================================================================ */
.section-desc {
  font-size: 1.125rem;
  color: var(--cream-60);
  max-width: 600px;
  line-height: 1.7;
  margin-top: -1rem;
}

/* ============================================================================
   PRODUCTS SECTION
   ============================================================================ */
.products-section {
  background: linear-gradient(180deg, var(--void-up) 0%, var(--void) 100%);
  border-top: 1px solid var(--cream-10);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.product-card {
  background: linear-gradient(135deg, var(--void-surface) 0%, var(--void) 100%);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover {
  border-color: var(--cream-20);
  transform: translateY(-6px);
  box-shadow: 
    0 20px 40px -15px rgba(0, 0, 0, 0.4),
    0 0 60px -30px var(--accent-glow);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.product-content {
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-tagline {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--cream-60);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-tag {
  font-size: 0.75rem;
  color: var(--cream-40);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.product-card:hover .product-tag {
  border-color: var(--cream-20);
}

/* ============================================================================
   DIRECTORS SECTION - PREMIUM CARDS
   ============================================================================ */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.director-card {
  background: linear-gradient(180deg, var(--void-surface) 0%, var(--void) 100%);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.director-card:hover {
  border-color: var(--cream-20);
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px -20px rgba(0, 0, 0, 0.5),
    0 0 60px -30px var(--accent-glow);
}

.director-card:hover::before {
  opacity: 1;
}

.director-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cream-10);
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.director-card:hover .director-avatar {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.director-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.15);
  filter: grayscale(20%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.director-card:hover .director-avatar img {
  transform: scale(1.2);
}

/* Individual photo adjustments */
.director-card:nth-child(2) .director-avatar img {
  object-position: center 25%;
  transform: scale(1.1);
}

.director-card:nth-child(2):hover .director-avatar img {
  transform: scale(1.15);
}

.director-card:hover .director-avatar img {
  filter: grayscale(0%);
}

.director-avatar svg {
  width: 100%;
  height: 100%;
}

.director-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.director-role {
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.director-bio {
  font-size: 0.9375rem;
  color: var(--cream-60);
  line-height: 1.75;
}

/* ============================================================================
   CONTACT METHODS
   ============================================================================ */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: var(--space-xl) 0;
}

.contact-method-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--cream-60);
  padding: 1rem 1.5rem;
  background: var(--void);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact-method-link:hover {
  color: var(--cream);
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.contact-method-link svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--cream-40);
}

.contact-location svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--cream-40);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================================
   WHY GRID 4 COLUMNS
   ============================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

/* ============================================================================
   SERVICES GRID 4 COLUMNS
   ============================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ============================================================================
   FOOTER ENHANCED
   ============================================================================ */
.footer {
  padding: var(--space-2xl) var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--cream-10);
  background: linear-gradient(180deg, var(--void) 0%, var(--void-up) 100%);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--cream-40);
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--cream-05);
}

.footer-location {
  font-size: 0.875rem;
  color: var(--cream-40);
}

/* ============================================================================
   ENHANCED ANIMATIONS
   ============================================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawPath {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.logo-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 2s var(--ease-out-expo) forwards;
}

.logo-bar {
  opacity: 0;
  animation: fadeInUp 0.5s var(--ease-out-expo) forwards;
}

.logo-bar:nth-child(3) {
  animation-delay: 0.3s;
}

.logo-bar:nth-child(4) {
  animation-delay: 0.5s;
}

/* Hero word stagger animation */
.hero-headline .word[data-delay="0"] {
  animation-delay: 0s;
}

.hero-headline .word[data-delay="1"] {
  animation-delay: 0.15s;
}

.hero-headline .word[data-delay="2"] {
  animation-delay: 0.3s;
}

/* Vibrant gradient accent with glow */
.accent {
  background: linear-gradient(90deg, var(--accent) 0%, var(--violet) 50%, var(--cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  position: relative;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Static accent for smaller text */
.accent-static {
  color: var(--accent);
}

/* Glowing accent */
.accent-glow {
  background: linear-gradient(90deg, var(--accent), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px var(--accent-glow));
}

/* Improved reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

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

[data-reveal-child] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
}

.reveal.visible [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   RESPONSIVE UPDATES
   ============================================================================ */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .directors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: var(--space-3xl) var(--space-md);
    text-align: center;
  }
  
  .hero-headline {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
  
  .hero-sub {
    font-size: 1rem;
    padding: 0 var(--space-sm);
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .directors-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .product-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-main {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .hero-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .contact-methods {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .contact-headline {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .section {
    padding: var(--space-3xl) var(--space-md);
  }
  
  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  
  .nav {
    padding: var(--space-sm) var(--space-md);
  }
  
  .logo-tagline {
    display: none;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.875rem, 7vw, 2.5rem);
  }
  
  .hero-label {
    padding: 0.375rem 1rem 0.375rem 0.5rem;
  }
  
  .hero-label-text {
    font-size: 0.625rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .director-avatar {
    width: 120px;
    height: 120px;
  }
  
  .product-icon {
    width: 56px;
    height: 56px;
  }
  
  .product-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Mobile navigation */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--void);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    transition: opacity 0.4s var(--ease-out-expo);
    z-index: 99;
    opacity: 0;
  }
  
  .nav-links.active {
    display: flex;
    opacity: 1;
  }
  
  .nav-link {
    font-size: 1.5rem;
  }
  
  .nav-cta {
    margin-top: var(--space-md);
  }
  
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
