/* ============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================ */

:root {
    /* Primary Palette */
    --color-primary: #1a365d;
    --color-primary-dark: #0f2340;
    --color-primary-deeper: #0a1929;
    --color-secondary: #f0f5ff;
    --color-accent: #5fb5d4;
    --color-accent-light: #8fd0e6;
    --color-accent-glow: rgba(95, 181, 212, 0.3);

    /* Frost Palette */
    --frost-white: #f8fbff;
    --frost-ice: #e8f0fa;
    --frost-pale: #dce8f5;
    --frost-silver: #c4d4e8;
    --frost-blue: #a3bdd9;
    --frost-medium: #7a9dbd;
    --frost-deep: #4a7298;

    /* Neutral */
    --color-text: #1a2a3d;
    --color-text-secondary: #4a6178;
    --color-text-muted: #7a94ab;
    --color-border: rgba(95, 181, 212, 0.2);
    --color-border-strong: rgba(95, 181, 212, 0.35);

    /* Surfaces */
    --surface-glass: rgba(240, 245, 255, 0.65);
    --surface-glass-strong: rgba(240, 245, 255, 0.85);
    --surface-card: rgba(248, 251, 255, 0.8);
    --surface-dark: rgba(26, 54, 93, 0.95);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 54, 93, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 54, 93, 0.1);
    --shadow-xl: 0 16px 64px rgba(26, 54, 93, 0.12);
    --shadow-glow: 0 0 30px rgba(95, 181, 212, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(95, 181, 212, 0.25);

    /* Typography */
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-mono: 'JetBrains 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;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 600ms;

    /* Layout */
    --header-height: 72px;
    --container-max: 1200px;
    --container-narrow: 800px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--frost-white);
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

a:hover {
    color: var(--frost-deep);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background-color: rgba(95, 181, 212, 0.25);
    color: var(--color-primary);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--duration-normal) var(--ease-out);
}

.header-frost-bg {
    position: absolute;
    inset: 0;
    background: rgba(248, 251, 255, 0.75);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.site-header.scrolled .header-frost-bg {
    opacity: 1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-primary);
}

.logo-crystal {
    flex-shrink: 0;
    animation: crystalPulse 4s ease-in-out infinite;
}

@keyframes crystalPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.03); }
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.logo-accent {
    color: var(--color-accent);
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: var(--space-sm) var(--space-md);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    background: var(--color-primary);
    color: #fff !important;
    border-radius: var(--radius-full);
    padding: 10px 20px;
    font-weight: 600;
    margin-left: var(--space-sm);
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: 0 2px 12px rgba(26, 54, 93, 0.2);
}

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

