/* ============================================
   MeMe - Premium Memecoin Landing Page
   Neon Meme Aesthetic
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Neon Meme Palette */
    --bg-primary: #050816;
    --bg-secondary: #0a0f1f;
    --bg-card: rgba(10, 15, 35, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.02);
    
    --accent-primary: #ff6ad5;
    --accent-secondary: #7bfffa;
    --accent-dark: #cc55aa;
    --accent-gold: #ffd66b;
    --accent-glow: rgba(255, 106, 213, 0.5);
    --accent-glow-cyan: rgba(123, 255, 250, 0.4);
    
    --text-primary: #f4f4ff;
    --text-secondary: rgba(244, 244, 255, 0.75);
    --text-muted: #9ca3c7;
    
    --success: #4ade80;
    --warning: #ffd66b;
    --error: #ff6b8a;
    
    --border-glass: rgba(123, 255, 250, 0.1);
    --border-glow: rgba(255, 106, 213, 0.4);
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px var(--accent-glow);
    --shadow-glow-cyan: 0 0 40px var(--accent-glow-cyan);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s var(--ease-out);
}

.header.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(5, 8, 22, 0.95);
    border-bottom-color: rgba(255, 106, 213, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--accent-glow);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.3s var(--ease-out);
    box-shadow: 0 0 10px var(--accent-primary);
}

.nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--accent-glow);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--success);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--success); }
    50% { opacity: 0.6; transform: scale(1.3); box-shadow: 0 0 20px var(--success); }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    flex-direction: column;
    gap: var(--space-lg);
    border-bottom: 1px solid var(--border-glass);
}

