#ripple-canvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0; /* beneath other content */
}

.mobile-break {
  display: none;
}
*, *::before, *::after {
  cursor: none !important;
}


@media (max-width: 500px) {
  .mobile-break {
    display: inline;
  }
}

@media (pointer: coarse) {
  #custom-cursor {
    display: none;
  }
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: #000;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .main-nav {
    position: relative;
  }
  
  .main-nav > div {
    position: relative;
  }
  
  /* Tablet responsive improvements */
  .hero h1 {
    font-size: 2.5rem !important;
    line-height: 3rem !important;
  }
  
  .hero p {
    font-size: 1.1rem !important;
    margin: 0 2rem 2rem 2rem !important;
  }
  
  /* Grid layouts for tablet */
  section[style*="grid-template-columns"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .slogan {
    font-size: 2rem;
    line-height: 2.8rem;
    margin: 0.5rem 0;
    letter-spacing: -3px;
  }

  .tagline {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin: 0.5rem 1rem 0 1rem;
    color: #555;
  }

  .container {
    padding: 2rem 1.25rem;
  }

  .logo {
    width: 90vw;
    max-width: 320px;
  }
  
  /* Internal pages responsive improvements */
  .main-nav {
    padding: 1rem 0.5rem !important;
  }
  
  .main-nav > div {
    margin: 0 1rem !important;
  }
  
  .main-nav a {
    font-size: 0.9rem !important;
  }
  
  /* Hero sections on internal pages */
  .hero h1 {
    font-size: 2rem !important;
    line-height: 2.4rem !important;
  }
  
  .hero p {
    font-size: 1rem !important;
    margin: 0 1rem 2rem 1rem !important;
  }
  
  /* Grid sections responsive */
  section[style*="grid-template-columns"] {
    display: block !important;
  }
  
  section[style*="grid-template-columns"] > div {
    margin-bottom: 2rem !important;
  }
  
  /* General section improvements for mobile */
  section {
    padding: 2rem 1rem !important;
  }
  
  section h2 {
    font-size: 1.8rem !important;
    margin-bottom: 2rem !important;
  }
  
  section h3 {
    font-size: 1.3rem !important;
  }
  
  /* Services and feature cards */
  div[style*="background: white"] {
    margin-bottom: 1.5rem !important;
    padding: 1.5rem !important;
  }
  
  /* FAQ sections */
  div[style*="border-bottom: 1px solid #eee"] {
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* CTA sections with gradients */
  section[style*="background: linear-gradient"] {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
    padding: 2rem 1rem !important;
  }
  
  /* Footer responsive */
  footer {
    padding: 2rem 1rem !important;
  }
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #000;
}

.header {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: #8CC63F;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  outline: none;
  z-index: 10;
  user-select: none;
  overflow: hidden;
  transition: box-shadow 0.3s, filter 0.3s;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
  perspective: 900px;
}
.logo {
  width: 80vw;
  max-width: 600px;
  height: auto;
  margin-bottom: 2rem;
  transform-style: preserve-3d;
  will-change: transform;
}
.hood-o1, .hood-o2 {
  animation: bounce 1.5s infinite ease-in-out alternate;
  transform-origin: center;
}
.hood-o1 {
  animation: hoodMove1 2.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite alternate;
  transform-origin: center;
}
.hood-o2 {
  animation: hoodMove2 2.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite alternate;
  animation-delay: 0.3s;
  transform-origin: center;
}

@keyframes hoodMove1 {
  0% { transform: scale(1) rotate(0deg) translateY(0) skewX(0deg); }
  20% { transform: scale(1.08, 0.96) rotate(-2deg) translateY(-2px) skewX(-2deg); }
  40% { transform: scale(1.15, 0.92) rotate(2deg) translateY(-6px) skewX(2deg); }
  60% { transform: scale(1.08, 0.96) rotate(-2deg) translateY(-2px) skewX(-2deg); }
  80% { transform: scale(1.03, 1.01) rotate(1deg) translateY(1px) skewX(1deg); }
  100% { transform: scale(1) rotate(0deg) translateY(0) skewX(0deg); }
}
@keyframes hoodMove2 {
  0% { transform: scale(1) rotate(0deg) translateY(0) skewX(0deg); }
  25% { transform: scale(1.06, 0.98) rotate(2deg) translateY(-1px) skewX(2deg); }
  50% { transform: scale(1.13, 0.94) rotate(-2deg) translateY(-7px) skewX(-2deg); }
  75% { transform: scale(1.06, 0.98) rotate(2deg) translateY(-1px) skewX(2deg); }
  100% { transform: scale(1) rotate(0deg) translateY(0) skewX(0deg); }
}
.slogan, .tagline, .subtitle {
  opacity: 0;
  animation: fadein 1.5s ease-out forwards;
}
.slogan {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  animation-delay: 0.4s;
  letter-spacing: -2px;
  /* Hide H1 visually but keep for SEO */
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.tagline {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #444;
  animation-delay: 1s;
}
.subtitle {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #444;
  animation-delay: 1.2s;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.section {
  width: 100vw;
  padding: 6rem 1.5rem;
  box-sizing: border-box;
  font-size: 1.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
  letter-spacing: -2px;
}
.section p {
  max-width: 800px;
  margin: 2rem auto 0 auto;
  text-align: center;
  line-height: 1.6;
  letter-spacing: -1px;   
}
#whatwedo {
  background: #8CC63F;
  color: #fff;
}
#howwedo {
  background: #00A99D;
  color: #fff;
}
#whoweworkwith {
  background: #222;
  color: #fff;
}
#philosophy {
  background: #000;
  color: #fff;
}
.waitlist {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #8CC63F;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}
.waitlist:hover {
  background: #76b135;
}
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}







body {
  cursor: none; !important;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
  mix-blend-mode: normal;
}

#custom-cursor svg {
  width: 32px;
  height: 34px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#cursor-arrow,
#cursor-hand {
  position: absolute;
  top: 0;
  left: 0;
}
