/* ============================================
   BIDREAM - RWA Ecosystem Platform
   Dark Gold Luxury Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Dark Gold Luxury Theme */
    --gold-primary: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8941E;
    --navy-dark: #0A0E1A;
    --navy-medium: #0D1B2A;
    --navy-light: #1B2838;
    --white: #FFFFFF;
    --gray-light: #E5E5E5;
    --gray-medium: #999999;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

#header.scrolled {
    background: rgba(10, 14, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.logo a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.logo a:hover {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

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

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 14, 26, 0.8);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.lang-btn {
    background: none;
    border: none;
    color: #808080;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
    opacity: 0.6;
}

.lang-btn.active {
    color: #FFD700;
    font-weight: 600;
    opacity: 1;
}

.lang-btn:hover {
    color: #FFD700;
    opacity: 0.8;
}

.lang-divider {
    color: rgba(212, 175, 55, 0.4);
    font-weight: 300;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.9) 0%, rgba(27, 40, 56, 0.85) 100%);
    z-index: 2;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gray-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-message {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.btn-hero {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-download-hero {
    background: transparent;
    color: var(--gold-primary);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--gold-primary);
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-download-hero:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--gold-primary);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    font-weight: 300;
}

/* ============================================
   ECOSYSTEM SECTION
   ============================================ */

.ecosystem {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
}

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

.ecosystem-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.ecosystem-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 32px;
    color: var(--gold-primary);
    min-width: 50px;
}

.highlight-content h4 {
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.highlight-content p {
    font-size: 15px;
    color: var(--gray-medium);
    margin: 0;
}

.ecosystem-image {
    position: relative;
}

.ecosystem-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: var(--navy-dark);
}

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

.feature-card {
    position: relative;
    background: var(--navy-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 600px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-bg {
    opacity: 0.25;
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.feature-content > p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: auto;
}

.feature-list li {
    font-size: 15px;
    color: var(--gray-medium);
    margin-bottom: 12px;
    padding-left: 0;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.step-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.step-icon {
    font-size: 56px;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.step-item h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.step-item p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* ============================================
   TOKENOMICS SECTION
   ============================================ */

.tokenomics {
    background: var(--navy-dark);
}

.tokenomics-simple {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.token-main-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold-primary);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.token-logo {
    font-size: 80px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    }
}

.token-name {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.token-supply {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.supply-label {
    font-size: 16px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.supply-value {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.supply-unit {
    font-size: 24px;
    color: var(--gold-light);
    font-weight: 600;
}

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

.token-feature-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.token-feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.token-feature-item .feature-icon {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.token-feature-item .feature-text h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.token-feature-item .feature-text p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Ecosystem Section */
.token-ecosystem {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    margin-bottom: 50px;
}

.ecosystem-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 20px;
}

.ecosystem-description {
    font-size: 16px;
    color: var(--gray-light);
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.ecosystem-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ecosystem-node {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.ecosystem-node:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.node-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 50%;
    font-size: 32px;
    color: var(--navy-dark);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.node-content {
    text-align: center;
}

.node-content h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.node-content p {
    font-size: 13px;
    color: var(--gray-medium);
}

.ecosystem-arrow {
    font-size: 28px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.foundation-link {
    text-align: center;
}

.foundation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.foundation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.foundation-btn i {
    font-size: 18px;
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */

.app-download {
    position: relative;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    overflow: hidden;
}

.download-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float-glow 8s ease-in-out infinite;
}

.download-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-primary), transparent);
    top: -200px;
    right: -100px;
}

.download-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-light), transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float-glow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.download-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-primary), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--gold-light), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--gold-primary), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--gold-light), transparent),
        radial-gradient(2px 2px at 90% 60%, var(--gold-primary), transparent),
        radial-gradient(1px 1px at 33% 80%, var(--gold-light), transparent);
    background-size: 300px 300px, 400px 400px, 250px 250px, 350px 350px, 450px 450px, 300px 300px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 150px, 250px 200px;
    opacity: 0.3;
    animation: particle-drift 40s linear infinite;
}

@keyframes particle-drift {
    0% {
        background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 150px, 250px 200px;
    }
    100% {
        background-position: 300px 300px, 340px 360px, 430px 570px, 370px 400px, 500px 450px, 550px 500px;
    }
}

.app-download .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.download-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.download-title {
    margin-bottom: 25px;
}

.download-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.download-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Feature Badges */
.download-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.feature-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 15px;
    font-size: 28px;
    color: var(--navy-dark);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-badge-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.feature-badge-desc {
    font-size: 13px;
    color: var(--gray-medium);
}

/* CTA Section */
.download-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold-primary);
    border-radius: 18px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.app-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.app-btn:hover .app-btn-icon,
