/* ============================================================
   ICE HAVEN - FROST DESIGN SYSTEM
   Scandinavian ice crystal aesthetic
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Palette */
    --primary: #1a365d;
    --primary-light: #2a4a7f;
    --primary-dark: #0f2140;
    --secondary: #f0f5ff;
    --secondary-warm: #e8eef8;
    --accent: #5fb5d4;
    --accent-light: #7ec8e2;
    --accent-dark: #3a9bc0;
    --accent-glow: rgba(95, 181, 212, 0.15);

    /* Frost Tones */
    --frost-white: #fafcff;
    --frost-ice: #f4f8fc;
    --frost-pale: #e6eef8;
    --frost-silver: #c4d4e8;
    --frost-steel: #8ba0be;
    --frost-deep: #4a6180;
    --glacier: #dce8f4;

    /* Functional */
    --text-primary: #1a365d;
    --text-secondary: #4a6180;
    --text-muted: #8ba0be;
    --text-inverse: #fafcff;
    --border-light: rgba(95, 181, 212, 0.2);
    --border-medium: rgba(95, 181, 212, 0.35);
    --border-strong: rgba(95, 181, 212, 0.5);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(26, 54, 93, 0.04);
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 54, 93, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 54, 93, 0.1);
    --shadow-xl: 0 16px 48px rgba(26, 54, 93, 0.12);
    --shadow-frost: 0 4px 24px rgba(95, 181, 212, 0.1);
    --shadow-frost-lg: 0 8px 40px rgba(95, 181, 212, 0.15);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* 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: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--frost-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

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

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

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

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

ul {
    list-style: none;
}

/* --- Utility Classes --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 var(--space-lg);
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes crystalShimmer {
    0% { opacity: 0.03; }
    50% { opacity: 0.08; }
    100% { opacity: 0.03; }
}

@keyframes barFill {
    from { width: 0; }
}

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

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-slower) var(--ease-out),
                transform var(--duration-slower) var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn-frost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-frost-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-inverse);
    border: 1px solid rgba(95, 181, 212, 0.2);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(95, 181, 212, 0);
}

.btn-frost-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-dark));
    box-shadow: var(--shadow-lg), 0 0 24px rgba(95, 181, 212, 0.2);
    transform: translateY(-1px);
}

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

.btn-frost-secondary {
    background: var(--frost-ice);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
}

.btn-frost-secondary:hover {
    background: var(--frost-pale);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-frost-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-frost-ghost:hover {
    background: rgba(95, 181, 212, 0.06);
    border-color: var(--border-medium);
}

.btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
    z-index: 1;
}

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

.logo:hover {
    color: var(--text-primary);
}

.logo-crystal {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--duration-fast) var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-out);
}

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

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

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-inverse);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(95, 181, 212, 0.2);
}

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

.nav-link.nav-cta:hover {
    color: var(--text-inverse);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-dark));
    box-shadow: 0 0 16px rgba(95, 181, 212, 0.2);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--duration-normal) var(--ease-out);
    border-radius: 1px;
}

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

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

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

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(250, 252, 255, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
        padding: var(--space-3xl);
        border-left: 1px solid var(--border-light);
        transition: right var(--duration-slow) var(--ease-out);
        box-shadow: -8px 0 40px rgba(26, 54, 93, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(95, 181, 212, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(95, 181, 212, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(26, 54, 93, 0.03) 0%, transparent 40%),
        linear-gradient(180deg, var(--frost-white) 0%, var(--frost-ice) 50%, var(--secondary) 100%);
}

.crystal-grid {
    position: absolute;
    inset: 0;
}

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

.crystal-1 {
    width: 200px; height: 200px;
    top: 10%; left: 5%;
    transform: rotate(30deg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(95, 181, 212, 0.02);
    animation-delay: 0s;
}

.crystal-2 {
    width: 150px; height: 150px;
    top: 60%; right: 10%;
    transform: rotate(-15deg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(95, 181, 212, 0.02);
    animation-delay: 1s;
}

.crystal-3 {
    width: 100px; height: 100px;
    top: 20%; right: 25%;
    transform: rotate(60deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: rgba(95, 181, 212, 0.03);
    animation-delay: 2s;
}

.crystal-4 {
    width: 80px; height: 80px;
    bottom: 20%; left: 20%;
    transform: rotate(15deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: rgba(95, 181, 212, 0.02);
    animation-delay: 3s;
}

.crystal-5 {
    width: 120px; height: 120px;
    top: 40%; left: 45%;
    transform: rotate(45deg);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: rgba(95, 181, 212, 0.015);
    animation-delay: 0.5s;
}

.crystal-6 {
    width: 60px; height: 60px;
    top: 75%; left: 60%;
    transform: rotate(-30deg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(95, 181, 212, 0.025);
    animation-delay: 1.5s;
}

.crystal-7 {
    width: 180px; height: 180px;
    bottom: 5%; right: 30%;
    transform: rotate(20deg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(95, 181, 212, 0.015);
    animation-delay: 4s;
}

.crystal-8 {
    width: 90px; height: 90px;
    top: 5%; right: 5%;
    transform: rotate(-45deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: rgba(95, 181, 212, 0.02);
    animation-delay: 2.5s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s var(--ease-out) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

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

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-secondary);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.title-line-2 {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    color: var(--text-primary);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

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

.frame-border {
    position: absolute;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
}

.frame-border-outer {
    inset: 0;
    transform: rotate(3deg);
}

.frame-border-inner {
    inset: 16px;
    border-color: var(--border-medium);
    transform: rotate(-2deg);
}

.hero-game-icon {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

.hero-image-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 181, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
}

.floating-crystal {
    position: absolute;
    z-index: 3;
}

.floating-crystal-1 {
    top: -10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-crystal-2 {
    bottom: 10%;
    left: -5%;
    animation: floatSlow 8s ease-in-out infinite 1s;
}

.floating-crystal-3 {
    top: 50%;
    right: -10%;
    animation: float 7s ease-in-out infinite 2s;
}

/* Hero 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: 1;
    animation: fadeIn 1s var(--ease-out) 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
    animation: scrollLine 2s ease-in-out infinite;
}

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

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

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

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

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

    .hero-visual {
        order: -1;
    }

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

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

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: var(--space-md);
    }

    .hero-stat-divider {
        display: none;
    }

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

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-dark);
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid var(--border-light);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Features Section --- */
.features {
    padding: var(--space-5xl) 0;
    background: var(--frost-ice);
    position: relative;
}

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

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

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    margin-bottom: var(--space-lg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

.feature-line {
    width: 40px;
    height: 1px;
    background: var(--border-medium);
    margin-top: var(--space-lg);
    transition: width var(--duration-normal) var(--ease-out);
}

.feature-card:hover .feature-line {
    width: 60px;
    background: var(--accent);
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--space-5xl) 0;
    background: var(--frost-white);
}

