/* ===================================
   VAULT PHOENIX - EMBER LOCAL CSS v2.5
   ✅ UPDATED: November 2025
   
   CHANGES IN v2.5:
   1. Universal section background fix
   2. Team section mobile spacing fix
   
   All sections now use consistent
   var(--ember-gradient-background)
   =================================== */

/* ===================================
   UNIVERSAL SECTION BACKGROUND
   Ensures consistent background across all sections
   Define gradient directly to ensure it matches main page
   =================================== */

/* Define the gradient variable in case it's not loaded from global.css */
:root {
    --ember-gradient-background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

/* Apply to all sections */
.ember-section,
body,
[class*="-section"] {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
}

/* Make sure NO elements inside sections have their own backgrounds */
/* This forces everything to be transparent except the main section */
.ember-section *:not([class*="card"]):not([class*="button"]):not([class*="btn"]):not([class*="modal"]):not(img):not([class*="chart"]):not([class*="pie"]):not(svg):not(canvas),
[class*="-section"] *:not([class*="card"]):not([class*="button"]):not([class*="btn"]):not([class*="modal"]):not(img):not([class*="chart"]):not([class*="pie"]):not(svg):not(canvas) {
    background-color: transparent !important;
    background-image: none !important;
}

/* ===================================
   BASE MODAL CONTAINER
   =================================== */

.tpa-modal,
#tpaModal,
#whitepaperModal,
#airdrop-info-modal,
#airdrop-terms-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

/* Show modal when JavaScript sets display */
.tpa-modal[style*="display: flex"],
.tpa-modal[style*="display: block"],
#tpaModal[style*="display: flex"],
#whitepaperModal[style*="display: flex"],
#airdrop-info-modal[style*="display: flex"],
#airdrop-terms-modal[style*="display: flex"] {
    display: flex !important;
}

/* ===================================
   MODAL OVERLAY & CONTENT
   =================================== */

.tpa-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.tpa-modal-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.98) 0%, 
        rgba(45, 24, 16, 0.95) 100%);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 100px rgba(215, 51, 39, 0.3);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===================================
   MODAL HEADER
   =================================== */

.tpa-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 2px solid rgba(215, 51, 39, 0.3);
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.98) 0%, 
        rgba(45, 24, 16, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.tpa-modal-header h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #f0a500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tpa-modal-header h3 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.6));
}

/* ===================================
   MODAL CLOSE BUTTON
   =================================== */

.tpa-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(215, 51, 39, 0.2);
    border: 2px solid rgba(215, 51, 39, 0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.tpa-modal-close:hover {
    background: rgba(215, 51, 39, 0.5);
    border-color: #d73327;
    transform: rotate(90deg) scale(1.15);
}

.tpa-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* ===================================
   MODAL BODY
   =================================== */

.tpa-modal-body {
    padding: 2rem;
}

.tpa-modal-body h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #f0a500;
    margin: 0 0 1rem;
}

.tpa-modal-body p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem;
}

.tpa-modal-body p:last-child {
    margin-bottom: 0;
}

.tpa-modal-body ul,
.tpa-modal-body ol {
    margin: 0 0 1rem 1.5rem;
    padding: 0;
}

.tpa-modal-body li {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.tpa-modal-body strong {
    color: #f0a500;
    font-weight: 700;
}

.tpa-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===================================
   MODAL ACTIONS/FOOTER
   =================================== */

.tpa-modal-actions {
    padding: 2rem;
    border-top: 2px solid rgba(215, 51, 39, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.98) 0%, 
        rgba(45, 24, 16, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.tpa-download-btn,
.tpa-agree-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    min-height: 54px;
}

.tpa-download-btn {
    background: rgba(215, 51, 39, 0.2);
    color: #ffffff;
    border-color: rgba(215, 51, 39, 0.5);
}

.tpa-download-btn:hover {
    background: rgba(215, 51, 39, 0.4);
    border-color: #d73327;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(215, 51, 39, 0.4);
}

.tpa-download-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.5));
}

.tpa-agree-btn {
    background: linear-gradient(135deg, #d73327 0%, #c62828 50%, #b71c1c 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(215, 51, 39, 0.5);
}

.tpa-agree-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(215, 51, 39, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   MODAL SCROLLBAR
   =================================== */

.tpa-modal-content::-webkit-scrollbar {
    width: 10px;
}

.tpa-modal-content::-webkit-scrollbar-track {
    background: rgba(26, 15, 10, 0.8);
    border-radius: 5px;
}

.tpa-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d73327, #fb923c);
    border-radius: 5px;
}

.tpa-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #fb923c, #f0a500);
}

/* ===================================
   MODAL UTILITIES
   =================================== */

body.modal-open {
    overflow: hidden;
}

/* ===================================
   MODAL RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .tpa-modal {
        padding: 1rem;
    }
    
    .tpa-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .tpa-modal-header,
    .tpa-modal-body,
    .tpa-modal-actions {
        padding: 1.5rem;
    }
}

/* ===================================
   END SECTION 1: MODAL SYSTEM
   =================================== */
/* ===================================
   HERO SECTION BASE
   =================================== */
.ember-section.hero-section {
    padding: calc(var(--navbar-height) + 3rem) var(--container-padding) 3rem;
    background: var(--ember-gradient-background);
    min-height: auto;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ember-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   HERO ICON - LARGER SIZE WITH ROCK ANIMATION
   =================================== */
.ember-section-icon-large {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: gentleRock 4s ease-in-out infinite;
}

.ember-section-icon-large img {
    width: 160px !important; /* ✅ BIGGER: Was 140px, now 160px */
    height: 160px !important;
    object-fit: contain;
}

/* ✅ ROCKING ANIMATION - Gentle back and forth */
@keyframes gentleRock {
    0%, 100% { 
        transform: rotate(-3deg); 
    }
    50% { 
        transform: rotate(3deg); 
    }
}

/* ===================================
   RESPONSIVE SIZES
   =================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .ember-section-icon-large img {
        width: 140px !important;
        height: 140px !important;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .ember-section-icon-large img {
        width: 120px !important;
        height: 120px !important;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .ember-section-icon-large img {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Very Small Mobile - 360px */
@media (max-width: 360px) {
    .ember-section-icon-large img {
        width: 90px !important;
        height: 90px !important;
    }
}


/* ===================================
   HERO TEXT ELEMENTS
   =================================== */
.ember-section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ember-section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* ===================================
   HERO DESCRIPTION - 3REM SPACING AFTER
   =================================== */
.ember-section-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem !important; /* ✅ CRITICAL: 3REM SPACING */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-gold {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   HERO TOKEN METRICS - COMPACT CARDS
   Desktop: 3 columns centered
   Mobile: 1 column, horizontal layout
   =================================== */
.hero-token-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 750px;
    margin: 0 auto 2.5rem; /* ✅ 2.5REM SPACING BELOW */
}

.hero-metric-card {
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.9) 0%, 
        rgba(45, 24, 16, 0.85) 100%);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--ember-gold);
    box-shadow: 0 8px 25px rgba(240, 165, 0, 0.3);
}

