@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

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

#home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spotlight {
    position: absolute;
    height:100%;
    /*width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(159, 255, 255, 0.5) 0%, rgba(0, 255, 255, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    z-index: 10;*/
}

.content {
    position: relative;
    z-index: 20;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background-clip: text;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    font-family: 'Alata', sans-serif; 
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffffec;
}

.description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
    color: #ffffffec;
}

.pulse {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.hero {
    position: relative;
    display: inline-block;
}

.hero-image {
    display: block;
    width: clamp(180px, 30vw, 420px);
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 6px rgba(82, 139, 246, 0.18))
            drop-shadow(0 0 10px rgba(37, 229, 247, 0.12));
}

.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center,
        rgba(82, 139, 246, 0.35) 0%,
        rgba(37, 229, 247, 0.22) 40%,
        transparent 70%);
    filter: blur(28px);
    opacity: 0.7;
    z-index: -1;
    animation: heroGlow 3s ease-in-out infinite;
    will-change: transform, opacity;
}

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

/* Subtle primary CTA hover affordance */
.gradient-border {
    transition: transform 200ms ease;
}
.gradient-border:hover {
    transform: translateY(-1px) scale(1.02);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero::after,
    .hero-image,
    .pulse { /* any legacy pulse usage */
        animation: none !important;
    }
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 6px rgba(82, 139, 246, 0.20))
                drop-shadow(0 0 10px rgba(37, 229, 247, 0.15));
        opacity: 0.85;
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(82, 139, 246, 0.40))
                drop-shadow(0 0 18px rgba(37, 229, 247, 0.30));
        opacity: 1;
    }
    100% {
        filter: drop-shadow(0 0 6px rgba(82, 139, 246, 0.20))
                drop-shadow(0 0 10px rgba(37, 229, 247, 0.15));
        opacity: 0.85;
    }
}


.revealed {
    color: rgba(0, 255, 255, 0.7) !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}


body {
    background: radial-gradient(ellipse at center, #0f0f23 0%, #000000 100%);
    height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: #121323;
    color: white;
    scroll-behavior: smooth;
}

.gradient-text {
    background: linear-gradient(135deg, #C60BF5 0%, #528BF6 50%, #25E5F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-border {
    position: relative;
    border-radius: 0.5rem;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #C60BF5 0%, #528BF6 50%, #25E5F7 100%);
    z-index: -1;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C60BF5 0%, #25E5F7 100%);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Accessible focus styles */
a:focus-visible, button:focus-visible, .nav-link:focus-visible {
    outline: 2px solid #25E5F7;
    outline-offset: 2px;
}

/* Make form controls match brand accents */
input[type="checkbox"], input[type="radio"] {
    accent-color: #25E5F7; /* matches secondary brand color */
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 19, 35, 0.95);
  color: #ffffff;
  border-top: 1px solid #374151; /* gray-700 */
  z-index: 1000;
  font-size: 0.95rem;
}
#cookie-banner .cookie-banner__inner {
  max-width: 72rem; /* ~max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
#cookie-banner .cookie-banner__text {
  line-height: 1.4;
}
#cookie-banner a {
  color: #25E5F7; /* secondary */
  text-decoration: underline;
}
#cookie-banner button.cookie-banner__btn {
  background: #1f2937; /* gray-800 */
  color: #ffffff;
  border: 1px solid #374151; /* gray-700 */
  border-radius: 0.375rem; /* rounded-md */
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}
#cookie-banner button.cookie-banner__btn:hover {
  background: #374151; /* gray-700 */
}