.gallery-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.gallery-main {
    position: relative;
}

.gallery-main-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background: var(--frost-pale);
}

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

.gallery-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.6));
}

.gallery-caption {
    color: var(--text-inverse);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

.gallery-thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    background: var(--frost-pale);
}

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

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

.gallery-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.2);
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 54, 93, 0.3);
    transition: opacity var(--duration-fast) var(--ease-out);
}

.gallery-thumb.active::after,
.gallery-thumb:hover::after {
    opacity: 0;
}

@media (max-width: 600px) {
    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Social Proof / Counters Section --- */
.social-proof {
    padding: var(--space-5xl) 0;
    background: var(--frost-ice);
    position: relative;
}

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

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

.counter-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.counter-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-frost);
}

.counter-icon {
    margin-bottom: var(--space-md);
}

.counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.counter-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.counter-bar {
    width: 100%;
    height: 3px;
    background: var(--frost-pale);
    border-radius: 2px;
    overflow: hidden;
}

.counter-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s var(--ease-out);
}

.counter-bar-fill.animated {
    animation: barFill 1.5s var(--ease-out) forwards;
}

@media (max-width: 900px) {
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .counters-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-section {
    margin-bottom: var(--space-4xl);
}

.testimonials-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

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

.testimonial-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-frost);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.author-role {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Live Feed */
.live-feed {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

.live-feed-items {
    max-height: 200px;
    overflow: hidden;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    border-bottom: 1px solid rgba(95, 181, 212, 0.06);
    transition: background var(--duration-fast) var(--ease-out);
    animation: fadeInUp 0.5s var(--ease-out) both;
}

.feed-item:hover {
    background: rgba(95, 181, 212, 0.03);
}

.feed-icon {
    flex-shrink: 0;
}

.feed-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feed-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* --- FAQ Section --- */
.faq {
    padding: var(--space-5xl) 0;
    background: var(--frost-white);
}

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

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.08);
}

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

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

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

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

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

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

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

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

