/* ==================================================
   JUKO LANDING — Styles
   ================================================== */

/* --- DESIGN TOKENS --- */
:root {
    /* Brand JUKO (immuable, ordre des lettres J-U-K-O) */
    --p-purple: #7B61FF;
    --p-pink: #FF4D80;
    --p-teal: #4ECDC4;
    --p-yellow: #FFD166;

    /* Dégradés JUKO unifiés (toujours dans l'ordre J-U-K-O) */
    --gradient-juko: linear-gradient(90deg, var(--p-purple) 0%, var(--p-pink) 35%, var(--p-teal) 70%, var(--p-yellow) 100%);
    --gradient-juko-diag: linear-gradient(135deg, var(--p-purple) 0%, var(--p-pink) 35%, var(--p-teal) 70%, var(--p-yellow) 100%);
    --gradient-juko-soft: linear-gradient(135deg, rgba(123, 97, 255, 0.08) 0%, rgba(255, 77, 128, 0.08) 35%, rgba(78, 205, 196, 0.08) 70%, rgba(255, 209, 102, 0.08) 100%);

    /* Light theme (défaut) */
    --bg: #FAFAFC;
    --bg-elev: rgba(14, 14, 20, 0.04);
    --bg-nav: rgba(255, 255, 255, 0.78);
    --border-soft: rgba(14, 14, 20, 0.08);
    --border-strong: rgba(14, 14, 20, 0.16);
    --text-primary: #0E0E14;
    --text-soft: rgba(14, 14, 20, 0.68);
    --text-mute: rgba(14, 14, 20, 0.45);
    --shadow-nav: 0 14px 40px rgba(14, 14, 20, 0.08);
    --shadow-card: 0 4px 20px rgba(14, 14, 20, 0.05);

    /* Layout */
    --nav-top: 18px;
    --max-content: 900px;
    --ease: cubic-bezier(0.2, 0, 0.2, 1);
}

/* --- DARK THEME --- */
:root[data-theme="dark"] {
    --bg: #0E0E14;
    --bg-elev: rgba(255, 255, 255, 0.03);
    --bg-nav: rgba(20, 20, 28, 0.7);
    --border-soft: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text-primary: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.65);
    --text-mute: rgba(255, 255, 255, 0.4);
    --shadow-nav: 0 14px 40px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* --- RESET --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

html, body { scrollbar-width: none; }
body::-webkit-scrollbar { display: none; }

/* --- BACKGROUND PARTICLES --- */
.particles-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.10;
    filter: blur(1px);
    will-change: transform;
}

:root[data-theme="light"] .particle {
    opacity: 0.18;
    filter: blur(2px);
}

/* --- PROGRESS BAR --- */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--gradient-juko);
    z-index: 1000;
    width: 0;
    transition: width 0.1s linear;
}

/* ==================================================
   NAV FLOTTANTE CENTRÉE (Pill)
   ================================================== */
.floating-nav {
    position: fixed;
    top: var(--nav-top);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: top 0.3s var(--ease), transform 0.3s var(--ease);
}

.floating-nav.nav-hidden {
    transform: translate(-50%, -120%);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: var(--bg-nav);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    box-shadow: var(--shadow-nav);
}

.nav-logo {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 2px;
    padding: 8px 16px;
    background: var(--gradient-juko);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 9px 14px;
    border-radius: 999px;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--bg-elev);
}

.nav-menu a.active {
    color: var(--text-primary);
    background: var(--bg-elev);
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: var(--border-soft);
    margin: 0 4px;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-right: 4px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-soft);
    transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
    font-family: inherit;
}

.nav-btn:hover {
    color: var(--text-primary);
    background: var(--bg-elev);
}

