/**
 * Campaign Landing Page Styles - Premium Edition
 * File: landing-campaign.css
 * 
 * Purpose: World-class landing page for TJM ad campaigns.
 * Features: Premium animations, micro-interactions, glassmorphism, parallax effects.
 * 
 * How to tweak:
 * - Colors: Adjust CSS variables below
 * - Animations: Modify keyframes and transition timings
 * - Effects: Adjust blur, glow, and shadow values
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand colors */
    --landing-bg: #050506;
    --landing-bg-elevated: #0a0a0c;
    --landing-text: #ffffff;
    --landing-text-secondary: rgba(255, 255, 255, 0.85);
    --landing-text-muted: rgba(255, 255, 255, 0.6);
    --landing-accent: #f97316;
    --landing-accent-light: #fb923c;
    --landing-accent-dark: #ea580c;
    --landing-accent-glow: rgba(249, 115, 22, 0.4);
    --landing-teal: #14b8a6;
    --landing-teal-glow: rgba(20, 184, 166, 0.3);
    --landing-card-bg: rgba(255, 255, 255, 0.03);
    --landing-card-bg-hover: rgba(255, 255, 255, 0.06);
    --landing-border: rgba(255, 255, 255, 0.08);
    --landing-border-hover: rgba(255, 255, 255, 0.15);
    --landing-glass: rgba(10, 10, 12, 0.7);
    
    /* Spacing */
    --section-padding: 120px 24px;
    --section-padding-mobile: 80px 16px;
    
    /* Animation timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   BASE & RESET
   ============================================ */
.landing-page {
    background: var(--landing-bg);
    color: var(--landing-text);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.landing-page * {
    box-sizing: border-box;
}

/* ============================================
   PREMIUM KEYFRAME ANIMATIONS
   ============================================ */
@keyframes drift {
    0% { transform: translate3d(-10%, -2%, 0) scale(1); filter: blur(40px); }
    50% { transform: translate3d(10%, 2%, 0) scale(1.08); filter: blur(50px); }
    100% { transform: translate3d(-10%, -2%, 0) scale(1); filter: blur(40px); }
}

@keyframes emberPulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.35; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--landing-accent-glow), 0 0 60px transparent; }
    50% { box-shadow: 0 0 30px var(--landing-accent-glow), 0 0 80px var(--landing-accent-glow); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--landing-border); }
    50% { border-color: var(--landing-accent); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   SMOKE BACKGROUND (enhanced cinematic)
   ============================================ */
.smoke-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.smoke-base {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, #0d0d10 0%, var(--landing-bg) 70%);
}

.smoke-parallax {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    will-change: transform;
}

.smoke-parallax.cool {
    opacity: 0.25;
}

.plume {
    position: absolute;
    filter: blur(20px);
    animation: drift 20s ease-in-out infinite;
    will-change: transform, filter;
}

.plume.warm {
    opacity: 0.6;
    background:
        radial-gradient(800px 320px at 30% 20%, rgba(249, 115, 22, 0.15), transparent),
        radial-gradient(900px 400px at 70% 60%, rgba(234, 88, 12, 0.12), transparent);
}

.plume.cool {
    opacity: 0.4;
    background:
        radial-gradient(700px 280px at 40% 40%, rgba(20, 184, 166, 0.12), transparent),
        radial-gradient(800px 350px at 60% 70%, rgba(14, 165, 164, 0.08), transparent);
}

.ember-speckle {
    pointer-events: none;
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    background-image:
        radial-gradient(rgba(249, 115, 22, 0.25) 1px, transparent 1px),
        radial-gradient(rgba(251, 146, 60, 0.15) 1px, transparent 1px);
    background-position: 0 0, 15px 10px;
    background-size: 30px 30px, 30px 30px;
    animation: emberPulse 8s ease-in-out infinite;
}

.topo-overlay {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(300deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 28px 28px, 35px 35px;
}

/* Ambient glow orbs */
.smoke-bg::before,
.smoke-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 15s ease-in-out infinite;
}

.smoke-bg::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--landing-accent-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: -5s;
}

.smoke-bg::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--landing-teal-glow) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

/* ============================================
   HEADER (glassmorphism)
   ============================================ */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--landing-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--landing-border);
    transition: all 0.4s var(--ease-out-expo);
}

