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

:root {
    /* Red/Chrome/White Theme */
    --color-primary: #ffffff;
    --color-secondary: #f8f9fa;
    --color-accent: #dc2626;
    --color-accent-light: #ef4444;
    --color-chrome: #e5e7eb;
    --color-chrome-dark: #9ca3af;
    --color-text-primary: #1f2937;
    --color-text-secondary: #4b5563;
    --color-text-light: #6b7280;
    --color-border: rgba(229, 231, 235, 0.8);
    --color-hover: rgba(220, 38, 38, 0.1);
    
    /* Dark theme for popup */
    --color-dark-bg: #0a0e14;
    --color-dark-surface: #141921;
    --color-dark-border: rgba(255, 255, 255, 0.08);
    --color-dark-text: #e0e6ed;
    --color-dark-accent: #dc2626;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-chrome: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 12px 60px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 4px 20px rgba(220, 38, 38, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #f0f1f3;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
    position: relative;
}

/* 3D Moving Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(156, 163, 175, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(31, 41, 55, 0.03) 0%, transparent 50%);
    animation: moveBackground 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes moveBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.logo:hover {
    letter-spacing: 0.4em;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-primary);
}

.icon-btn:hover {
    background: var(--color-text-primary);
    color: white;
    transform: translateY(-2px);
}

.copy-ca-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-primary);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.copy-ca-btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.copy-ca-btn.copied {
    background: var(--color-text-primary);
    color: white;
}

.connect-wallet-btn {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.connect-wallet-btn:hover {
    background: var(--color-text-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.connect-wallet-btn.connected {
    background: var(--color-text-primary);
    color: white;
}

.trial-btn {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.trial-btn:hover {
    background: var(--color-text-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-ethereal);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 219, 227, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 236, 241, 0.3) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        4px 4px 8px rgba(0, 0, 0, 0.05),
        -1px -1px 2px rgba(255, 255, 255, 0.5);
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInLine 1s ease-out forwards;
}

.title-line:first-child {
    animation-delay: 0.2s;
}

.title-line:last-child {
    animation-delay: 0.5s;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 3rem;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-primary);
    font-weight: 300;
}

.btn-primary:hover {
    background: var(--color-text-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.15em;
    font-weight: 300;
}

/* Sections */
section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 5rem;
    color: var(--color-text-primary);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.08),
        -1px -1px 2px rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(254, 242, 242, 0.4) 50%,
        rgba(248, 249, 250, 0.95) 100%);
}

.feature-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 242, 242, 0.3) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-left: 3px solid rgba(220, 38, 38, 0.3);
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(60px);
}

.feature-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.5) 100%);
    border-left-color: var(--color-accent);
}


.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.feature-box p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

/* Performance Section */
.performance {
    background: var(--color-primary);
}

.performance-chart {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    padding: 4rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-chart.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.chart-placeholder {
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 2rem 0;
}

.chart-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
}

.chart-line:nth-child(1) { bottom: 75%; }
.chart-line:nth-child(2) { bottom: 50%; }
.chart-line:nth-child(3) { bottom: 25%; }

.chart-bars {
    display: flex;
    gap: 2rem;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
}

.bar {
    flex: 1;
    max-width: 60px;
    background: linear-gradient(to top, var(--color-accent), var(--color-secondary));
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.bar:hover {
    background: linear-gradient(to top, var(--color-text-secondary), var(--color-accent));
    transform: scaleY(1.05);
}

.performance-stats {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-stats.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.performance-stats h3 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-collapse: separate;
    border-spacing: 0;
}

.stats-table th,
.stats-table td {
    padding: 1.5rem;
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.stats-table th {
    background: rgba(244, 247, 250, 0.7);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-table tr {
    transition: all 0.3s ease;
}

.stats-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.7);
}

.stats-table td {
    border-top: 1px solid var(--color-border);
}

.positive {
    color: var(--color-text-primary);
    font-weight: 400;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(180deg, 
        rgba(248, 249, 250, 0.95) 0%,
        rgba(243, 244, 246, 0.8) 50%,
        rgba(229, 231, 235, 0.6) 100%);
}

.token-stats {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.token-stats.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.burn-counter {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

.burn-amount {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.burn-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.15em;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.token-box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(60px);
}

.token-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.token-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.7);
}

.token-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-subtle);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.token-box:hover .token-icon {
    transform: scale(1.1) rotate(5deg);
}

.token-box h3 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.token-box p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    background: var(--color-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    padding: 3rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(60px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.4) 100%);
}

.pricing-card.featured {
    border: 2px solid var(--color-accent);
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text-primary);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 300;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.price {
    margin: 2rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.02em;
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

.features-list li:last-child {
    border-bottom: none;
}

.price-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.price-btn:hover {
    background: var(--color-text-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.price-btn.primary {
    background: var(--color-text-primary);
    color: white;
}

.price-btn.primary:hover {
    background: var(--color-text-secondary);
    transform: translateY(-3px) scale(1.02);
}

/* Free Trial Popup - Dark Cryptic Theme */
.trial-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.trial-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-dark-surface);
    border: 1px solid var(--color-dark-border);
    padding: 4rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.trial-popup.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid var(--color-dark-border);
    color: var(--color-dark-text);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.popup-content h2 {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: var(--color-dark-text);
    text-align: center;
}

.popup-content > p {
    text-align: center;
    color: rgba(224, 230, 237, 0.6);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trial-form input {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--color-dark-border);
    padding: 1rem 1.5rem;
    color: var(--color-dark-text);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.trial-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(26, 31, 46, 0.8);
}

.trial-form input::placeholder {
    color: rgba(224, 230, 237, 0.3);
    letter-spacing: 0.08em;
}

.trial-form button {
    background: transparent;
    border: 1px solid var(--color-dark-text);
    color: var(--color-dark-text);
    padding: 1rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    font-weight: 300;
}

.trial-form button:hover {
    background: var(--color-dark-text);
    color: var(--color-dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.popup-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-dark-border);
}

.popup-footer span {
    color: rgba(224, 230, 237, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--color-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 0.3em;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-light);
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-actions {
        gap: 0.5rem;
    }
    
    .copy-ca-btn .ca-text {
        display: none;
    }
    
    .connect-wallet-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line:last-child {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 0.3rem;
    }
    
    .icon-btn,
    .copy-ca-btn,
    .connect-wallet-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .trial-btn {
        display: none;
    }
    
    .pricing-grid,
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll Animation Classes */
[data-animate] {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}