.theme-icon {
    width: 16px;
    height: 16px;
    display: none;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

:root[data-theme="light"] .theme-icon.icon-moon,
:root:not([data-theme="dark"]) .theme-icon.icon-moon {
    display: block;
}

:root[data-theme="dark"] .theme-icon.icon-sun {
    display: block;
}

:root[data-theme="dark"] .theme-icon.icon-moon,
:root[data-theme="light"] .theme-icon.icon-sun {
    display: none;
}

.lang-btn {
    width: auto;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* --- HAMBURGER (mobile) --- */
.nav-burger {
    display: none;
    width: 38px;
    height: 38px;
    background: var(--bg-nav);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    box-shadow: var(--shadow-nav);
    cursor: pointer;
    position: relative;
    padding: 0;
    z-index: 110;
}

.nav-burger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.2s var(--ease), top 0.35s var(--ease);
    will-change: transform;
}

.nav-burger span:nth-child(1) { top: 12px; }
.nav-burger span:nth-child(2) { top: 18px; }
.nav-burger span:nth-child(3) { top: 24px; }

.nav-burger.open span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
}
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
}

/* --- MOBILE DROPDOWN --- */
.mobile-menu {
    position: fixed;
    top: calc(var(--nav-top) + 50px);
    left: 50%;
    transform: translate(-50%, -10px);
    z-index: 99;
    background: var(--bg-nav);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    box-shadow: var(--shadow-nav);
    padding: 14px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s 0.25s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s 0s;
}

.mobile-menu a {
    display: block;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 11px 16px;
    border-radius: 999px;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--text-primary);
    background: var(--bg-elev);
}

.mobile-menu .mm-divider {
    height: 1px;
    background: var(--border-soft);
    margin: 8px 12px;
}

.mobile-menu .mm-tools {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 6px 0 2px;
}

/* ==================================================
   HERO
   ================================================== */
.main-wrapper {
    padding-top: calc(var(--nav-top) + 70px);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 100px;
    position: relative;
}

.hero-full {
    min-height: calc(100vh - 90px);
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.logo-row {
    display: flex;
    font-size: clamp(72px, 14vw, 140px);
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 1;
}

.l-j { color: var(--p-purple); }
.l-u { color: var(--p-pink); }
.l-k { color: var(--p-teal); }
.l-o { color: var(--p-yellow); }

.party-game-tag {
    color: var(--text-mute);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 12px;
    margin-top: 20px;
    text-transform: uppercase;
    margin-left: 12px;
}

.hero-text {
    max-width: 720px;
}

.hero-headline {
    font-size: clamp(32px, 6.5vw, 60px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-juko);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(15px, 2.2vw, 19px);
    color: var(--text-soft);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-meta {
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-mute);
    text-transform: uppercase;
    font-weight: 600;
}

/* Page hero (CGU, Privacy, Contact) */
.page-hero {
    padding: 30px 24px 60px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.page-hero-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--p-purple);
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: clamp(32px, 6vw, 54px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-hero h1::after { display: none; }

.page-hero-sub {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* --- STORE BUTTONS --- */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    height: 50px;
    transition: transform 0.2s var(--ease);
    display: inline-block;
}

.store-btn img {
    height: 100%;
    display: block;
    pointer-events: none;
}

.store-btn:hover {
    transform: scale(1.05) translateY(-2px);
}

/* --- SCROLL HINT --- */
.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-mute);
    border-radius: 14px;
    opacity: 0.5;
}

.scroll-hint span {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scrollDot 1.8s var(--ease) infinite;
    will-change: transform, opacity;
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ==================================================
   CONTENT
   ================================================== */
.content-center {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* --- FEATURE CARDS --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

.feature-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 22px;
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    color: inherit;
}

a.feature-card {
    text-decoration: none;
    color: inherit;
}

a.feature-card * {
    text-decoration: none;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent, var(--p-purple)) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent, var(--p-purple));
}

.feature-card:hover::after {
    opacity: 0.08;
}

.card-purple { --accent: var(--p-purple); }
.card-pink { --accent: var(--p-pink); }
.card-teal { --accent: var(--p-teal); }

.feature-number {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 28px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-elev);
    border: 1px solid var(--accent);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 400;
}

/* --- STATS BLOCK --- */
.stats-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 110px;
    padding: 30px 20px;
    border-radius: 24px;
    background: var(--gradient-juko-soft);
    border: 1px solid var(--border-soft);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-value {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    background: var(--gradient-juko);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-soft);
}

/* --- PITCH BLOCK --- */
.pitch-block {
    margin-bottom: 100px;
    text-align: center;
}