.landing-header.scrolled {
    background: rgba(5, 5, 6, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.landing-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.landing-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: transform 0.3s var(--ease-out-expo);
}

.landing-logo:hover {
    transform: scale(1.02);
}

.landing-logo .the {
    color: var(--landing-accent);
    text-shadow: 0 0 20px var(--landing-accent-glow);
}

.landing-logo .journeyman {
    color: var(--landing-text);
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Store buttons in header - premium style */
.store-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    border: 1px solid var(--landing-border);
    background: var(--landing-card-bg);
    color: var(--landing-text-secondary);
    overflow: hidden;
}

.store-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-btn:hover::before {
    opacity: 1;
}

.store-btn:hover {
    transform: translateY(-2px);
    border-color: var(--landing-border-hover);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.store-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s var(--ease-spring);
}

.store-btn:hover i {
    transform: scale(1.1);
}

.store-btn-android:hover {
    border-color: #3ddc84;
    color: #3ddc84;
    box-shadow: 0 8px 25px rgba(61, 220, 132, 0.2);
}

.store-btn-ios:hover {
    border-color: #fff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Hide store text on mobile */
@media (max-width: 640px) {
    .store-btn span {
        display: none;
    }
    .store-btn {
        padding: 10px 12px;
    }
}

/* ============================================
   BUTTONS (premium with glow effects)
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--landing-accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px var(--landing-accent-glow), 0 0 60px var(--landing-accent-glow);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Shimmer effect on primary button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: 16px;
}

.btn-register {
    white-space: nowrap;
}

/* Secondary/Ghost button */
.btn-secondary {
    background: transparent;
    color: var(--landing-text);
    border: 1px solid var(--landing-border);
}

.btn-secondary:hover {
    background: var(--landing-card-bg-hover);
    border-color: var(--landing-border-hover);
    transform: translateY(-2px);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.landing-main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

/* ============================================
   HERO SECTION (premium with animations)
   ============================================ */
.landing-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 100px;
    text-align: center;
    position: relative;
}

.landing-hero-content {
    max-width: 900px;
    animation: fadeInUp 1s var(--ease-out-expo) both;
}

/* Accent badge above title */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--landing-text-secondary);
    margin-bottom: 24px;
    animation: fadeInScale 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-badge i {
    color: var(--landing-accent);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--landing-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.landing-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(249, 115, 22, 0.3);
    animation: fadeInUp 1s var(--ease-out-expo) 0.1s both;
}

.landing-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--landing-text-muted);
    margin: 0 0 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}

.landing-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--landing-text-muted);
}

.cta-note i {
    color: var(--landing-teal);
}

/* App badges in hero */
.landing-app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}

.app-badge {
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.app-badge img {
    height: 52px;
    width: auto;
    filter: brightness(0.95);
    transition: all 0.4s var(--ease-out-expo);
}

.app-badge:hover {
    transform: translateY(-4px);
}

.app-badge:hover img {
    filter: brightness(1.1);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--landing-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--landing-accent);
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--landing-accent), transparent);
    animation: float 2s ease-in-out infinite;
}

/* ============================================
   SECTIONS (with reveal animations)
   ============================================ */
.landing-section {
    padding: var(--section-padding);
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--landing-accent);
    margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--landing-accent);
    opacity: 0.5;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--landing-text-muted);
    margin: 0;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   VALUE PROPS (premium cards)
   ============================================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.value-card {
    position: relative;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--landing-accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover::before {
    opacity: 0.15;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--landing-border-hover);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 40px var(--landing-accent-glow);
}

.value-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-dark) 100%);
    border-radius: 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px var(--landing-accent-glow);
    transition: all 0.4s var(--ease-out-expo);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px var(--landing-accent-glow);
}

.value-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--landing-text);
}

.value-card p {
    color: var(--landing-text-muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   FEATURES GRID (interactive tiles)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    cursor: default;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--landing-accent), var(--landing-teal));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: var(--landing-border-hover);
    background: var(--landing-card-bg-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--landing-accent);
    transition: all 0.4s var(--ease-spring);
}

.feature-item:hover i {
    transform: scale(1.2);
    color: var(--landing-accent-light);
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--landing-text-secondary);
}

/* Feature popup modal */
.feature-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.feature-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.feature-modal {
    background: var(--landing-bg-elevated);
    border: 1px solid var(--landing-border);
    border-radius: 24px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.feature-modal-overlay.active .feature-modal {
    transform: scale(1) translateY(0);
}

.feature-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--landing-card-bg);
    border-radius: 50%;
    color: var(--landing-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-modal-close:hover {
    background: var(--landing-card-bg-hover);
    color: var(--landing-text);
}

.feature-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px var(--landing-accent-glow);
}

.feature-modal h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--landing-text);
}

.feature-modal p {
    color: var(--landing-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STATS SECTION (animated counters)
   ============================================ */
.landing-stats {
    position: relative;
    background: linear-gradient(180deg, var(--landing-bg) 0%, var(--landing-bg-elevated) 50%, var(--landing-bg) 100%);
    overflow: hidden;
}

.landing-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, var(--landing-accent-glow) 0%, transparent 70%);
    opacity: 0.1;
}