/* --- Signup Section --- */
.signup {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--frost-ice) 0%, var(--secondary) 50%, var(--glacier) 100%);
    position: relative;
    overflow: hidden;
}

.signup-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.signup-crystal {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.signup-crystal-1 {
    width: 300px; height: 300px;
    top: -50px; right: -50px;
    background: rgba(95, 181, 212, 0.02);
    transform: rotate(15deg);
    animation: crystalShimmer 8s ease-in-out infinite;
}

.signup-crystal-2 {
    width: 200px; height: 200px;
    bottom: -30px; left: -30px;
    background: rgba(95, 181, 212, 0.025);
    transform: rotate(-20deg);
    animation: crystalShimmer 6s ease-in-out infinite 2s;
}

.signup-crystal-3 {
    width: 150px; height: 150px;
    top: 40%; left: 10%;
    background: rgba(95, 181, 212, 0.015);
    transform: rotate(40deg);
    animation: crystalShimmer 7s ease-in-out infinite 1s;
}

.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-info .section-tag {
    margin-bottom: var(--space-lg);
}

.signup-info .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

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

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

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.signup-benefits svg {
    flex-shrink: 0;
}

/* Form */
.signup-form-container {
    position: relative;
}

.signup-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--frost-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.1);
    outline: none;
}

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

.form-group 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: var(--space-xs);
    min-height: 1rem;
}

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

.form-checkbox-group label.checkbox-label {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    position: relative;
}

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

.checkbox-custom {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid var(--border-medium);
    border-radius: 3px;
    background: var(--frost-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 1px;
    position: relative;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

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

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

.form-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
}

.form-message.error {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: #dc2626;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-lg);
    line-height: 1.6;
}

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

@media (max-width: 900px) {
    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .signup-info {
        text-align: center;
    }

    .signup-info .section-title {
        text-align: center;
    }

    .signup-benefits {
        align-items: center;
    }
}

/* --- Trust Section --- */
.trust {
    padding: var(--space-4xl) 0;
    background: var(--frost-white);
    position: relative;
}

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

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

.trust-card {
    text-align: center;
    padding: var(--space-xl);
}

.trust-icon {
    margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Footer --- */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: var(--space-4xl) 0 var(--space-2xl);
    border-bottom: 1px solid rgba(95, 181, 212, 0.1);
}

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

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

.footer-brand .logo-text {
    color: var(--text-inverse);
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.footer-contact p {
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
}

.footer-contact a {
    color: var(--accent-light);
}

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

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: var(--space-lg);
}

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

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

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

.footer-bottom {
    padding: var(--space-xl) 0;
}

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

.footer-bottom-content p {
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
}

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

.footer-age {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem !important;
    margin-top: var(--space-sm);
}

.footer-legal-links {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-divider {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(250, 252, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 32px rgba(26, 54, 93, 0.1);
    transform: translateY(100%);
    transition: transform var(--duration-slow) var(--ease-out);
}

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

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

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

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

.cookie-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-settings-panel {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.cookie-setting-item {
    margin-bottom: var(--space-md);
}

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

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

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

/* --- Age Modal --- */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 54, 93, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.age-modal.visible {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    background: var(--frost-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform var(--duration-normal) var(--ease-out);
}

.age-modal.visible .age-modal-content {
    transform: scale(1);
}

.age-crystal-icon {
    margin-bottom: var(--space-lg);
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.age-modal-content > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.age-modal-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.age-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Legal Pages --- */
.legal-content {
    padding: calc(72px + var(--space-4xl)) 0 var(--space-4xl);
    background: var(--frost-white);
    min-height: 100vh;
}

.legal-content .section-container {
    max-width: 800px;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-align: center;
}

.legal-content .legal-updated {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-3xl);
}

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

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

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

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

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

.legal-content li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    list-style: disc;
}

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

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

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

.legal-content .contact-box {
    background: var(--frost-ice);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.legal-content .contact-box p {
    margin-bottom: var(--space-xs);
}

/* --- Responsive Utilities --- */
@media (max-width: 768px) {
    .features {
        padding: var(--space-4xl) 0;
    }

    .gallery {
        padding: var(--space-4xl) 0;
    }

    .social-proof {
        padding: var(--space-4xl) 0;
    }

    .faq {
        padding: var(--space-4xl) 0;
    }

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

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

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .age-modal,
    .hero-bg-pattern,
    .signup-bg-pattern {
        display: none !important;
    }

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

/* Accessibility: 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-reveal] {
        opacity: 1;
        transform: none;
    }
}