.hero-metric-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.hero-metric-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-metric-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero-metric-value {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--ember-gold);
    line-height: 1;
}

.hero-metric-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===================================
   HERO BUTTONS - COMPACT SIZE
   =================================== */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 46px;
}

.hero-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #d73327, #c62828);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(215, 51, 39, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 51, 39, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary {
    background: rgba(215, 51, 39, 0.1);
    color: var(--ember-gold);
    border-color: rgba(215, 51, 39, 0.4);
}

.hero-btn-secondary:hover {
    background: rgba(215, 51, 39, 0.2);
    border-color: var(--ember-gold);
    transform: translateY(-2px);
}

/* ===================================
   TABLET RESPONSIVE - 1024px
   =================================== */
@media (max-width: 1024px) {
    .ember-section.hero-section {
        padding: calc(var(--navbar-height) + 2.5rem) var(--container-padding) 2.5rem;
    }
    
    .ember-section-icon-large img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .hero-token-metrics {
        max-width: 650px;
        gap: 0.85rem;
    }
    
    .hero-metric-card {
        padding: 0.95rem 0.85rem;
    }
    
    .hero-metric-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-metric-value {
        font-size: 1.5rem;
    }
    
    .hero-metric-label {
        font-size: 0.65rem;
    }
}

/* ===================================
   MOBILE RESPONSIVE - 768px
   ✅ PERFECT HORIZONTAL CARD LAYOUT
   =================================== */
