/* ============================================
   SLABR LANDING PAGE - STYLES
   Modern, animated, Pokemon-themed
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #06B6D4;
    --accent: #F59E0B;
    --success: #10B981;
    --danger: #EF4444;

    /* Pokemon-inspired gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    --gradient-fire: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    --gradient-water: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    --gradient-electric: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    --gradient-grass: linear-gradient(135deg, #22C55E 0%, #10B981 100%);

    /* Backgrounds */
    --bg-primary: #0A0A0F;
    --bg-secondary: #12121A;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(139, 92, 246, 0.5);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pokemon-card {
    position: absolute;
    width: 60px;
    height: 84px;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0.1;
    animation: floatCard 20s infinite;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 10%;
    animation-delay: -4s;
}

.card-3 {
    top: 60%;
    left: 15%;
    animation-delay: -8s;
}

.card-4 {
    top: 80%;
    right: 20%;
    animation-delay: -12s;
}

.card-5 {
    top: 45%;
    left: 80%;
    animation-delay: -16s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    25% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
        opacity: 0.1;
    }

    75% {
        transform: translateY(-45px) rotate(8deg);
        opacity: 0.12;
    }
}

.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: pulse 8s infinite;
}

.glow-1 {
    top: -10%;
    left: -5%;
    background: var(--primary);
}

.glow-2 {
    top: 50%;
    right: -10%;
    background: var(--secondary);
    animation-delay: -3s;
}

.glow-3 {
    bottom: -10%;
    left: 30%;
    background: var(--accent);
    animation-delay: -6s;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform var(--transition-normal);
}

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

.logo-text {
    position: relative;
}

.logo-dot {
    color: #EF4444;
    font-size: 32px;
    line-height: 0;
    vertical-align: middle;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    z-index: 1;
}

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

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-icon {
    animation: sparkle 2s infinite;
}

@keyframes sparkle {

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

    50% {
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

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

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 60px 16px 16px;
    height: 100%;
}

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

.app-title {
    font-weight: 600;
    font-size: 18px;
}

.app-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--success);
}

.app-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    animation: slideIn 0.5s ease calc(var(--delay) * 0.2s) both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.preview-card-img {
    width: 48px;
    height: 64px;
    border-radius: 6px;
}

.pokemon-bg-1 {
    background: var(--gradient-fire);
}

.pokemon-bg-2 {
    background: var(--gradient-electric);
}

.pokemon-bg-3 {
    background: var(--gradient-water);
}

.preview-card-info {
    flex: 1;
}

.preview-card-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.preview-card-price {
    font-size: 13px;
    color: var(--success);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
    animation: phoneGlow 4s infinite alternate;
}

