/* SEKTUR COMMAND CENTER - CYBERPUNK MINIMALIST */

/* Self-hosted Exo 2 variable font */
@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('fonts/exo2.woff2') format('woff2');
}

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

:root {
    /* Colors */
    --bg-primary: #050505;
    --bg-surface: #121212;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #404040;

    /* App Colors */
    --color-white: #FFFFFF;
    --color-teal: #00F5D4;
    --color-cyan: #00F0FF;
    --color-amber: #FFB000;
    --color-red: #FF3366;
    --color-purple: #B794F4;
    --color-green: #39FF14;

    /* Spacing */
    --top-nav-height: 70px;
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: var(--top-nav-height);
}

/* COMPACT TOP NAVIGATION */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-nav-height);
    background: linear-gradient(to bottom, var(--bg-primary), rgba(5, 5, 5, 0.95));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: inherit;
}

.nav-rocket {
    width: 65px;
    height: 65px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-rocket:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nav-wordmark {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}


/* === ORB GLASS MARBLE SYSTEM === */
/* Caustic puddle — refracted light pooling beneath the glass ball */
.orb-glow {
    position: absolute;
    width: 70%;
    height: 35%;
    bottom: -5%;
    left: 15%;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass marble core — crystal ball with realistic refraction */
.orb-core {
    position: absolute;
    width: 45%;
    height: 45%;
    top: 27.5%;
    left: 27.5%;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Glass rim — Fresnel edge, brighter at glancing angles */
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    outline: 1px solid rgba(255, 255, 255, 0.08);
    outline-offset: 2px;
    /* Deep crystal ball depth stack */
    box-shadow:
        /* External drop shadow + ambient glow */
        0 6px 30px 0 rgba(0, 0, 0, 0.75),
        0 0 15px 4px rgba(255, 255, 255, 0.06),
        /* Fresnel rim darkening — edges darken like real glass */
        inset 0 0 15px 8px rgba(0, 0, 0, 0.45),
        /* Internal top illumination — light from above */
        inset 0 12px 20px rgba(255, 255, 255, 0.3),
        /* Internal bottom shadow (underside) */
        inset 0 -10px 20px rgba(0, 0, 0, 0.7),
        /* Side depth — roundness */
        inset -6px -4px 15px rgba(0, 0, 0, 0.4),
        inset 6px 4px 15px rgba(255, 255, 255, 0.1),
        /* Center glow — internal light refraction */
        inset 0 0 25px rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* Specular highlight — sharp crescent arc like light hitting glass */
.orb-core::before {
    content: '';
    position: absolute;
    top: 4%;
    left: 8%;
    width: 45%;
    height: 45%;
    background:
        /* Hard specular pinpoint — bright dot like sun on glass */
        radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 5%,
            rgba(255, 255, 255, 0.7) 12%,
            transparent 20%),
        /* Crescent arc — soft luminous spread */
        radial-gradient(ellipse at 35% 35%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.5) 30%,
            rgba(255, 255, 255, 0.15) 55%,
            transparent 80%);
    border-radius: 50%;
    filter: blur(0.3px);
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Environment horizon + bottom caustic — simulates refracted surroundings */
.orb-core::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Horizon band — reflected environment line across equator */
        linear-gradient(180deg,
            transparent 0%,
            transparent 38%,
            rgba(255, 255, 255, 0.08) 42%,
            rgba(255, 255, 255, 0.12) 48%,
            rgba(255, 255, 255, 0.08) 52%,
            rgba(255, 255, 255, 0.04) 56%,
            transparent 62%,
            transparent 100%),
        /* Bottom caustic concentration */
        radial-gradient(ellipse at 55% 80%,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 55%),
        /* Rim darkening overlay — Fresnel effect reinforcement */
        radial-gradient(circle at 50% 50%,
            transparent 30%,
            rgba(0, 0, 0, 0.15) 65%,
            rgba(0, 0, 0, 0.35) 85%,
            rgba(0, 0, 0, 0.5) 100%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Hover: highlight shifts slightly, simulating light movement */
.orb-container:hover .orb-core::before {
    top: 5%;
    left: 12%;
    opacity: 1;
}

.orb-container:hover .orb-core::after {
    opacity: 0.85;
}

/* ══════════════════════════════════════════════════════════════
   ORB COLORS — Crystal Ball / Optical Glass Appearance
   Each orb: clear glass sphere with colored interior,
   Fresnel rim darkening, specular crescent, environment horizon
   ══════════════════════════════════════════════════════════════ */

/* ── WHITE (SEKTUR / RADIANT) ── */
.orb-glow-white {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 70%);
}

.orb-core-white {
    background:
        /* Upper clear glass area */
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
        /* Lower refracted area — slightly tinted */
        radial-gradient(ellipse at 50% 70%, rgba(200, 210, 230, 0.3) 0%, transparent 50%),
        /* Core sphere gradient — clear glass with depth */
        radial-gradient(circle at 50% 45%,
            rgba(240, 245, 255, 0.95) 0%,
            rgba(220, 225, 240, 0.85) 25%,
            rgba(190, 195, 210, 0.7) 50%,
            rgba(160, 165, 180, 0.55) 75%,
            rgba(120, 125, 140, 0.4) 100%);
    box-shadow:
        0 4px 25px 0 rgba(255, 255, 255, 0.25),
        0 0 8px 2px rgba(255, 255, 255, 0.08),
        inset 0 0 12px 6px rgba(0, 0, 0, 0.3),
        inset 0 -8px 18px rgba(0, 0, 0, 0.5),
        inset 0 8px 18px rgba(255, 255, 255, 0.3),
        inset -4px -3px 12px rgba(0, 0, 0, 0.3),
        inset 4px 3px 12px rgba(255, 255, 255, 0.2);
}

/* ── TEAL (QUOTA) ── */
.orb-glow-teal {
    background: radial-gradient(circle, rgba(0, 245, 212, 0.9) 0%, rgba(0, 245, 212, 0.3) 40%, rgba(0, 245, 212, 0) 70%);
}

.orb-core-teal {
    background:
        /* Upper clear glass catchlight */
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
        /* Lower teal refraction pool */
        radial-gradient(ellipse at 50% 70%, rgba(0, 245, 212, 0.35) 0%, transparent 50%),
        /* Core gradient — teal glass */
        radial-gradient(circle at 50% 45%,
            rgba(120, 255, 240, 0.9) 0%,
            rgba(0, 245, 212, 0.85) 25%,
            rgba(0, 200, 175, 0.7) 50%,
            rgba(0, 155, 135, 0.5) 75%,
            rgba(0, 100, 90, 0.35) 100%);
    box-shadow:
        0 4px 25px 0 rgba(0, 245, 212, 0.3),
        0 0 8px 2px rgba(0, 245, 212, 0.1),
        inset 0 0 12px 6px rgba(0, 0, 0, 0.3),
        inset 0 -8px 18px rgba(0, 0, 0, 0.5),
        inset 0 8px 18px rgba(255, 255, 255, 0.25),
        inset -4px -3px 12px rgba(0, 0, 0, 0.3),
        inset 4px 3px 12px rgba(0, 245, 212, 0.3);
}

/* ── CYAN (STASIS) ── */
.orb-glow-cyan {
    background: radial-gradient(circle, rgba(0, 240, 255, 0.9) 0%, rgba(0, 240, 255, 0.3) 40%, rgba(0, 240, 255, 0) 70%);
}

.orb-core-cyan {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 70%, rgba(0, 240, 255, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 50% 45%,
            rgba(120, 250, 255, 0.9) 0%,
            rgba(0, 240, 255, 0.85) 25%,
            rgba(0, 195, 210, 0.7) 50%,
            rgba(0, 145, 160, 0.5) 75%,
            rgba(0, 95, 110, 0.35) 100%);
    box-shadow:
        0 4px 25px 0 rgba(0, 240, 255, 0.3),
        0 0 8px 2px rgba(0, 240, 255, 0.1),
        inset 0 0 12px 6px rgba(0, 0, 0, 0.3),
        inset 0 -8px 18px rgba(0, 0, 0, 0.5),
        inset 0 8px 18px rgba(255, 255, 255, 0.25),
        inset -4px -3px 12px rgba(0, 0, 0, 0.3),
        inset 4px 3px 12px rgba(0, 240, 255, 0.3);
}

/* ── AMBER (ENTROPY) ── */
.orb-glow-amber {
    background: radial-gradient(circle, rgba(255, 176, 0, 0.9) 0%, rgba(255, 176, 0, 0.3) 40%, rgba(255, 176, 0, 0) 70%);
}

.orb-core-amber {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 70%, rgba(255, 176, 0, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 50% 45%,
            rgba(255, 220, 120, 0.9) 0%,
            rgba(255, 176, 0, 0.85) 25%,
            rgba(220, 150, 0, 0.7) 50%,
            rgba(170, 115, 0, 0.5) 75%,
            rgba(115, 75, 0, 0.35) 100%);
    box-shadow:
        0 4px 25px 0 rgba(255, 176, 0, 0.3),
        0 0 8px 2px rgba(255, 176, 0, 0.1),
        inset 0 0 12px 6px rgba(0, 0, 0, 0.3),
        inset 0 -8px 18px rgba(0, 0, 0, 0.5),
        inset 0 8px 18px rgba(255, 255, 255, 0.25),
        inset -4px -3px 12px rgba(0, 0, 0, 0.3),
        inset 4px 3px 12px rgba(255, 200, 50, 0.3);
}

/* ── RED (KINETIC) ── */
.orb-glow-red {
    background: radial-gradient(circle, rgba(255, 51, 102, 0.9) 0%, rgba(255, 51, 102, 0.3) 40%, rgba(255, 51, 102, 0) 70%);
}

.orb-core-red {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 70%, rgba(255, 51, 102, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 50% 45%,
            rgba(255, 140, 170, 0.9) 0%,
            rgba(255, 51, 102, 0.85) 25%,
            rgba(220, 45, 90, 0.7) 50%,
            rgba(170, 30, 65, 0.5) 75%,
            rgba(115, 20, 45, 0.35) 100%);
    box-shadow:
        0 4px 25px 0 rgba(255, 51, 102, 0.3),
        0 0 8px 2px rgba(255, 51, 102, 0.1),
        inset 0 0 12px 6px rgba(0, 0, 0, 0.3),
        inset 0 -8px 18px rgba(0, 0, 0, 0.5),
        inset 0 8px 18px rgba(255, 255, 255, 0.25),
        inset -4px -3px 12px rgba(0, 0, 0, 0.3),
        inset 4px 3px 12px rgba(255, 120, 150, 0.3);
}

/* ── PURPLE (UMBRA) ── */
.orb-glow-purple {
    background: radial-gradient(circle, rgba(183, 148, 244, 0.9) 0%, rgba(183, 148, 244, 0.3) 40%, rgba(183, 148, 244, 0) 70%);
}

.orb-core-purple {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 70%, rgba(183, 148, 244, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 50% 45%,
            rgba(210, 190, 255, 0.9) 0%,
            rgba(183, 148, 244, 0.85) 25%,
            rgba(150, 120, 210, 0.7) 50%,
            rgba(115, 90, 170, 0.5) 75%,
            rgba(80, 60, 125, 0.35) 100%);
    box-shadow:
        0 4px 25px 0 rgba(183, 148, 244, 0.3),
        0 0 8px 2px rgba(183, 148, 244, 0.1),
        inset 0 0 12px 6px rgba(0, 0, 0, 0.3),
        inset 0 -8px 18px rgba(0, 0, 0, 0.5),
        inset 0 8px 18px rgba(255, 255, 255, 0.25),
        inset -4px -3px 12px rgba(0, 0, 0, 0.3),
        inset 4px 3px 12px rgba(200, 170, 255, 0.3);
}

/* ── GREEN (TRACE) ── */
.orb-glow-green {
    background: radial-gradient(circle, rgba(57, 255, 20, 0.9) 0%, rgba(57, 255, 20, 0.3) 40%, rgba(57, 255, 20, 0) 70%);
}

.orb-core-green {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 70%, rgba(57, 255, 20, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 50% 45%,
            rgba(140, 255, 120, 0.9) 0%,
            rgba(57, 255, 20, 0.85) 25%,
            rgba(45, 210, 15, 0.7) 50%,
            rgba(35, 160, 10, 0.5) 75%,
            rgba(25, 110, 5, 0.35) 100%);
    box-shadow:
        0 4px 25px 0 rgba(57, 255, 20, 0.3),
        0 0 8px 2px rgba(57, 255, 20, 0.1),
        inset 0 0 12px 6px rgba(0, 0, 0, 0.3),
        inset 0 -8px 18px rgba(0, 0, 0, 0.5),
        inset 0 8px 18px rgba(255, 255, 255, 0.25),
        inset -4px -3px 12px rgba(0, 0, 0, 0.3),
        inset 4px 3px 12px rgba(100, 255, 80, 0.3);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Orb Labels */
.orb-label {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.orb-container:hover .orb-label,
.orb-container.active .orb-label {
    opacity: 1;
}

.orb-meta {
    margin-top: 4px;
    font-family: 'Exo 2', sans-serif;
    font-size: 9px;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.3s ease;
}


/* MAIN CONTENT STAGE */
.content-stage {
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

.page {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 0 40px;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* HOME PAGE - HERO */
.hero {
    text-align: center;
}

/* Override snap-section padding to align arrow with other sections */
.hero.snap-section {
    padding-bottom: 0;
}

/* Move hero arrow up to align with mission/ecosystem arrows */
.hero .scroll-arrow {
    bottom: 120px;
}

.hero-orb {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    animation: float 6s ease-in-out infinite;
}

/* Larger orb image for hero section */
.orb-image-hero {
    width: 315% !important;
    height: 315% !important;
}

.hero-orb .orb-glow {
    width: 100%;
    height: 100%;
}

.hero-orb .orb-core {
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
}

.wordmark {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 20px 0;
    line-height: 1.1;
    position: relative;
    z-index: 5;
}

.tagline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 5;
}

.system-status {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0.7;
    position: relative;
    z-index: 5;
}

.mission {
    max-width: 900px;
    margin: 100px auto;
    padding: 50px 60px;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* SCROLL INDICATOR (legacy) */
.scroll-indicator {
    display: none;
}

/* SCROLL ARROW — Apple-style, bottom of each snap section */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-arrow span {
    font-size: 2rem;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover span {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === SNAP SCROLL SYSTEM === */
.snap-container {
    height: calc(100vh - var(--top-nav-height));
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.snap-section {
    scroll-snap-align: start;
    height: calc(100vh - var(--top-nav-height));
    min-height: calc(100vh - var(--top-nav-height));
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 40px 80px;
}

/* Coming-soon section: orbs centered, footer at bottom */
.coming-soon-section.snap-section {
    justify-content: center;
}

.snap-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.snap-section-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Override default section styles for snap mode */
.snap-section.section {
    opacity: 1;
    transform: none;
}

.snap-section.section.visible {
    opacity: 1;
    transform: none;
}


/* MISSION SECTION */
.mission-section {
    position: relative;
    overflow: hidden;
}

.parallax-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.snap-section-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
}

.mission-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

/* ECOSYSTEM CARD SECTIONS */
.ecosystem-card-section {
    overflow: hidden;
}

.ecosystem-card-section .snap-section-content {
    max-width: 600px;
}

.ecosystem-card-section .app-card {
    width: 100%;
    opacity: 1;
    transform: none;
}

.ecosystem-heading {
    margin-bottom: 30px;
}

/* APP CARDS */
.app-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    overflow: hidden;
}

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

.app-card[data-stagger="0"].visible {
    transition-delay: 0s;
}

.app-card[data-stagger="1"].visible {
    transition-delay: 0.1s;
}

.app-card[data-stagger="2"].visible {
    transition-delay: 0.2s;
}

.app-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.app-card-orb {
    width: 120px;
    height: 120px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Photorealistic rendered orb image */
.orb-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 324%;
    height: 324%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: lighten;
}

/* Quota orb scaled to visually match Stasis (teal sphere 702px vs cyan 514px in 2048px frames) */
.orb-image-quota {
    width: 237%;
    height: 237%;
}

.app-card-content {
    width: 100%;
}

.status-badge {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.status-stable {
    background: rgba(0, 240, 180, 0.15);
    color: rgba(0, 240, 180, 1);
    border: 1px solid rgba(0, 240, 180, 0.3);
}

.status-dev {
    background: rgba(255, 180, 0, 0.15);
    color: rgba(255, 180, 0, 1);
    border: 1px solid rgba(255, 180, 0, 0.3);
}

.status-planned {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-card-name {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0 0 10px 0;
}

.app-card-tagline {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.app-card-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.app-card:hover .app-card-details {
    max-height: 150px;
    opacity: 1;
    margin-top: 20px;
}

.app-card-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.app-card-cta {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.app-card-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* PLANNED APPS */
.planned-apps {
    margin-top: 80px;
    max-width: 1200px;
    width: 100%;
}

.planned-heading {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* Unnamed orbs grid */
.planned-grid-unnamed {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Orb-only styling for unnamed Coming Soon orbs */
.orb-only {
    position: relative;
    width: 80px;
    height: 80px;
    transition: all 0.4s ease;
    opacity: 0.6;
    cursor: pointer;
}

.orb-only:hover {
    opacity: 1;
    transform: scale(1.15);
}

.orb-only .orb-glow {
    opacity: 0.4;
}

.orb-only:hover .orb-glow {
    opacity: 0.9;
    filter: blur(20px);
    transform: scale(1.2);
}

/* Coming Soon orb images */
.coming-soon-orb {
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 15px;
    transition: scale 0.3s ease, box-shadow 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.coming-soon-orb:hover {
    scale: 1.15;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}


.coming-soon-orb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: lighten;
    pointer-events: none;
}

/* Individual orb scaling based on sphere-to-frame ratios */
.orb-image-amber {
    width: 398%;
    height: 398%;
}

.orb-image-red {
    width: 350%;
    height: 350%;
}

.orb-image-green {
    width: 296%;
    height: 296%;
}

.orb-image-purple {
    width: 351%;
    height: 351%;
}

.orb-image-white {
    width: 260%;
    height: 260%;
}

/* Animation delays for staggered floating */
.orb-float-1 {
    animation-delay: 0s;
}

.orb-float-2 {
    animation-delay: 1.2s;
}

.orb-float-3 {
    animation-delay: 2.4s;
}

.orb-float-4 {
    animation-delay: 3.6s;
}

.orb-float-5 {
    animation-delay: 4.8s;
}


/* Hover glows for each orb color */
.orb-only:hover .coming-soon-orb:has(.orb-image-amber) {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.6), 0 0 40px rgba(255, 165, 0, 0.3);
}

.orb-only:hover .coming-soon-orb:has(.orb-image-red) {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6), 0 0 40px rgba(220, 38, 38, 0.3);
}

.orb-only:hover .coming-soon-orb:has(.orb-image-green) {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.3);
}

.orb-only:hover .coming-soon-orb:has(.orb-image-purple) {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6), 0 0 40px rgba(168, 85, 247, 0.3);
}

.orb-only:hover .coming-soon-orb:has(.orb-image-white) {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
}




.app-card-planned {
    padding: 30px 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.app-card-planned:hover {
    opacity: 0.9;
    transform: translateY(-4px) scale(1.01);
}

.app-card-orb-small {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 15px;
}

.app-card-name-small {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 10px 0;
}


/* APP PAGES */
.app-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Stacked subpage header — matches screenshot layout */
.app-header-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-header-stacked .app-name {
    margin-bottom: 8px;
}

.app-header-stacked .app-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.app-header-stacked .status-badge {
    margin-bottom: 24px;
}

.app-body {
    font-size: 1rem;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    max-width: 600px;
}

.app-orb-large {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.app-orb-large .orb-glow {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.app-orb-large .orb-core {
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
}

.app-title-block {
    flex: 1;
}

.app-name {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Inline orb next to app name headings */
.app-name-orb {
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    overflow: hidden;
    vertical-align: middle;
    position: relative;
    animation: float 6s ease-in-out infinite;
    margin-left: 10px;
}

.app-name-orb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Quota orb: sphere is 34.3% of frame, scale = 1/0.343 ≈ 2.9x */
.app-name-orb-quota img {
    width: 290%;
    height: 290%;
}

/* Stasis orb: sphere is 25.1% of frame, scale = 1/0.251 ≈ 4x */
.app-name-orb-stasis img {
    width: 400%;
    height: 400%;
}

.app-tagline {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.app-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
}

/* FEATURES GRID */
.features-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 10px;
}

.feature {
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    min-width: 250px;
    flex: 1 0 250px;
    scroll-snap-align: start;
}

.feature:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* DOWNLOAD SECTION */
.download-section {
    text-align: center;
    padding: 60px 0;
}

.download-section h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* COMING SOON */
.coming-soon {
    text-align: center;
    padding: 100px 0;
}

.coming-soon p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin: 20px 0;
}

/* FOOTER */
footer {
    margin-top: 120px;
    padding: 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.footer-left p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-right a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: var(--text-primary);
}

/* SOCIAL MEDIA ICONS */
.footer-center {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .content-stage {
        padding: 0 16px;
    }

    /* --- Hide scrollbars on mobile --- */
    .snap-container {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .snap-container::-webkit-scrollbar {
        display: none;
    }

    /* --- Reduce spacing across all snap sections --- */
    .snap-section {
        padding: 20px 16px 40px;
    }

    .hero.snap-section {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Move all arrows up above Safari toolbar */
    .scroll-arrow {
        bottom: 100px;
    }

    .wordmark {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .tagline {
        font-size: 1.2rem;
        letter-spacing: 0.05em;
    }

    .section-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    /* --- Ecosystem card sections on mobile --- */
    .ecosystem-card-section .snap-section-content {
        max-width: 100%;
        padding: 0 8px;
    }

    .ecosystem-card-section .app-card {
        border-radius: 16px;
    }

    /* Always show card details on mobile (no hover) */
    .app-card-details {
        max-height: 150px;
        opacity: 1;
        margin-top: 16px;
    }

    .app-card {
        padding: 30px 24px;
    }

    .app-card-orb {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .app-card-name {
        font-size: 1.6rem;
    }

    .app-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .app-name {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .features-grid {
        gap: 20px;
    }

    .feature {
        min-width: 260px;
    }

    .page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* --- Coming Soon orbs — always glowing on mobile --- */
    .planned-apps {
        margin-top: 40px;
    }

    .planned-grid-unnamed {
        gap: 16px;
        flex-wrap: wrap;
    }

    .orb-only {
        width: 55px;
        height: 55px;
        aspect-ratio: 1;
        opacity: 1;
    }

    .orb-only .orb-glow {
        opacity: 0.6;
    }

    /* JS-toggled enhanced glow on tap — expand puddle into full halo */
    .orb-only.orb-tapped {
        transform: scale(1.15);
        transition: transform 0.3s ease;
    }

    .orb-only.orb-tapped .orb-glow {
        width: 160%;
        height: 160%;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.9;
        filter: blur(18px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Scroll arrow sizing for mobile */
    .scroll-arrow span {
        font-size: 1.5rem;
    }

    .snap-footer {
        padding: 20px 16px;
    }
}

/* SCROLLBAR STYLING — hidden for clean experience */
::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-container {
    min-height: 100vh;
    padding: 100px 60px 60px;
    max-width: 720px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.contact-header .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* ---- Form ---- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group label .required {
    color: rgba(100, 140, 255, 0.7);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

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

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(100, 140, 255, 0.4);
    box-shadow: 0 0 20px rgba(100, 140, 255, 0.08), inset 0 0 20px rgba(100, 140, 255, 0.03);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #0a0a0a;
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

/* ---- Row layout for name + email ---- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ---- Submit button ---- */
.submit-btn {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(100, 140, 255, 0.15), rgba(100, 140, 255, 0.05));
    border: 1px solid rgba(100, 140, 255, 0.25);
    border-radius: 10px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(100, 140, 255, 0.2), rgba(100, 140, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    border-color: rgba(100, 140, 255, 0.5);
    box-shadow: 0 0 30px rgba(100, 140, 255, 0.15), 0 0 60px rgba(100, 140, 255, 0.05);
    transform: translateY(-1px);
}

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

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

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

/* ---- Success / Error states ---- */
.form-status {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-status.success {
    background: rgba(80, 200, 120, 0.08);
    border: 1px solid rgba(80, 200, 120, 0.2);
    color: rgba(80, 200, 120, 0.9);
}

.form-status.error {
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.2);
    color: rgba(255, 80, 80, 0.9);
}

.form-status h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.form-status p {
    font-size: 0.95rem;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* ---- Contact Footer ---- */
.contact-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

/* ---- Contact Responsive ---- */
@media (max-width: 768px) {
    .contact-container {
        padding: 90px 24px 40px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ============================================
   PRIVACY PAGE
   ============================================ */

.privacy-container {
    min-height: 100vh;
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
    color: var(--text-primary);
}

.privacy-header .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.privacy-content h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-content h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-content h4 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-content p {
    line-height: 1.8;
    margin: 15px 0;
    color: var(--text-secondary);
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-content li {
    line-height: 1.8;
    margin: 10px 0;
    color: var(--text-secondary);
}

.privacy-content li ul {
    margin: 5px 0;
}

.privacy-content li ul li {
    margin: 5px 0;
}

.privacy-content a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.5);
}

.privacy-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.privacy-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.privacy-footer a:hover {
    color: var(--text-primary);
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 80px 24px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   404 PAGE
   ============================================ */

.error-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.error-code {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.error-message {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.error-cta {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-decoration: none;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.error-cta:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

/* ============================================
   SHARED UTILITY CLASSES
   ============================================ */

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
}

.inline-link {
    color: inherit;
    text-decoration: underline;
}

/* REDUCED MOTION - Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}