@media (max-width: 768px) {
    .ember-section.hero-section {
        padding: calc(var(--navbar-height) + 2rem) 1rem 2rem;
    }
    
    /* Slightly smaller coin on mobile */
    .ember-section-icon-large img {
        width: 100px !important;
        height: 100px !important;
    }
    
    /* Reduced spacing on mobile */
    .ember-section-description {
        font-size: 0.95rem;
        margin-bottom: 2.5rem !important; /* Still need good spacing */
    }
    
    /* ✅ MOBILE: Stack cards vertically, horizontal layout */
    .hero-token-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    /* ✅ MOBILE: Horizontal card layout (icon + text side-by-side) */
    .hero-metric-card {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        text-align: left;
    }
    
    .hero-metric-icon {
        width: 48px;
        height: 48px;
    }
    
    .hero-metric-content {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-metric-value {
        font-size: 1.75rem;
    }
    
    .hero-metric-label {
        font-size: 0.75rem;
        text-align: left;
    }
    
    /* Stack buttons vertically on mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 0.85rem;
        max-width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-btn img {
        width: 22px;
        height: 22px;
    }
}

/* ===================================
   SMALL MOBILE - 480px
   =================================== */
@media (max-width: 480px) {
    .ember-section.hero-section {
        padding: calc(var(--navbar-height) + 1.75rem) 1rem 1.75rem;
    }
    
    .ember-section-icon-large img {
        width: 90px !important;
        height: 90px !important;
    }
    
    .ember-section-title {
        font-size: 2rem;
    }
    
    .ember-section-subtitle {
        font-size: 1.1rem;
    }
    
    .ember-section-description {
        font-size: 0.9rem;
        margin-bottom: 2rem !important;
    }
    
    .hero-token-metrics {
        margin-bottom: 1.75rem;
    }
    
    .hero-metric-card {
        padding: 1.15rem 1.25rem;
    }
    
    .hero-metric-icon {
        width: 44px;
        height: 44px;
    }
    
    .hero-metric-value {
        font-size: 1.6rem;
    }
    
    .hero-metric-label {
        font-size: 0.7rem;
    }
    
    .hero-btn {
        padding: 0.95rem 1.75rem;
    }
}

/* ===================================
   VERY SMALL MOBILE - 360px
   =================================== */
@media (max-width: 360px) {
    .ember-section-icon-large img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .hero-metric-card {
        padding: 1rem 1.15rem;
    }
    
    .hero-metric-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-metric-value {
        font-size: 1.5rem;
    }
    
    .hero-metric-label {
        font-size: 0.65rem;
    }
}
/* ===================================
   SECTION 3: AIRDROP SECTION - OPTIMIZED
   Complete airdrop system with purple theme
   =================================== */

/* ===================================
   AIRDROP BASE STYLES
   =================================== */

.ember-airdrop-section {
    padding: clamp(3rem, 6vw, 5rem) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(13, 12, 12, 0.95) 0%, 
        rgba(26, 15, 10, 0.9) 100%);
    position: relative;
}

/* ===================================
   PARACHUTE HEADER
   =================================== */

.parachute-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.parachute-glow {
    display: inline-block;
    animation: parachuteFloat 4s ease-in-out infinite;
}

@keyframes parachuteFloat {
    0%, 100% { 
        transform: translateY(0) translateX(-10px);
        filter: drop-shadow(0 0 25px rgba(240, 165, 0, 0.6));
    }
    50% { 
        transform: translateY(-30px) translateX(10px);
        filter: drop-shadow(0 0 40px rgba(240, 165, 0, 0.9));
    }
}

.parachute-crate-enlarged {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* ===================================
   MAIN OUTER MODULE
   =================================== */

.ember-airdrop-outer-module {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

/* ===================================
   COMPACT HEADER
   =================================== */

.ember-airdrop-compact-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.ember-header-text-compact {
    max-width: 900px;
    margin: 0 auto;
}

.ember-title-compact {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ember-subtitle-compact {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ===================================
   COMING SOON BANNER - PURPLE
   =================================== */

.ember-coming-soon-compact {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.ember-coming-text h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin-bottom: 0.5rem;
}

.ember-coming-text p {
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* ===================================
   SOCIAL LINKS - PURPLE BUTTONS
   =================================== */

.ember-social-links-compact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ember-social-btn-ember {
    background: rgba(139, 92, 246, 0.2) !important;
    border: 2px solid rgba(139, 92, 246, 0.5) !important;
    color: white !important;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    min-height: 44px;
}

.ember-social-btn-ember:hover {
    background: rgba(139, 92, 246, 0.4) !important;
    border-color: rgba(139, 92, 246, 0.8) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.ember-social-icon-small {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===================================
   COMPACT GRID - TWO COLUMNS
   =================================== */

.ember-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
    width: 100%;
}

/* ===================================
   INNER MODULES
   =================================== */

.ember-inner-module {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    position: relative;
    width: 100%;
}

/* ===================================
   MINI HEADER
   =================================== */

.ember-mini-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(215, 51, 39, 0.3);
}

.ember-mini-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.ember-mini-header h3 {
    flex: 1;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.info-badge-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 44px;
    min-height: 44px;
    background: rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(139, 92, 246, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.info-badge-button svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.info-badge-button:hover {
    background: rgba(139, 92, 246, 0.6);
    border-color: #8b5cf6;
    transform: scale(1.1);
}

.info-badge-button:active {
    transform: scale(0.95);
}

/* ===================================
   STATS GRID
   =================================== */

.ember-stats-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    width: 100%;
}

.ember-stat-mini {
    background: rgba(215, 51, 39, 0.1);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
}

.ember-stat-mini .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ember-stat-mini .stat-value {
    font-size: clamp(1.3rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: var(--ember-gold);
    display: block;
    line-height: 1;
}

.ember-stat-mini .stat-value.claimed {
    color: #60a5fa;
}

.ember-stat-mini .stat-value.remaining {
    color: var(--ember-gold);
}

/* ===================================
   PROGRESS BAR
   =================================== */

.ember-progress-compact {
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    width: 100%;
}

.progress-bar-bg {
    width: 100%;
    height: 14px;
    background: rgba(15, 15, 15, 0.6);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(215, 51, 39, 0.2);
}

.progress-bar-fill {
    height: 100%;
    background: var(--ember-gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 600;
}

/* ===================================
   PRESALE DETAILS
   =================================== */

.presale-details-compact {
    background: rgba(215, 51, 39, 0.1);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.presale-details-compact h4 {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.presale-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
}

.presale-info-item {
    text-align: center;
}

.presale-info-item .info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.presale-info-item .info-value {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    display: block;
}

/* ===================================
   ALLOCATION INFO
   =================================== */

.allocation-info {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.allocation-info h5 {
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.75rem;
    text-align: center;
}

.allocation-details {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 1rem;
}

.allocation-cta {
    text-align: center;
}

.allocation-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.5);
    border-radius: var(--radius-lg);
    color: #60a5fa;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
}

.allocation-link-btn:hover {
    background: rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
}

/* ===================================
   STATUS CHECKER - PURPLE
   =================================== */

.status-checker-integrated {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.status-checker-integrated h4 {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    text-align: center;
}

.status-checker-description {
    font-size: clamp(0.8rem, 1.4vw, 0.85rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1rem;
}

.status-input-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.input-compact {
    flex: 1;
    padding: 0.75rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    color: white;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    width: 100%;
    min-height: 44px;
}

.input-compact::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-compact:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.status-btn-compact {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-height: 44px;
}

.status-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* ===================================
   SOCIAL TRACKING - GOLD/EMBER
   =================================== */

.social-tracking-section {
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.12) 0%, 
        rgba(215, 51, 39, 0.08) 100%);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.social-tracking-section h4 {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.social-tracking-description {
    font-size: clamp(0.8rem, 1.4vw, 0.85rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1rem;
}

.social-hashtags-display {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
}

.hashtag-text {
    font-family: 'Courier New', monospace;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    font-weight: 600;
    color: var(--ember-gold);
    text-align: center;
    line-height: 1.6;
    word-break: break-word;
    user-select: all;
}

.copy-hashtags-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.25) 0%, 
        rgba(215, 51, 39, 0.2) 100%);
    border: 2px solid rgba(240, 165, 0, 0.5);
    border-radius: var(--radius-md);
    color: var(--ember-gold);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.copy-hashtags-btn:hover {
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.35) 0%, 
        rgba(215, 51, 39, 0.3) 100%);
    border-color: var(--ember-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 165, 0, 0.4);
}

.copy-hashtags-btn.copied {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.25) 0%, 
        rgba(34, 197, 94, 0.2) 100%);
    border-color: rgba(34, 197, 94, 0.6);
    color: #4ade80;
}

.copy-hashtags-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-tracking-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 0.65rem;
    margin-bottom: 0;
    font-style: italic;
}

/* ===================================
   POWERED BY TEXT
   =================================== */

.airdrop-powered-by {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: clamp(1.25rem, 2.5vw, 1.5rem);
    font-style: italic;
}

/* ===================================
   SHARE TO CLAIM
   =================================== */

.share-to-claim-section {
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.share-to-claim-title {
    font-size: clamp(1.05rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.share-to-claim-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    width: 100%;
}

.share-button,
.share-x-ember,
.share-facebook-ember,
.share-telegram-ember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: var(--radius-lg);
    font-size: clamp(0.8rem, 1.4vw, 0.85rem);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
}

.share-button:hover,
.share-x-ember:hover,
.share-facebook-ember:hover,
.share-telegram-ember:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.share-icon {
    width: 18px;
    height: 18px;
}

/* ===================================
   PHANTOM PROMO - PURPLE
   =================================== */

.phantom-promo-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(139, 92, 246, 0.2) !important;
    border: 2px solid rgba(139, 92, 246, 0.5) !important;
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    text-align: center;
    transition: all 0.3s ease;
}

.phantom-promo-compact:hover {
    background: rgba(139, 92, 246, 0.3) !important;
    border-color: rgba(139, 92, 246, 0.7) !important;
}

.phantom-promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.phantom-icon-compact {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.phantom-text-compact {
    flex: 1;
    text-align: left;
}

.phantom-text-compact strong {
    display: block;
    font-size: clamp(1rem, 1.8vw, 1.05rem);
    color: #8b5cf6;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phantom-text-compact p {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.phantom-get-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: var(--radius-lg);
    color: #8b5cf6;
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
}

.phantom-get-link:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* ===================================
   FORM FIELDS
   =================================== */

.ember-form-compact {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.25rem);
    width: 100%;
}

.form-group-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form-group-compact label {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group-compact .required {
    color: #f87171;
}

.form-group-compact input[type="text"],
.form-group-compact input[type="email"],
.form-group-compact input[type="url"] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    color: white;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    min-height: 44px;
}

.form-group-compact input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group-compact input:focus {
    outline: none;
    border-color: var(--ember-orange);
    box-shadow: 0 0 0 3px rgba(215, 51, 39, 0.2);
}

/* ===================================
   TERMS CHECKBOX
   =================================== */

.terms-group {
    margin: 1rem 0;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
}

.terms-link-btn {
    background: none;
    border: none;
    color: #60a5fa;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: inherit;
    min-height: 24px;
    display: inline;
    line-height: inherit;
}

.terms-link-btn:hover {
    color: #93c5fd;
}

.terms-link-btn:active {
    color: #3b82f6;
}

/* ===================================
   CLAIM BUTTON
   =================================== */

.claim-btn-compact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--ember-gradient-primary);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.05rem);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-height: 54px;
}

.claim-btn-compact:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.4);
}

.claim-btn-compact:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.claim-btn-compact img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* ===================================
   MESSAGE BOX
   =================================== */

.message-box-compact {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    text-align: center;
    display: none;
}

.message-box-compact.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.message-box-compact.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
}

.message-box-compact.info {
    display: block;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.5);
    color: #60a5fa;
}

/* ===================================
   AIRDROP RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .ember-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ember-airdrop-section {
        padding: 3rem 1rem;
    }
    
    .ember-airdrop-outer-module {
        padding: 1.5rem;
    }
    
    .parachute-crate-enlarged {
        max-width: 260px;
    }
    
    .ember-stats-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .share-buttons-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .presale-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .ember-social-links-compact {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .phantom-promo-header {
        flex-direction: column;
    }
    
    .phantom-text-compact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ember-airdrop-section {
        padding: 2.5rem 1rem;
    }
    
    .parachute-crate-enlarged {
        max-width: 220px;
    }
    
    .ember-airdrop-outer-module {
        padding: 1.25rem;
    }
    
    .ember-inner-module {
        padding: 1rem;
    }
}

/* ===================================
   END SECTION 3: AIRDROP SECTION
   =================================== *//* ===================================
   SECTION 4: HOW IT WORKS SECTION - OPTIMIZED
   Stakeholder cards, flow steps, utility grid
   =================================== */

