/* ============================================
   CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================ */
:root {
    /* Primary Palette */
    --color-primary: #1a365d;
    --color-primary-deep: #0f2440;
    --color-primary-light: #2a4a7f;
    --color-secondary: #f0f5ff;
    --color-accent: #5fb5d4;
    --color-accent-light: #8fd0e6;
    --color-accent-glow: rgba(95, 181, 212, 0.3);

    /* Frost Palette */
    --frost-white: #f8faff;
    --frost-ice: #e8f0fe;
    --frost-glacier: #d0e3f7;
    --frost-silver: #c4d4e8;
    --frost-pale: #edf2fb;
    --frost-crystal: rgba(255, 255, 255, 0.65);
    --frost-card: rgba(255, 255, 255, 0.55);
    --frost-border: rgba(95, 181, 212, 0.2);
    --frost-border-strong: rgba(95, 181, 212, 0.35);

    /* Shadows */
    --shadow-frost-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
    --shadow-frost-md: 0 4px 20px rgba(26, 54, 93, 0.08);
    --shadow-frost-lg: 0 8px 40px rgba(26, 54, 93, 0.10);
    --shadow-frost-xl: 0 16px 64px rgba(26, 54, 93, 0.12);
    --shadow-accent: 0 4px 24px rgba(95, 181, 212, 0.2);
    --shadow-accent-strong: 0 8px 32px rgba(95, 181, 212, 0.3);

    /* Typography */
    --font-display: '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;

    /* 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-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 600ms;

    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-primary);
    background-color: var(--frost-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a:hover {
    color: var(--color-primary-light);
}

a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

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

ul, ol {
    list-style: none;
}

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

button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

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

/* ============================================
   UTILITY: ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes crystalShimmer {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
    100% { opacity: 0.3; transform: scale(1); }
}

@keyframes scrollDot {
    0% { top: 4px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(95, 181, 212, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(95, 181, 212, 0); }
}

/* Animation States */
[data-animate] {
    opacity: 0;
}

[data-animate].animate-visible {
    animation-fill-mode: forwards;
}

[data-animate="fade-in"].animate-visible {
    animation: fadeIn var(--duration-slow) var(--ease-out) forwards;
}

[data-animate="slide-up"].animate-visible {
    animation: slideUp var(--duration-slow) var(--ease-out) forwards;
}

[data-animate="scale-in"].animate-visible {
    animation: scaleIn var(--duration-slow) var(--ease-out) forwards;
}

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

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

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

.nav-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-crystal {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration-normal) var(--ease-out);
}

.logo:hover .logo-crystal {
    transform: rotate(30deg);
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: all var(--duration-normal) var(--ease-out);
    transform: translateX(-50%);
}

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

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

.nav-cta {
    background: var(--color-primary);
    color: white !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 1px solid transparent;
    transition: all var(--duration-normal) var(--ease-out);
}

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

.nav-cta:hover {
    background: var(--color-accent);
    color: white !important;
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

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

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

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
    overflow: hidden;
    background: linear-gradient(
        170deg,
        var(--frost-white) 0%,
        var(--frost-ice) 30%,
        var(--frost-glacier) 60%,
        var(--frost-pale) 100%
    );
}

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

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

.crystal {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.12);
    background: rgba(95, 181, 212, 0.04);
    animation: crystalShimmer 6s ease-in-out infinite;
}

.crystal-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 0s;
}

.crystal-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 1s;
}

.crystal-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 8%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 2s;
}

.crystal-4 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 3s;
}

.crystal-5 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 20%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0.5s;
}

.crystal-6 {
    width: 70px;
    height: 70px;
    top: 60%;
    right: 5%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 1.5s;
}

.crystal-7 {
    width: 50px;
    height: 50px;
    top: 8%;
    left: 45%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 4s;
}

.crystal-8 {
    width: 90px;
    height: 90px;
    bottom: 5%;
    left: 35%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 2.5s;
}

.hero-content {
    position: relative;
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--frost-crystal);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--frost-border);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
}

.hero-badge svg {
    color: var(--color-accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    font-size: 0.4em;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    -webkit-text-fill-color: var(--color-accent);
    margin-top: var(--space-sm);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-primary-light);
    max-width: 500px;
    margin-bottom: var(--space-2xl);
    font-weight: 400;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-frost-md);
}

.btn-primary:hover {
    background: var(--color-accent);
    color: white;
    box-shadow: var(--shadow-accent-strong);
    transform: translateY(-2px);
}

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

.btn-ghost:hover {
    background: var(--frost-crystal);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.stat-item {
    text-align: left;
}

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

.stat-label {
    font-size: 0.75rem;
    color: var(--color-primary-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-frost-xl);
}

.frame-frost {
    position: absolute;
    inset: 0;
    border: 1px solid var(--frost-border-strong);
    border-radius: var(--radius-xl);
    z-index: 2;
    pointer-events: none;
}

.hero-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.frame-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.15), transparent, rgba(95, 181, 212, 0.1));
    z-index: 1;
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--frost-crystal);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--frost-border);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-frost-md);
    white-space: nowrap;
    z-index: 5;
}