.block-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--p-teal);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.block-title {
    font-size: clamp(24px, 4.2vw, 36px);
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
}

.pitch-list {
    list-style: none;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.pitch-list li {
    font-size: 16px;
    color: var(--text-soft);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
    line-height: 1.5;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.pitch-list li:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.pitch-list li:last-child { border-bottom: none; }

.bullet {
    color: var(--p-pink);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.4;
}

/* --- USE CASES --- */
.usecases-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.usecase-chip {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.usecase-chip:hover {
    transform: translateY(-3px);
    border-color: var(--p-pink);
    background: rgba(255, 77, 128, 0.08);
}

/* --- FINAL CTA --- */
.final-cta {
    text-align: center;
    padding: 80px 20px 60px;
    border-top: 1px solid var(--border-soft);
    margin-top: 40px;
}

.cta-title {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -1px;
    background: var(--gradient-juko);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-sub {
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 999px;
    background: var(--gradient-juko);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(255, 77, 128, 0.35);
}

/* ==================================================
   LEGAL SECTIONS (CGU + Privacy)
   ================================================== */
.legal-sections {
    max-width: 700px;
    margin: 0 auto;
}

.legal-section {
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 30px 28px;
    margin-bottom: 18px;
    text-align: left;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.legal-section:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-section h2 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--gradient-juko-diag);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    padding: 0 8px;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-soft);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-section p:last-child { margin-bottom: 0; }

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

/* ==================================================
   CONTACT
   ================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 90px;
}

.contact-card {
    display: block;
    padding: 32px 22px;
    border-radius: 20px;
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--p-pink);
    background: rgba(255, 77, 128, 0.05);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.contact-card h3 {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--p-teal);
    margin-bottom: 12px;
}

.contact-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-hint {
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 500;
}

/* --- FAQ --- */
.faq-block { text-align: left; max-width: 700px; margin: 0 auto 100px; }

.faq-item {
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 12px;
    transition: border-color 0.3s var(--ease);
}

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

.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 400;
}

.inline-link {
    color: var(--p-pink);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 77, 128, 0.4);
}

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

/* ==================================================
   FOOTER
   ================================================== */
.site-footer {
    border-top: 1px solid var(--border-soft);
    padding: 70px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--max-content);
    margin: 0 auto 50px;
    text-align: left;
}

.footer-brand .footer-logo {
    display: flex;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 14px;
}

.footer-tag {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 220px;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--p-teal);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-col a:hover {
    color: var(--p-pink);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 24px;
    max-width: var(--max-content);
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ==================================================
   SCROLL REVEAL
   ================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .scroll-hint span, .particle { animation: none !important; }
    * { transition-duration: 0.01s !important; }
}

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
    .nav-pill .nav-menu,
    .nav-pill .nav-divider {
        display: none;
    }
    .nav-burger { display: block; }

    .hero {
        padding: 30px 20px 80px;
    }
    .hero-logo { margin-bottom: 40px; }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 70px;
    }

    .stats-block {
        gap: 12px;
        padding: 24px 12px;
        margin-bottom: 80px;
    }
    .stat-value { font-size: 26px; }
    .stat-label { font-size: 10px; letter-spacing: 1.5px; }
    .pitch-block { margin-bottom: 70px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-brand { text-align: center; }
    .footer-brand .footer-logo { justify-content: center; }
    .footer-tag { margin: 0 auto; }

    .legal-section { padding: 24px 22px; }
}

@media (max-width: 480px) {
    .floating-nav { gap: 8px; }
    .nav-pill { padding: 4px; }
    .nav-logo { font-size: 13px; padding: 7px 12px; letter-spacing: 1.5px; }
    .nav-btn { width: 32px; height: 32px; }
    .lang-btn { padding: 0 10px; font-size: 10px; }

    .logo-row { letter-spacing: -4px; }
    .party-game-tag { letter-spacing: 8px; font-size: 10px; }
    .hero-headline { letter-spacing: -1px; }
    .feature-card { padding: 30px 22px; }
    .usecase-chip { padding: 10px 18px; font-size: 12px; }
    .scroll-hint { display: none; }
}
