/* ==========================================================================
   INSTANT GROWTH HOMEPAGE — LIGHTWEIGHT HIGH-PERFORMANCE STYLESHEET
   ========================================================================== */

:root {
  --bg-void: #07070a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(196, 255, 61, 0.35);
  
  /* Brand Color Palette — Semantic Roles */
  --accent-lime: #c4ff3d;    /* PRIMARY actions: CTAs, active states, key stats */
  --accent-teal: #38e8c6;    /* GROWTH / positive metrics: revenue, traffic, success */
  --accent-coral: #ff5e3a;   /* URGENCY / warnings: deadlines, limited offers */
  --accent-magenta: #ff3d8b; /* CREATIVE / design: branding, visual, content services */
  
  --text-white: #ffffff;
  --text-muted: #9da0ae;
  --text-dim: #6d6f7d;
  
  /* Font Stack */
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-void);
  color: var(--text-white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

html.portal-unlocked,
body.portal-unlocked,
html:has(body.portal-unlocked),
html:root body.portal-unlocked {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
  min-height: 100vh !important;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-void);
}

/* Background Grids & Ambient Aura Glows */
#bg-liquid-grid {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.bg-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  display: none; /* Liquid grid canvas handles active rendering with fallback */
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

.glow-top-left {
  top: 5%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(196, 255, 61, 0.12) 0%, transparent 70%);
}

.glow-top-right {
  top: 10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 61, 139, 0.08) 0%, rgba(56, 232, 198, 0.06) 50%, transparent 75%);
}

.glow-bottom-center {
  bottom: 10%;
  left: 35%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 255, 61, 0.06) 0%, transparent 70%);
}



/* ==========================================================================
   INTERACTIVE SMOOTH MOUSE CURSOR RING
   ========================================================================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--accent-lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.15s ease-out;
  box-shadow: 0 0 10px rgba(196, 255, 61, 0.9);
  opacity: 0;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(196, 255, 61, 0.75);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              background-color 0.25s ease,
              opacity 0.25s ease,
              box-shadow 0.25s ease;
  box-shadow: 0 0 12px rgba(196, 255, 61, 0.2);
  opacity: 0;
}

/* Hover over clickable / interactive elements */
.cursor-ring.hovered {
  width: 54px;
  height: 54px;
  border-color: rgba(196, 255, 61, 0.95);
  background: rgba(196, 255, 61, 0.08);
  box-shadow: 0 0 25px rgba(196, 255, 61, 0.35);
}

.cursor-dot.hovered {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* Click / Active Tap */
.cursor-ring.clicking {
  transform: translate(-50%, -50%) scale(0.85);
  border-color: #ffffff;
  background: rgba(196, 255, 61, 0.22);
}

/* Scroll Progress Line */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-teal));
  z-index: 100000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ==========================================================================
   SITE NAVBAR
   ========================================================================== */
/* ==========================================================================
   SITE NAVBAR (FROSTED GLASSMORPHISM)
   ========================================================================== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 32px;
  background: rgba(7, 7, 10, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-115%);
  opacity: 0;
  pointer-events: none;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.1s ease, padding 0.3s ease, background 0.3s ease;
}

.homepage-entering .site-navbar,
.subpage-body .site-navbar,
body.portal-unlocked .site-navbar {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.site-navbar.scrolled {
  background: rgba(7, 7, 10, 0.85);
  padding: 10px 32px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.9), inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.nav-logo:hover .logo-img {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.4);
}

.logo-text {
  font-family: 'Gotham Ultra', 'Montserrat', 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.0rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  line-height: 1.1;
  /* No gradient — clean white is premium */
}

.logo-wordmark {
  display: block;
  font-family: 'Gotham Ultra', 'Montserrat', 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.0rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.logo-sub-tag {
  font-family: 'Gotham Ultra', 'Montserrat', 'Outfit', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c4ff3d;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.nav-pill-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.12), 0 15px 35px -5px rgba(0, 0, 0, 0.5);
}