/* ===================================
   HOW IT WORKS CONTAINER
   =================================== */

.how-it-works-section {
    padding: clamp(4rem, 8vw, 6rem) var(--container-padding);
    background: var(--ember-gradient-background);
}

/* ===================================
   SECTION HEADER (GLOBAL PATTERN)
   =================================== */

.ember-section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ember-section-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    display: block;
}

.ember-section-icon-large {
    width: var(--icon-section);
    height: var(--icon-section);
}

.ember-section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(215, 51, 39, 0.6));
}

.ember-section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.ember-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

.ember-section-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   STAKEHOLDER CARDS GRID
   =================================== */

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ===================================
   STAKEHOLDER CARD BASE
   =================================== */

.stakeholder-card {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.stakeholder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(215, 51, 39, 0.4);
    border-color: var(--ember-orange);
}

/* Stakeholder Card Variants */
.platform-operator-card {
    border-color: rgba(215, 51, 39, 0.4);
}

.platform-operator-card:hover {
    border-color: var(--ember-orange);
    box-shadow: 0 16px 48px rgba(215, 51, 39, 0.5);
}

.player-card {
    border-color: rgba(240, 165, 0, 0.4);
}

.player-card:hover {
    border-color: var(--ember-gold);
    box-shadow: 0 16px 48px rgba(240, 165, 0, 0.5);
}

.merchant-card {
    border-color: rgba(251, 146, 60, 0.4);
}

.merchant-card:hover {
    border-color: #fb923c;
    box-shadow: 0 16px 48px rgba(251, 146, 60, 0.5);
}

/* ===================================
   STAKEHOLDER CONTENT
   =================================== */

.stakeholder-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stakeholder-icon img {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(215, 51, 39, 0.5));
}

.stakeholder-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--ember-gold);
    text-align: center;
    margin: 0;
}

/* ===================================
   FLOW STEPS
   =================================== */

.stakeholder-flow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(215, 51, 39, 0.1);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--ember-orange);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--ember-gradient-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(215, 51, 39, 0.4);
}

.step-text {
    flex: 1;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 0.25rem;
}

.step-text strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   DUAL PATH (PLAYERS)
   =================================== */

.dual-path {
    flex-direction: column;
    gap: 1rem;
    background: rgba(240, 165, 0, 0.1);
    border-left-color: var(--ember-gold);
    padding: 1rem;
}

.path-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(26, 15, 10, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(240, 165, 0, 0.3);
}

.path-icon {
    flex-shrink: 0;
}

.path-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(240, 165, 0, 0.5));
}

.path-text {
    flex: 1;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

.path-divider {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ember-gold);
    padding: 0.25rem 0;
}

/* ===================================
   STAKEHOLDER BENEFITS
   =================================== */

.stakeholder-benefits {
    padding-top: 1rem;
    border-top: 1px solid rgba(215, 51, 39, 0.3);
}

.stakeholder-benefits h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin: 0 0 0.75rem;
}

.stakeholder-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stakeholder-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.stakeholder-benefits li::before {
    content: '✓';
    color: var(--ember-gold);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: -2px;
}

/* ===================================
   VALUE PROPOSITION ENHANCED
   =================================== */

.value-proposition-enhanced {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.1) 100%);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
}

.value-proposition-enhanced h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

/* ===================================
   UTILITY GRID
   =================================== */

.utility-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.utility-item-enhanced {
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.utility-item-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
}

.utility-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.utility-icon img {
    width: clamp(48px, 8vw, 64px);
    height: clamp(48px, 8vw, 64px);
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.5));
}

.utility-item-enhanced h4 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.utility-item-enhanced p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0;
}

.utility-item-enhanced p strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   HOW IT WORKS RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .utility-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .utility-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .how-it-works-grid {
        gap: 3rem;
    }
    
    .utility-grid-enhanced {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stakeholder-card {
        padding: 1.25rem;
    }
}

/* ===================================
   END SECTION 4: HOW IT WORKS SECTION
   =================================== *//* ===================================
   SECTION 5: TECHNICAL FOUNDATION - OPTIMIZED
   Whitepaper overview with download button
   =================================== */

/* ===================================
   WHITEPAPER CONTENT
   =================================== */

.whitepaper-content {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   WHITEPAPER OVERVIEW
   =================================== */

.whitepaper-overview {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.whitepaper-overview h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ember-gold);
    margin: 0 0 1.5rem;
    text-align: center;
}

.whitepaper-overview p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem;
}

.whitepaper-overview p:last-child {
    margin-bottom: 0;
}

.whitepaper-overview strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   WHITEPAPER SECTIONS GRID
   =================================== */

.whitepaper-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 1200px;
    margin: 0 auto;
}

.whitepaper-section {
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    transition: all 0.3s ease;
}

.whitepaper-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
}

.whitepaper-section h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whitepaper-section h4 img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(240, 165, 0, 0.5));
}

.whitepaper-section p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.whitepaper-section strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   DOWNLOAD SECTION
   =================================== */

.download-section {
    text-align: center;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.1) 100%);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.download-section h3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem;
}

.download-section p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--ember-gradient-primary);
    color: #ffffff;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 51, 39, 0.4);
    min-height: 44px;
    text-decoration: none;
}

.download-button img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 51, 39, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.download-button:active {
    transform: translateY(-1px);
}

/* ===================================
   TECHNICAL FOUNDATION RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .whitepaper-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   END SECTION 5: TECHNICAL FOUNDATION
   =================================== *//* ===================================
   SECTION 6: ROADMAP SECTION - OPTIMIZED
   Timeline with phases and trust signals
   =================================== */

/* ===================================
   ROADMAP CONTAINER
   =================================== */

.roadmap-section {
    padding: clamp(4rem, 8vw, 6rem) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(13, 12, 12, 1) 0%, 
        rgba(26, 15, 10, 0.95) 50%, 
        rgba(13, 12, 12, 1) 100%);
}

/* ===================================
   ROADMAP TIMELINE
   =================================== */

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   ROADMAP ITEM
   =================================== */

.roadmap-item {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(215, 51, 39, 0.4);
}

/* Roadmap Item Variants */
.roadmap-item.active {
    border-color: var(--ember-orange);
    box-shadow: 0 8px 32px rgba(215, 51, 39, 0.5);
}

.roadmap-item.upcoming {
    border-color: rgba(240, 165, 0, 0.4);
}

.roadmap-item.future {
    border-color: rgba(251, 146, 60, 0.3);
    opacity: 0.9;
}

/* ===================================
   ROADMAP HEADER
   =================================== */

.roadmap-quarter {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--ember-gradient-primary);
    color: #ffffff;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 800;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(215, 51, 39, 0.4);
}

.roadmap-title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--ember-gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.roadmap-title img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.6));
}

/* ===================================
   ROADMAP STATUS
   =================================== */

