  /* Hero section styling with gradient from dark to darker */
  .hero {
    background: linear-gradient(180deg, var(--dark) 0%, 
                                        var(--dark) 20%,
                                        var(--dark) 40%,
                                        var(--dark) 60%,
                                        var(--dark) 80%,
                                        var(--primary-dark) 100%);
    padding-top: 0;
    margin-top: 0;
    position: relative;
  }
  
  /* Adjust text colors to be visible in the gradient */
  .hero-title, .hero-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  /* Make sure the logo section sits properly at the top of the page */
  .logo-container {
    margin-top: 3rem; /* Adjusted for full-screen hero without navbar */
  }
  
  /* Logo styling */
  .logo-container {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 3rem;
  }
  
  .logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
  }
  
  .logo-glow {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, 
                rgba(var(--accent-rgb), 0.7) 0%, 
                rgba(var(--accent-rgb), 0.5) 25%,
                rgba(var(--accent-rgb), 0.2) 50%, 
                rgba(0, 198, 209, 0) 70%);
    border-radius: 50%;
    filter: blur(30px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation-duration: 4s;
    mix-blend-mode: screen;
    will-change: opacity, transform;
  }
  
  .rounded-logo {
    height: 280px;
    width: 280px;
    border-radius: 50%;
    padding: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    z-index: 4;
    position: relative;
    will-change: transform;
  }
  
  /* Hero Question */
  .hero-question {
    font-size: 2rem;
    font-weight: 500;
    background: linear-gradient(90deg, var(--accent-light), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
  }
  
  /* High-tech button styles */
  .cta-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .mega-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    color: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
    min-height: 140px;
    height: auto;
    white-space: normal;
    flex: 1;
    border: 2px solid transparent;
  }
  
  .mega-button:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-5px);
  }
  
  .button-content {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
    white-space: normal;
    line-height: 1.2;
    text-wrap: balance;
  }
  
  .button-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-light), var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-md);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s linear infinite;
  }
  
  .mega-button:hover .button-glow {
    opacity: 1;
  }
  
  @keyframes borderGlow {
    0% { filter: blur(5px); }
    50% { filter: blur(8px); }
    100% { filter: blur(5px); }
  }
  
  /* Marketing button style */
  .marketing-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  }
  
  .marketing-button .button-border {
    background: linear-gradient(90deg, var(--accent-light), var(--primary-light), var(--secondary-light), var(--accent-color));
    background-size: 400% 100%;
    animation: borderAnimation 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .marketing-button:hover .button-border {
    opacity: 1;
  }
  
  .marketing-button:hover {
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.4);
  }
  
  /* Products button style */
  .products-button {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  }
  
  .products-button .button-border {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-light), var(--primary-light), var(--secondary-color));
    background-size: 400% 100%;
    animation: borderAnimation 8s linear infinite reverse;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .products-button:hover .button-border {
    opacity: 1;
  }
  
  .products-button:hover {
    box-shadow: 0 15px 35px rgba(var(--secondary-rgb), 0.4);
  }
  
  @keyframes borderAnimation {
    0% { background-position: 0% 0%; }
    100% { background-position: 400% 0%; }
  }
  
  /* Path animation for the wave - REMOVED */
  
  @keyframes pathMorph {
    0% { d: path("M0,224L60,213.3C120,203,240,181,360,186.7C480,192,600,224,720,224C840,224,960,192,1080,181.3C1200,171,1320,181,1380,186.7L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z" class="path-animation"></path>
    50% { d: path("M0,192L60,208C120,224,240,256,360,250.7C480,245,600,203,720,197.3C840,192,960,224,1080,234.7C1200,245,1320,235,1380,229.3L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"); }
    100% { d: path("M0,224L60,213.3C120,203,240,181,360,186.7C480,192,600,224,720,224C840,224,960,192,1080,181.3C1200,171,1320,181,1380,186.7L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"); }
  }
  
  /* Text gradient effect */
  .text-gradient {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* Enhanced Matrix Rain */
  #matrixRain {
    transition: opacity 0.5s ease;
    opacity: 0.5 !important; /* More visible against dark background */
    mix-blend-mode: screen; /* Better blending with dark background */
  }
  
  /* Add tech light beams across the screen occasionally */
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                              rgba(var(--accent-rgb), 0) 0%,
                              rgba(var(--accent-rgb), 0.05) 50%,
                              rgba(var(--accent-rgb), 0) 100%);
    z-index: 1;
    animation: lightSweep 30s ease-in-out infinite;
  }
  
  @keyframes lightSweep {
    0% { transform: translateX(0%); opacity: 0; }
    2% { opacity: 0; }
    3% { opacity: 1; }
    6% { opacity: 1; }
    7% { opacity: 0; }
    100% { transform: translateX(200%); opacity: 0; }
  }
  
  /* Tornado Animation */
  .tornado-container {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 100px;
    height: 400px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
    transform: scale(0.7);
  }
  
  .tornado {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: bottom center;
    animation: tornadoSpin 15s linear infinite;
  }
  
  .tornado-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 255, 180, 0.8) 0%, rgba(0, 255, 180, 0) 70%);
    border-radius: 50%;
    filter: blur(3px);
    animation: tornadoParticleMove 6s ease-in-out infinite;
  }
  
  @keyframes tornadoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes tornadoParticleMove {
    0% { transform: translate(0, 0) scale(1); opacity: 0.1; }
    50% { transform: translate(20px, -30px) scale(1.5); opacity: 0.7; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  }
  
  /* Footer logo styles - Override the ones in base.css */
  .footer-logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 15px;
  }
  
  /* Responsive adjustments */
  @media (min-width: 768px) {
    .cta-container {
      flex-direction: row;
    }
    
    .mega-button {
      width: 50%;
      min-height: 140px; /* Keep visual size while allowing wrapped text */
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .mega-button i {
      font-size: 1.8rem;
    }
  }
