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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Leaf Background Placeholder */
.leaf-background-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('img/leafbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.intro-complete .leaf-background-placeholder {
    transform: scale(1);
}

/* Hide all content initially except intro and leaf background */
body:not(.intro-complete) .header,
body:not(.intro-complete) section,
body:not(.intro-complete) footer,
body:not(.intro-complete) .modal,
body:not(.intro-complete) .modal__overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

/* Show all content when intro is done */
body.intro-complete .header,
body.intro-complete section,
body.intro-complete footer {
    opacity: 1;
    visibility: visible;
}

/* Hide leaf placeholder when intro is complete */
body.intro-complete .leaf-background-placeholder {
    display: none;
}

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #059669;
    --accent-light: #10b981;
    --bg-color: #ffffff;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-primary: #1a1a1a;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    --gradient-organic: linear-gradient(135deg, #1e40af 0%, #059669 50%, #2563eb 100%);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Asset brand colors */
    --doge-color: #C2A633;
    --ltc-color: #BFBBBB;
    --bch-color: #8DC351;
}

/* Intro Animation */
.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(6, 95, 70, 0.85) 25%, rgba(4, 120, 87, 0.85) 75%, rgba(5, 150, 105, 0.85) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}



.intro-animation.fade-out {
    opacity: 0;
}

.intro-animation.hide {
    display: none;
}

.intro-content {
    text-align: center;
    position: relative;
    transition: opacity 0.3s ease-out;
}

.intro-content.fade-text {
    opacity: 0;
}

.intro-text {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8),
    0 0 40px rgba(16, 185, 129, 0.5);
    animation: glitch 0.5s ease-in-out 3;
    font-family: 'Courier New', monospace;
    margin-bottom: 2rem;
}

/* Loading line */
.loading-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 1), transparent);
    animation: loadingProgress 2s ease-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.5); }
    20% { text-shadow: 2px 2px 0 rgba(255, 0, 0, 0.8), -2px -2px 0 rgba(0, 255, 255, 0.8); }
    21% { text-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.5); }
    50% { text-shadow: -2px 0 0 rgba(255, 0, 255, 0.8), 2px 0 0 rgba(0, 255, 0, 0.8); }
}

.cyber-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cyber-lines--horizontal::before,
.cyber-lines--horizontal::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.6), transparent);
    animation: horizontalScan 2s linear 1;
}

.cyber-lines--horizontal::before {
    top: 20%;
}

.cyber-lines--horizontal::after {
    bottom: 20%;
    animation-delay: 0.5s;
}

.cyber-lines--vertical::before,
.cyber-lines--vertical::after {
    content: '';
    position: absolute;
    top: -100%;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.6), transparent);
    animation: verticalScan 2s linear 1;
}

.cyber-lines--vertical::before {
    left: 15%;
}

.cyber-lines--vertical::after {
    right: 15%;
    animation-delay: 0.5s;
}

@keyframes horizontalScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes verticalScan {
    0% { top: -100%; }
    100% { top: 100%; }
}

.cyber-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cyber-particles::before,
.cyber-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(16, 185, 129, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    animation: particle 2s linear 1;
}

.cyber-particles::after {
    animation-delay: 0.5s;
    background: rgba(37, 99, 235, 0.8);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
}

@keyframes particle {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(calc(50vw - 2px), calc(50vh - 2px)); opacity: 0; }
}

/* Additional cyber effects */
.intro-content::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
    );
    animation: scanlines 8s linear infinite;
    pointer-events: none;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.intro-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

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

/* Diagonal cyber lines */
.cyber-lines--diagonal {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cyber-lines--diagonal::before,
.cyber-lines--diagonal::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.3), transparent);
    transform: rotate(45deg);
    animation: diagonalScan 1.5s linear 1;
}

.cyber-lines--diagonal::before {
    left: -50%;
    animation-delay: 0.3s;
}

.cyber-lines--diagonal::after {
    right: -50%;
    animation-delay: 0.8s;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform: rotate(-45deg);
}

@keyframes diagonalScan {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(300%) rotate(45deg); }
}

/* Cyber grid effect */
.cyber-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(16, 185, 129, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    backdrop-filter: blur(10px);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    height: 64px; /* Fixed height for consistency */
}

.nav__logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    margin-left: 1rem;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('img/leafbg.jpg');
    background-color: #003e1b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    padding-top: 64px; /* Account for fixed header */
}

/* Vertical Slogan */
.vertical-slogan {
    position: absolute;
    left: -136px;
    top: 177px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    z-index: 2;
    text-transform: uppercase;
    font-weight: bolder;
    opacity: 0.8;
}

.vertical-slogan span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.1em;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats improvements */
.stat__suffix {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin-left: 0.25rem;
}

.hero__title {
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-weight: 700;
}

.gradient-text {
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    color: #a7f3d0;
    font-weight: 500;
}

.hero__highlight {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero__stats {
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25));
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat__content {
    text-align: center;
}

.stat__number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 150px;
}

.stat__note {
    font-size: 0.9rem;
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: inline;
    margin-left: 0.5rem;
}

.stat__assets {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.stat__logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
    background: white;
    padding: 6px;
}