.stats-grid {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    transition: transform 0.4s var(--ease-out-expo);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 40px var(--landing-accent-glow);
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* ============================================
   SCREENSHOTS (3D perspective cards)
   ============================================ */
.landing-screenshots {
    background: var(--landing-bg-elevated);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    perspective: 1000px;
}

@media (max-width: 900px) {
    .screenshots-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
}

.screenshot-card {
    margin: 0;
    text-align: center;
    transition: transform 0.5s var(--ease-out-expo);
}

.screenshot-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.screenshot-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--landing-border);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.5s var(--ease-out-expo);
}

.screenshot-card:hover img {
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.6),
        0 0 60px var(--landing-accent-glow),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.screenshot-card figcaption {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--landing-text-secondary);
    font-weight: 600;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--landing-accent);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--landing-text-secondary);
    font-style: italic;
    margin: 0 0 24px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--landing-text);
}

.testimonial-role {
    color: var(--landing-text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ============================================
   FINAL CTA (premium gradient card)
   ============================================ */
.landing-final-cta {
    padding: 140px 24px;
    position: relative;
}

.final-cta-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(20, 184, 166, 0.08) 100%);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 32px;
    padding: 64px 48px;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, var(--landing-accent-glow) 0%, transparent 50%);
    opacity: 0.2;
    animation: float 10s ease-in-out infinite;
}

.final-cta-card h2 {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3;
}

.final-cta-card p {
    position: relative;
    color: var(--landing-text-muted);
    margin: 0 0 40px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.final-cta-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.final-app-badges {
    display: flex;
    gap: 16px;
}

.store-badge-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    color: var(--landing-text-secondary);
    font-size: 1.6rem;
    transition: all 0.4s var(--ease-out-expo);
}

.store-badge-small:hover {
    transform: translateY(-4px) scale(1.05);
    background: var(--landing-card-bg-hover);
    border-color: var(--landing-accent);
    color: var(--landing-accent);
    box-shadow: 0 10px 30px var(--landing-accent-glow);
}

/* ============================================
   FOOTER (minimal, elegant)
   ============================================ */
.landing-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--landing-border);
    padding: 32px 24px;
    background: var(--landing-bg);
}

.landing-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.landing-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--landing-text-muted);
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--landing-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--landing-accent);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: var(--landing-text);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* ============================================
   REVEAL ON SCROLL (JS adds .revealed class)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .landing-header-inner {
        padding: 12px 16px;
    }
    
    .landing-logo {
        font-size: 0.95rem;
    }
    
    /* Increase main padding for taller mobile header */
    .landing-main {
        padding-top: 90px;
    }
    
    .landing-section {
        padding: var(--section-padding-mobile);
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .landing-hero {
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 60px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .landing-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .landing-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 32px 24px;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .final-cta-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    
    .landing-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-card::before {
        font-size: 80px;
        top: 10px;
        left: 20px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    /* Stack header actions on tablets where header wraps */
    .landing-header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .landing-header-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    /* More padding for wrapped header */
    .landing-main {
        padding-top: 130px;
    }
    
    .landing-hero {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .landing-header-inner {
        padding: 10px 12px;
    }
    
    .landing-logo {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .landing-header-actions {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    /* Even more padding for fully stacked header */
    .landing-main {
        padding-top: 145px;
    }
    
    .landing-hero {
        padding-top: 30px;
        padding-bottom: 50px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    .landing-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 16px;
    }
    
    .landing-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 28px;
    }
    
    .btn-register {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .store-btn {
        padding: 8px 10px;
    }
    
    .store-btn span {
        display: none;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .app-badge img {
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-note {
        font-size: 0.8rem;
    }
    
    .landing-app-badges {
        gap: 12px;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section-eyebrow {
        font-size: 0.7rem;
    }
    
    .feature-item {
        padding: 20px 12px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .screenshot-card img {
        max-width: 260px;
    }
    
    .final-cta-card {
        padding: 32px 20px;
    }
    
    .final-cta-card h2 {
        font-size: 1.3rem;
    }
    
    .final-cta-card p {
        font-size: 1rem;
    }
    
    .store-badge-small {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .landing-main {
        padding-top: 155px;
    }
    
    .landing-hero {
        padding-top: 35px;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .landing-title {
        font-size: 1.4rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .app-badge img {
        height: 36px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .smoke-bg::before,
    .smoke-bg::after,
    .plume,
    .ember-speckle {
        animation: none;
    }
}