.mobile-nav.active {
    display: flex;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px var(--accent-glow), 0 0 60px rgba(255, 106, 213, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 106, 213, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--accent-glow), 0 0 80px var(--accent-glow), 0 0 120px rgba(255, 106, 213, 0.4);
    background: linear-gradient(135deg, #ff7de0 0%, var(--accent-primary) 100%);
}

.btn-secondary {
    background: rgba(123, 255, 250, 0.05);
    border: 1px solid rgba(123, 255, 250, 0.3);
    color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(123, 255, 250, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(123, 255, 250, 0.15);
    border-color: var(--accent-secondary);
    color: var(--text-primary);
    box-shadow: 0 0 30px var(--accent-glow-cyan), 0 0 60px rgba(123, 255, 250, 0.2);
    text-shadow: 0 0 10px var(--accent-secondary);
}

.btn-ghost {
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 20px var(--accent-glow-cyan);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 106, 213, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(123, 255, 250, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 0;
    display: none;
}

.hero-fallback.active {
    display: block;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.hero-content {
    max-width: 640px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 540px;
}

/* hero-disclaimer removed */

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Contract Card */
.hero-card {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 20;
}

.contract-card {
    width: 100%;
    max-width: 400px;
    padding: var(--space-xl);
    position: relative;
    z-index: 20;
    background: rgba(10, 14, 28, 0.95);
    border: 1px solid rgba(123, 255, 250, 0.5);
    box-shadow: 0 0 32px rgba(123, 255, 250, 0.35), 0 0 64px rgba(255, 106, 213, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 1 !important;
    mix-blend-mode: normal;
}

.contract-card,
.contract-card * {
    opacity: 1;
    mix-blend-mode: normal;
}

.contract-card:hover {
    border-color: rgba(123, 255, 250, 0.6);
    box-shadow: 0 0 48px rgba(123, 255, 250, 0.35), 0 0 80px rgba(255, 106, 213, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contract-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.contract-label {
    font-size: 0.875rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-shadow: 0 0 15px var(--accent-glow-cyan);
}

.network-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.5), 0 0 40px rgba(20, 241, 149, 0.3);
}

.network-badge svg {
    width: 12px;
    height: 12px;
}

.contract-address-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(5, 8, 22, 0.8);
    border: 1px solid rgba(123, 255, 250, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contract-address {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: #f4f4ff;
    word-break: break-all;
    text-shadow: 0 0 12px var(--accent-glow-cyan);
    font-weight: 500;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(123, 255, 250, 0.15);
    border: 1px solid rgba(123, 255, 250, 0.4);
    border-radius: var(--radius-sm);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 0 15px rgba(123, 255, 250, 0.15);
}

.copy-btn:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow-cyan), 0 0 60px rgba(123, 255, 250, 0.3);
}

.copy-btn.copied {
    background: var(--success);
    border-color: var(--success);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
}

.explorer-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--accent-primary);
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
}

.explorer-link:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 20px var(--accent-glow-cyan);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 3s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, transparent 100%);
    box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   Glass Card
   ============================================ */
.glass-card {
    background: linear-gradient(135deg, rgba(10, 15, 35, 0.8) 0%, rgba(20, 25, 50, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 255, 250, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.glass-card:hover {
    border-color: rgba(255, 106, 213, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 106, 213, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .subtitle-tag {
    font-size: 0.5em;
    color: var(--text-muted);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Transparency Section
   ============================================ */
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.transparency-card {
    padding: var(--space-xl);
    text-align: center;
}

.transparency-card .card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 106, 213, 0.15) 0%, rgba(123, 255, 250, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    border: 1px solid rgba(255, 106, 213, 0.2);
    box-shadow: 0 0 30px rgba(255, 106, 213, 0.15);
}

.transparency-card .card-icon.warning {
    background: linear-gradient(135deg, rgba(255, 214, 107, 0.15) 0%, rgba(255, 106, 213, 0.1) 100%);
    color: var(--accent-gold);
    border-color: rgba(255, 214, 107, 0.2);
    box-shadow: 0 0 30px rgba(255, 214, 107, 0.15);
}

.transparency-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.transparency-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   How to Buy Section
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step-card {
    padding: var(--space-xl);
    position: relative;
}

.step-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 106, 213, 0.15) 0%, rgba(123, 255, 250, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: var(--radius-md);
    color: var(--bg-primary);
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(123, 255, 250, 0.2);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 106, 213, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(123, 255, 250, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(10, 15, 35, 0.5) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.stat-card {
    padding: var(--space-xl);
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-change {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 100px;
}

.stat-change.positive {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.stat-change.negative {
    background: rgba(255, 107, 138, 0.15);
    color: var(--error);
    box-shadow: 0 0 20px rgba(255, 107, 138, 0.2);
}

.stat-change.neutral {
    background: rgba(123, 255, 250, 0.15);
    color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(123, 255, 250, 0.15);
}

.stats-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

/* ============================================
   Trust Section
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(123, 255, 250, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--success);
    flex-shrink: 0;
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
}

.trust-item.pending .trust-icon {
    background: linear-gradient(135deg, rgba(255, 214, 107, 0.15) 0%, rgba(255, 106, 213, 0.1) 100%);
    color: var(--accent-gold);
    border-color: rgba(255, 214, 107, 0.2);
    box-shadow: 0 0 20px rgba(255, 214, 107, 0.15);
}

.trust-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.inline-link {
    color: var(--accent-primary);
    transition: all 0.3s var(--ease-out);
}

.inline-link:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 20px var(--accent-glow-cyan);
}

/* ============================================
   Roadmap Section
   ============================================ */
.roadmap {
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(255, 106, 213, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 50%, rgba(123, 255, 250, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, transparent 0%, rgba(10, 15, 35, 0.5) 50%, transparent 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--border-glass) 100%);
    box-shadow: 0 0 15px var(--accent-glow);
}

.roadmap-item {
    position: relative;
    padding-left: 72px;
    padding-bottom: var(--space-2xl);
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: 12px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-glass);
    border-radius: 50%;
    z-index: 1;
}

.roadmap-marker.active {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255, 106, 213, 0.3);
}

.roadmap-card {
    padding: var(--space-xl);
}

.phase-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 20px var(--accent-glow-cyan);
}

.roadmap-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.roadmap-card ul {
    list-style: none;
}

.roadmap-card li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.roadmap-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out);
}

.faq-question:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 20px var(--accent-glow-cyan);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
    color: var(--accent-primary);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 10px var(--accent-glow-cyan));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-glass);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contract {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.footer-social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 255, 250, 0.05);
    border: 1px solid rgba(123, 255, 250, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.footer-social:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow-cyan);
}

.footer-disclaimer {
    padding: var(--space-lg);
    background: rgba(255, 214, 107, 0.05);
    border: 1px solid rgba(255, 214, 107, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2xl);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-glass);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Animations
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-card {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav,
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: calc(60px + var(--space-2xl));
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .contract-card {
        max-width: 100%;
    }
    
    .transparency-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid .stat-card:last-child {
        grid-column: span 2;
    }
    
    .stats-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .roadmap-timeline::before {
        left: 12px;
    }
    
    .roadmap-item {
        padding-left: 48px;
    }
    
    .roadmap-marker {
        left: 0;
        width: 24px;
        height: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid .stat-card:last-child {
        grid-column: span 1;
    }
    
    .contract-address-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        justify-content: center;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