.roadmap-status {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.active-status {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.upcoming-status {
    background: rgba(240, 165, 0, 0.2);
    color: var(--ember-gold);
    border: 1px solid var(--ember-gold);
}

.future-status {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid #fb923c;
}

/* ===================================
   ROADMAP TASKS
   =================================== */

.roadmap-tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roadmap-tasks li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem;
    background: rgba(215, 51, 39, 0.05);
    border-radius: var(--radius-md);
}

.roadmap-tasks li .check-icon {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
}

.roadmap-tasks li img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.6));
}

/* ===================================
   ROADMAP NOTE
   =================================== */

.roadmap-note {
    padding: 0.875rem;
    background: rgba(240, 165, 0, 0.1);
    border-left: 3px solid var(--ember-gold);
    border-radius: var(--radius-md);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.roadmap-note strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   TRUST SIGNALS
   =================================== */

.trust-signals {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.1) 100%);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-signals h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.trust-item {
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
}

.trust-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.trust-icon img {
    width: clamp(56px, 10vw, 72px);
    height: clamp(56px, 10vw, 72px);
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(240, 165, 0, 0.5));
}

.trust-item h4 {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.trust-item p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   ROADMAP RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   END SECTION 6: ROADMAP SECTION
   =================================== *//* ===================================
   SECTION 7: TEAM SECTION - OPTIMIZED
   Team members and advisors
   =================================== */

/* ===================================
   TEAM CONTAINER
   =================================== */

.team-section {
    padding: clamp(4rem, 8vw, 6rem) var(--container-padding);
    background: var(--ember-gradient-background);
}

/* ===================================
   TEAM ICON
   =================================== */

.team-section-icon-xlarge {
    width: clamp(100px, 18vw, 140px) !important;
    height: clamp(100px, 18vw, 140px) !important;
}

/* ===================================
   TEAM GRID
   =================================== */

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--container-padding); /* ✅ CRITICAL FIX: Adds side spacing on mobile */
}

/* ===================================
   TEAM MEMBER CARD
   =================================== */

.team-member {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(215, 51, 39, 0.4);
    border-color: var(--ember-orange);
}

/* ===================================
   MEMBER AVATAR
   =================================== */

.member-avatar {
    width: clamp(120px, 20vw, 160px);
    height: clamp(120px, 20vw, 160px);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--ember-orange);
    box-shadow: 0 0 30px rgba(215, 51, 39, 0.5);
    margin-bottom: 0.5rem;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   MEMBER INFO
   =================================== */

.member-name {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.member-role {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 600;
    color: var(--ember-gold);
    margin: 0;
}

.member-bio {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 500px;
}

/* ===================================
   MEMBER SKILLS
   =================================== */

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    padding: 0.4rem 1rem;
    background: rgba(215, 51, 39, 0.2);
    color: var(--ember-gold);
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(240, 165, 0, 0.3);
}

/* ===================================
   MEMBER SOCIALS
   =================================== */

.member-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social-link-team {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 51, 39, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(215, 51, 39, 0.3);
    text-decoration: none;
}

.social-link-team:hover {
    background: var(--ember-gradient-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(215, 51, 39, 0.5);
    border-color: var(--ember-orange);
}

.social-link-team svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   ADVISORS SECTION
   =================================== */

.advisors-section {
    text-align: center;
    margin: clamp(3rem, 6vw, 5rem) auto clamp(2rem, 4vw, 3rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(240, 165, 0, 0.1);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(240, 165, 0, 0.3);
    max-width: 1200px;
}

.advisors-section h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    margin: 0 0 0.75rem;
}

.advisors-section p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   TEAM GRID ADVISORS
   =================================== */

.team-grid-advisors {
    margin-bottom: 0;
}

/* ===================================
   PLACEHOLDER CARDS
   =================================== */

.team-member-placeholder {
    visibility: hidden;
    pointer-events: none;
}

/* ===================================
   TEAM RESPONSIVE - UPDATED WITH MOBILE FIX
   =================================== */

/* Mobile: Keep padding for spacing */
@media (max-width: 767px) {
    .team-grid {
        padding: 0 var(--container-padding); /* ✅ Explicit mobile spacing */
    }
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0; /* Remove padding on larger screens since container handles it */
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   END SECTION 7: TEAM SECTION
   =================================== *//* ===================================
   SECTION 8: TOKENOMICS SECTION - OPTIMIZED
   Distribution, allocation, trust features
   =================================== */

/* ===================================
   TOKENOMICS CONTAINER
   =================================== */

.tokenomics-section {
    padding: clamp(4rem, 8vw, 6rem) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.95) 0%, 
        rgba(45, 24, 16, 0.90) 50%, 
        rgba(26, 15, 10, 0.95) 100%);
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 5rem);
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   TOKEN OVERVIEW
   =================================== */

.token-overview {
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--ember-gradient-card);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-2xl);
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.overview-stat {
    text-align: center;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: rgba(215, 51, 39, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(215, 51, 39, 0.3);
}

.stat-value {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--ember-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-desc {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   INVESTOR INCENTIVE SECTION
   =================================== */

.investor-incentive-section {
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.1) 100%);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
}

.investor-incentive-section h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.incentive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.incentive-card {
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: all 0.3s ease;
}

.incentive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(215, 51, 39, 0.4);
    border-color: var(--ember-orange);
}

.incentive-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.incentive-icon img {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.6));
}

.incentive-card h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
}

.incentive-card p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.incentive-card strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   TOKEN DISTRIBUTION
   =================================== */

.token-distribution h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.distribution-visual {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

/* ===================================
   PIE CHART
   =================================== */

.distribution-chart-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

.pie-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #d73327 0% 35%,
        #fb923c 35% 65%,
        #f0a500 65% 81.67%,
        #4ade80 81.67% 91.67%,
        #3b82f6 91.67% 96.67%,
        #8b5cf6 96.67% 100%
    );
    box-shadow: 0 0 40px rgba(215, 51, 39, 0.5),
                inset 0 0 60px rgba(0, 0, 0, 0.5);
}

/* ===================================
   DISTRIBUTION LEGEND
   =================================== */

.distribution-legend {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(26, 15, 10, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(215, 51, 39, 0.2);
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(45, 24, 16, 0.7);
    border-color: rgba(215, 51, 39, 0.4);
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.legend-info {
    flex: 1;
}

.legend-label {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.legend-value {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 700;
    color: var(--ember-gold);
}

/* ===================================
   ALLOCATION TABLE
   =================================== */

.allocation-table {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.allocation-table h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(215, 51, 39, 0.3);
    display: none; /* Hidden on mobile */
}

.tokenomics-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 15, 10, 0.6);
}

.tokenomics-table thead {
    background: var(--ember-gradient-primary);
}

.tokenomics-table th {
    padding: 1rem;
    text-align: left;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    border-bottom: 2px solid rgba(240, 165, 0, 0.3);
}

.tokenomics-table td {
    padding: 1rem;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(215, 51, 39, 0.2);
}

.tokenomics-table tbody tr:hover {
    background: rgba(215, 51, 39, 0.1);
}

.tokenomics-table td strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   MOBILE ALLOCATION CARDS
   =================================== */

.allocation-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.allocation-card-mobile {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.allocation-card-mobile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
}

.allocation-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(215, 51, 39, 0.3);
}

.allocation-card-category {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
}

