/* WanderMap Website - Modern Design */

:root {
    --primary: #D4AF37;
    --primary-dark: #B8860B;
    --primary-light: #E5C158;
    --background: #0a0a0f;
    --background-secondary: #0d0d14;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --success: #22c55e;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(229, 193, 88, 0.05) 100%);
    --glow: 0 0 40px rgba(212, 175, 55, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -400px;
    left: -200px;
    animation: float-slow 20s ease-in-out infinite;
}

.bg-gradient::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, 30px) rotate(5deg); }
    66% { transform: translate(-30px, 50px) rotate(-5deg); }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 22px;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width var(--transition-medium);
}

.nav-links a:hover {
    color: var(--text);
}

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

.nav-cta {
    background: var(--gradient);
    color: #000;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--card-bg);
}

.mobile-menu-btn {
    width: 24px;
    height: 24px;
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-medium);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--card-bg-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: hero-glow 10s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    font-size: 18px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-platforms {
    font-size: 14px;
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

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

/* Hero Image & Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #3a3a45 0%, #1a1a25 100%);
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--background);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0d0d14 0%, #1a1a25 100%);
}

.scratch-map-preview {
    width: 85%;
    height: 55%;
    background: var(--gradient);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.scratch-map-preview::before {
    content: '🌍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    opacity: 0.4;
}

.scratch-map-preview::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

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

/* Floating Elements */
.floating-stats {
    position: absolute;
    right: -60px;
    top: 45%;
    transform: translateY(-50%);
    animation: float 4s ease-in-out infinite;
}

.stat-card {
    background: rgba(26, 26, 37, 0.9);
    backdrop-filter: blur(20px);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.floating-badge {
    position: absolute;
    left: -50px;
    bottom: 28%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.badge-card {
    background: rgba(26, 26, 37, 0.9);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    font-size: 13px;
    font-weight: 600;
}

.badge-icon {
    font-size: 20px;
}

.floating-xp {
    position: absolute;
    right: -70px;
    bottom: 22%;
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.xp-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    font-size: 14px;
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
    padding: 80px 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
    padding: 20px;
}

.proof-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.proof-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--gradient-subtle);
    color: var(--primary);
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 64px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ========================================
   3D GLOBE SECTION
   ======================================== */
.globe-section {
    padding: 140px 0;
    background: var(--background);
    overflow: hidden;
    position: relative;
}

.globe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.globe-text {
    padding-right: 40px;
}

.globe-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.globe-text .section-subtitle {
    text-align: left;
    margin-bottom: 48px;
    margin-left: 0;
}

.globe-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.globe-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
}

.globe-feature:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-light);
    transform: translateX(5px);
}

.globe-feature-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.globe-feature h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.globe-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.globe-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-preview {
    position: relative;
    width: 420px;
    height: 420px;
}

.globe-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-atmosphere {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    filter: blur(2px);
}

.globe-earth {
    font-size: 220px;
    position: relative;
    z-index: 2;
    animation: spin-slow 30s linear infinite;
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.2));
}

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

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

.globe-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 25px var(--primary), 0 0 50px var(--primary);
    z-index: 3;
    animation: blink 2.5s ease-in-out infinite;
}

.marker-1 { top: 22%; left: 32%; animation-delay: 0s; }
.marker-2 { top: 42%; right: 28%; animation-delay: 0.7s; }
.marker-3 { bottom: 28%; left: 38%; animation-delay: 1.4s; }

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 140px 0;
    background: var(--background-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--card-bg-hover);
    box-shadow: var(--glow);
}

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

.feature-card.featured {
    border-color: rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.feature-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

/* ========================================
   CHALLENGES SECTION
   ======================================== */
.challenges-section {
    padding: 140px 0;
    background: var(--background-secondary);
}

.challenges-header {
    text-align: center;
    margin-bottom: 72px;
}

.challenges-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.challenge-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    background: var(--card-bg-hover);
}

