/* ============================================
   THE STOCKS ROOM — Styles
   Dark, bold, professional trading aesthetic
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1520;
    --bg-card: #131a2a;
    --bg-card-hover: #1a2340;
    --border: #1e2a45;
    --border-light: #2a3a5c;
    --text-primary: #f0f2f5;
    --text-secondary: #8892a8;
    --text-muted: #555e73;
    --green: #10d48e;
    --green-dark: #0ba06a;
    --green-glow: rgba(16, 212, 142, 0.3);
    --gold: #f0b90b;
    --gold-dark: #c49a09;
    --gold-glow: rgba(240, 185, 11, 0.3);
    --red: #ef4444;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--green-glow), 0 0 60px rgba(16, 212, 142, 0.1); }
    50% { box-shadow: 0 0 30px var(--green-glow), 0 0 80px rgba(16, 212, 142, 0.2); }
}

@keyframes pulse-glow-gold {
    0%, 100% { box-shadow: 0 0 20px var(--gold-glow), 0 0 60px rgba(240, 185, 11, 0.1); }
    50% { box-shadow: 0 0 30px var(--gold-glow), 0 0 80px rgba(240, 185, 11, 0.2); }
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

@keyframes count-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-from-left,
.slide-from-right {
    transition: opacity 2s ease,
                transform 3s cubic-bezier(0.05, 0.8, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.slide-from-left {
    transform: translateX(-50vw);
}

.slide-from-right {
    transform: translateX(50vw);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* --- GRADIENT TEXT --- */
.gradient-text {
    background: linear-gradient(135deg, var(--green) 0%, #4aedc4 50%, var(--green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.dollar-text {
    background: linear-gradient(135deg, var(--green) 0%, #4aedc4 50%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dollar-text.is-loaded {
    background: url('dollar.jpg') center/cover;
    -webkit-background-clip: text;
    background-clip: text;
    filter: brightness(0.8);
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #ffe066 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--sm { padding: 11px 24px; font-size: 0.95rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }

.btn--glow {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 20px var(--green-glow);
}

.btn--glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--green-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--gold-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-primary);
}

.btn--outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.btn--pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn--gold.btn--pulse {
    animation: pulse-glow-gold 2s ease-in-out infinite;
}

.btn__arrow {
    transition: transform var(--transition);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* --- NAV --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition);
}

.nav--scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    flex-shrink: 0;
}

.nav__logo-icon {
    flex-shrink: 0;
}

.nav__logo-img {
    height: 32px;
    width: auto;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 4px;
}

.nav__links a:not(.btn) {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: color var(--transition);
}

.nav__links a:not(.btn):hover {
    color: var(--text-primary);
}

.nav__actions {
    display: none;
    align-items: center;
    gap: 8px;
}

.nav__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    z-index: 1002;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__burger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.is-open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav open */
.nav__links.is-open {
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    animation: fadeIn 0.3s ease;
}

.nav__links.is-open .btn {
    margin-top: 8px;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 40px 0 80px;
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(10, 14, 23, 0.15) 0%, rgba(10, 14, 23, 0.6) 80%),
        linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__sub {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 60px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.hero__stat {
    text-align: center;
}

.hero__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border-light);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
    animation: scroll-line 2s ease-in-out infinite;
}

/* --- TICKER --- */
.ticker {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 25s linear infinite;
}

.ticker__items {
    display: flex;
    gap: 32px;
    padding-right: 32px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker__items span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- SECTIONS --- */
.section {
    padding: 80px 0;
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section__sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- STEPS --- */
.how-it-works {
    overflow: hidden;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    width: 100%;
    position: relative;
}

.step:hover {
    border-color: var(--green);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
}

.step--gold:hover {
    border-color: var(--gold);
}

.step__icon-wrap {
    position: relative;
    margin-bottom: 20px;
}

.step__icon-glow {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 212, 142, 0.15) 0%, transparent 70%);
    animation: pulse-glow-icon 3s ease-in-out infinite;
}

.step__icon-glow--gold {
    background: radial-gradient(circle, rgba(240, 185, 11, 0.15) 0%, transparent 70%);
}

@keyframes pulse-glow-icon {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.step__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(16, 212, 142, 0.08);
    border: 1px solid rgba(16, 212, 142, 0.2);
    color: var(--green);
    position: relative;
    z-index: 1;
}

.step__icon svg {
    display: block;
}