.app-btn:hover .app-btn-text {
    color: var(--navy-dark);
}

.app-btn-icon {
    font-size: 42px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: var(--transition-smooth);
}

.app-btn-small {
    font-size: 11px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-btn-large {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.download-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50px;
    font-size: 14px;
    color: var(--gray-light);
}

.stat-badge i {
    color: var(--gold-primary);
    font-size: 16px;
}

/* Visual Section */
.download-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.phone-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
}

.phone-device {
    position: relative;
    width: 280px;
    height: 560px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    border: 8px solid var(--navy-light);
    border-radius: 45px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(212, 175, 55, 0.3);
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: var(--navy-light);
    border-radius: 0 0 20px 20px;
}

.phone-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 30px;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.phone-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent);
    filter: blur(15px);
}

.showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    opacity: 0;
    animation: ring-pulse 3s ease-out infinite;
}

.showcase-ring-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.showcase-ring-2 {
    width: 360px;
    height: 360px;
    animation-delay: 1s;
}

.showcase-ring-3 {
    width: 420px;
    height: 420px;
    animation-delay: 2s;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* QR Showcase */
.qr-showcase {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.qr-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.qr-code-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--gold-primary);
}

.qr-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
}

/* ============================================
   PARTNERSHIP SECTION
   ============================================ */

.partnership {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 56px;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.partnership-contact {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-text {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 25px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-contact i {
    font-size: 20px;
}

/* ============================================
   COMPANY VERIFICATION SECTION
   ============================================ */

.company-verification {
    background: var(--navy-dark);
    padding: 80px 0;
}

.verification-content {
    max-width: 1000px;
    margin: 0 auto;
}

.verification-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 50px;
}

.verification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.verification-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.verification-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.verification-icon {
    font-size: 32px;
    color: var(--gold-primary);
    min-width: 40px;
}

.verification-details h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.verification-details p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 5px;
    line-height: 1.6;
}

.verification-details a {
    color: var(--gold-primary);
    text-decoration: none;
}

.verification-details a:hover {
    text-decoration: underline;
}

.verification-notice {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    align-items: flex-start;
}

.verification-notice i {
    font-size: 28px;
    color: var(--gold-primary);
    min-width: 30px;
    margin-top: 5px;
}

.verification-notice p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-medium);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-text a {
    color: var(--gold-primary);
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-links .app-only {
    color: var(--gray-medium);
    font-style: italic;
    cursor: default;
}

.footer-links .app-only::before {
    content: '📱 ';
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.disclaimer {
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.copyright {
    font-size: 13px;
    color: var(--gray-medium);
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet & Below (≤768px) */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        display: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo a {
        font-size: 24px;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-message {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .token-features {
        grid-template-columns: 1fr;
    }
    
    .token-main-card {
        padding: 40px 30px;
    }
    
    .token-logo {
        font-size: 60px;
    }
    
    .token-name {
        font-size: 32px;
    }
    
    .supply-value {
        font-size: 42px;
    }
    
    .token-ecosystem {
        padding: 35px 25px;
    }
    
    .ecosystem-title {
        font-size: 26px;
    }
    
    .ecosystem-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .ecosystem-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .ecosystem-node {
        width: 100%;
    }
    
    .node-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .download-features-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-showcase {
        height: 400px;
    }
    
    .phone-device {
        width: 220px;
        height: 440px;
    }
    
    .showcase-ring-1 {
        width: 240px;
        height: 240px;
    }
    
    .showcase-ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .showcase-ring-3 {
        width: 320px;
        height: 320px;
    }
    
    .partnership-benefits {
        grid-template-columns: 1fr;
    }
    
    .partnership-form {
        padding: 30px;
    }
    
    .verification-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero,
    .btn-download-hero {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .token-logo {
        font-size: 50px;
    }
    
    .token-name {
        font-size: 28px;
    }
    
    .supply-value {
        font-size: 36px;
    }
    
    .token-ecosystem {
        padding: 30px 20px;
    }
    
    .ecosystem-title {
        font-size: 22px;
    }
    
    .ecosystem-description {
        font-size: 14px;
    }
    
    .node-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .node-content h4 {
        font-size: 16px;
    }
    
    .foundation-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .download-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-badge {
        padding: 20px;
    }
    
    .feature-badge-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .app-store-buttons {
        flex-direction: column;
    }
    
    .app-btn {
        width: 100%;
    }
    
    .phone-showcase {
        height: 350px;
    }
    
    .phone-device {
        width: 180px;
        height: 360px;
    }
    
    .phone-content {
        font-size: 80px;
    }
    
    .qr-showcase {
        gap: 20px;
    }
    
    .qr-code-box {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}
