/* ============================================
   SOLAR SMASH - LIQUID GLASS DESIGN SYSTEM
   ============================================ */

/* --- CSS Reset & Custom Properties --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Palette */
    --primary: #0c1445;
    --primary-deep: #060a2e;
    --primary-mid: #111b5e;
    --secondary: #ffffff;
    --accent: #7dd3fc;
    --accent-bright: #a5e4ff;
    --accent-dim: #4fb8e8;

    /* Glass Palette */
    --glass-bg: rgba(12, 20, 69, 0.45);
    --glass-bg-light: rgba(255, 255, 255, 0.06);
    --glass-bg-medium: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(125, 211, 252, 0.18);
    --glass-border-bright: rgba(125, 211, 252, 0.35);
    --glass-shadow: rgba(0, 0, 0, 0.4);

    /* Chromatic Colors */
    --chroma-cyan: rgba(125, 211, 252, 0.5);
    --chroma-purple: rgba(168, 85, 247, 0.4);
    --chroma-pink: rgba(236, 72, 153, 0.35);
    --chroma-green: rgba(52, 211, 153, 0.3);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #060a2e 0%, #0c1445 20%, #1a1060 40%, #2d1b69 60%, #0f3460 80%, #0a2a3c 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    --gradient-accent: linear-gradient(135deg, #7dd3fc 0%, #a78bfa 50%, #ec4899 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #7dd3fc 50%, #a78bfa 100%);
    --gradient-iridescent: linear-gradient(135deg, #7dd3fc, #a78bfa, #ec4899, #34d399, #7dd3fc);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;
    --radius-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-bg: -1;
    --z-base: 1;
    --z-card: 10;
    --z-nav: 100;
    --z-modal: 1000;
    --z-cookie: 9999;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-main);
    color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-bright);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input, textarea {
    font-family: inherit;
    color: inherit;
}

::selection {
    background: rgba(125, 211, 252, 0.3);
    color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), var(--chroma-purple));
    border-radius: var(--radius-full);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: rgba(6, 10, 46, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(0);
    transition: transform var(--transition-slow);
    box-shadow:
        0 -4px 30px rgba(0, 0, 0, 0.5),
        0 -1px 0 var(--chroma-cyan),
        0 -2px 0 var(--chroma-purple);
}

.cookie-banner.hidden {
    transform: translateY(110%);
    pointer-events: none;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--gradient-accent);
    color: var(--primary-deep);
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
    font-family: var(--font-mono);
}

.cookie-text p {
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.85;
}

.cookie-text p:first-child {
    opacity: 1;
    margin-bottom: var(--space-xs);
}

.cookie-text a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: var(--gradient-accent);
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    border: none;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--chroma-cyan);
}

.btn-cookie-reject {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--glass-border-bright);
}

.btn-cookie-settings {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.btn-cookie-settings:hover {
    background: rgba(125, 211, 252, 0.08);
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
}

.cookie-setting-item {
    padding: var(--space-sm) 0;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.cookie-settings-panel .btn-cookie-accept {
    margin-top: var(--space-md);
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--space-md) 0;
    transition: all var(--transition-medium);
}

.main-header.scrolled {
    background: rgba(6, 10, 46, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-sm) 0;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 1px 0 var(--chroma-cyan);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--secondary);
    text-decoration: none;
    z-index: var(--z-nav);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    box-shadow:
        0 0 15px var(--chroma-cyan),
        0 0 5px var(--chroma-purple);
    transition: transform var(--transition-bounce);
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(10deg) scale(1.1);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.nav-link-cta {
    background: var(--gradient-accent) !important;
    color: var(--primary-deep) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.25);
    transition: all var(--transition-fast) !important;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 30px rgba(125, 211, 252, 0.4) !important;
}

.nav-link-cta.active::after {
    display: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: var(--z-nav);
}

.nav-toggle-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-xl) var(--space-4xl);
    overflow: hidden;
}

/* Animated Background Blobs */
.hero-bg-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: var(--z-bg);
}

.blob {
    position: absolute;
    border-radius: var(--radius-blob);
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.2), transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.blob-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.12), transparent 70%);
    top: 20%;
    right: 25%;
    animation-delay: -7s;
    animation-duration: 22s;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    }
    25% {
        transform: translate(30px, -40px) scale(1.08) rotate(5deg);
        border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95) rotate(-3deg);
        border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
    }
    75% {
        transform: translate(15px, 20px) scale(1.05) rotate(4deg);
        border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%;
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle-drift linear infinite;
}