.challenge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.challenge-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.challenge-card.daily .challenge-type {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.challenge-card.weekly .challenge-type {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.challenge-card.monthly .challenge-type {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.challenge-card.seasonal .challenge-type {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.challenge-xp {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.challenge-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.challenge-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.challenge-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.5;
}

.challenge-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    position: relative;
    transition: width 0.5s ease;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

/* XP System */
.xp-system {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--border);
}

.xp-system h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    text-align: center;
}

.level-display {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-bottom: 36px;
}

.level-badge {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.level-number {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.level-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-progress {
    flex: 1;
}

.level-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.level-info span:first-child {
    font-weight: 600;
}

.level-info span:last-child {
    color: var(--text-secondary);
}

.xp-bar {
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 10px;
}

.xp-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 7px;
    position: relative;
}

.xp-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.next-level {
    font-size: 13px;
    color: var(--text-muted);
}

.level-ranks {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.rank {
    font-size: 11px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.rank.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   JOURNAL SECTION
   ======================================== */
.journal-section {
    padding: 140px 0;
    background: var(--background);
}

.journal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journal-visual {
    position: relative;
}

.journal-cards {
    position: relative;
    height: 480px;
}

.journal-entry-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--border);
    max-width: 340px;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.journal-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.journal-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 17px;
}

.journal-location .flag {
    font-size: 24px;
}

.journal-mood {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border-radius: 24px;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 500;
}

.journal-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.photo-grid {
    display: flex;
    gap: 10px;
}

.photo-placeholder {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-muted);
}

.memory-card {
    position: absolute;
    right: 0;
    bottom: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(184, 134, 11, 0.06) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 28px;
    max-width: 300px;
    animation: float 5s ease-in-out infinite;
}

.memory-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.memory-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.memory-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 14px;
}

.memory-prompt {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.journal-text-content .section-title {
    text-align: left;
}

.journal-text-content .section-subtitle {
    text-align: left;
    margin-bottom: 48px;
    margin-left: 0;
}

.journal-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.journal-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.journal-feature > span {
    font-size: 32px;
    flex-shrink: 0;
}

.journal-feature h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.journal-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   COUNTRY FACTS SECTION
   ======================================== */
.facts-section {
    padding: 140px 0;
    background: var(--background-secondary);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.fact-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
}

.fact-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.fact-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.fact-flag {
    font-size: 52px;
}

.fact-header h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.fact-capital {
    font-size: 14px;
    color: var(--text-secondary);
}

.fact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.fact-stat {
    text-align: center;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.fact-stat .stat-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.fact-stat .stat-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.fact-greeting {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding: 14px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-md);
}

.greeting-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.greeting-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}

.fact-famous {
    margin-top: 18px;
}

.famous-label {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 10px;
}

.famous-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.famous-tags span {
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text);
    transition: all var(--transition-fast);
}

.famous-tags span:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   APP ICONS SECTION
   ======================================== */
.icons-section {
    padding: 140px 0;
    background: var(--background);
}

.icons-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 30px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.icons-carousel::-webkit-scrollbar {
    display: none;
}

.icon-card {
    flex-shrink: 0;
    width: 170px;
    text-align: center;
    scroll-snap-align: start;
}

.icon-preview {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.icon-preview::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
}