.nav-pill-link {
  padding: 6px 2px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.nav-pill-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #c4ff3d;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(196, 255, 61, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-pill-link:hover {
  color: #c4ff3d;
  background: transparent !important;
}

.nav-pill-link:hover::after {
  transform: scaleX(1);
}

.nav-pill-link.active {
  color: #c4ff3d;
  font-weight: 700;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.nav-pill-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-lime-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 9999px;
  background: var(--accent-lime);
  color: #050508;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(196, 255, 61, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-lime-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(196, 255, 61, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.cta-lime-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.theme-toggle-btn:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.moon-icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  z-index: 1;
}

.hero-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

/* Hero Left Column: Inception-Style Monumental Zoom-Out Rise */
.hero-left {
  transform: translateY(120px) scale(0.92);
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.3s ease, filter 1.3s ease;
}

.homepage-entering .hero-left {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
  filter: blur(0px) !important;
}

/* Agency Badge */
.agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.pulse-dot-wrapper {
  position: relative;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent-lime);
  opacity: 0.6;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-core {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-lime);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.badge-sep {
  color: rgba(255, 255, 255, 0.15);
}

/* Hero Headline - Gotham Ultra / Montserrat */
.hero-headline {
  font-family: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

/* Word Line Wrappers & Spacing */
.headline-line-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.32em;
  margin-bottom: 4px;
}

/* BlurText Word Animation (Dramatic 1.25s Cinematic Reveal) */
.blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(24px);
  transform: translateY(45px) scale(0.96);
  animation: blurWordReveal 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity, filter;
}

@keyframes blurWordReveal {
  0% {
    opacity: 0;
    filter: blur(24px);
    transform: translateY(45px) scale(0.96);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) scale(1);
  }
}

/* Animated Flowing Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #c4ff3d 0%, #38e8c6 50%, #ff5e3a 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientShift 5s ease infinite alternate;
}

@keyframes textGradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Hero Staggered Elements under .homepage-entering */
.agency-badge {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.homepage-entering .agency-badge {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.55s, transform 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.homepage-entering .hero-subtext {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.75s, transform 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.75s;
}

.homepage-entering .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
}

.capability-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.95s, transform 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.95s;
}

