/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0b;
    --bg-card: #111114;
    --bg-hover: #1c1c1f;
    --border: #2a2a2e;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --green: #00c853;
    --green-dark: #00a844;
    --green-glow: rgba(0, 200, 83, 0.15);
    --green-glow-strong: rgba(0, 200, 83, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== Subtle background grid ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0,200,83,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,83,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0,200,83,0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(0,200,83,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,10,11,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.5px;
}

.logo svg {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.claim-badge-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.claim-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.claim-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0,200,83,0.1);
    border: 1px solid rgba(0,200,83,0.2);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: var(--bg-hover);
    border-color: var(--green);
}

/* ===== HERO ===== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 60px;
    position: relative;
    z-index: 1;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0,200,83,0.1);
    border: 1px solid rgba(0,200,83,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.green-text {
    color: var(--green);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

.hero-desc strong {
    color: var(--text-primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ===== GLASS CARD ===== */
.hero-right {
    display: flex;
    justify-content: center;
}

.card-glass {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.3;
}

.card-header {
    text-align: center;
    margin-bottom: 28px;
}

.leaf-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.card-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Claim Info */
.claim-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.info-row span:first-child {
    color: var(--text-secondary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 8px;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 16px 28px;
    font-size: 1.05rem;
}

.small-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===== ANIMATIONS ===== */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0,200,83,0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0,200,83,0.4);
    }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    z-index: 1;
    position: relative;
}

.trust-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-item strong {
    color: var(--text-primary);
}

/* ===== INFO SECTION ===== */
.info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    z-index: 1;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s;
}

.card-info:hover {
    border-color: rgba(0,200,83,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,200,83,0.05);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.card-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    z-index: 1;
    position: relative;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0,200,83,0.2);
}

.faq-q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-q::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.faq-item.active .faq-q::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-a {
    padding: 0 20px 16px;
    max-height: 300px;
}



/* ===== WALLET REQUIREMENT NOTICE ===== */
.wallet-requirement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: var(--radius-sm);
}

.req-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.req-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.req-text strong {
    font-size: 0.82rem;
    color: #ffc107;
    font-weight: 700;
}

.req-text span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== COUNTDOWN ===== */
.countdown-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 8px 16px;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.15);
    border-radius: var(--radius-sm);
    width: fit-content;
}

.countdown-icon {
    font-size: 1rem;
}

.countdown-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.countdown-timer {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
    letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    z-index: 1;
    position: relative;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-logo svg {
    height: 24px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 500px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 24px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

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

    .trust-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-actions .btn-ghost {
        display: none;
    }
}


/* ===== PRICE BANNER ===== */
.price-banner {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.price-tag {
    display: flex;
    flex-direction: column;
    background: rgba(0, 200, 83, 0.06);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    min-width: 160px;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.2;
}

.price-change {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
}