.nav-cta:hover {
    background: var(--color-accent);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(95, 181, 212, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    z-index: 1001;
}

.toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(248, 251, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-slow) var(--ease-out);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    transition: all var(--duration-fast) var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-list li:nth-child(1) .mobile-nav-link { transition-delay: 100ms; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(2) .mobile-nav-link { transition-delay: 150ms; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(3) .mobile-nav-link { transition-delay: 200ms; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(4) .mobile-nav-link { transition-delay: 250ms; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(5) .mobile-nav-link { transition-delay: 300ms; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(6) .mobile-nav-link { transition-delay: 350ms; }

.mobile-nav-link:hover {
    color: var(--color-accent);
}

.mobile-nav-cta {
    background: var(--color-primary);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: var(--radius-full);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.25);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(95, 181, 212, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-border-strong);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(95, 181, 212, 0.08);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
    background: linear-gradient(
        170deg,
        var(--frost-white) 0%,
        var(--frost-ice) 30%,
        var(--frost-pale) 60%,
        var(--color-secondary) 100%
    );
}

.hero-frost-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(95, 181, 212, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26, 54, 93, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Crystal decorations */
.hero-crystal-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.crystal {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.15);
    transform: rotate(45deg);
    animation: crystalFloat 12s ease-in-out infinite;
}

.crystal-1 {
    width: 120px; height: 120px;
    top: 10%; left: 5%;
    border-radius: 30% 70% 50% 50%;
    background: rgba(95, 181, 212, 0.03);
    animation-delay: 0s;
}

.crystal-2 {
    width: 80px; height: 80px;
    top: 60%; left: 8%;
    border-radius: 50% 30% 70% 50%;
    background: rgba(95, 181, 212, 0.04);
    animation-delay: -2s;
    animation-duration: 10s;
}

.crystal-3 {
    width: 60px; height: 60px;
    top: 30%; right: 5%;
    border-radius: 70% 50% 30% 50%;
    background: rgba(95, 181, 212, 0.03);
    animation-delay: -4s;
    animation-duration: 14s;
}

.crystal-4 {
    width: 100px; height: 100px;
    bottom: 15%; right: 10%;
    border-radius: 50% 70% 50% 30%;
    background: rgba(95, 181, 212, 0.025);
    animation-delay: -6s;
}

.crystal-5 {
    width: 40px; height: 40px;
    top: 20%; left: 40%;
    border-radius: 30% 50% 70% 50%;
    background: rgba(95, 181, 212, 0.05);
    animation-delay: -3s;
    animation-duration: 8s;
}

.crystal-6 {
    width: 70px; height: 70px;
    bottom: 30%; left: 30%;
    border-radius: 50% 30% 50% 70%;
    background: rgba(95, 181, 212, 0.03);
    animation-delay: -5s;
    animation-duration: 11s;
}

.crystal-7 {
    width: 50px; height: 50px;
    top: 70%; right: 30%;
    border-radius: 70% 50% 30% 50%;
    background: rgba(95, 181, 212, 0.04);
    animation-delay: -7s;
    animation-duration: 9s;
}

@keyframes crystalFloat {
    0%, 100% { transform: rotate(45deg) translateY(0) translateX(0); opacity: 0.6; }
    25% { transform: rotate(50deg) translateY(-15px) translateX(5px); opacity: 0.8; }
    50% { transform: rotate(42deg) translateY(-8px) translateX(-5px); opacity: 0.7; }
    75% { transform: rotate(48deg) translateY(-20px) translateX(3px); opacity: 0.9; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    animation: heroContentIn 1s var(--ease-out) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroContentIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid rgba(95, 181, 212, 0.25);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.03em;
    margin-bottom: var(--space-xl);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(95, 181, 212, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(95, 181, 212, 0); }
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.2;
    color: var(--color-accent);
    letter-spacing: 0.04em;
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--surface-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border-strong);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroVisualIn 1.2s var(--ease-out) 0.3s forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

@keyframes heroVisualIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-image-frame {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frost {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(95, 181, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: frostPulse 5s ease-in-out infinite;
}

@keyframes frostPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
}

.hero-game-icon {
    width: 260px;
    height: 260px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 2px solid rgba(95, 181, 212, 0.2);
}

.hero-image-ring {
    position: absolute;
    inset: -30px;
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.hero-image-ring-2 {
    inset: -50px;
    border-color: rgba(95, 181, 212, 0.08);
    animation-duration: 30s;
    animation-direction: reverse;
}

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

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--surface-glass-strong);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

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

.hero-fc-2 {
    bottom: 15%;
    left: -15%;
    animation-delay: -2s;
}

.hero-fc-3 {
    bottom: 40%;
    right: -18%;
    animation-delay: -4s;
}

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

/* 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);
    z-index: 2;
    animation: heroContentIn 1s var(--ease-out) 0.8s forwards;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-border-strong);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: -10px; }
    100% { top: 40px; }
}

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

.social-proof-section {
    background: var(--color-primary);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 40s linear infinite;
    gap: var(--space-3xl);
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid rgba(95, 181, 212, 0.2);
    border-radius: var(--radius-full);
    padding: 4px 14px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

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

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

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

.about-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.about-card-frost {
    position: absolute;
    inset: 0;
    background: var(--surface-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

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

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.about-card:hover .about-card-frost {
    border-color: var(--color-border-strong);
}

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

.about-card-main .about-card-content {
    padding: var(--space-3xl);
}

.about-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

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

.about-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

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

.screenshots-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--frost-white) 0%, var(--frost-ice) 50%, var(--frost-white) 100%);
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease-out);
    gap: var(--space-xl);
}

.gallery-slide {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.gallery-card-frost {
    position: absolute;
    inset: -1px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.8));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal) var(--ease-out);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.gallery-card:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

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

.gallery-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

.gallery-btn:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: scale(1.08);
    box-shadow: var(--shadow-glow);
}

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

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--frost-silver);
    border: 1px solid var(--color-border);
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.gallery-dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(95, 181, 212, 0.4);
    transform: scale(1.2);
}

.gallery-dot:hover:not(.active) {
    background: var(--frost-blue);
}

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

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

.features-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(60deg, transparent 40%, rgba(95, 181, 212, 0.03) 40%, rgba(95, 181, 212, 0.03) 41%, transparent 41%),
        linear-gradient(-60deg, transparent 40%, rgba(95, 181, 212, 0.03) 40%, rgba(95, 181, 212, 0.03) 41%, transparent 41%);
    pointer-events: none;
}

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

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--color-border-strong);
}

.feature-number {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover .feature-icon {
    background: rgba(95, 181, 212, 0.15);
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ============================================
   COUNTER SECTION
   ============================================ */

.counter-section {
    padding: var(--space-4xl) 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 50%, rgba(95, 181, 212, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(95, 181, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.counter-card {
    position: relative;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.counter-card-frost {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.counter-value {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.counter-label {
    position: relative;
    z-index: 1;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-md);
}

.counter-bar {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.counter-bar-fill {
    height: 100%;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 2s var(--ease-out);
    width: 0%;
}

.counter-bar-fill.animated {
    /* width set inline */
}

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

.faq-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--frost-white) 0%, var(--frost-ice) 100%);
}

.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--surface-glass-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
    border-color: var(--color-border-strong);
}

.faq-item.open {
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: rgba(95, 181, 212, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    gap: var(--space-md);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-out);
    color: var(--color-text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out),
                padding var(--duration-normal) var(--ease-out);
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.faq-answer a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   SIGNUP SECTION
   ============================================ */

.signup-section {
    padding: var(--space-5xl) 0;
    background: var(--frost-white);
    position: relative;
    overflow: hidden;
}

.signup-bg-crystals {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.signup-crystal {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.1);
    transform: rotate(45deg);
    border-radius: 30% 70% 50% 50%;
    background: rgba(95, 181, 212, 0.02);
}

.signup-crystal-1 {
    width: 200px; height: 200px;
    top: -50px; right: 10%;
    animation: crystalFloat 15s ease-in-out infinite;
}

.signup-crystal-2 {
    width: 150px; height: 150px;
    bottom: -30px; left: 5%;
    border-radius: 50% 30% 70% 50%;
    animation: crystalFloat 12s ease-in-out infinite reverse;
}

.signup-crystal-3 {
    width: 100px; height: 100px;
    top: 40%; left: 2%;
    border-radius: 70% 50% 30% 50%;
    animation: crystalFloat 10s ease-in-out infinite;
    animation-delay: -3s;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.signup-info {
    padding-top: var(--space-xl);
}

.signup-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.signup-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.signup-perks {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.signup-perks li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.5;
}

.signup-perks li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    padding: var(--space-md) var(--space-lg);
    background: rgba(95, 181, 212, 0.05);
    border: 1px solid rgba(95, 181, 212, 0.1);
    border-radius: var(--radius-md);
}

/* Signup Form */
.signup-form-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.signup-form-frost {
    position: absolute;
    inset: 0;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.signup-form {
    position: relative;
    z-index: 1;
    padding: var(--space-3xl);
}

.form-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.input-wrap input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: rgba(248, 251, 255, 0.8);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-text);
    transition: all var(--duration-fast) var(--ease-out);
    outline: none;
}

.input-wrap input::placeholder {
    color: var(--color-text-muted);
}

.input-wrap input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.15);
    background: #fff;
}

.input-wrap input:focus + .input-icon,
.input-wrap:focus-within .input-icon {
    color: var(--color-accent);
}

.input-wrap input.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: #e53e3e;
    margin-top: 4px;
    min-height: 0;
    transition: all var(--duration-fast) var(--ease-out);
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: var(--space-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

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

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--color-border-strong);
    border-radius: 4px;
    background: rgba(248, 251, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 1px;
    position: relative;
}

.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transition: transform var(--duration-fast) var(--ease-spring);
    position: absolute;
    top: 4px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(-45deg) scale(1);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.2);
}

.checkbox-text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit Button */
.btn-block {
    margin-top: var(--space-lg);
    position: relative;
}

.btn-loader {
    display: none;
    animation: spin 1s linear infinite;
}

.btn.loading .btn-text {
    visibility: hidden;
}

.btn.loading .btn-loader {
    display: block;
    position: absolute;
}

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

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.form-success.show {
    display: block;
    animation: successIn 0.6s var(--ease-spring);
}

@keyframes successIn {
    from { opacity: 0; transform: scale(0.9) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.form-success svg {
    margin: 0 auto var(--space-md);
    animation: checkPop 0.5s var(--ease-spring) 0.2s both;
}

@keyframes checkPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.form-success h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

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

.trust-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--frost-ice) 0%, var(--frost-white) 100%);
}

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

.trust-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--color-border-strong);
}

.trust-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
}

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

.trust-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

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

.site-footer {
    background: var(--color-primary-dark);
    position: relative;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-2xl);
}