.step__icon--gold {
    background: rgba(240, 185, 11, 0.08);
    border-color: rgba(240, 185, 11, 0.2);
    color: var(--gold);
}

.step__number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 8px;
}

.step__number--gold {
    color: var(--gold);
}

.step__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Connectors between steps */
.step__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.step__connector::before {
    content: '';
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--green) 0px,
        var(--green) 5px,
        transparent 5px,
        transparent 10px
    );
    opacity: 0.35;
    border-radius: 1px;
}

/* --- PAYOUT --- */
.payout {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.payout__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.payout__inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.payout__amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 24px;
}

.payout__dollar {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gold);
    margin-top: 0.15em;
}

.payout__num {
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 10rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold) 0%, #ffe066 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.payout__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.payout__text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.payout__math {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    padding: 32px;
    background: rgba(240, 185, 11, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.15);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.payout__calc {
    text-align: center;
}

.payout__calc-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-weight: 600;
}

.payout__calc-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.payout__calc-value small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.payout__calc-value--green { color: var(--green); }
.payout__calc-value--gold { color: var(--gold); }

.payout__calc-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    transform: rotate(90deg);
}

/* --- FEATURES --- */
.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--green);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(16, 212, 142, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- PRICING --- */
.pricing {
    background: var(--bg-secondary);
}

.pricing__grid {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 0 8px;
}

.pricing__grid::-webkit-scrollbar {
    display: none;
}

.pricing__grid > .pricing-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 0;
}

@media (max-width: 899px) {
    .pricing__grid::before,
    .pricing__grid::after {
        content: '';
        flex: 0 0 7.5%;
    }
}

.pricing__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.pricing__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.pricing__dot.is-active {
    background: var(--green);
    box-shadow: 0 0 8px rgba(16, 212, 142, 0.4);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-light);
}

@media (max-width: 899px) {
    .pricing-card:hover {
        transform: translateY(-4px);
    }
}

.pricing-card--featured {
    border-color: var(--green);
    background: linear-gradient(180deg, rgba(16, 212, 142, 0.05) 0%, var(--bg-card) 50%);
    box-shadow: 0 0 40px rgba(16, 212, 142, 0.1);
}

.pricing-card--featured:hover {
    border-color: var(--green);
    box-shadow: 0 0 60px rgba(16, 212, 142, 0.15);
}

.pricing-card--lifetime {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.05) 0%, var(--bg-card) 50%);
}

.pricing-card--lifetime:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(240, 185, 11, 0.1);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card__badge--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-card__tier {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-card__currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 8px;
    color: var(--text-secondary);
}

.pricing-card__amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-card--featured .pricing-card__amount { color: var(--green); }
.pricing-card--lifetime .pricing-card__amount { color: var(--gold); }

.pricing-card__period {
    font-size: 0.9rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
    font-weight: 500;
}

.pricing-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card__features li svg {
    flex-shrink: 0;
}

.pricing-card__feature--disabled {
    opacity: 0.4;
}

.pricing-card__feature--highlight {
    color: var(--green) !important;
}

.pricing-card__feature--gold {
    color: var(--gold) !important;
}

.pricing-card__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.pricing-card__guarantee--green {
    color: var(--green);
}

/* --- PLATFORM PREVIEW --- */
.platform-preview {
    background: var(--bg-secondary);
}

.platform-preview__video-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.platform-preview__placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    cursor: pointer;
    transition: all var(--transition);
}

.platform-preview__placeholder:hover {
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-card) 100%);
}

.platform-preview__placeholder:hover .platform-preview__play-btn {
    transform: scale(1.1);
    color: var(--green);
}

.platform-preview__play-btn {
    color: var(--text-secondary);
    transition: all var(--transition);
}

.platform-preview__play-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.platform-preview__video-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

/* --- CURRICULUM --- */
.curriculum {
    background: var(--bg-primary);
}

.curriculum__carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.curriculum__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.curriculum__track::-webkit-scrollbar {
    display: none;
}

.curriculum__module {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
}

.curriculum__module:hover {
    border-color: var(--green);
    background: var(--bg-card-hover);
}

.curriculum__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.curriculum__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.curriculum__arrow:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--bg-card-hover);
}

.curriculum__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    border-color: var(--border);
    color: var(--text-muted);
    background: var(--bg-card);
}

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

.curriculum__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}

.curriculum__dot.is-active {
    background: var(--green);
    width: 24px;
    border-radius: 4px;
}