.stat__logo:hover {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

.stat__label {
    font-size: 0.95rem;
    color: #a7f3d0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    text-align: center;
    margin-top: 0.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.section--dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section--light {
    background: var(--bg-light);
}

.section--gradient {
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    color: var(--text-light);
}

.section--dark .section__title,
.section--dark h3,
.section--gradient .section__title,
.section--gradient h3 {
    color: var(--text-light);
}

.section--dark p {
    color: #cbd5e1;
}

.section--gradient p {
    color: rgba(255, 255, 255, 0.9);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.section--dark .section__subtitle {
    color: #cbd5e1;
}

.section--gradient .section__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Problem Section */
.problem__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem__item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem__item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Solution Section */
.solution__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution__card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.solution__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.solution__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution__features {
    list-style: none;
    margin-top: 1.5rem;
}

.solution__features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.solution__features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.solution__highlight {
    text-align: center;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Assets Section */
.assets__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.asset__card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.asset__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.asset__card--live {
    border-color: var(--accent-color);
}

.asset__card--future {
    border-color: var(--secondary-color);
    opacity: 0.8;
}

.asset__card--future .asset__icon {
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.asset__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.asset__icon-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.asset__card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.asset__value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.asset__details {
    margin: 1rem 0;
}

.asset__details p {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.asset__status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--bg-light);
    color: var(--text-secondary);
}

.asset__status--live {
    background: var(--accent-color);
    color: var(--text-light);
}

/* Steps */
.steps {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step__content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Yield Sources */
.yield-sources {
    margin-top: 4rem;
    text-align: center;
}

.yield-sources h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.yield-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.yield-source {
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.yield-source:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.yield-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* FAQ Section */
.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq__item {
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq__item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Features */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature__card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature__card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.timeline__item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline__marker {
    position: absolute;
    left: 22px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}

.timeline__date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline__content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Token Section */
.token__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.token__benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.token__benefit:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.token__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.token__content h3 {
    margin-bottom: 0.5rem;
}

.airdrop__announcement {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.airdrop__content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Security Section */
.security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security__item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.security__item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.security__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* CTA Section buttons fix */
.cta .btn--outline {
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    text-shadow: none;
}

.cta .btn--outline:hover {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.cta__content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta__content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer__socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__socials a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer__socials a:hover {
    color: var(--accent-color);
}

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

.footer__section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer__section ul {
    list-style: none;
}

.footer__section li {
    margin-bottom: 0.5rem;
}

.footer__section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer__section a:hover {
    color: var(--accent-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e1;
}

.footer__disclaimer {
    font-size: 0.875rem;
    margin-top: 1rem;
    color: #94a3b8;
}

/* Modal */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    max-width: 500px;
    width: 90%;
    opacity: 0;
    transition: var(--transition);
}

.modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal__overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    padding: 2rem;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal__header h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal__input {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.modal__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal__asset-preference {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.modal__asset-preference p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.modal__asset-preference label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show mobile toggle */
    .nav__toggle {
        display: flex;
    }

    /* Fixed header height adjustment */
    .nav {
        height: 64px;
    }

    /* Hide start earning button on mobile */
    #start-earning-btn {
        display: none;
    }

    .hero {
        background-attachment: scroll;
        flex-direction: column;
        justify-content: center;
        padding: 80px 0 1rem; /* Adjusted for fixed header */
    }

    .hero__content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(25px);
    }

    .hero__highlight {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }

    .highlight-text {
        font-size: 0.875rem;
    }

    .stat {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .stat__content {
        order: 1;
    }

    .stat__assets {
        order: 2;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
    }

    .stat__label {
        order: 3;
    }

    .stat__logo {
        width: 28px;
        height: 28px;
    }

    .stat__number {
        font-size: 1.8rem;
    }

    .stat__label {
        font-size: 0.8rem;
    }

    .stat__note {
        font-size: 0.75rem;
    }

    .vertical-slogan {
        display: none;
    }

    .token__benefit {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .token__icon {
        font-size: 2.5rem;
    }

    .token__content h3 {
        font-size: 1.2rem;
    }

    .token__content p {
        font-size: 1rem;
    }

    .airdrop__announcement {
        padding: 2rem 1.5rem;
    }

    .airdrop__content h3 {
        font-size: 1.25rem;
    }

    .airdrop__content p {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .solution__card {
        padding: 2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline__marker {
        left: 7px;
    }

    .timeline__item {
        padding-left: 50px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal__content {
        padding: 1.5rem;
    }

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

@media (max-width: 1024px) and (min-width: 769px) {
    .hero__content {
        padding: 2.5rem;
    }

    .token__benefit {
        padding: 2rem;
    }
}

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

    .hero__subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .problem__grid,
    .assets__grid {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 1.5rem;
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 64px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
        display: flex !important; /* Override the display: none */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        z-index: 999;
    }

    .nav__menu.active {
        transform: translateX(0);
    }

    .nav__menu li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav__menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation for menu items */
    .nav__menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav__menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav__menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav__menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav__menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav__menu.active li:nth-child(6) { transition-delay: 0.3s; }

    .nav__link {
        font-size: 1.25rem;
        padding: 1rem 3rem;
        color: #ffffff !important;
        font-weight: 600;
        display: inline-block;
        position: relative;
        transition: all 0.3s ease;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .nav__link:hover {
        color: #ffffff !important;
        transform: scale(1.05);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 80%;
        height: 2px;
        background: rgba(255, 255, 255, 0.8);
        transition: transform 0.3s ease;
    }

    .nav__link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    /* Hide the start earning button in mobile menu */
    .nav__menu + .btn {
        display: none;
    }

    /* Hamburger menu improvements */
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Add overlay when menu is active */
    .nav__menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    /* Ensure sections have proper spacing for fixed header */
    section:target {
        scroll-margin-top: 64px;
    }

    /* Better button styling on mobile */
    .btn {
        min-height: 48px;
        touch-action: manipulation; /* Prevents double-tap zoom */
    }

    /* Fix any z-index issues */
    .header {
        z-index: 1000;
    }

    .nav__menu {
        z-index: 999;
    }

    .modal {
        z-index: 2000;
    }

    .modal__overlay {
        z-index: 1999;
    }
}