@keyframes particle-drift {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: var(--z-base);
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text-wrapper {
    animation: hero-slide-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes hero-slide-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
}

.hero-title-line-1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--secondary);
    text-shadow:
        0 0 40px rgba(125, 211, 252, 0.15),
        0 0 80px rgba(125, 211, 252, 0.05);
}

.hero-title-line-2 {
    font-size: clamp(4rem, 9vw, 8rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(125, 211, 252, 0.3));
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    background: var(--gradient-accent);
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: var(--primary-deep);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-glow {
    box-shadow:
        0 4px 25px rgba(125, 211, 252, 0.35),
        0 0 60px rgba(125, 211, 252, 0.1);
}

.btn-glow:hover {
    box-shadow:
        0 8px 40px rgba(125, 211, 252, 0.5),
        0 0 80px rgba(125, 211, 252, 0.2);
}

.btn-icon {
    font-size: 0.8em;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--glass-border-bright);
    transform: translateY(-2px);
    color: var(--secondary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--glass-border-bright), transparent);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: hero-image-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes hero-image-in {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.12) 0%, transparent 70%);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(125, 211, 252, 0.1),
        -4px -4px 0 var(--chroma-cyan),
        4px 4px 0 var(--chroma-purple),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.hero-image-frame:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    background: rgba(6, 10, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        -2px -2px 0 var(--chroma-cyan),
        2px 2px 0 var(--chroma-purple);
    animation: float 6s ease-in-out infinite;
}

.floating-card-icon {
    font-size: 1.1rem;
}

.hero-floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0.3; }
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */

.ticker-section {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: var(--space-3xl);
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.ticker-item span:not(.ticker-dot) {
    font-weight: 700;
    color: var(--secondary);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ticker-dot-green {
    background: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

.ticker-dot-blue {
    background: var(--accent);
    box-shadow: 0 0 10px var(--chroma-cyan);
}

.ticker-dot-purple {
    background: #a78bfa;
    box-shadow: 0 0 10px var(--chroma-purple);
}

.ticker-dot-gold {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    font-family: var(--font-mono);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.about-card {
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-bright);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        -3px -3px 0 var(--chroma-cyan),
        3px 3px 0 var(--chroma-purple);
}

.about-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(125, 211, 252, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.about-card:hover .about-card-glow {
    opacity: 1;
}

.about-card-content {
    padding: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.about-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.about-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.about-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--secondary);
}

.about-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.about-card-main {
    grid-row: span 2;
}

.about-card-main .about-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-card-main .about-icon-wrap {
    width: 72px;
    height: 72px;
}

.about-card-main .about-icon {
    font-size: 2rem;
}

.about-card-main h3 {
    font-size: 1.5rem;
}

.about-card-wide {
    grid-column: span 3;
}

.about-card-wide .about-card-content {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    flex-direction: row;
}

.about-game-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-xl);
    flex-shrink: 0;
    box-shadow:
        0 0 30px var(--chroma-cyan),
        0 0 10px var(--chroma-purple);
}

.about-card-text h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

/* ============================================
   SCREENSHOTS GALLERY
   ============================================ */

.screenshots-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 100%;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        -2px -2px 0 var(--chroma-cyan),
        2px 2px 0 var(--chroma-purple);
    transition: all var(--transition-medium);
}

.gallery-frame:hover {
    border-color: var(--glass-border-bright);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        -4px -4px 0 var(--chroma-cyan),
        4px 4px 0 var(--chroma-purple),
        0 0 40px var(--chroma-cyan);
    transform: translateY(-4px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-frame:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 10, 46, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.features-bg-blobs {
    position: absolute;
    inset: 0;
    z-index: var(--z-bg);
    overflow: hidden;
}

.blob-5 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
    top: 10%;
    right: -5%;
    animation: blob-float 22s ease-in-out infinite;
    animation-delay: -3s;
}

.blob-6 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.1), transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: blob-float 18s ease-in-out infinite;
    animation-delay: -8s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    position: relative;
    padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-3xl);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-medium);
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--glass-border-bright);
    transform: translateY(-4px);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--chroma-cyan);
}

.feature-number {
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.5;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--secondary);
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.feature-card:hover .feature-line {
    transform: scaleX(1);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform var(--transition-slow);
}

.review-card {
    min-width: calc(33.333% - var(--space-xl) * 2 / 3);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
    transition: all var(--transition-medium);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.2),
        -2px -2px 0 rgba(125, 211, 252, 0.08),
        2px 2px 0 rgba(168, 85, 247, 0.08);
}

.review-card:hover {
    border-color: var(--glass-border-bright);
    transform: translateY(-4px);
}