.allocation-card-percentage {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 900;
    color: var(--ember-gold);
}

.allocation-card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.allocation-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.allocation-detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.allocation-detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ember-gold);
}

.allocation-card-note {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem;
    background: rgba(215, 51, 39, 0.1);
    border-radius: var(--radius-md);
}

/* ===================================
   TRUST FEATURES
   =================================== */

.trust-features {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.1) 100%);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
}

.trust-features h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.trust-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.trust-feature {
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
}

.trust-feature .trust-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.trust-feature .trust-icon img {
    width: clamp(56px, 10vw, 72px);
    height: clamp(56px, 10vw, 72px);
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(240, 165, 0, 0.5));
}

.trust-feature h4 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.trust-feature p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   TOKENOMICS RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .distribution-visual {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .distribution-chart-container {
        max-width: 350px;
    }
    
    .distribution-legend {
        flex: 1;
    }
    
    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table-container {
        display: block;
    }
    
    .allocation-cards-mobile {
        display: none;
    }
    
    .incentive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .distribution-chart-container {
        max-width: 400px;
    }
}

/* ===================================
   END SECTION 8: TOKENOMICS SECTION
   =================================== */
/* ===================================
   SECTION 9: PRESALE SECTION - COMPLETE
   =================================== */

.presale-section {
    padding: clamp(4rem, 8vw, 6rem) var(--container-padding);
    background: var(--ember-gradient-background);
}

.presale-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   MOBILE: Single column grid with explicit row placement
   =================================== */

.presale-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.presale-left-column,
.presale-right-column {
    display: contents;
}

.funding-scenarios {
    display: contents;
}

/* Mobile: Explicit grid row placement */
.presale-metrics { grid-row: 1; }
.presale-timer { grid-row: 2; }
.presale-progress { grid-row: 3; }
.fund-usage { grid-row: 4; }
.soft-cap-scenario { grid-row: 5; }
.hard-cap-scenario { grid-row: 6; }
.scenarios-shared { grid-row: 7; }
.presale-card { grid-row: 8; }

/* ===================================
   DESKTOP: Two column grid
   =================================== */

@media (min-width: 1024px) {
    .presale-two-column {
        grid-template-columns: 1fr 450px;
        grid-template-rows: auto;
    }
    
    .presale-left-column {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .presale-right-column {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .funding-scenarios {
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .presale-metrics,
    .presale-timer,
    .presale-progress,
    .fund-usage,
    .soft-cap-scenario,
    .scenarios-shared,
    .hard-cap-scenario,
    .presale-card {
        grid-row: auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .presale-two-column {
        grid-template-columns: 1fr 480px;
    }
}

/* ===================================
   PRESALE METRICS
   =================================== */

.presale-metrics h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(1rem, 2vw, 1.25rem);
}

.metrics-grid-presale {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.metric-card {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(1rem, 2vw, 1.25rem);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
}

.metric-icon {
    display: flex;
    justify-content: center;
}

.metric-icon img {
    width: clamp(32px, 6vw, 40px);
    height: clamp(32px, 6vw, 40px);
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.5));
}

.metric-value {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 900;
    color: var(--ember-gold);
    line-height: 1;
}

.metric-label {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    font-weight: 600;
    color: #ffffff;
}

.metric-desc {
    font-size: clamp(0.75rem, 1.2vw, 0.8rem);
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   PRESALE TIMER
   =================================== */

.presale-timer {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.1) 100%);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-xl);
}

.presale-timer h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(1rem, 2vw, 1.25rem);
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.75rem, 1.5vw, 1rem);
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-md);
}

.time-value {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    color: var(--ember-gold);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-label {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   PRESALE PROGRESS
   =================================== */

.presale-progress {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
}

.presale-progress h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 1rem;
}

.progress-bar {
    width: 100%;
    height: 32px;
    background: rgba(26, 15, 10, 0.8);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid rgba(215, 51, 39, 0.3);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--ember-gradient-primary);
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(215, 51, 39, 0.6);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   FUND USAGE
   =================================== */

.fund-usage {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
}

.fund-usage h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(1rem, 2vw, 1.25rem);
}

.usage-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(215, 51, 39, 0.1);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--ember-orange);
}

.usage-percentage {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 900;
    color: var(--ember-gold);
    flex-shrink: 0;
    min-width: 45px;
}

.usage-details {
    flex: 1;
}

.usage-title {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.usage-desc {
    font-size: clamp(0.8rem, 1.3vw, 0.85rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   FUNDING SCENARIOS
   =================================== */

.scenario-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(240, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: rgba(240, 165, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 165, 0, 0.2);
}

.scenario-header {
    text-align: center;
    margin-bottom: 20px;
}

.scenario-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.soft-cap-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
}

.hard-cap-badge {
    background: linear-gradient(135deg, #f0a500 0%, #d73327 100%);
    color: white;
}

.scenario-header h4 {
    font-size: 1.5rem;
    color: #f0a500;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.scenario-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.scenario-content {
    display: flex;
    flex-direction: column;
}

.scenario-allocation {
    background: rgba(240, 165, 0, 0.1);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(240, 165, 0, 0.3);
}

.scenario-allocation h5 {
    color: #f0a500;
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.allocation-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid rgba(240, 165, 0, 0.2);
}

.alloc-percent {
    display: block;
    font-size: 1.4rem;
    color: #f0a500;
    font-weight: 700;
    margin-bottom: 4px;
}

.alloc-amount {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
}

.scenario-details,
.scenario-additional {
    margin-bottom: 15px;
}

.scenario-details h5,
.scenario-additional h5 {
    color: #fb923c;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.scenario-details ul,
.scenario-additional ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-details li,
.scenario-additional li {
    padding: 8px 0 8px 26px;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scenario-details li:last-child,
.scenario-additional li:last-child {
    border-bottom: none;
}

.scenario-details li:before {
    content: "🔥";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.scenario-additional li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #4ade80;
    font-weight: 700;
    font-size: 1rem;
}

.scenario-details li strong,
.scenario-additional li strong {
    color: #f0a500;
    font-weight: 700;
}

.scenarios-shared {
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1) 0%, rgba(215, 51, 39, 0.1) 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(240, 165, 0, 0.3);
    text-align: center;
}

.scenarios-shared h4 {
    font-size: 1.4rem;
    color: #f0a500;
    margin-bottom: 20px;
    font-weight: 700;
}

.shared-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.shared-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(240, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.shared-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 165, 0, 0.5);
}

.shared-feature img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.shared-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
}

/* ===================================
   PRESALE CARD
   =================================== */

.presale-card {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 3vw, 2rem);
}

.presale-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
}

/* ===================================
   INVESTMENT CALCULATOR
   =================================== */

.investment-calculator {
    margin-bottom: 1.5rem;
}

.investment-calculator label {
    display: block;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.investment-calculator input {
    width: 100%;
    padding: 1rem;
    font-size: 16px;
    font-weight: 600;
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    color: #ffffff;
    transition: all 0.3s ease;
}

.investment-calculator input:focus {
    outline: none;
    border-color: var(--ember-gold);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.2);
}