.floating-badge svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation: float 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 20%;
    left: -15%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.badge-3 {
    bottom: 5%;
    right: -5%;
    animation: float 4.5s ease-in-out infinite 1s;
}

/* Scroll Indicator */
.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);
}

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

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

.scroll-dot {
    position: absolute;
    top: 4px;
    left: -1.5px;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: scrollDot 1.5s ease-in-out infinite;
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-bar {
    background: var(--color-primary);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    width: max-content;
}

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

.ticker-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

/* ============================================
   SECTIONS - COMMON
   ============================================ */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-5xl) var(--space-xl);
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--frost-border-strong);
    border-radius: var(--radius-full);
    background: rgba(95, 181, 212, 0.06);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-primary-light);
    line-height: 1.6;
    font-weight: 400;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: var(--frost-white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--frost-border-strong), transparent);
}

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

.feature-card {
    position: relative;
    background: var(--frost-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

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

.feature-crystal-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(95, 181, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card:hover .feature-crystal-accent {
    background: radial-gradient(circle, rgba(95, 181, 212, 0.15) 0%, transparent 70%);
}

.feature-card-large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.feature-card:hover .feature-icon {
    background: rgba(95, 181, 212, 0.15);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--color-primary-light);
    line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: linear-gradient(180deg, var(--frost-white) 0%, var(--frost-ice) 100%);
}

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

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

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

.gallery-frost-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--frost-border);
    background: var(--frost-card);
    transition: all var(--duration-normal) var(--ease-out);
}

.gallery-frost-frame:hover {
    box-shadow: var(--shadow-frost-lg);
    border-color: var(--frost-border-strong);
    transform: translateY(-2px);
}

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

.gallery-frost-frame:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.7));
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

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

.gallery-caption {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--frost-white);
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-primary-light);
    margin-bottom: var(--space-lg);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.highlight-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* About Cards */
.about-card-stack {
    position: relative;
    height: 400px;
}

.about-card {
    position: absolute;
    background: var(--frost-crystal);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-frost-md);
    transition: all var(--duration-normal) var(--ease-out);
}

.about-card:hover {
    box-shadow: var(--shadow-frost-lg);
    transform: translateY(-4px) !important;
}

.about-card-1 {
    top: 0;
    left: 10%;
    width: 220px;
    z-index: 3;
    animation: floatSlow 6s ease-in-out infinite;
}

.about-card-2 {
    top: 40%;
    right: 5%;
    width: 200px;
    z-index: 2;
    animation: floatSlow 7s ease-in-out infinite 1s;
}

.about-card-3 {
    bottom: 0;
    left: 20%;
    width: 180px;
    z-index: 1;
    animation: floatSlow 5s ease-in-out infinite 2s;
}

.about-card-stat {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.about-card-label {
    font-size: 0.8125rem;
    color: var(--color-primary-light);
    font-weight: 500;
}

.about-card-stars {
    display: flex;
    gap: 2px;
    margin-top: var(--space-sm);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
    background: linear-gradient(180deg, var(--frost-ice) 0%, var(--frost-white) 100%);
}

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

.trust-card {
    background: var(--frost-crystal);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--duration-normal) var(--ease-out);
}

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

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

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

.trust-card p {
    font-size: 0.9375rem;
    color: var(--color-primary-light);
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--frost-white);
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    background: var(--frost-crystal);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

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

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

.faq-question {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.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;
    color: var(--color-primary-light);
    line-height: 1.7;
}

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

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup {
    background: linear-gradient(180deg, var(--frost-white) 0%, var(--frost-ice) 50%, var(--frost-glacier) 100%);
    position: relative;
}

.signup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

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

.signup-trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.trust-badge-mini {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-primary-light);
}

/* Form */
.form-frost-card {
    position: relative;
    background: var(--frost-crystal);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-frost-lg);
    overflow: hidden;
}

.form-crystal-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(95, 181, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

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

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

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

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--frost-silver);
    pointer-events: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.input-wrap input {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-primary);
    font-size: 0.9375rem;
    transition: all var(--duration-fast) var(--ease-out);
    outline: none;
}

.input-wrap input::placeholder {
    color: var(--frost-silver);
}

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

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

.input-wrap input.invalid {
    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: var(--space-xs);
    min-height: 1em;
}

/* Checkbox */
.form-consent {
    margin-top: var(--space-xl);
}

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

.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(--frost-border-strong);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 1px;
}

.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 {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

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

/* Submit Button */
.btn-text,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.spinner {
    animation: spin 1s linear infinite;
}

/* Success / Error Messages */
.form-success,
.form-error-msg {
    text-align: center;
    padding: var(--space-2xl);
}

.success-icon,
.error-icon {
    margin-bottom: var(--space-lg);
}

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

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

.form-error-msg h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #e53e3e;
}