.footer-frost-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(95, 181, 212, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-brand-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-lg);
    max-width: 320px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-contact-link:hover {
    color: var(--color-accent);
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-lg);
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration-fast) var(--ease-out);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-address {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.25) !important;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.footer-age-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 4px 12px;
}

.footer-responsible {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

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

.cookie-consent {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

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

.cookie-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.cookie-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.cookie-desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.cookie-desc a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.cookie-btn {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
    white-space: nowrap;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.cookie-btn-reject:hover {
    background: rgba(95, 181, 212, 0.05);
    border-color: var(--color-border-strong);
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
}

.cookie-btn-accept:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

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

.legal-hero {
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-3xl);
    background: linear-gradient(
        170deg,
        var(--frost-white) 0%,
        var(--frost-ice) 50%,
        var(--frost-pale) 100%
    );
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-strong), transparent);
}

.legal-hero-content {
    max-width: var(--container-narrow);
}

.legal-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.legal-hero-date {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
}

.legal-section {
    padding: var(--space-4xl) 0 var(--space-5xl);
}

.legal-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl) var(--space-4xl);
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--color-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

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

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

.legal-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.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 {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

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

.legal-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.legal-footer-note p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

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

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

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stats {
        justify-content: center;
        display: inline-flex;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

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

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

    .about-card-main {
        grid-column: span 1;
    }

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

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

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

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

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

    .gallery-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-3xl);
    }

    .hero-image-frame {
        width: 220px;
        height: 220px;
    }

    .hero-game-icon {
        width: 180px;
        height: 180px;
    }

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

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

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

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

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

    .gallery-slide {
        flex: 0 0 calc(80% - 12px);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .cookie-consent {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }

    .cookie-consent-inner {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cookie-actions {
        width: 100%;
    }

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

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

    .signup-form {
        padding: var(--space-xl);
    }

    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .about-section,
    .screenshots-section,
    .features-section,
    .faq-section,
    .signup-section,
    .trust-section {
        padding: var(--space-3xl) 0;
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: 2.25rem;
    }

    .hero-title-sub {
        font-size: 1.5rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

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

    .counter-value {
        font-size: 2rem;
    }

    .gallery-slide {
        flex: 0 0 calc(90% - 12px);
    }
}

/* ============================================
   SCROLL ANIMATIONS (reveal on scroll)
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@media print {
    .site-header,
    .cookie-consent,
    .mobile-nav-overlay,
    .hero-crystal-grid,
    .social-proof-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .legal-content {
        border: none;
        box-shadow: none;
        padding: 0;
    }
}