.calculation-result {
    margin-top: 1rem;
    padding: 1.25rem;
    background: rgba(215, 51, 39, 0.1);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
}

.result-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
}

.result-line:not(:last-child) {
    border-bottom: 1px solid rgba(215, 51, 39, 0.2);
}

.result-line.total {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--ember-gold);
    padding-top: 0.75rem;
}

/* ===================================
   VESTING INFO
   =================================== */

.vesting-info {
    padding: 1.25rem;
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.vesting-info h4 {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin: 0 0 1rem;
}

.vesting-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vesting-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vesting-percentage {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 900;
    color: var(--ember-gold);
    min-width: 60px;
}

.vesting-time {
    flex: 1;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   PAYMENT METHODS
   =================================== */

.payment-methods {
    padding: 1.25rem;
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.payment-methods h4 {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
    text-align: center;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(215, 51, 39, 0.1);
    border-radius: var(--radius-md);
    min-width: 100px;
}

.payment-icon {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(240, 165, 0, 0.5));
}

.payment-option span:last-child {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.payment-note {
    text-align: center;
    font-size: clamp(0.8rem, 1.4vw, 0.85rem);
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

/* ===================================
   TPA SECTION
   =================================== */

.tpa-section {
    padding: 1.5rem;
    background: rgba(240, 165, 0, 0.1);
    border: 2px solid rgba(240, 165, 0, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.tpa-section h4 {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tpa-section h4 img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(240, 165, 0, 0.5));
}

.tpa-instruction {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem;
}

.tpa-download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: rgba(215, 51, 39, 0.2);
    color: #ffffff;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 600;
    border: 2px solid rgba(215, 51, 39, 0.4);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.tpa-download-button img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.5));
}

.tpa-download-button:hover {
    background: rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
    transform: translateY(-2px);
}

/* ===================================
   TPA COMPLIANCE
   =================================== */

.tpa-compliance {
    margin-bottom: 1.5rem;
}

.tpa-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.tpa-checkbox-container:hover {
    background: rgba(45, 24, 16, 0.7);
    border-color: rgba(215, 51, 39, 0.5);
}

.tpa-checkbox {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(215, 51, 39, 0.5);
    border-radius: 4px;
    background: rgba(26, 15, 10, 0.8);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.tpa-checkbox:checked {
    background: var(--ember-gradient-primary);
    border-color: var(--ember-orange);
}

.tpa-checkbox-text {
    flex: 1;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.tpa-compliance-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(215, 51, 39, 0.1);
    border-left: 3px solid var(--ember-orange);
    border-radius: var(--radius-md);
}

.tpa-compliance-note p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.tpa-compliance-note img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.5));
}

/* ===================================
   PRESALE BUTTON
   =================================== */

.presale-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--ember-gradient-primary);
    color: #ffffff;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 51, 39, 0.4);
    margin-bottom: 1.25rem;
    min-height: 44px;
}

.presale-button img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.presale-button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 51, 39, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.presale-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================
   PRESALE NOTE
   =================================== */

.presale-note {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.presale-note p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.presale-note img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.5));
}

/* ===================================
   PRESALE BENEFITS
   =================================== */

.presale-benefits {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.presale-benefits h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ember-gold);
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-item {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(215, 51, 39, 0.4);
    border-color: var(--ember-orange);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon img {
    width: clamp(56px, 10vw, 72px);
    height: clamp(56px, 10vw, 72px);
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.6));
}

.benefit-item h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
}

.benefit-item p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .allocation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shared-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scenario-card {
        padding: 20px;
    }
    
    .scenario-header h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.75rem 0.5rem;
    }
    
    .payment-options {
        gap: 1rem;
    }
    
    .allocation-grid {
        grid-template-columns: 1fr;
    }
    
    .shared-features {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   END SECTION 9: PRESALE SECTION
   =================================== */
/* ===================================
   SECTION 10: ENHANCED CTA SECTION - OPTIMIZED
   Final call-to-action with value props
   =================================== */

/* ===================================
   CTA CONTAINER
   =================================== */

.cta-presale-section-enhanced {
    padding: clamp(4rem, 8vw, 6rem) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(13, 12, 12, 1) 0%, 
        rgba(26, 15, 10, 0.95) 50%, 
        rgba(13, 12, 12, 1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-presale-background {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   FLOATING COINS ANIMATION
   =================================== */

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-coin {
    position: absolute;
    opacity: 0.15;
}

.floating-coin-1 {
    top: 10%;
    left: 5%;
    animation: float-1 8s ease-in-out infinite;
}

.floating-coin-2 {
    top: 60%;
    right: 5%;
    animation: float-2 10s ease-in-out infinite;
}

.floating-coin-3 {
    bottom: 15%;
    left: 10%;
    animation: float-3 12s ease-in-out infinite;
}

.floating-coin-image {
    width: clamp(60px, 10vw, 100px);
    height: clamp(60px, 10vw, 100px);
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(240, 165, 0, 0.5));
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(0, -40px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 20px) rotate(120deg); }
    66% { transform: translate(-15px, -20px) rotate(240deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(25px, -30px) rotate(180deg); }
}

/* ===================================
   CTA CONTENT
   =================================== */

.cta-presale-content-enhanced {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
}

/* ===================================
   CTA ICON
   =================================== */

.cta-presale-icon-enhanced {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.cta-main-icon {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(240, 165, 0, 0.8));
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.3) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(240, 165, 0, 0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(240, 165, 0, 1));
        transform: scale(1.05);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* ===================================
   CTA TYPOGRAPHY
   =================================== */

.cta-presale-title-enhanced {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(215, 51, 39, 0.5);
}

.cta-presale-subtitle-enhanced {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 700px;
}

/* ===================================
   VALUE PROPS GRID
   =================================== */

.cta-value-props {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.value-prop-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    text-align: left;
    transition: all 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(215, 51, 39, 0.3);
    border-color: var(--ember-orange);
}

.prop-icon {
    flex-shrink: 0;
}

.prop-icon-image {
    width: clamp(40px, 8vw, 56px);
    height: clamp(40px, 8vw, 56px);
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(240, 165, 0, 0.6));
}

.prop-text {
    flex: 1;
}

.prop-text h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin: 0 0 0.5rem;
}

.prop-text p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   CTA STATS
   =================================== */

.cta-presale-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: rgba(240, 165, 0, 0.1);
    border: 2px solid rgba(240, 165, 0, 0.3);
    border-radius: var(--radius-xl);
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    color: var(--ember-gold);
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: rgba(240, 165, 0, 0.3);
    display: none;
}

/* ===================================
   CTA BUTTONS
   =================================== */

.cta-presale-buttons-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin-top: clamp(0.5rem, 1vw, 1rem);
}

.cta-presale-primary-enhanced,
.cta-presale-secondary-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-xl);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 70px;
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-icon img {
    width: clamp(36px, 6vw, 44px);
    height: clamp(36px, 6vw, 44px);
    object-fit: contain;
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    text-align: left;
}

.button-main-text {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
}

.button-sub-text {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    opacity: 0.9;
}