.icon-card:hover .icon-preview {
    transform: scale(1.12) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.icon-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.icon-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon-tag.free {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.icon-tag.premium {
    background: var(--gradient);
    color: #000;
}

.icon-tag.limited {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
    color: #fff;
}

/* ========================================
   ACHIEVEMENTS SECTION
   ======================================== */
.achievements-section {
    padding: 140px 0;
    background: var(--background);
}

.achievements-showcase {
    margin-top: 56px;
}

.achievement-category {
    margin-bottom: 48px;
}

.achievement-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.achievement-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.achievement-row::-webkit-scrollbar {
    display: none;
}

.achievement-badge {
    flex-shrink: 0;
    width: 150px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 24px 18px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.achievement-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.achievement-badge:hover {
    transform: translateY(-6px);
    border-color: var(--border-light);
}

.achievement-badge:hover::before {
    opacity: 1;
}

.badge-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 14px;
}

.badge-name {
    font-size: 13px;
    font-weight: 600;
    display: block;
}

.achievement-badge[data-tier="bronze"] { border-color: rgba(205, 127, 50, 0.3); }
.achievement-badge[data-tier="silver"] { border-color: rgba(192, 192, 192, 0.3); }
.achievement-badge[data-tier="gold"] { border-color: rgba(212, 175, 55, 0.4); }
.achievement-badge[data-tier="platinum"] { border-color: rgba(229, 228, 226, 0.3); }
.achievement-badge[data-tier="legendary"] {
    border-color: rgba(255, 105, 180, 0.3);
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%);
}

/* ========================================
   THEMES SECTION
   ======================================== */
.themes-section {
    padding: 140px 0;
    background: var(--background-secondary);
}

.themes-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 24px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.themes-carousel::-webkit-scrollbar {
    display: none;
}

.theme-card {
    flex-shrink: 0;
    width: 300px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: all var(--transition-medium);
}

.theme-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.theme-preview {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.theme-preview span {
    font-size: 60px;
    opacity: 0.6;
}

.theme-card h4 {
    padding: 20px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.theme-tag {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.theme-tag.premium {
    background: var(--gradient);
    color: #000;
}

.theme-tag.limited {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
}

.theme-tag.free {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* ========================================
   SCREENSHOTS SECTION
   ======================================== */
.screenshots {
    padding: 140px 0;
    background: var(--background);
}

.screenshots-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding: 24px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.screenshots-carousel::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex-shrink: 0;
    scroll-snap-align: center;
}

.screenshot-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #3a3a45 0%, #1a1a25 100%);
    border-radius: 40px;
    padding: 12px;
    margin-bottom: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-medium);
}

.screenshot-item:hover .screenshot-frame {
    transform: translateY(-10px);
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 15px;
}

.screenshot-placeholder::after {
    content: attr(data-label);
}

.screenshot-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: 140px 0;
    background: var(--background-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: var(--glow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #000;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-badge.lifetime {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
    color: #fff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pricing-period {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 4px;
}

.pricing-savings {
    display: block;
    font-size: 13px;
    color: #22c55e;
    margin-top: 6px;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
}

.pricing-features .check {
    color: var(--success);
    font-size: 16px;
}

.pricing-features .cross {
    color: var(--text-muted);
    font-size: 16px;
}

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

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 140px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 64px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--primary);
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-countries {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: 140px 0;
    background: var(--background);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

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

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: var(--card-bg);
    border: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--card-bg-hover);
}

.faq-question svg {
    transition: transform var(--transition-medium);
    color: var(--text-secondary);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

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

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */
.download {
    padding: 120px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.download-content p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 36px;
    font-size: 18px;
}

.app-store-badge {
    display: inline-block;
    transition: transform var(--transition-medium);
}

.app-store-badge:hover {
    transform: scale(1.08);
}

.download-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--background-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid var(--border);
}

.footer-social a:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 14px;
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for children */
.scroll-reveal.revealed .feature-card,
.scroll-reveal.revealed .pricing-card,
.scroll-reveal.revealed .testimonial-card,
.scroll-reveal.revealed .challenge-card,
.scroll-reveal.revealed .fact-card,
.scroll-reveal.revealed .theme-card,
.scroll-reveal.revealed .icon-card,
.scroll-reveal.revealed .achievement-badge {
    opacity: 1;
    transform: translateY(0);
}

.feature-card,
.pricing-card,
.testimonial-card,
.challenge-card,
.fact-card,
.theme-card,
.icon-card,
.achievement-badge {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Body state for mobile menu */
body.menu-open {
    overflow: hidden;
}

/* Loaded state for smooth page load */
body.loaded .hero-content,
body.loaded .hero-image {
    opacity: 1;
    transform: translateY(0);
}

.hero-content,
.hero-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

/* Carousel grab cursor */
.screenshots-carousel.grabbing,
.themes-carousel.grabbing,
.icons-carousel.grabbing {
    cursor: grabbing;
}

.screenshots-carousel,
.themes-carousel,
.icons-carousel {
    cursor: grab;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

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

    .hero-image {
        order: -1;
    }

    .floating-stats,
    .floating-badge,
    .floating-xp {
        display: none;
    }

    .globe-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .globe-text {
        padding-right: 0;
        text-align: center;
    }

    .globe-text .section-title,
    .globe-text .section-subtitle {
        text-align: center;
    }

    .globe-features {
        max-width: 500px;
        margin: 0 auto;
    }

    .globe-preview {
        width: 320px;
        height: 320px;
    }

    .globe-earth {
        font-size: 160px;
    }

    .globe-atmosphere {
        width: 260px;
        height: 260px;
    }

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

    .challenges-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journal-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journal-visual {
        order: -1;
    }

    .journal-cards {
        height: 400px;
        display: flex;
        justify-content: center;
    }

    .journal-entry-card {
        position: relative;
    }

    .memory-card {
        position: absolute;
        right: auto;
        left: 50%;
        bottom: -30px;
        transform: translateX(-50%);
    }

    .journal-text-content .section-title,
    .journal-text-content .section-subtitle {
        text-align: center;
    }

    .journal-features {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .phone-mockup {
        width: 260px;
        height: 520px;
    }

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

    .proof-items {
        gap: 24px;
    }

    .proof-divider {
        display: none;
    }

    .proof-number {
        font-size: 40px;
    }

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

    .level-display {
        flex-direction: column;
    }

    .level-ranks {
        justify-content: center;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .download-content h2 {
        font-size: 36px;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .globe-preview {
        width: 260px;
        height: 260px;
    }

    .globe-earth {
        font-size: 130px;
    }

    .globe-atmosphere {
        width: 210px;
        height: 210px;
    }

    .journal-entry-card {
        max-width: 280px;
        padding: 22px;
    }

    .memory-card {
        max-width: 250px;
        padding: 20px;
    }

    .icon-card {
        width: 140px;
    }

    .icon-preview {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }

    .fact-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