.form-error-msg p {
    color: var(--color-primary-light);
    font-size: 0.9375rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: var(--color-primary-deep);
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.footer-frost-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(95, 181, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(95, 181, 212, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
}

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

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

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

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

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links li a,
.footer-links li span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration-fast) var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.footer-links li svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-xl);
}

.footer-address svg {
    flex-shrink: 0;
    opacity: 0.4;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin: 0 auto var(--space-sm);
    line-height: 1.5;
}

.footer-responsible {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform var(--duration-slow) var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    background: rgba(248, 250, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--frost-border);
    padding: var(--space-xl) var(--space-2xl);
    box-shadow: 0 -4px 32px rgba(26, 54, 93, 0.1);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.cookie-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-accent);
}

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

.cookie-text {
    font-size: 0.8125rem;
    color: var(--color-primary-light);
    line-height: 1.5;
}

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

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-end;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.btn-cookie-reject {
    background: transparent;
    border-color: var(--frost-border-strong);
    color: var(--color-primary-light);
}

.btn-cookie-reject:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-cookie-settings {
    background: transparent;
    border-color: var(--frost-border-strong);
    color: var(--color-primary);
}

.btn-cookie-settings:hover {
    background: var(--frost-pale);
}

.btn-cookie-accept {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-frost-sm);
}

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

/* Cookie Settings Panel */
.cookie-settings-panel {
    background: rgba(248, 250, 255, 0.98);
    border-top: 1px solid var(--frost-border);
}

.cookie-settings-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-2xl);
}

.cookie-settings-inner h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.cookie-option {
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-md);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    margin-bottom: var(--space-xs);
}

.cookie-option p {
    font-size: 0.8125rem;
    color: var(--color-primary-light);
    margin-left: 24px;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--space-lg);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) var(--space-xl) var(--space-3xl);
    background: linear-gradient(170deg, var(--frost-white), var(--frost-ice), var(--frost-glacier));
    text-align: center;
    overflow: hidden;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
}

.legal-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.legal-hero-date {
    font-size: 0.875rem;
    color: var(--color-primary-light);
    font-family: var(--font-mono);
}

.legal-content {
    background: var(--frost-white);
    padding: var(--space-4xl) var(--space-xl);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-card {
    background: white;
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-4xl);
    box-shadow: var(--shadow-frost-md);
}

.legal-card h2 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--frost-border);
}

.legal-card h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-primary-light);
    margin-bottom: var(--space-md);
}

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

.legal-card li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-primary-light);
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.legal-card a {
    color: var(--color-accent);
    text-decoration: underline;
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--frost-border-strong);
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.875rem;
    color: var(--color-primary-light);
    font-weight: 600;
}

/* ============================================
   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-actions {
        justify-content: center;
    }

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

    .hero-visual {
        order: -1;
    }

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

    .badge-1 {
        right: 5%;
    }

    .badge-2 {
        left: 5%;
    }

    .badge-3 {
        right: 10%;
    }

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

    .feature-card-large {
        grid-row: span 1;
    }

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

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

    .about-card-stack {
        height: 350px;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(248, 250, 255, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--duration-normal) var(--ease-out);
        border-left: 1px solid var(--frost-border);
        box-shadow: -8px 0 32px rgba(26, 54, 93, 0.1);
        z-index: 5;
    }

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

    .nav-link {
        font-size: 1rem;
        padding: var(--space-sm) 0;
        width: 100%;
    }

    .nav-link::after {
        bottom: 0;
        left: 0;
        transform: none;
    }

    .nav-cta {
        width: auto;
        margin-top: var(--space-md);
    }

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

    .feature-card-large {
        grid-row: span 1;
    }

    .feature-card-wide {
        grid-column: span 1;
    }

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

    .gallery-item-featured,
    .gallery-item-wide {
        grid-column: span 1;
    }

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

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

    .about-card-stack {
        height: 420px;
    }

    .about-card-1 {
        left: 5%;
        top: 0;
    }

    .about-card-2 {
        right: 5%;
        top: 35%;
    }

    .about-card-3 {
        left: 15%;
        bottom: 0;
    }

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

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

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

    .cookie-inner {
        padding: var(--space-lg);
    }

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

    .cookie-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }

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

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

    .hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
    }

    .floating-badge {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: var(--space-3xl) var(--space-md);
    }

    .hero {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

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

    .hero-title {
        font-size: 2.25rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-card-stack {
        height: 380px;
    }

    .about-card {
        padding: var(--space-lg);
    }

    .about-card-1 {
        width: 180px;
        left: 0;
    }

    .about-card-2 {
        width: 170px;
        right: 0;
    }

    .about-card-3 {
        width: 160px;
        left: 10%;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
    }

    .ticker-content {
        animation: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .cookie-banner,
    .social-proof-bar,
    .scroll-indicator,
    .hero-crystal-grid {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

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

Now the JavaScript:

```js