/* Get Amplified Page Specific Styles */

/* Teal/Cyan Color Theme */
.amplified-page .amplified-orb-1 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
}

.amplified-page .amplified-orb-2 {
    background: radial-gradient(circle, rgba(8, 145, 178, 0.25) 0%, transparent 70%);
}

.amplified-page .amplified-orb-3 {
    background: radial-gradient(circle, rgba(14, 116, 144, 0.2) 0%, transparent 70%);
}

.amplified-highlight {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.amplified-cta-btn {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 50%, #06b6d4 100%) !important;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3) !important;
}

.amplified-cta-btn:hover {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5) !important;
}

/* Hero Section */
.amplified-hero {
    padding-bottom: 20px;
}

.hero-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1em;
    font-weight: 500;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
}

.hero-cta-button svg {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover svg {
    transform: translateX(4px);
}

.hero-cta-note {
    font-size: 0.9em;
    color: var(--text-color);
    opacity: 0.5;
    font-weight: 300;
}

.amplified-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    font-size: 0.85em;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.amplified-subtitle {
    max-width: 750px;
}

/* What This Is Section */
.what-this-is-section {
    padding: 40px 0;
}

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

.what-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.what-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.what-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(8, 145, 178, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #06b6d4;
}

.what-card h3 {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.what-card p {
    font-size: 0.95em;
    line-height: 1.65;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 300;
}

/* Chapters Section */
.chapters-section {
    padding: 40px 0 50px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.05em;
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

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

.chapter-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

.chapter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chapter-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(6, 182, 212, 0.1);
}

.chapter-card:hover::before {
    opacity: 1;
}

.chapter-card-featured {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.12) 0%, rgba(8, 145, 178, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(6, 182, 212, 0.25);
}

.chapter-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    font-size: 0.7em;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chapter-number {
    font-size: 2.2em;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 55px;
    opacity: 0.9;
}

.chapter-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chapter-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.chapter-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
    color: var(--text-color);
    opacity: 0.6;
}

.chapter-duration svg {
    opacity: 0.7;
}

.chapter-tag {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    font-size: 0.7em;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.chapter-title {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.chapter-card:hover .chapter-title {
    color: #22d3ee;
}

.chapter-description {
    font-size: 0.88em;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.65;
    font-weight: 300;
    margin-bottom: 14px;
    flex-grow: 1;
}

.chapter-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85em;
    font-weight: 500;
    color: #06b6d4;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.chapter-cta svg {
    transition: transform 0.3s ease;
}

.chapter-card:hover .chapter-cta {
    opacity: 1;
}

.chapter-card:hover .chapter-cta svg {
    transform: translateX(4px);
}

/* More Chapters Note */
.more-chapters-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 10px;
    color: #06b6d4;
    font-size: 0.95em;
    font-weight: 400;
}

.more-chapters-note svg {
    opacity: 0.8;
}

/* Patron Benefits Section */
.patron-benefits-section {
    padding: 20px 0 40px;
}

.patron-benefits-card {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
}

.patron-benefits-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.patron-benefits-intro {
    font-size: 1em;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 28px;
    font-weight: 300;
}

.patron-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.patron-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: left;
}

.patron-benefit-item svg {
    color: #06b6d4;
    flex-shrink: 0;
}

.patron-benefit-item span {
    font-size: 0.9em;
    color: var(--text-color);
    font-weight: 300;
}

.patron-benefit-item strong {
    font-weight: 500;
    color: var(--text-color);
}

.patron-benefits-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95em;
    font-weight: 500;
    color: #06b6d4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.patron-benefits-link:hover {
    gap: 12px;
}

.patron-benefits-link svg {
    transition: transform 0.3s ease;
}

.patron-benefits-link:hover svg {
    transform: translateX(4px);
}

/* Gains Section */
.gains-section {
    padding: 40px 0;
}

.gains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gain-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gain-item:hover {
    background: rgba(6, 182, 212, 0.05);
    border-color: rgba(6, 182, 212, 0.2);
}

.gain-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(8, 145, 178, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
    flex-shrink: 0;
}

.gain-item span {
    font-size: 0.95em;
    color: var(--text-color);
    font-weight: 300;
}

/* Audience Section Overrides */
.amplified-audience-card {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.08) 0%, rgba(8, 145, 178, 0.03) 100%);
    border-color: rgba(6, 182, 212, 0.2);
}

.amplified-audience-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
}

/* CTA Section Overrides */
.amplified-cta-section {
    padding: 40px 0;
}

.amplified-cta-card {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(6, 182, 212, 0.25);
}

.amplified-cta-card::before {
    background: linear-gradient(90deg, #0e7490, #0891b2, #06b6d4, #22d3ee, #06b6d4, #0891b2, #0e7490);
}

/* Questions Section */
.questions-section {
    text-align: center;
    padding: 20px 0 40px;
}

.questions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
    color: var(--text-color);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.questions-link:hover {
    opacity: 1;
    color: #06b6d4;
}

.questions-link svg {
    transition: transform 0.3s ease;
}

.questions-link:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1100px) {
    .chapters-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .what-this-is-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5em;
    }

    .chapter-card {
        padding: 20px;
        gap: 16px;
    }

    .chapter-number {
        font-size: 1.8em;
        min-width: 45px;
    }

    .chapter-title {
        font-size: 1em;
    }

    .chapter-description {
        font-size: 0.85em;
    }

    .patron-benefits-card {
        padding: 28px 24px;
    }

    .patron-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .what-card {
        padding: 24px 20px;
    }

    .what-icon {
        width: 52px;
        height: 52px;
    }

    .chapter-card {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .chapter-number {
        font-size: 1.5em;
    }

    .chapter-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .gain-item {
        padding: 14px 16px;
    }

    .gain-icon {
        width: 32px;
        height: 32px;
    }

    .gain-item span {
        font-size: 0.9em;
    }

    .more-chapters-note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
