/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF6B35;
    --yellow: #FFB800;
    --blue: #4A90D9;
    --purple: #7B61FF;
    --pink: #FF6B9D;
    --teal: #00C9A7;
    --dark: #1A1A2E;
    --dark-surface: #16213E;
    --dark-card: #1E2A4A;
    --dark-border: #2A3A5E;
    --light-bg: #FFF5EE;
    --light-card: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-light: #FFFFFF;
    --text-muted: #8892A4;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.2s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--light-bg);
    padding: 0 24px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.logo-canvas {
    height: 36px;
    display: block;
}

.hero-canvas {
    display: block;
    width: 100%;
    max-width: 560px;
}

.hero-title-wrap {
    margin-bottom: 24px;
    min-height: 180px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-card);
    border: 2px solid var(--text-dark);
    border-radius: var(--border-radius-full);
    padding: 4px;
}

.nav-link {
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-link.active {
    background: var(--orange);
    color: var(--text-light);
}

.nav-link:hover:not(.active) {
    background: rgba(255, 107, 53, 0.1);
}

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

.btn-text {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-text:hover { color: var(--orange); }

.btn-signup {
    background: var(--orange);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--text-dark);
}

.btn-signup:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero { padding: 40px 24px 60px; }

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 280px;
    gap: 40px;
    align-items: start;
    min-height: 70vh;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 107, 53, 0.1);
    border: 1.5px solid rgba(255, 107, 53, 0.3);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero-divider {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 32px;
    max-width: 440px;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-disclaimer {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #999;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 12px 32px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--text-dark);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 12px 32px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--text-dark);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Reviews Badge */
.reviews-badge {
    background: var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 20px 24px;
    color: var(--text-light);
    max-width: 320px;
    margin-top: 24px;
}

.review-text-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.avatar-stack { display: flex; margin-bottom: 8px; }

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    margin-right: -8px;
    border: 2px solid var(--text-dark);
}

.review-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-score {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.score-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.score-star {
    font-size: 2rem;
    color: var(--yellow);
}

/* Hero Image */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 560px;
    background: linear-gradient(135deg, #FFE0D0 0%, #FFC4A0 50%, #FFAA80 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
    color: var(--orange);
}

.placeholder-content p {
    margin-top: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Featured Sidebar */
.featured-sidebar { padding-top: 10px; }

.featured-title {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.featured-subtitle {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 12px;
    line-height: 1.4;
}

.featured-timer {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}

.featured-timer strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    border: 2px solid var(--text-dark);
}

/* ===== SHARED SECTION STYLES ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-align: center;
}

.section-title .highlight {
    color: var(--orange);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 48px;
    font-size: 1.05rem;
}

/* ===== STATS BAR ===== */
.stats-section {
    padding: 28px 0;
    background: var(--text-dark);
    color: var(--text-light);
}

.stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    padding: 0 40px;
    text-align: center;
    border-right: 1px solid var(--dark-border);
}

.stat-item:last-child { border-right: none; }

.stats-section .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.2;
    margin-bottom: 2px;
    display: block;
}

.stats-section .stat-label {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: 100px 0;
    background: var(--light-card);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--light-bg);
    border: 2px solid #eee;
    border-radius: var(--border-radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.1);
}

.step-accent {
    position: absolute;
    top: 0;
    left: 32px;
    width: 32px;
    height: 3px;
    background: var(--orange);
    border-radius: 0 0 3px 3px;
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 107, 53, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
}

/* ===== TOKEN SECTION ===== */
.token-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.token-ticker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 6px;
}

.token-name {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.token-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.token-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.token-points li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.15);
    border: 1.5px solid rgba(255, 184, 0, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23FFB800' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.token-points strong {
    color: var(--text-dark);
    font-weight: 600;
}

.tokenomics-card {
    background: var(--light-card);
    border: 2px solid #eee;
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

.tokenomics-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.token-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.token-row:last-child { border-bottom: none; }
.token-row span { color: #888; }
.token-row strong { font-weight: 700; color: var(--text-dark); }
.token-row strong.gold { color: var(--yellow); }

/* ===== NFT SECTION ===== */
.nft-section {
    padding: 100px 0;
    background: var(--light-card);
}

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

.nft-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFE8D6 100%);
    border: 2px solid var(--orange);
    border-radius: var(--border-radius-lg);
    padding: 40px 36px;
    text-align: center;
    position: relative;
}

.nft-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 107, 53, 0.1);
    border: 1.5px solid rgba(255, 107, 53, 0.3);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.nft-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.nft-price-sub {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 28px;
}

.nft-perks {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    color: #666;
}

.nft-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nft-perks li::before {
    content: '\2726';
    color: var(--orange);
    font-size: 0.6rem;
    flex-shrink: 0;
}

.nft-perks strong {
    color: var(--text-dark);
    font-weight: 600;
}

.nft-supply {
    font-size: 0.75rem;
    color: #999;
    margin-top: 14px;
}

.nft-info h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.nft-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.nft-highlight {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.nft-countdown {
    background: var(--light-bg);
    border: 1.5px solid #eee;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}

.countdown-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.plan-card {
    background: var(--light-card);
    border: 2px solid #eee;
    border-radius: var(--border-radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.plan-card.featured {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(255,107,53,0.05) 0%, var(--light-card) 100%);
}

.plan-card.collector {
    border-color: var(--yellow);
    background: linear-gradient(180deg, rgba(255,184,0,0.06) 0%, var(--light-card) 100%);
}

.plan-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--border-radius-full);
    white-space: nowrap;
}

.plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
}

.plan-name.gold { color: var(--yellow); }

.plan-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price.gold { color: var(--yellow); }

.plan-period {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    margin-bottom: 24px;
}

.plan-features li {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.plan-features li::before {
    content: '\2014';
    color: rgba(255, 107, 53, 0.4);
    flex-shrink: 0;
}

.plan-features li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #ddd;
    color: var(--text-dark);
    background: transparent;
    transition: all 0.2s;
}

.plan-btn:hover {
    border-color: var(--text-dark);
    background: rgba(0,0,0,0.02);
}

.plan-btn.primary {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.plan-btn.primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

.plan-btn.gold-btn {
    border-color: var(--yellow);
    color: var(--yellow);
}

.plan-btn.gold-btn:hover {
    background: var(--yellow);
    color: var(--text-dark);
}

.credit-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    color: #888;
}

.credit-note strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0;
    background: var(--light-card);
}

.faq-list {
    max-width: 720px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}

.faq-q {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-q::after {
    content: '+';
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
}

.faq-a {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
}

.faq-a strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== FOOTER CTA ===== */
.footer-cta-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.footer-cta-tag {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
}

.footer-cta-desc {
    font-size: 1.05rem;
    color: #666;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.footer-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 24px;
    background: var(--text-dark);
    color: var(--text-light);
    border-top: 1px solid var(--dark-border);
}

.footer .logo-text { color: var(--text-light); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 12px;
    color: #888;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-links a {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    .featured-sidebar { display: none; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }
    .token-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nft-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-divider { margin: 0 auto 20px; max-width: 300px; }
    .reviews-badge { margin: 0 auto; }
    .hero-image-placeholder { max-height: 400px; aspect-ratio: 1/1; }
    .footer-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; padding: 8px 24px; }
}

@media (max-width: 480px) {
    .token-ticker { font-size: 2.8rem; }
    .nft-price { font-size: 3rem; }
}
