/* ── Design Tokens ── */
:root {
    --navy: #0d1b2e;
    --navy-mid: #142233;
    --navy-light: #1e3050;
    --gold: #c9961a;
    --gold-bright: #e8b120;
    --gold-pale: #fef3c7;
    --cream: #faf8f3;
    --text-dark: #0d1b2e;
    --text-muted: #4b5e76;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --max-w: 1120px;
    --transition: 0.2s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Nav ── */
.splash-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(13, 27, 46, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 150, 26, 0.25);
}

.splash-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.splash-logo-tv {
    color: var(--gold-bright);
}

.splash-nav {
    --nav-logo-size: 6rem;
    overflow: visible;
}

.splash-nav .splash-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding-left: calc(var(--nav-logo-size) + 0.6rem);
}

.splash-nav .splash-logo img {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--nav-logo-size);
    height: auto;
    transform: translateY(2px);
    transform-origin: top left;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

/* ── Buttons ── */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-bright), #f5c842);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 150, 26, 0.45);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-outline {
    display: inline-block;
    border: 2px solid rgba(201, 150, 26, 0.6);
    color: var(--gold-bright);
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.7rem 1.6rem;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    background: rgba(201, 150, 26, 0.12);
    border-color: var(--gold-bright);
    transform: translateY(-1px);
}

/* ── Badges ── */
.badge-pill {
    display: inline-block;
    background: rgba(201, 150, 26, 0.15);
    border: 1px solid rgba(201, 150, 26, 0.4);
    color: var(--gold-bright);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: 0.35rem 1rem;
    margin-bottom: 1rem;
}

.badge-light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--gold-pale);
}

/* ── Section shared ── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.section-title.light {
    color: var(--white);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Hero ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Adjust for hero transparency */
    background:
        linear-gradient(160deg, rgba(13, 27, 46, 0.78) 0%, rgba(20, 34, 51, 0.66) 60%, rgba(14, 22, 38, 0.78) 100%),
        url('../images/Rotator_Wealth_800-700.jpg') top right /cover no-repeat;
    padding-top: 80px;
}

.hero-media {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Adjust for hero transparency */
    background:
        linear-gradient(rgba(13, 27, 46, 0.12), rgba(13, 27, 46, 0.12)),
        radial-gradient(ellipse at 30% 50%, rgba(201, 150, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.hero-cta {
    margin-bottom: 0.75rem;
}

.hero-fine {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-top: 0.6rem;
}

@media (min-width: 992px) {
    .hero-section {
        justify-content: flex-start;
        background: url('../images/Rotator_Wealth_2000-1000.jpg') center right / cover no-repeat;
        overflow: hidden;
    }

    .hero-content {
        width: min(46vw, 620px);
        max-width: 620px;
        margin: 0;
        padding: 4rem 0;
        margin-left: clamp(2.25rem, 9vw, 9rem);
        text-align: left;
    }

    .hero-sub {
        margin: 0 0 2rem;
    }

    .hero-media {
        display: none;
    }

    .hero-overlay {
        display: block;
        background:
            linear-gradient(rgba(13, 27, 46, 0.08), rgba(13, 27, 46, 0.08)),
            linear-gradient(to right, rgba(13, 27, 46, 0.46) 0%, rgba(13, 27, 46, 0.26) 34%, rgba(13, 27, 46, 0.11) 56%, rgba(13, 27, 46, 0) 78%);
    }
}

/* ── Attendee Offer ── */
.offer-section {
    padding: 5rem 0;
    background: var(--cream);
}

.offer-card {
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(201, 150, 26, 0.3);
    box-shadow: 0 20px 60px rgba(13, 27, 46, 0.25);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201, 150, 26, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offer-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: 0.3rem 1rem;
    margin-bottom: 1.2rem;
}

.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.offer-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.pricing-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 150, 26, 0.25);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: left;
    min-width: 160px;
}

.pricing-icon {
    font-size: 1.5rem;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
}

.pricing-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.pricing-divider {
    font-size: 1.5rem;
    color: rgba(201, 150, 26, 0.5);
    font-weight: 700;
}

/* ── Categories ── */
.categories-section {
    padding: 5rem 0;
    background: var(--navy);
}

.categories-section .section-title {
    color: var(--white);
}

.categories-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.categories-section .badge-pill {
    background: rgba(201, 150, 26, 0.2);
    color: var(--gold-bright);
    border-color: rgba(201, 150, 26, 0.4);
}

.stat-banner {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(201, 150, 26, 0.15), rgba(201, 150, 26, 0.05));
    border: 1px solid rgba(201, 150, 26, 0.35);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    margin-bottom: 3rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-bright);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
    cursor: default;
}

.category-card:hover {
    background: rgba(201, 150, 26, 0.08);
    border-color: rgba(201, 150, 26, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.category-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ── Platforms ── */
.platforms-section {
    padding: 5rem 0;
    background: var(--cream);
}

.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 2px solid #e8e3da;
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    min-width: 140px;
    transition: all var(--transition);
    position: relative;
}

.platform-card:hover:not(.coming-soon) {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(201, 150, 26, 0.18);
    transform: translateY(-3px);
}

.platform-card.coming-soon {
    opacity: 0.7;
    border-style: dashed;
}

.platform-icon {
    font-size: 2.4rem;
}

.platform-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    text-align: center;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    background: var(--navy-light);
    color: var(--gold-bright);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    border: 1px solid rgba(201, 150, 26, 0.4);
}

/* ── About ── */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--navy) 0%, #142233 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-body {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-link {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(201, 150, 26, 0.4);
    transition: color var(--transition);
}

.about-link:hover {
    color: #f5c842;
}

.about-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 150, 26, 0.25);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    line-height: 1.4;
}

/* ── Final CTA ── */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gold) 0%, #b8830e 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
}

.final-cta-sub {
    color: rgba(13, 27, 46, 0.75);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.final-cta-section .btn-gold {
    background: var(--navy);
    color: var(--gold-bright);
}

.final-cta-section .btn-gold:hover {
    background: #162840;
    box-shadow: 0 8px 28px rgba(13, 27, 46, 0.4);
}

/* ── Footer ── */
.splash-footer {
    background: #080f1c;
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    margin-top: 0.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-bright);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .splash-nav {
        --nav-logo-size: 4.3rem;
        padding: 0.85rem 1rem;
    }

    .offer-pricing {
        flex-direction: column;
        align-items: center;
    }

    .pricing-divider {
        transform: rotate(90deg);
    }

    .pricing-step {
        min-width: 240px;
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .about-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .offer-card {
        padding: 2rem 1.25rem;
    }
}

/* ── Counter Animations ── */
.counter {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.stat-number.counter {
    font-family: 'Playfair Display', serif;
}

.pricing-amount.counter {
    font-family: 'Playfair Display', serif;
}

/* Smooth transition for price amounts */
.pricing-amount {
    transition: all 0.05s ease-out;
}

/* ── Hero Button Pulse Animation ── */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 150, 26, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(201, 150, 26, 0);
    }
}

.hero-cta.pulse {
    animation: subtlePulse 2.5s infinite;
}

.hero-cta.pulse:hover {
    animation: none;
}