/* Primary Button */
.cta-presale-primary-enhanced {
    background: var(--ember-gradient-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(215, 51, 39, 0.5);
}

.cta-presale-primary-enhanced .button-icon img {
    filter: brightness(0) invert(1);
}

.cta-presale-primary-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(215, 51, 39, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Secondary Button */
.cta-presale-secondary-enhanced {
    background: rgba(26, 15, 10, 0.8);
    color: #ffffff;
    border-color: rgba(215, 51, 39, 0.5);
}

.cta-presale-secondary-enhanced .button-icon img {
    filter: drop-shadow(0 0 8px rgba(240, 165, 0, 0.6));
}

.cta-presale-secondary-enhanced:hover {
    background: rgba(45, 24, 16, 0.9);
    border-color: var(--ember-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(215, 51, 39, 0.4);
}

/* ===================================
   CTA DISCLAIMER
   =================================== */

.cta-presale-disclaimer-enhanced {
    margin-top: clamp(0.5rem, 1vw, 1rem);
}

.cta-presale-disclaimer-enhanced p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.cta-presale-disclaimer-enhanced img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.5));
}

/* ===================================
   CTA RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .value-prop-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-divider {
        display: block;
    }
    
    .cta-presale-buttons-enhanced {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-presale-primary-enhanced,
    .cta-presale-secondary-enhanced {
        flex: 0 1 280px;
    }
}

@media (min-width: 1024px) {
    .cta-main-icon {
        width: 120px;
        height: 120px;
    }
    
    .floating-coin-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .cta-floating-elements {
        display: none;
    }
}

/* ===================================
   END SECTION 10: ENHANCED CTA SECTION
   =================================== *//* ===================================
   SECTION 11: LEGAL & COMPLIANCE - OPTIMIZED (FINAL)
   Trust signals and compliance information
   =================================== */

/* ===================================
   LEGAL COMPLIANCE CONTAINER
   =================================== */

.legal-compliance-section {
    padding: clamp(4rem, 8vw, 6rem) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.95) 0%, 
        rgba(45, 24, 16, 0.90) 50%, 
        rgba(26, 15, 10, 0.95) 100%);
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4rem);
}

/* ===================================
   COMPLIANCE GRID
   =================================== */

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.compliance-item {
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.compliance-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(215, 51, 39, 0.4);
    border-color: var(--ember-orange);
}

/* ===================================
   COMPLIANCE ICON
   =================================== */

.compliance-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compliance-icon img {
    width: clamp(56px, 10vw, 72px);
    height: clamp(56px, 10vw, 72px);
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.6));
}

.compliance-item h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--ember-gold);
    margin: 0;
}

.compliance-item p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   LEGAL DISCLAIMER
   =================================== */

.legal-disclaimer {
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(215, 51, 39, 0.1);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-left: 5px solid var(--ember-orange);
    border-radius: var(--radius-xl);
}

.legal-disclaimer h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--ember-gold);
    margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
    text-align: center;
}

.legal-disclaimer p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
}

.legal-disclaimer strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   LEGAL RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .compliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   END SECTION 11: LEGAL & COMPLIANCE SECTION
   =================================== */
/* ===================================
   EMBER PAGE CHATBOT FIX
   Ensures proper positioning and animation
   =================================== */

.chatbot-button-container {
    position: fixed !important;
    z-index: 2001 !important;
}

.chatbot-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120px !important;
    height: 120px !important;
    background: radial-gradient(circle, rgba(215, 51, 39, 0.6) 0%, rgba(240, 165, 0, 0.4) 40%, transparent 70%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    will-change: transform, opacity !important;
    animation: pulse-glow 2s ease-in-out infinite !important;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* ===================================
   END OF EMBER LOCAL CSS v2.4 OPTIMIZED
   All 11 sections complete and optimized
   Total reduction: ~1,000+ lines
   All functionality preserved
   =================================== */
/* =====================================================
   FUNDING SCENARIOS MODULE STYLES
   ===================================================== */

.funding-scenarios {
    margin-top: 40px;
}

.funding-scenarios > h3 {
    font-size: 1.8rem;
    color: #f0a500;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Simple stacked layout - no complex grids */
.funding-scenarios-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.scenario-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(240, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: rgba(240, 165, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 165, 0, 0.2);
}

.scenario-header {
    text-align: center;
    margin-bottom: 20px;
}

.scenario-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.soft-cap-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
}

.hard-cap-badge {
    background: linear-gradient(135deg, #f0a500 0%, #d73327 100%);
    color: white;
}

.scenario-header h4 {
    font-size: 1.5rem;
    color: #f0a500;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.scenario-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.scenario-content {
    display: flex;
    flex-direction: column;
}

.scenario-allocation {
    background: rgba(240, 165, 0, 0.1);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(240, 165, 0, 0.3);
}

.scenario-allocation h5 {
    color: #f0a500;
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.allocation-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid rgba(240, 165, 0, 0.2);
}

.alloc-percent {
    display: block;
    font-size: 1.4rem;
    color: #f0a500;
    font-weight: 700;
    margin-bottom: 4px;
}

.alloc-amount {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
}

.scenario-details,
.scenario-additional {
    margin-bottom: 15px;
}

.scenario-details h5,
.scenario-additional h5 {
    color: #fb923c;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.scenario-details ul,
.scenario-additional ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-details li,
.scenario-additional li {
    padding: 8px 0 8px 26px;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scenario-details li:last-child,
.scenario-additional li:last-child {
    border-bottom: none;
}

.scenario-details li:before {
    content: "🔥";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.scenario-additional li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #4ade80;
    font-weight: 700;
    font-size: 1rem;
}

.scenario-details li strong,
.scenario-additional li strong {
    color: #f0a500;
    font-weight: 700;
}

/* Both Scenarios Include - below the two scenario cards */
.scenarios-shared {
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1) 0%, rgba(215, 51, 39, 0.1) 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(240, 165, 0, 0.3);
    text-align: center;
    margin-top: 30px;
}

.scenarios-shared h4 {
    font-size: 1.4rem;
    color: #f0a500;
    margin-bottom: 20px;
    font-weight: 700;
}

.shared-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.shared-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(240, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.shared-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 165, 0, 0.5);
}

.shared-feature img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.shared-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .allocation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shared-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .funding-scenarios > h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .scenario-card {
        padding: 20px;
    }
    
    .scenario-header h4 {
        font-size: 1.3rem;
    }
    
    .allocation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shared-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .allocation-grid {
        grid-template-columns: 1fr;
    }
    
    .shared-features {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   INVESTMENT CALCULATOR VALIDATION
   ===================================================== */

#investment-amount {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#investment-amount:focus {
    outline: none;
}

/* Valid state will be set by JS with green border */
/* Invalid state will be set by JS with red border */

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 20px 0;
    transform: scale(0.95);
    transform-origin: 0 0;
}

@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Error States */
.input-compact.error {
    border-color: #ff4444 !important;
    background: rgba(255, 68, 68, 0.05);
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    padding: 8px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 4px;
    border-left: 3px solid #ff4444;
}

.field-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    padding: 5px 0;
}

/* Form spacing adjustments */
.form-group-compact {
    margin-bottom: 20px;
    position: relative;
}

/* Button loading state */
.claim-btn-compact:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}