/* Main Stylesheet - Extracted from inline styles */

/* CSS Variables */
:root {
    --color-accent: rgb(76, 177, 249);
    --color-accent-dim: rgba(76, 177, 249, 0.2);
    --color-accent-glow: rgba(76, 177, 249, 0.13);
    --color-surface: #0f0f0f;
    --color-surface-raised: #1a1a1a;
    --color-bg: #000000;
}

/* Base Styles */
html {
    font-family: Space Grotesk, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    margin: 0;
}

/* Noise Texture Overlay */
body:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    content: "";
    opacity: 0.035;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, rgb(76, 177, 249), rgb(96, 197, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes scale-in-hero {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.anim-scale-in-hero {
    animation: scale-in-hero 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes text-focus-in {
    0% {
        filter: blur(8px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.anim-text-focus-in {
    animation: text-focus-in 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

@keyframes fade-in-bottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-in-bottom {
    animation: fade-in-bottom 0.65s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translate(-60px);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.anim-slide-in-left {
    animation: slide-in-left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translate(60px);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.anim-slide-in-right {
    animation: slide-in-right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    visibility: hidden;
}

.reveal.is-visible {
    visibility: visible;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 3px;
}

/* Skeleton Loading */
.skeleton {
    animation: shimmer 2s linear infinite;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a, #1a1a1a 75%);
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* FAQ Accordion */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content.is-open {
    grid-template-rows: 1fr;
}

.faq-content > div {
    overflow: hidden;
}