@keyframes phoneGlow {
    from {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    animation: float 6s infinite ease-in-out;
}

.floating-emoji {
    font-size: 20px;
}

.float-1 {
    top: 80px;
    left: -40px;
    animation-delay: 0s;
}

.float-2 {
    top: 200px;
    right: -20px;
    animation-delay: -2s;
}

.float-3 {
    bottom: 120px;
    left: -20px;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    z-index: 1;
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

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

.feature-large {
    grid-column: span 2;
    grid-row: span 2;
}

.feature-icon-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
}

.feature-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover .feature-icon-glow {
    opacity: 0.4;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

/* Scan Animation */
.feature-visual {
    margin-top: 32px;
}

.scan-animation {
    position: relative;
    height: 358px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.scan-card {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 200px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: -5%;
    right: 0;
    height: 3px;
    width: 110%;
    background: var(--secondary);
    box-shadow: 0 0 20px var(--secondary);
    animation: scan 2s infinite;
}

@keyframes scan {

    0%,
    100% {
        top: 0;
    }

    50% {
        top: calc(100% - 3px);
    }
}

.scan-result {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scan-result span {
    display: block;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--success);
    border-radius: 6px;
    font-size: 13px;
    color: var(--success);
    animation: fadeInRight 0.5s ease both;
}

.scan-result span:nth-child(1) {
    animation-delay: 0.5s;
}

.scan-result span:nth-child(2) {
    animation-delay: 1s;
}

.scan-result span:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Grading Badges */
.grading-badges {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.grade-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.grade-badge.psa {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.grade-badge.pca {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.grade-badge.ccc {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.grade-badge.sfg {
    background: linear-gradient(135deg, #10B981, #059669);
}

/* Sealed Icons */
.sealed-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    font-size: 28px;
}

.sealed-icon {
    animation: bounce 2s infinite;
}

.sealed-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.sealed-icon:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {

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

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

/* Prices Section */
.prices-section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.price-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.price-card-showcase {
    display: flex;
    justify-content: center;
}

.showcase-card {
    width: 100%;
    max-width: 300px;
    height: 600px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.showcase-card:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.showcase-card-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-holographic {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg,
            rgba(255, 0, 0, 0.3) 0%,
            rgba(255, 127, 0, 0.3) 14%,
            rgba(255, 255, 0, 0.3) 28%,
            rgba(0, 255, 0, 0.3) 42%,
            rgba(0, 0, 255, 0.3) 57%,
            rgba(75, 0, 130, 0.3) 71%,
            rgba(148, 0, 211, 0.3) 85%,
            rgba(255, 0, 0, 0.3) 100%);
    background-size: 400% 400%;
    animation: holographic 8s ease infinite;
}

@keyframes holographic {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.showcase-card-info {
    padding: 24px;
}

.showcase-header h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.showcase-set {
    font-size: 14px;
    color: var(--text-muted);
}

.showcase-grade {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    padding: 8px 16px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    border-radius: 8px;
}

.grade-label {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.8;
}

.grade-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.showcase-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.price-item {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.price-value.positive {
    color: var(--success);
}

.showcase-chart {
    margin-top: 16px;
}

.mini-chart {
    width: 100%;
    height: 60px;
}

/* Price Features */
.price-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.price-feature:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.pf-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.pf-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

/* Community Section */
.community-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.community-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.community-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-10px);
}

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

.community-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.community-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Pokeball Background */
.community-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pokeball {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(180deg, #EF4444 50%, white 50%);
    opacity: 0.1;
    animation: rotatePokeball 20s linear infinite;
}

.pokeball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    background: #1a1a2e;
    transform: translateY(-50%);
}

.pokeball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    border: 8px solid #1a1a2e;
}

.pokeball-1 {
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.pokeball-2 {
    top: 60%;
    right: 10%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.pokeball-3 {
    bottom: 10%;
    left: 40%;
    animation-duration: 35s;
}

@keyframes rotatePokeball {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Download Section */
.download-section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.download-card {
    position: relative;
    padding: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.download-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 20px;
}

.download-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: white;
    color: #000;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.store-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.store-btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-label {
    font-size: 11px;
    opacity: 0.7;
}

.store-name {
    font-weight: 700;
    font-size: 16px;
}

.download-visual {
    position: relative;
    height: 400px;
}

.download-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 400px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.download-cards {
    position: absolute;
    inset: 0;
}

.d-card {
    position: absolute;
    width: 60px;
    height: 84px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatDownload 4s infinite ease-in-out;
}

.d-card-1 {
    background: var(--gradient-fire);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.d-card-2 {
    background: var(--gradient-water);
    top: 40%;
    right: 15%;
    animation-delay: -1.3s;
}

.d-card-3 {
    background: var(--gradient-grass);
    bottom: 20%;
    left: 25%;
    animation-delay: -2.6s;
}

@keyframes floatDownload {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.download-glow {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 16px;
    max-width: 300px;
}

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

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.footer-disclaimer {
    font-size: 12px !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-visual {
        display: none;
    }

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

    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .price-demo {
        grid-template-columns: 1fr;
    }

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

    .download-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .download-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

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

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

    .feature-large {
        grid-column: span 1;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .store-btn {
        justify-content: center;
    }
}

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

    .hero {
        padding: 120px 0 80px;
    }

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

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