/* ===== coinbix-premium.css ===== */
/* Premium Intelligence page — coinbix-premium.php only */

/* ===== :root variables — pm- prefix ===== */
:root {
    --pm-surface:                #0a1325;
    --pm-surface-container-low:  #0e1a30;
    --pm-surface-container:      #12213b;
    --pm-surface-container-high: #172846;
    --pm-surface-container-highest: #1c3050;
    --pm-surface-bright:         #1e3558;
    --pm-gold:        #f2c35b;
    --pm-gold-mid:    #d4a843;
    --pm-gold-dark:   #b8923a;
    --pm-gold-glow:   rgba(242,195,91,0.08);
    --pm-green:       #4ae176;
    --pm-red:         #e74c3c;
    --pm-text:        #FFFFFF;
    --pm-text-secondary: #c0c8d8;
    --pm-text-muted:  #8B9DB7;
    --pm-text-dim:    #4A5F7A;
    --pm-ghost:       rgba(255,255,255,0.05);
    --pm-divider:     rgba(255,255,255,0.1);
    --pm-max: 1200px;
}

/* Body */
body.page-template-coinbix-premium {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pm-surface);
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAV & FOOTER — alias pm- vars so v1- classes work inside .pm-wrapper ===== */
.pm-wrapper { --v1-surface: var(--pm-surface); --v1-surface-container-low: var(--pm-surface-container-low); --v1-surface-container: var(--pm-surface-container); --v1-surface-container-high: var(--pm-surface-container-high); --v1-surface-container-highest: var(--pm-surface-container-highest); --v1-surface-bright: var(--pm-surface-bright); --v1-gold: var(--pm-gold); --v1-gold-mid: var(--pm-gold-mid); --v1-gold-dark: var(--pm-gold-dark); --v1-gold-glow: var(--pm-gold-glow); --v1-text: var(--pm-text); --v1-text-secondary: var(--pm-text-secondary); --v1-text-muted: var(--pm-text-muted); --v1-text-dim: var(--pm-text-dim); --v1-ghost: var(--pm-ghost); --v1-max: var(--pm-max); }

/* ===== HERO ===== */
.pm-hero {
    position: relative; margin-top: 64px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 80px 32px 64px; overflow: hidden;
}
.pm-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(242,195,91,0.06) 0%, transparent 70%),
        linear-gradient(180deg, var(--pm-surface) 0%, var(--pm-surface-container-low) 100%);
    z-index: 0;
}
.pm-hero > * { position: relative; z-index: 1; }
.pm-hero-badge {
    display: inline-block; padding: 6px 20px; margin-bottom: 24px;
    background: var(--pm-gold-glow); border: 1px solid rgba(242,195,91,0.2);
    border-radius: 9999px; font-size: 12px; font-weight: 600;
    color: var(--pm-gold); letter-spacing: 1px; text-transform: uppercase;
}
.pm-hero h1 {
    font-size: 48px; font-weight: 800; line-height: 1.08;
    letter-spacing: -0.02em; max-width: 700px; margin-bottom: 16px;
}
.pm-hero h1 em { font-style: normal; color: var(--pm-gold); }
.pm-hero-sub {
    font-size: 18px; color: var(--pm-text-muted); max-width: 540px;
    margin-bottom: 40px; line-height: 1.7;
}
.pm-stats {
    display: flex; gap: 48px; margin-bottom: 40px;
}
.pm-stat-value {
    font-size: 32px; font-weight: 800; color: var(--pm-green);
    letter-spacing: -1px; line-height: 1.2;
}
.pm-stat-label {
    font-size: 13px; font-weight: 500; color: var(--pm-text-dim);
    margin-top: 4px; text-transform: uppercase; letter-spacing: 1px;
}
.pm-cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 40px; background: linear-gradient(135deg, var(--pm-gold), var(--pm-gold-mid));
    color: #0a1325; font-weight: 600; font-size: 16px;
    border-radius: 10px; border: none; transition: all 200ms ease;
}
.pm-cta-primary:hover { opacity: 0.9; transform: scale(1.02); }
.pm-cta-primary svg { width: 16px; height: 16px; }