.review-stars {
    font-size: 1.2rem;
    color: #fbbf24;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-deep);
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.review-date {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.review-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.review-nav-btn:hover {
    background: rgba(125, 211, 252, 0.15);
    border-color: var(--accent);
    transform: scale(1.1);
}

.reviews-dots {
    display: flex;
    gap: var(--space-sm);
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reviews-dots .dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--chroma-cyan);
    transform: scale(1.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item.active {
    border-color: var(--glass-border-bright);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px var(--chroma-cyan);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    transition: color var(--transition-fast);
    font-family: var(--font-body);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(125, 211, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.faq-item.active .faq-toggle {
    background: var(--accent);
    color: var(--primary-deep);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   CONTACT / LEAD FORM SECTION
   ============================================ */

.contact-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-bg-blobs {
    position: absolute;
    inset: 0;
    z-index: var(--z-bg);
    overflow: hidden;
}

.blob-7 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.1), transparent 70%);
    top: -10%;
    left: -10%;
    animation: blob-float 24s ease-in-out infinite;
}

.blob-8 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: blob-float 20s ease-in-out infinite;
    animation-delay: -6s;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form-wrapper {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.3),
        -3px -3px 0 var(--chroma-cyan),
        3px 3px 0 var(--chroma-purple);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.form-optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(125, 211, 252, 0.05);
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
    min-height: 0;
    transition: all var(--transition-fast);
}

/* Checkbox styles */
.form-consent,
.form-age-consent {
    padding-top: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
    border: 2px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--primary-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
}

.checkbox-label a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px;
    margin-top: var(--space-sm);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(12, 20, 69, 0.3);
    border-top-color: var(--primary-deep);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Messages */
.form-message {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-success {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
}

.form-error-msg {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.message-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    border-color: var(--glass-border-bright);
    transform: translateX(4px);
}

.contact-info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid var(--glass-border);
}

.contact-info-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--secondary);
}

.contact-info-card a {
    font-size: 0.9rem;
    word-break: break-all;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.contact-info-note {
    font-size: 0.8rem !important;
    color: var(--accent) !important;
    margin-top: var(--space-xs);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: var(--space-4xl) 0;
    border-top: 1px solid var(--glass-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-medium);
}

.trust-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: block;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--secondary);
}

.trust-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--secondary);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.footer-brand-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 350px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    color: var(--secondary);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.footer-responsible {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-section {
    padding: 140px 0 var(--space-5xl);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.legal-header h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.legal-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
}

.legal-content {
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        -3px -3px 0 var(--chroma-cyan),
        3px 3px 0 var(--chroma-purple);
    border: 1px solid var(--glass-border);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(125, 211, 252, 0.3);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-mid);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    color: #333;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-mid);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--accent-dim);
}

.legal-content strong {
    color: #1a1a2e;
}

/* Legal Table */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(12, 20, 69, 0.1);
}

.legal-table th {
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    font-family: var(--font-display);
}

.legal-table td {
    color: #444;
}

.legal-table tr:nth-child(even) td {
    background: rgba(125, 211, 252, 0.05);
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid rgba(12, 20, 69, 0.1);
    text-align: center;
}

.legal-footer-note p {
    color: #666;
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS - SCROLL REVEAL
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   IRIDESCENT SHIMMER EFFECT
   ============================================ */

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-border {
    position: relative;
}

.shimmer-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--chroma-cyan), var(--chroma-purple), var(--chroma-pink), transparent);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.shimmer-border:hover::before {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }

    .hero-floating-card-1 {
        right: 0;
    }

    .hero-floating-card-2 {
        left: 0;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-card-main {
        grid-row: auto;
    }

    .about-card-wide {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-row: auto;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .review-card {
        min-width: calc(50% - var(--space-xl) / 2);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(6, 10, 46, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition-medium);
        border-left: 1px solid var(--glass-border);
        gap: var(--space-sm);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px 18px;
    }

    .nav-link-cta {
        text-align: center;
        justify-content: center;
    }

    .hero-section {
        padding: 100px var(--space-md) var(--space-3xl);
    }

    .hero-title-line-1 {
        font-size: 3rem;
    }

    .hero-title-line-2 {
        font-size: 3.5rem;
    }

    .hero-image-frame {
        transform: none;
    }

    .hero-floating-card {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card-wide {
        grid-column: auto;
    }

    .about-card-wide .about-card-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-width: calc(100% - var(--space-md));
    }

    .section-container {
        padding: 0 var(--space-md);
    }

    .legal-content {
        padding: var(--space-xl);
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .legal-content {
        padding: var(--space-lg);
    }

    .legal-table {
        font-size: 0.8rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .main-header,
    .cookie-banner,
    .hero-bg-blobs,
    .hero-particles,
    .ticker-section,
    .blob {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
```

Now the JavaScript:

```js