/* ========================================
   REVENUE SECTION - "HOW IT WORKS"
   Complete step-by-step breakdown of revenue sharing
   ======================================== */

/* Main Revenue Section */
#revenue {
    background: var(--apple-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Section Headers */
#revenue .section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--apple-dark);
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
}

#revenue .section-subtitle {
    text-align: center;
    font-size: 0.75rem;
    color: var(--apple-gray);
    margin-bottom: 50px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
}

/* ========================================
   BIG PROMISE SECTION - "100% of Profits Go to You"
   ======================================== */
.big-promise-box {
    max-width: 900px;
    margin: 60px auto 80px;
    text-align: center;
    background: var(--apple-gray-light);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--apple-border);
    position: relative;
    overflow: hidden;
}

.big-promise-box .promise-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.big-promise-box h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--apple-dark);
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
}

.big-promise-box p {
    font-size: 0.75rem;
    line-height: 1.8;
    font-family: 'Press Start 2P', monospace;
    color: var(--apple-gray);
}

/* ========================================
   STEP-BY-STEP BREAKDOWN
   ======================================== */
.step-by-step-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Step Card */
.step-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Numbered Box (1, 2, 3, 4) */
.step-number {
    width: 80px;
    height: 80px;
    background: var(--apple-dark);
    border: 2px solid var(--apple-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    flex-shrink: 0;
    font-family: 'Press Start 2P', monospace;
    color: white;
}

/* Step Content */
.step-content h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--apple-dark);
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
}

.step-content p {
    font-size: 0.75rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
}

/* Info Box inside Steps */
.step-info-box {
    background: var(--apple-gray-light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--apple-border);
}

.step-info-box p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
}

.step-info-box strong {
    color: var(--apple-dark);
}

/* ========================================
   STEP 2 - PROFIT CALCULATION BOX
   ======================================== */
.profit-calculation {
    background: var(--apple-gray-light);
    padding: 25px;
    border-radius: 12px;
    font-family: 'Press Start 2P', monospace;
    border: 1px solid var(--apple-border);
    margin-bottom: 20px;
}

.profit-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.7rem;
}

.profit-line span:first-child {
    opacity: 0.8;
}

.profit-line span:last-child {
    color: var(--apple-dark);
    font-weight: 700;
}

.profit-divider {
    border-top: 1px solid var(--apple-border);
    padding-top: 12px;
    margin-top: 12px;
}

.profit-total {
    border-top: 2px solid var(--apple-dark);
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.profit-total span:first-child {
    font-weight: 700;
}

.profit-total span:last-child {
    color: var(--apple-dark);
    font-weight: 900;
}

/* ========================================
   STEP 3 - EARLY HOLDER ADVANTAGE
   ======================================== */
.early-holder-box {
    background: var(--apple-gray-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--apple-border);
    margin-bottom: 20px;
}

.early-holder-box .advantage-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--apple-dark);
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
}

.early-holder-box .advantage-description {
    font-size: 0.7rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 20px;
    font-family: 'Press Start 2P', monospace;
}

/* Holder Examples Grid */
.holder-examples {
    display: grid;
    gap: 15px;
}

.holder-example {
    background: var(--apple-white);
    padding: 18px;
    border-radius: 8px;
    border: 1px solid var(--apple-border);
}

.holder-example-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.holder-example-left .example-label {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: 'Press Start 2P', monospace;
}

.holder-example-left .example-calculation {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Press Start 2P', monospace;
}

.holder-example-right {
    text-align: right;
}

.holder-example-right .example-payout {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--apple-dark);
    line-height: 1;
}

.holder-example-right .example-suffix {
    font-size: 0.65rem;
    opacity: 0.7;
    font-family: 'Press Start 2P', monospace;
}

/* ========================================
   STEP 4 - PAYOUT INFO
   ======================================== */
.payout-info-box {
    background: var(--apple-gray-light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--apple-border);
}

.payout-info-box p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.payout-info-box strong {
    color: var(--apple-dark);
}

.payout-info-box ul {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-left: 20px;
}

.payout-info-box ul li {
    margin-bottom: 8px;
}

/* ========================================
   REAL-WORLD EXAMPLE SECTION
   ======================================== */
.real-world-example {
    max-width: 900px;
    margin: 80px auto 0;
    background: var(--apple-gray-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--apple-border);
}

.real-world-example h3 {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
    color: var(--apple-dark);
}

.example-scenario {
    background: var(--apple-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid var(--apple-border);
}

.example-scenario .scenario-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--apple-dark);
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
}

/* Investment Info */
.example-investment {
    margin-bottom: 25px;
}

.example-investment .investment-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 10px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
}

.example-investment .investment-value {
    font-size: 1rem;
    color: var(--apple-dark);
    font-weight: 700;
}

/* Epoch Payouts */
.epoch-payout {
    border-top: 1px solid var(--apple-border);
    padding-top: 25px;
    margin-bottom: 25px;
}

.epoch-payout .epoch-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
}

.epoch-payout .epoch-calculation {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 8px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
}

.epoch-payout .epoch-earnings {
    font-size: 1.2rem;
    color: var(--apple-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Total Earnings Summary */
.total-earnings-summary {
    background: var(--apple-gray-light);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid var(--apple-border);
}

.total-earnings-summary .total-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 10px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
}

.total-earnings-summary .total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--apple-dark);
    line-height: 1;
    margin-bottom: 15px;
}

.total-earnings-summary .roi-text {
    font-size: 0.75rem;
    opacity: 0.8;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
}

.total-earnings-summary .roi-text strong {
    color: var(--apple-dark);
}

.total-earnings-summary .ongoing-note {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 15px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
}

/* ========================================
   TRANSPARENCY COMMITMENT BOX
   ======================================== */
.transparency-commitment {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    background: var(--apple-gray-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--apple-border);
}

.transparency-commitment h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
    color: var(--apple-dark);
}

.transparency-commitment p {
    font-size: 0.75rem;
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Press Start 2P', monospace;
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */
@media (max-width: 768px) {
    #revenue {
        padding: 80px 0;
    }

    .big-promise-box {
        padding: 30px;
        margin: 40px auto 60px;
    }

    .big-promise-box h3 {
        font-size: 1.2rem;
    }

    .step-card {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 0.9rem;
    }

    .profit-calculation {
        padding: 20px;
    }

    .profit-line {
        font-size: 0.65rem;
    }

    .real-world-example {
        padding: 30px;
        margin: 60px auto 0;
    }

    .example-scenario {
        padding: 25px;
    }

    .transparency-commitment {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .step-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .big-promise-box {
        padding: 25px;
    }

    .holder-example-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .holder-example-right {
        text-align: center;
    }

    .real-world-example {
        padding: 25px;
    }

    .example-scenario {
        padding: 20px;
    }
}
