/* ============================================
   RIX Token Website - Premium Crypto Style
   ============================================ */

:root {
    /* Colors */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #141420;
    --color-bg-card: rgba(20, 20, 32, 0.8);
    --color-purple: #6b46c1;
    --color-purple-dark: #4c1d95;
    --color-purple-light: #8b5cf6;
    --color-gold: #fbbf24;
    --color-gold-dark: #d97706;
    --color-gold-light: #fcd34d;
    --color-amber: #f59e0b;
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0b0;
    --color-text-muted: #6b6b7a;
    --color-border: rgba(107, 70, 193, 0.3);
    --color-glow-purple: rgba(139, 92, 246, 0.3);
    --color-glow-gold: rgba(251, 191, 36, 0.3);
    
    /* Gradients */
    --gradient-purple-gold: linear-gradient(135deg, #6b46c1 0%, #fbbf24 100%);
    --gradient-purple: linear-gradient(135deg, #4c1d95 0%, #6b46c1 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-bg: radial-gradient(ellipse at top, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow-purple: 0 0 20px rgba(139, 92, 246, 0.4);
    --shadow-glow-gold: 0 0 20px rgba(251, 191, 36, 0.4);
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: var(--blur-md);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
}

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

.nav-brand {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple-gold);
    transition: var(--transition-base);
}

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

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-purple);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-gold);
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--color-amber);
    bottom: -100px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

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

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.highlight-text {
    color: var(--color-gold);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.btn-primary {
    background: var(--gradient-purple-gold);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-glow-gold);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow-gold), var(--shadow-md);
}

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

.btn-secondary:hover {
    border-color: var(--color-purple-light);
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    background: rgba(251, 191, 36, 0.1);
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.btn-icon {
    font-size: 1.1em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.icon-blum {
    border-radius: 4px;
}

.btn:hover .btn-icon img {
    transform: scale(1.15);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    color: #22c55e;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

/* ============================================
   Chart Section
   ============================================ */

.chart-section {
    background: var(--color-bg-secondary);
}

.chart-container {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    backdrop-filter: var(--blur-sm);
    box-shadow: var(--shadow-md);
}

.dex-widget {
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
}

.chart-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Cards Grid
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: var(--spacing-md);
    backdrop-filter: var(--blur-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple-gold);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-purple-light);
    box-shadow: var(--shadow-glow-purple), var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-glow {
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 3rem;
    height: 3rem;
    display: block;
}

.card:hover .card-icon img {
    transform: scale(1.1);
}

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.card-text {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   Burn Section
   ============================================ */

.burn-section {
    background: var(--color-bg-secondary);
}

.burn-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.burn-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.burn-point {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.burn-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burn-icon img {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
}

.burn-point:hover .burn-icon img {
    transform: scale(1.15);
}

.burn-text h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.burn-text p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.burn-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    backdrop-filter: var(--blur-sm);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.stat-sublabel {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.stat-progress {
    height: 8px;
    background: rgba(107, 70, 193, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-top: var(--spacing-sm);
}

.stat-progress-bar {
    height: 100%;
    background: var(--gradient-purple-gold);
    border-radius: 4px;
    transition: width 1s ease;
    box-shadow: var(--shadow-glow-gold);
}

.distribution-chart {
    margin-top: var(--spacing-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: var(--spacing-lg);
    backdrop-filter: var(--blur-sm);
}

.chart-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.chart-visual {
    display: flex;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.chart-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    position: relative;
}

.chart-segment:hover {
    transform: scale(1.05);
    z-index: 10;
}

.chart-segment-circulating {
    background: var(--gradient-purple);
}

.chart-segment-burned {
    background: var(--gradient-gold);
}

.chart-segment-locked {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.segment-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.segment-value {
    font-size: var(--font-size-lg);
    font-weight: 800;
    margin-top: var(--spacing-xs);
}

/* ============================================
   Timeline / Stages
   ============================================ */

.stages-section {
    background: var(--color-bg-secondary);
}

.timeline {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-purple-gold);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: var(--spacing-xl);
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    border: 3px solid var(--color-purple);
    z-index: 10;
}

.timeline-marker-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow-gold);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    backdrop-filter: var(--blur-sm);
}

.timeline-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(107, 70, 193, 0.2);
    border: 1px solid var(--color-purple);
    border-radius: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-purple-light);
    margin-bottom: var(--spacing-sm);
}

.timeline-badge-active {
    background: rgba(251, 191, 36, 0.2);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.timeline-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-text-secondary);
}

.timeline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-purple-light);
}

/* ============================================
   Supply Section
   ============================================ */

.supply-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.supply-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    text-align: center;
    backdrop-filter: var(--blur-sm);
    transition: var(--transition-base);
}

.supply-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow-gold);
}

.supply-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.supply-icon img {
    width: 3rem;
    height: 3rem;
    display: block;
}

.supply-card:hover .supply-icon img {
    transform: scale(1.1);
}

.supply-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.supply-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    background: var(--gradient-purple-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.supply-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

/* ============================================
   Lock Section
   ============================================ */

.lock-section {
    background: var(--color-bg-secondary);
}

.lock-content {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.lock-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.lock-details {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    backdrop-filter: var(--blur-sm);
}

.lock-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(107, 70, 193, 0.2);
}

.lock-detail-item:last-child {
    border-bottom: none;
}

.lock-detail-label {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.lock-detail-value {
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.lock-detail-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.lock-detail-link:hover {
    color: var(--color-gold-light);
    text-decoration: underline;
}

/* ============================================
   Roadmap Section
   ============================================ */

.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.roadmap-phase {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    backdrop-filter: var(--blur-sm);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.phase-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--font-size-xl);
}

.phase-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.phase-icon-completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 2px solid #22c55e;
}

.phase-icon-current {
    background: rgba(251, 191, 36, 0.2);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    animation: pulse 2s infinite;
}

.phase-icon-future {
    background: rgba(107, 70, 193, 0.2);
    color: var(--color-purple-light);
    border: 2px solid var(--color-purple-light);
}

.phase-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.phase-list {
    list-style: none;
    padding: 0;
}

.phase-item {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-text-secondary);
}

.phase-item::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5em;
}

.phase-item-completed::before {
    color: #22c55e;
}

.phase-item-current::before {
    color: var(--color-gold);
}

.phase-item-future::before {
    color: var(--color-purple-light);
}

/* ============================================
   Ecosystem Section
   ============================================ */

.ecosystem-section {
    background: var(--color-bg-secondary);
}

.ecosystem-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.ecosystem-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    text-decoration: none;
    transition: var(--transition-base);
    backdrop-filter: var(--blur-sm);
}

.ecosystem-btn:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow-gold);
}

.ecosystem-icon {
    font-size: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-icon img {
    width: 3rem;
    height: 3rem;
    display: block;
}

.ecosystem-btn:hover .ecosystem-icon img {
    transform: scale(1.1);
}

.ecosystem-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.ecosystem-content p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    backdrop-filter: var(--blur-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(107, 70, 193, 0.1);
}

.faq-icon {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    color: var(--color-gold);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-disclaimer {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .burn-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: var(--color-text-primary);
}

