/* MaroonHorizon.css */

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #0b0b0b;
}

body{
  min-height: 100vh;
}

.container{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Canvas background */
#neuralCanvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none; /* critical: never block hover/clicks */
}

/* Center overlay */
.text-overlay{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  overflow: visible;
}

.text-overlay h1{
  margin: 10px 0;
  font-size: 3em;
  font-weight: 700;
}

.logo{
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Footer */
.site-footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  padding: 6px 10px;
  font-size: 10px;
  line-height: 1;
  color: #ffffff;
  background: transparent;
  border: 0;
  pointer-events: none;
}

/* Mobile tweaks */
@media (max-width: 600px){
  .text-overlay h1{ font-size: 2em; }
  .logo{ max-width: 150px; }
  .site-footer{ font-size: 9px; padding: 6px 8px; }
}

/* ===== Professional CTA glow ===== */

.cta-banner{
  position: relative;
  display: inline-block;
  padding: 12px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  overflow: visible;
  z-index: 3;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 0 34px rgba(120, 220, 255, 0.24);

  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cta-banner::before{
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 24px;
  z-index: 0;

  background: radial-gradient(circle,
    rgba(120, 220, 255, 0.48),
    rgba(120, 220, 255, 0.20) 42%,
    rgba(120, 220, 255, 0.00) 74%
  );

  filter: blur(20px);
  opacity: 0.90;
  pointer-events: none;

  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.cta-banner__img{
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(520px, 92vw);
  height: auto;
  border-radius: 12px;

  box-shadow: 0 14px 34px rgba(0,0,0,0.48);
  filter: drop-shadow(0 0 18px rgba(120, 220, 255, 0.18));

  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.cta-banner:hover{
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14),
    0 0 52px rgba(120, 220, 255, 0.36);
}

.cta-banner:hover::before{
  opacity: 1;
  filter: blur(22px);
  transform: scale(1.03);
}

.cta-banner:hover .cta-banner__img{
  transform: translateY(-1px);
  filter: drop-shadow(0 0 26px rgba(120, 220, 255, 0.26));
  box-shadow: 0 18px 46px rgba(0,0,0,0.58);
}

.cta-banner:focus-visible{
  outline: 2px solid rgba(120, 220, 255, 0.80);
  outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce){
  .cta-banner,
  .cta-banner::before,
  .cta-banner__img{
    transition: none;
  }
}