/* ===== EXCHANGE CARDS ===== */
.pm-exchanges {
    max-width: var(--pm-max); margin: 0 auto; padding: 64px 32px;
}
.pm-exchanges-title {
    text-align: center; font-size: 36px; font-weight: 700;
    letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.15;
}
.pm-exchanges-sub {
    text-align: center; font-size: 16px; color: var(--pm-text-muted);
    margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.pm-exchange-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pm-exchange-card {
    background: var(--pm-surface-container); border-radius: 12px;
    padding: 32px 28px; text-align: center; transition: all 200ms ease;
}
.pm-exchange-card:hover { background: var(--pm-surface-container-high); }
.pm-exchange-logo {
    height: 36px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
}
.pm-exchange-logo img {
    height: 40px; width: auto; max-width: 200px; object-fit: contain;
}
.pm-exchange-name {
    font-size: 20px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px;
}
.pm-exchange-discount {
    display: inline-block; padding: 4px 14px; border-radius: 9999px;
    background: rgba(74,225,118,0.1); color: var(--pm-green);
    font-size: 13px; font-weight: 700; margin-bottom: 12px;
}
.pm-exchange-bonus {
    font-size: 20px; font-weight: 700; margin-bottom: 16px;
}
.pm-exchange-perks {
    list-style: none; text-align: left; margin-bottom: 24px;
}
.pm-exchange-perks li {
    padding: 6px 0; font-size: 14px; color: var(--pm-text-secondary);
    display: flex; align-items: center; gap: 8px;
}
.pm-exchange-perks li::before {
    content: '\2713'; color: var(--pm-green); font-weight: 700; font-size: 14px;
}
.pm-exchange-cta {
    display: block; width: 100%; padding: 12px; text-align: center;
    background: linear-gradient(135deg, var(--pm-gold), var(--pm-gold-mid));
    color: #0a1325; font-weight: 600; font-size: 15px;
    border-radius: 10px; transition: all 200ms ease;
}
.pm-exchange-cta:hover { opacity: 0.9; transform: scale(1.02); }

/* ===== HOW TO JOIN (3 Steps) ===== */
.pm-steps-section {
    background: var(--pm-surface-container-low); padding: 80px 32px;
}
.pm-steps-title {
    text-align: center; font-size: 36px; font-weight: 700;
    letter-spacing: -0.01em; margin-bottom: 12px;
}
.pm-steps-sub {
    text-align: center; font-size: 16px; color: var(--pm-text-muted);
    margin-bottom: 56px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.pm-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    max-width: var(--pm-max); margin: 0 auto; position: relative;
}
.pm-step {
    background: var(--pm-surface-container); border-radius: 12px;
    padding: 32px 28px; text-align: center; position: relative;
    transition: all 200ms ease;
}
.pm-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--pm-gold-glow); color: var(--pm-gold);
    font-size: 20px; font-weight: 800; margin-bottom: 20px;
    border: 2px solid rgba(242,195,91,0.2);
}
.pm-step h3 {
    font-size: 20px; font-weight: 700; margin-bottom: 12px;
}
.pm-step p {
    font-size: 14px; color: var(--pm-text-muted); line-height: 1.6;
}
/* Step connector arrows */
.pm-step-arrow {
    position: absolute; top: 50%; right: -20px;
    transform: translateY(-50%); color: var(--pm-gold); font-size: 20px; z-index: 2;
}

/* ===== BENEFITS GRID ===== */
.pm-benefits {
    max-width: var(--pm-max); margin: 0 auto; padding: 80px 32px;
}
.pm-benefits-title {
    text-align: center; font-size: 36px; font-weight: 700;
    letter-spacing: -0.01em; margin-bottom: 48px;
}
.pm-benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pm-benefit {
    background: var(--pm-surface-container); border-radius: 12px;
    padding: 28px 24px; transition: all 200ms ease;
}
.pm-benefit:hover { background: var(--pm-surface-container-high); }
.pm-benefit-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--pm-gold-glow); display: flex; align-items: center; justify-content: center;
    color: var(--pm-gold); font-size: 20px; margin-bottom: 16px;
}
.pm-benefit h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pm-benefit p { font-size: 14px; color: var(--pm-text-muted); line-height: 1.6; }

/* ===== BOTTOM CTA ===== */
.pm-bottom-cta {
    background: var(--pm-surface-container-low); padding: 80px 32px;
    text-align: center;
}
.pm-bottom-cta h2 {
    font-size: 36px; font-weight: 700; letter-spacing: -0.01em;
    margin-bottom: 12px; line-height: 1.15;
}
.pm-bottom-cta h2 em { font-style: normal; color: var(--pm-gold); }
.pm-bottom-cta p {
    font-size: 16px; color: var(--pm-text-muted);
    max-width: 480px; margin: 0 auto 32px;
}
.pm-cta-row {
    display: flex; justify-content: center; gap: 16px; margin-bottom: 32px;
}
.pm-cta-row a {
    padding: 14px 36px; font-weight: 600; font-size: 15px;
    border-radius: 10px; transition: all 200ms ease;
}
.pm-cta-bybit {
    background: linear-gradient(135deg, var(--pm-gold), var(--pm-gold-mid));
    color: #0a1325;
}
.pm-cta-bitget {
    background: transparent; color: var(--pm-gold);
    border: 1px solid rgba(242,195,91,0.3);
}
.pm-cta-binance {
    background: transparent; color: var(--pm-gold);
    border: 1px solid rgba(242,195,91,0.3);
}
.pm-cta-bybit:hover { opacity: 0.9; transform: scale(1.02); }
.pm-cta-bitget:hover, .pm-cta-binance:hover {
    background: var(--pm-gold-glow); color: var(--pm-gold);
    border-color: var(--pm-gold); transform: scale(1.02);
}
.pm-disclosure {
    font-size: 11px; color: var(--pm-text-dim); max-width: 600px;
    margin: 0 auto; line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pm-exchange-grid { grid-template-columns: 1fr 1fr; }
    .pm-benefits-grid { grid-template-columns: 1fr 1fr; }
    .pm-steps { grid-template-columns: 1fr 1fr 1fr; }
    .pm-hero h1 { font-size: 36px; }
    .pm-stats { gap: 32px; }
}
@media (max-width: 768px) {
    .pm-hero { padding: 64px 16px 48px; }
    .pm-hero h1 { font-size: 28px; }
    .pm-hero-sub { font-size: 16px; }
    .pm-stats { flex-direction: column; gap: 16px; }
    .pm-stat-value { font-size: 24px; }
    .pm-exchange-grid { grid-template-columns: 1fr; }
    .pm-steps { grid-template-columns: 1fr; gap: 16px; }
    .pm-step-arrow { display: none; }
    .pm-benefits-grid { grid-template-columns: 1fr; }
    .pm-exchanges { padding: 48px 16px; }
    .pm-steps-section { padding: 48px 16px; }
    .pm-benefits { padding: 48px 16px; }
    .pm-bottom-cta { padding: 48px 16px; }
    .pm-cta-row { flex-direction: column; align-items: center; }
    .pm-cta-row a { width: 100%; text-align: center; }
    .pm-exchanges-title, .pm-steps-title, .pm-benefits-title, .pm-bottom-cta h2 { font-size: 24px; }
}