.homepage-entering .capability-chips-row {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-triggered Section Headings */
.reveal-text {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.revealed {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 16px;
  background: var(--accent-lime);
  color: #050508;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(196, 255, 61, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Magic UI Shimmer Sweep Animation */
.hero-primary-btn::after, .nav-cta-btn::after, .form-submit-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.hero-primary-btn:hover::after, .nav-cta-btn:hover::after, .form-submit-btn:hover::after {
  opacity: 1;
  animation: shimmerSweep 1.1s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0% { left: -70%; }
  100% { left: 160%; }
}

.hero-primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(196, 255, 61, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.hero-primary-btn:active {
  transform: translateY(0) scale(0.97);
}

.hero-primary-btn .btn-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-primary-btn:hover .btn-arrow {
  transform: translate(3px, -3px);
}

.sparkle-icon {
  width: 16px;
  height: 16px;
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text-white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 25px -5px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.hero-secondary-btn:active {
  transform: translateY(0) scale(0.98);
}

.play-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-lime);
  transition: transform 0.22s ease;
}

.hero-secondary-btn:hover .play-icon {
  transform: translateX(3px);
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.play-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-lime);
}

/* Capability Chips */
.capability-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cap-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.25s ease;
  cursor: default;
}

.cap-chip:hover {
  border-color: var(--border-glass-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.dot-lime { background: var(--accent-lime); box-shadow: 0 0 6px var(--accent-lime); }
.dot-coral { background: var(--accent-coral); box-shadow: 0 0 6px var(--accent-coral); }
.dot-magenta { background: var(--accent-magenta); box-shadow: 0 0 6px var(--accent-magenta); }
.dot-teal { background: var(--accent-teal); box-shadow: 0 0 6px var(--accent-teal); }

/* ==========================================================================
   3D EXPLODED PHONE DASHBOARD MOCKUP
   ========================================================================== */
/* ==========================================================================
   3D EXPLODED PHONE DASHBOARD MOCKUP
   ========================================================================== */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  transform: translateY(140px) scale(0.93);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 1.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.3s ease;
}

.homepage-entering .hero-right {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
}

.phone-ambient-aura {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 255, 61, 0.18) 0%, rgba(56, 232, 198, 0.12) 40%, rgba(255, 61, 139, 0.08) 65%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: auraPulse 6s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

.exploded-phone {
  position: relative;
  z-index: 1;
  transform: none !important;
}

.phone-frame {
  width: 292px;
  height: 575px;
  border-radius: 46px;
  padding: 8px;
  background: linear-gradient(145deg, #22232e, #0c0d12, #181922);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  box-shadow: 
    0 35px 90px -20px rgba(0, 0, 0, 0.95), 
    0 0 45px rgba(196, 255, 61, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 18px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.notch-speaker {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: #1a1a24;
}

.notch-lens {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b0b14;
  border: 1px solid #1f1f2e;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: #090a0d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px 10px;
  box-sizing: border-box;
  position: relative;
}

/* Glass Card Helper */
.glass-card {
  background: #121318;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.glass-card:hover {
  border-color: rgba(196, 255, 61, 0.25);
}

/* Status Bar */
.screen-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 6px 0;
}

.time-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-main);
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-svg {
  width: 11px;
  height: 11px;
  color: #ffffff;
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
}

.header-text-group {
  display: flex;
  flex-direction: column;
}

.user-greeting {
  font-size: 0.72rem;
  color: #8a8d98;
  font-weight: 500;
  font-family: var(--font-main);
}

.user-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
  font-family: var(--font-main);
}

.bell-pill {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #152512;
  color: #c4ff3d;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 255, 61, 0.25);
  cursor: pointer;
  transition: transform 0.2s;
}

.bell-pill:hover {
  transform: scale(1.05);
}

.bell-pill svg {
  width: 16px;
  height: 16px;
}

.bell-alert-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #ff5e3a;
  border: 1.5px solid #090a0d;
}

/* Screen Metrics Grid (2 Cards per Row) */
.screen-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.phone-stat-card {
  padding: 12px 14px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.stat-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.icon-lime { background: rgba(196, 255, 61, 0.14); color: #c4ff3d; }
.icon-coral { background: rgba(255, 94, 58, 0.14); color: #ff5e3a; }
.icon-teal { background: rgba(45, 212, 191, 0.14); color: #2dd4bf; }
.icon-pink { background: rgba(244, 63, 94, 0.14); color: #f43f5e; }

.stat-badge {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-main);
}

.badge-lime { color: #c4ff3d; }
.badge-coral { color: #ff5e3a; }

.stat-indicator-arrow {
  color: #2dd4bf;
  font-size: 0.65rem;
}

.live-tag {
  color: #f43f5e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: lowercase;
}

.stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-top: 6px;
  font-family: var(--font-main);
}

.stat-name {
  font-size: 0.7rem;
  color: #8a8d98;
  font-weight: 500;
  margin-top: 2px;
  font-family: var(--font-main);
}

/* Row 2: Performance Card */
.phone-performance-card {
  padding: 14px 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.perf-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.perf-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.perf-icon {
  width: 15px;
  height: 15px;
  color: #c4ff3d;
}

.perf-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f3f4f6;
  font-family: var(--font-main);
}

.perf-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(196, 255, 61, 0.14);
  color: #c4ff3d;
}

.perf-bars-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 85px;
  margin: 14px 0 10px;
  gap: 5px;
}

.perf-bar {
  flex: 1;
  border-radius: 6px;
  min-height: 8px;
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-olive { background: #84cc16; }
.bar-terracotta { background: #d97706; }
.bar-magenta-dim { background: #db2777; }
.bar-lime { background: #c4ff3d; box-shadow: 0 0 8px rgba(196, 255, 61, 0.35); }
.bar-pink { background: #ec4899; }
.bar-orange { background: #f97316; }
.bar-rose { background: #f43f5e; }

.perf-footer {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sess-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #c4ff3d;
  font-family: var(--font-main);
}

.sess-label {
  font-size: 0.78rem;
  color: #8a8d98;
  font-weight: 500;
  font-family: var(--font-main);
}

/* Bottom Dock & Home Indicator */
.screen-dock-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}

.screen-bottom-dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  position: relative;
}

.dock-item {
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.dock-item.active, .dock-item:hover {
  color: #c4ff3d;
}

.dock-item svg {
  width: 19px;
  height: 19px;
}

.dock-center-action {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c4ff3d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(196, 255, 61, 0.55);
  cursor: pointer;
  transform: translateY(-4px);
  transition: transform 0.2s, box-shadow 0.2s;
}

.dock-center-action:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 24px rgba(196, 255, 61, 0.75);
}

.phone-home-indicator {
  width: 90px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  margin: 2px auto 0;
}



/* ==========================================================================
   INFINITE MARQUEE STRIP
   ========================================================================== */
.marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  white-space: nowrap;
}

/* Logo strip marquee */
.marquee-logos {
  gap: 56px;
  padding-right: 56px;
}

.marquee-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  transition: opacity 0.25s ease;
  cursor: default;
}

.marquee-logo-item:hover {
  opacity: 1;
}

.m-logo-svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.m-logo-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.sparkle-gold {
  color: #ffd700;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}


/* ==========================================================================
   SPOTLIGHT BENTO CARD INTERACTION (REACT BITS / MAGIC UI)
   ========================================================================== */
.spotlight-card {
  position: relative;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(196, 255, 61, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* ==========================================================================
   CONTENT SECTIONS COMMON STYLES
   ========================================================================== */
.content-section {
  padding: 100px 24px;
  position: relative;
  z-index: 10;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--accent-lime);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT GRID & STATS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  padding: 36px 32px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-founder {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(196, 255, 61, 0.03) 100%);
  border-color: rgba(196, 255, 61, 0.2);
}

.card-founder:hover {
  border-color: rgba(196, 255, 61, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(196, 255, 61, 0.12);
}

.founder-mini-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.founder-mini-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-lime);
  box-shadow: 0 0 16px rgba(196, 255, 61, 0.45);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-founder:hover .founder-mini-avatar {
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(196, 255, 61, 0.7);
}

.founder-mini-meta {
  display: flex;
  flex-direction: column;
}

.founder-mini-name {
  font-family: 'Gotham Ultra', 'Outfit', var(--font-main), sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.founder-mini-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}

.card-icon-aura {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Stats Strip Section */
.stats-strip-section {
  padding: 60px 24px 40px;
  position: relative;
  z-index: 10;
}

/* Stats Counter Row */
.stats-counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-family: var(--font-main);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-lime);
}

.stat-number span {
  font-size: 1.8rem;
  color: var(--text-white);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   SERVICES CARDS GRID
   ========================================================================== */
.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  padding: 36px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dim);
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.service-card:hover .service-icon-box {
  transform: scale(1.1);
}

.box-lime { background: rgba(196, 255, 61, 0.12); color: var(--accent-lime); border: 1px solid rgba(196, 255, 61, 0.25); }
.box-coral { background: rgba(255, 94, 58, 0.12); color: var(--accent-coral); border: 1px solid rgba(255, 94, 58, 0.25); }
.box-magenta { background: rgba(255, 61, 139, 0.12); color: var(--accent-magenta); border: 1px solid rgba(255, 61, 139, 0.25); }
.box-teal { background: rgba(56, 232, 198, 0.12); color: var(--accent-teal); border: 1px solid rgba(56, 232, 198, 0.25); }

.service-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-features-list li {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-mark {
  color: var(--accent-lime);
  font-weight: 800;
}

.service-link {
  margin-top: auto;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-lime);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
}

/* ==========================================================================
   PROCESS GRID
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step-card {
  padding: 28px 22px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.process-step-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}

.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-lime);
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   WORK CARDS GRID
   ========================================================================== */
.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .work-cards-grid {
    grid-template-columns: 1fr;
  }
}

.work-card {
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(196, 255, 61, 0.12);
}

.work-preview {
  height: 240px;
  position: relative;
  overflow: hidden;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  background: #090a0f;
}

.work-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-img {
  transform: scale(1.06);
}

.work-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 10, 0.85) 100%);
  pointer-events: none;
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(4, 4, 7, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 255, 61, 0.3);
  color: #c4ff3d;
  position: relative;
  z-index: 2;
}

.work-content {
  padding: 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.work-card:hover .work-title {
  color: #c4ff3d;
}

.work-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.work-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-metrics-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-lime);
  background: rgba(196, 255, 61, 0.1);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(196, 255, 61, 0.2);
}

.work-live-link {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.work-live-link:hover {
  background: var(--accent-lime);
  color: #050508;
  border-color: var(--accent-lime);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(196, 255, 61, 0.35);
}

/* ==========================================================================
   FAQ ACCORDION (ZERO-JITTER CSS GRID TRANSITIONS)
   ========================================================================== */
.faq-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: var(--border-glass-hover);
}

.faq-item.active {
  border-color: rgba(196, 255, 61, 0.35);
  box-shadow: 0 0 25px rgba(196, 255, 61, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent-lime);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--accent-lime);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Zero-Jitter CSS Grid Animation */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  min-height: 0;
  padding: 0 26px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer p {
  padding: 0 26px 22px;
}

/* ==========================================================================
   REACT BITS: BLUR TEXT & WORD REVEAL UTILITIES
   ========================================================================== */
.blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(16px);
  animation: blurWordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes blurWordReveal {
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-card-box {
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-headline {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.contact-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(196, 255, 61, 0.08);
  border: 1px solid rgba(196, 255, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lime);
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.info-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-val, .info-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-top: 2px;
  display: block;
}

.info-link:hover {
  color: var(--accent-lime);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-select option {
  background: #0f0f17;
  color: #fff;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-lime);
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  background: var(--accent-lime);
  color: #000;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(196, 255, 61, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 80px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #040407;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(196, 255, 61, 0.4);
}

.footer-brand-name {
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 260px;
}

.col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a, .footer-links-col span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--accent-lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.back-to-top-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.back-to-top-btn:hover {
  color: var(--accent-lime);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group, .capability-chips-row {
    justify-content: center;
  }
  .about-grid, .services-cards-grid, .contact-card-box {
    grid-template-columns: 1fr;
  }
  .stats-counter-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid, .work-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .nav-pill-menu {
    display: none;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & BUTTON ERGONOMICS (Strictly <= 768px)
   ========================================================================== */
.mobile-hamburger-btn {
  display: none;
}

.mobile-nav-drawer {
  display: none;
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .cursor-dot, .cursor-ring, #cursor, #cursor-glow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 768px) {
  /* 0. Universal Layout Safety */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  .section-container,
  .hero-container,
  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* 1. Mobile Navbar Layout */
  .site-navbar {
    top: 8px !important;
    padding: 0 10px !important;
  }
  
  .nav-container {
    padding: 6px 12px !important;
    border-radius: 18px !important;
    gap: 6px !important;
  }

  .nav-logo {
    gap: 6px !important;
  }

  .logo-img {
    width: 28px !important;
    height: 28px !important;
  }

  .logo-text {
    font-size: 0.82rem !important;
    gap: 0px !important;
  }

  .logo-wordmark {
    font-size: 0.82rem !important;
  }

  .logo-sub-tag {
    font-size: 0.50rem !important;
    letter-spacing: 0.12em !important;
    color: #c4ff3d !important;
  }

  .nav-pill-menu {
    display: none !important;
  }

  .nav-actions .cta-lime-btn {
    display: none !important;
  }

  .nav-actions {
    gap: 6px !important;
    margin-left: auto;
  }

  .theme-toggle-btn {
    display: none !important;
  }

  /* 2. Hamburger Button */
  .mobile-hamburger-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    z-index: 1000;
  }

  .mobile-hamburger-btn:active {
    transform: scale(0.92);
  }

  .hamburger-line {
    width: 16px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background: #c4ff3d;
  }
  .mobile-hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background: #c4ff3d;
  }

  /* 3. Mobile Nav Drawer */
  .mobile-nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .mobile-nav-drawer.open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 88%;
    max-width: 340px;
    background: #09090e;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    padding: 22px 18px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  .mobile-nav-drawer.open .mobile-drawer-content {
    transform: translateX(0);
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
  }

  .mobile-drawer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-drawer-logo {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-drawer-name {
    font-family: 'Anton', 'Gotham Ultra', 'Montserrat', 'Outfit', sans-serif;
    font-size: 0.98rem;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mobile-drawer-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.54rem;
    font-weight: 700;
    color: #c4ff3d;
    background: transparent;
    border: none;
    padding: 0;
    text-transform: uppercase;
  }

  .mobile-drawer-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-drawer-close:active {
    background: rgba(255, 255, 255, 0.15);
    color: #c4ff3d;
  }

  .mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    margin-bottom: 20px;
  }

  .mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.25s ease;
  }

  .mobile-nav-item:active,
  .mobile-nav-item:hover {
    background: rgba(196, 255, 61, 0.08);
    border-color: rgba(196, 255, 61, 0.25);
  }

  .m-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: #c4ff3d;
    font-weight: 700;
    margin-right: 10px;
    opacity: 0.8;
  }

  .m-title {
    font-family: 'Outfit', 'Gotham Ultra', 'Montserrat', 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    flex-grow: 1;
  }

  .m-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.88rem;
    transition: transform 0.2s ease;
  }

  .mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    background: #c4ff3d;
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(196, 255, 61, 0.3);
  }

  .mobile-drawer-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
  }

  /* 4. Global Mobile Typography (10% Refined Reduction) */
  .hero-headline {
    font-size: clamp(1.9rem, 7.2vw, 2.7rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .headline-line-wrapper {
    justify-content: center;
    gap: 0.25em;
  }

  .section-title {
    font-size: clamp(1.5rem, 5.2vw, 1.95rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }

  .section-sub {
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
    max-width: 95% !important;
  }

  .section-pill {
    font-size: 0.60rem !important;
    padding: 3px 8px !important;
    letter-spacing: 0.08em !important;
  }

  .hero-primary-btn,
  .hero-secondary-btn,
  .cta-lime-btn,
  .form-submit-btn,
  .whatsapp-cta-btn {
    height: 38px !important;
    padding: 0 16px !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    border-radius: 9999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
  }

  .hero-cta-group .hero-primary-btn,
  .hero-cta-group .hero-secondary-btn {
    flex: 1 1 120px !important;
    max-width: 155px !important;
    min-width: 115px !important;
  }

  .capability-chips-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px !important;
  }

  .cap-chip {
    padding: 3px 7px !important;
    font-size: 0.62rem !important;
  }

  .agency-badge {
    padding: 3px 8px !important;
    font-size: 0.62rem !important;
    margin-bottom: 12px !important;
  }

  .hero-subtext {
    font-size: 0.80rem !important;
    line-height: 1.45 !important;
    margin-bottom: 18px !important;
    max-width: 95% !important;
  }

  /* 5. Service & Work Cards Typography on Mobile */
  .service-card-title {
    font-size: 1.0rem !important;
    margin-bottom: 8px !important;
  }

  .service-card-desc {
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .service-features-list li {
    font-size: 0.72rem !important;
    margin-bottom: 4px !important;
  }

  .service-link {
    font-size: 0.76rem !important;
  }

  .work-title {
    font-size: 0.98rem !important;
    margin-bottom: 6px !important;
  }

  .work-desc {
    font-size: 0.74rem !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }

  .work-metrics-tag {
    font-size: 0.68rem !important;
  }

  .work-live-link {
    font-size: 0.74rem !important;
  }

  .step-title {
    font-size: 0.92rem !important;
  }

  .step-desc {
    font-size: 0.74rem !important;
    line-height: 1.45 !important;
  }

  .step-badge {
    font-size: 0.62rem !important;
  }

  .stat-number {
    font-size: 1.8rem !important;
  }

  .stat-label {
    font-size: 0.68rem !important;
  }

  .faq-question-text {
    font-size: 0.84rem !important;
  }

  .faq-answer p {
    font-size: 0.74rem !important;
    line-height: 1.45 !important;
  }

  /* 6. Contact Section & Overflow Fix */
  .contact-card-box {
    padding: 22px 14px !important;
    gap: 22px !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    grid-template-columns: 1fr !important;
  }

  .contact-left,
  .contact-right {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .contact-headline {
    font-size: clamp(1.4rem, 5.2vw, 1.75rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
    word-break: break-word !important;
  }

  .contact-sub {
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
    word-break: break-word !important;
  }

  .contact-info-list {
    gap: 12px !important;
  }

  .info-item {
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .info-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }

  .info-icon svg {
    width: 15px !important;
    height: 15px !important;
  }

  .info-title {
    font-size: 0.62rem !important;
  }

  .info-val,
  .info-link {
    font-size: 0.76rem !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
    line-height: 1.35 !important;
    display: block !important;
  }

  .contact-form {
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-group label {
    font-size: 0.70rem !important;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.78rem !important;
    padding: 9px 11px !important;
    border-radius: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 7. Work & Case Study Buttons on Mobile */
  .cs-live-btn,
  .cs-view-btn,
  .work-card-btn,
  .cs-meta-chip {
    height: 34px !important;
    padding: 0 12px !important;
    font-size: 0.72rem !important;
    border-radius: 9999px !important;
  }

  .cs-badge,
  .cs-preview-badge {
    padding: 3px 8px !important;
    font-size: 0.66rem !important;
  }

  /* 8. Footer Luxury Overhaul on Mobile */
  .site-footer {
    padding: 38px 16px 20px !important;
  }

  .footer-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin-bottom: 24px !important;
  }

  .footer-brand {
    margin-bottom: 2px !important;
    text-align: left !important;
  }

  .footer-logo-row {
    gap: 8px !important;
    margin-bottom: 4px !important;
  }

  .footer-logo-img {
    width: 24px !important;
    height: 24px !important;
  }

  .footer-brand-name {
    font-size: 0.82rem !important;
    font-family: 'Outfit', 'Space Grotesk', sans-serif !important;
    font-weight: 800 !important;
  }

  .footer-tagline {
    font-size: 0.72rem !important;
    max-width: 100% !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.35 !important;
  }

  .col-title {
    font-size: 0.64rem !important;
    color: #c4ff3d !important;
    letter-spacing: 0.10em !important;
    margin-bottom: 6px !important;
  }

  .footer-links-col {
    gap: 5px !important;
  }

  .footer-links-col a,
  .footer-links-col span {
    font-size: 0.74rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
  }

  .footer-bottom {
    justify-content: center !important;
    text-align: center !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .footer-bottom p {
    font-size: 0.68rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
  }

  .back-to-top-btn {
    display: none !important;
  }
}