.curriculum__module-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 8px;
}

.curriculum__module h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.curriculum__module ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.curriculum__module ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.curriculum__module ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
}

.curriculum__module-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-display);
}

/* --- FAQ --- */
.faq__list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.is-open {
    border-color: var(--green);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 100px 0;
    overflow: hidden;
}

.final-cta__glow {
    position: absolute;
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(16, 212, 142, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.final-cta__sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__buttons {
    margin-bottom: 20px;
}

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

/* --- FOOTER --- */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

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

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 300px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer__col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--green);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer__disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.6;
    line-height: 1.6;
}

/* --- CUSTOM SCROLLBAR --- */
.scrollbar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    padding: 4px;
    display: none;
}

@media (min-width: 900px) {
    .scrollbar {
        display: block;
    }
}

.scrollbar__track {
    width: 4px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.scrollbar__thumb {
    width: 100%;
    height: 20%;
    min-height: 16px;
    background: var(--green);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transition: top 0.15s ease-out, opacity 0.3s ease;
    box-shadow: 0 0 8px var(--green-glow);
}

.scrollbar--hidden .scrollbar__thumb {
    opacity: 0.3;
}


/* ============================================
   RESPONSIVE — Mobile color line breaks
   ============================================ */
@media (max-width: 599px) {
    .section__title .gradient-text,
    .section__title .gradient-text-gold,
    .payout__title .gradient-text-gold,
    .final-cta__title .gradient-text-gold,
    .hero__title .dollar-text {
        display: block;
    }

    .payout__calc-arrow {
        display: none;
    }

    .payout__math {
        padding: 24px 16px;
        gap: 20px;
    }

    .payout__calc {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(240, 185, 11, 0.1);
    }

    .payout__calc:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .payout__calc-label {
        margin-bottom: 0;
    }

    .payout__calc-value {
        text-align: right;
    }

    .payout__calc-value small {
        display: block;
        text-align: right;
        margin-left: 0;
    }

    .hero__stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.04em;
    }

    .hero__scroll-indicator {
        display: none;
    }
}

/* ============================================
   RESPONSIVE — Tablet (600px+)
   ============================================ */
@media (min-width: 600px) {
    .hero__ctas {
        flex-direction: row;
        justify-content: center;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curriculum__module {
        flex: 0 0 calc(50% - 10px);
    }

    .payout__math {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
    }

    .payout__calc-arrow {
        transform: none;
        align-self: center;
    }

    .steps {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .step {
        flex: 1;
        min-width: 0;
    }

    .step__connector {
        height: auto;
        margin-top: 56px;
        flex-shrink: 0;
        width: 40px;
    }

    .step__connector::before {
        width: 100%;
        height: 2px;
        background: repeating-linear-gradient(
            to right,
            var(--green) 0px,
            var(--green) 5px,
            transparent 5px,
            transparent 10px
        );
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE — Desktop (900px+)
   ============================================ */
@media (min-width: 900px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 120px 0;
    }

    .nav__links {
        display: flex;
    }

    .nav__actions {
        display: flex;
    }

    .nav__mobile-cta {
        display: none;
    }

    .nav__burger {
        display: none;
    }

    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
        overflow: visible;
        scroll-snap-type: none;
    }

    .pricing__grid > .pricing-card {
        flex: unset;
        scroll-snap-align: unset;
    }

    /* Reorder: Pro is first in HTML, but Starter shows left on desktop */
    .pricing__grid > .pricing-card--featured { order: 2; }
    .pricing__grid > .pricing-card:not(.pricing-card--featured):not(.pricing-card--lifetime) { order: 1; }
    .pricing__grid > .pricing-card--lifetime { order: 3; }

    .pricing__dots {
        display: none;
    }

    .pricing-card--featured {
        transform: scale(1.05);
    }

    .pricing-card--featured:hover {
        transform: scale(1.05) translateY(-4px);
    }

    .curriculum__module {
        flex: 0 0 calc(33.333% - 14px);
    }

    .step__connector {
        width: 56px;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .payout {
        padding: 140px 0;
    }
}

/* ============================================
   RESPONSIVE — Large Desktop (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .hero__title {
        font-size: 4.5rem;
    }
}

/* --- Focus Visible --- */
.btn:focus-visible,
.nav__links a:focus-visible,
.faq-item__question:focus-visible,
.nav__burger:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}
