/**
 * ClashPush — Luxury gaming theme (design language layer)
 * Loaded AFTER ui.css. Defines the global look:
 *  - Gold / purple / deep-navy palette
 *  - Rajdhani display + Inter body typography
 *  - Card-free floating sections (dividers + spacing only)
 *  - Animated buttons, badges, glow dividers
 */

/* ============================================================================
   1. TOKENS
   ============================================================================ */
:root {
    --gold: #f59e0b;
    --gold-light: #fcd34d;
    --gold-dark: #d97706;
    --orange: #f97316;
    --purple: #7c3aed;
    --purple-dark: #4c1d95;
    --sky: #0ea5e9;
    --bg: #07091a;
    --bg2: #0d1030;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-dim: rgba(255, 255, 255, 0.2);

    /* Remap legacy tokens so every existing component inherits the new palette */
    --color-bg-primary: #07091a;
    --color-bg-secondary: #0d1030;
    --color-bg-tertiary: #11143a;
    --color-primary: #f59e0b;
    --color-primary-hover: #fcd34d;
    --color-secondary: #7c3aed;
    --color-accent: #7c3aed;
    --color-text-secondary: rgba(255, 255, 255, 0.55);
    --color-text-muted: rgba(255, 255, 255, 0.38);
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(245, 158, 11, 0.4);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.35);
}

/* ============================================================================
   2. BASE
   ============================================================================ */
body {
    background: var(--bg);
    background-image: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    color: var(--text);
}

/* The new .cp-bg system replaces the old mesh + aurora */
body::before { display: none; }
.cp-aurora { display: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
}

::selection { background: rgba(245, 158, 11, 0.3); color: #fff; }

/* ============================================================================
   3. TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4,
.hero-title, .form-card-title {
    font-family: 'Rajdhani', 'Inter', sans-serif;
}

h1 { font-weight: 700; line-height: 1; letter-spacing: -1px; }
h2 { font-weight: 700; }

p { font-weight: 300; }

.gradient-text,
.hero-title-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 50%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Section header pattern */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(30px, 4.5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 12px;
}

.section-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 560px;
}

.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* Sections float free on the background */
.fl-section {
    padding: 100px 0;
    position: relative;
}

.fl-section + .fl-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 80px));
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
    .fl-section { padding: 64px 0; }
}

/* ============================================================================
   4. GLOW DIVIDER
   ============================================================================ */
.glow-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    margin: 0 auto;
    border: none;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(245, 158, 11, 0.4); width: 100px; }
    50%      { box-shadow: 0 0 25px rgba(245, 158, 11, 1), 0 0 50px rgba(245, 158, 11, 0.3); width: 140px; }
}

/* ============================================================================
   5. BUTTONS
   ============================================================================ */
.btn {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #000;
    border: none;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%; left: -75%;
    width: 50%; height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-15deg);
    animation: btnShine 3s ease-in-out infinite;
    border-radius: 0;
    pointer-events: none;
}

@keyframes btnShine {
    0%        { left: -75%; }
    50%, 100% { left: 125%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fcd34d, #f97316);
    color: #000;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    box-shadow: none;
}

.btn-secondary::before { content: none; }

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: #f59e0b;
    color: #fcd34d;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

.btn-topbar { padding: 8px 20px; font-size: 12px; }
.btn-lg { padding: 16px 44px; font-size: 15px; }

/* ============================================================================
   6. HERO BADGE
   ============================================================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.08);
    border-radius: 100px;
    padding: 6px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f59e0b;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
    animation: dotPulse 2s ease-in-out infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
    50%      { box-shadow: 0 0 0 5px rgba(245, 158, 11, 0); }
}

/* ============================================================================
   7. NAVBAR
   ============================================================================ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
    box-shadow: none;
}

.topbar.is-scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(7, 9, 26, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    padding: 8px 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.topbar .nav-link:hover {
    color: var(--gold);
    background: none;
}

.topbar .nav-link.is-active {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    background: none;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    color: var(--text-dim);
}

/* Animated hamburger */
.mobile-menu-bar { transition: transform 0.3s ease, opacity 0.3s ease; }

.mobile-menu-toggle.is-open .mobile-menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open .mobile-menu-bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open .mobile-menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — dark overlay + staggered links */
.mobile-nav {
    background: rgba(7, 9, 26, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.mobile-nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-nav.is-open .mobile-nav-link {
    animation: mobileLinkIn 0.4s ease backwards;
}

.mobile-nav.is-open .mobile-nav-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(4) { animation-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(5) { animation-delay: 0.25s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(6) { animation-delay: 0.3s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(7) { animation-delay: 0.35s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(8) { animation-delay: 0.4s; }

@keyframes mobileLinkIn {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================================
   8. PILLAR COLUMNS (trust / about / features — NO cards)
   ============================================================================ */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pillar-grid--4 { grid-template-columns: repeat(4, 1fr); }

.pillar {
    position: relative;
    text-align: center;
    padding: 32px 36px;
    background: none;
    border: none;
    box-shadow: none;
}

.pillar + .pillar { border-left: 1px solid rgba(255, 255, 255, 0.06); }

/* Ghost number behind each column */
.pillar-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
}

.pillar-icon {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 12px;
    color: var(--gold);
}

/* Gradient border via pseudo-element instead of a card */
.pillar-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.7), rgba(124, 58, 237, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pillar-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.pillar h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--text);
}

.pillar p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 900px) {
    .pillar-grid, .pillar-grid--4 { grid-template-columns: 1fr 1fr; }
    .pillar:nth-child(odd) { border-left: none; }
    .pillar { border-top: 1px solid rgba(255, 255, 255, 0.06); }
    .pillar:nth-child(-n+2) { border-top: none; }
}

@media (max-width: 560px) {
    .pillar-grid, .pillar-grid--4 { grid-template-columns: 1fr; }
    .pillar { border-left: none !important; }
    .pillar:first-child { border-top: none; }
}

/* ============================================================================
   9. STATS ROW (public-safe stats, divider style)
   ============================================================================ */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 8px 48px;
}

.stat-item + .stat-item { border-left: 1px solid rgba(255, 255, 255, 0.08); }

.stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
}

.stat-value .accent { color: var(--gold); }

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 4px;
}

@media (max-width: 700px) {
    .stat-item { padding: 8px 22px; }
    .stat-value { font-size: 28px; }
}

/* ============================================================================
   10. FAQ — line style, zero cards
   ============================================================================ */
.faq-lines { text-align: left; }

.faq-lines .faq-item {
    background: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: none !important;
}

.faq-lines .faq-item::before { content: none !important; }

.faq-lines .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    transition: color 0.3s ease;
}

.faq-lines .faq-question:hover { color: var(--gold); }

.faq-lines .faq-icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.5);
    border-radius: 50%;
    color: var(--gold);
    font-size: 14px;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-lines .faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(245, 158, 11, 0.12);
}

.faq-lines .faq-answer {
    /* ui.css sets .faq-answer { display: none } — must override for slide accordion */
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding-bottom 0.45s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    padding: 0 36px 0 4px;
}

.faq-lines .faq-item.is-open .faq-answer {
    max-height: 600px;
    padding-bottom: 22px;
}

/* ============================================================================
   11. REVIEW QUOTES (sliders kept, cards stripped)
   ============================================================================ */
.review-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border-left: 1px solid rgba(245, 158, 11, 0.25) !important;
    border-radius: 0 !important;
    padding: 8px 28px !important;
    width: 320px;
    flex-shrink: 0;
    transform: none !important;
}

.review-card::before { content: none !important; }

.review-quote {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-meta {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
}

.review-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 2px;
}

.review-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ============================================================================
   12. SERVICE TIERS (pricing entries — slim luxury cards, allowed)
   ============================================================================ */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    padding: 32px 26px;
    border-radius: 14px;
    background: rgba(13, 16, 48, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.tier-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.08);
}

.tier-card:hover::after { opacity: 1; }

.tier-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.25));
}

.tier-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.tier-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 18px;
    flex-grow: 1;
}

.tier-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    transition: letter-spacing 0.25s ease;
}

.tier-card:hover .tier-price { letter-spacing: 2px; }

@media (max-width: 1000px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .tier-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   13. JOURNEY (how it works) — unshelled, floats on background
   ============================================================================ */
.journey-shell {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 24px 0 0 !important;
}

.journey-shell::before { content: none !important; }

.journey-node-dot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: 'Rajdhani', sans-serif;
}

.journey-node.is-active .journey-node-dot {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.55);
}

.journey-rail-fill {
    background: linear-gradient(90deg, #f59e0b, #7c3aed);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.journey-panel-visual {
    border: none !important;
    background: none !important;
}

.journey-mock-bar,
.journey-track-mock {
    background: rgba(7, 9, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.journey-mock-total {
    font-family: 'Rajdhani', sans-serif;
    color: var(--gold);
    text-shadow: 0 0 24px rgba(245, 158, 11, 0.4);
}

.journey-cta {
    border-top: none !important;
}

/* ============================================================================
   14. AUTH PAGES — forms float, no card
   ============================================================================ */
.auth-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 20px 110px;
    min-height: 60vh;
}

.auth-card,
.glass-card.auth-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 420px;
    transform: none !important;
}

.glass-card.auth-card::before { content: none !important; }

.auth-header { text-align: center; margin-bottom: 36px; }

.auth-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
}

.auth-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    margin: 24px auto 0;
}

.auth-field label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.input-field,
.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.input-field:focus,
.form-input:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1), 0 0 20px rgba(245, 158, 11, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.auth-link { color: var(--gold); }
.auth-link:hover { color: var(--gold-light); }

/* ============================================================================
   15. MARKETPLACE polish (listing cards allowed, refreshed)
   ============================================================================ */
.mkt-shop-head h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: -0.5px;
}

.mkt-breadcrumb {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.mkt-shop-bar {
    background: rgba(13, 16, 48, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.listing-card {
    background: rgba(13, 16, 48, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.listing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(245, 158, 11, 0.1);
}

.mkt-empty {
    background: none !important;
    border: 1px dashed rgba(255, 255, 255, 0.12) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* ============================================================================
   15b. PILL TABS (boosting page) — floating segmented control
   ============================================================================ */
.pill-tabs {
    background: rgba(13, 16, 48, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.pill-tab {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--text-muted);
}

.pill-tab:hover { color: var(--gold); background: rgba(245, 158, 11, 0.06); }

.pill-tab.active {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #000;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

/* ============================================================================
   16. CALCULATOR / ORDER CONFIG (functional block — kept, refined)
   ============================================================================ */
.form-card {
    background: rgba(13, 16, 48, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.form-card-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; }

/* ============================================================================
   16b. BOOSTING CHECKOUT PANEL (right sidebar)
   ============================================================================ */
.checkout-panel {
    position: sticky;
    top: 100px;
    align-self: start;
    padding: 28px 26px 32px;
    border-radius: 16px;
    background: rgba(13, 16, 48, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.35);
    max-width: 420px;
}

.checkout-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.7), transparent);
}

.checkout-panel-head { margin-bottom: 24px; }

.checkout-panel-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
}

.checkout-panel-sub {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
}

.addon-toggles {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.addon-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.addon-toggle-row:last-child { border-bottom: none; }

.addon-toggle-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.addon-toggle-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.08);
    flex-shrink: 0;
}

.addon-toggle-name {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
}

.addon-toggle-hint {
    display: block;
    font-size: 11px;
    font-weight: 300;
    color: var(--text-dim);
    margin-top: 2px;
}

.addon-toggle-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.addon-toggle-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

/* Premium animated toggle */
.cp-toggle {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.cp-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cp-toggle-track {
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cp-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.cp-toggle input:checked + .cp-toggle-track {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

.cp-toggle input:checked + .cp-toggle-track .cp-toggle-thumb {
    transform: translateX(20px);
    background: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.addon-toggle-row:has(input:checked) .addon-toggle-name {
    color: var(--gold-light);
}

.checkout-timing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0 4px;
}

.checkout-eta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
}

.checkout-eta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.checkout-eta-dot--green {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Rank icons — gray out invalid downgrade/up selections */
.rank-icon-item.is-disabled {
    opacity: 0.22;
    filter: grayscale(1) brightness(0.55);
    border-color: rgba(255, 255, 255, 0.04) !important;
    background: rgba(0, 0, 0, 0.45) !important;
    box-shadow: none !important;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}

.rank-icon-item.is-disabled img {
    opacity: 0.5;
}

.rank-icon-item.is-disabled:hover {
    border-color: rgba(255, 255, 255, 0.04) !important;
    transform: none !important;
}

.checkout-eta strong {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--text);
}

.checkout-total-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
}

.checkout-total-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.checkout-total-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.checkout-total-original {
    font-size: 14px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.checkout-total-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #f59e0b, #fcd34d, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.25));
}

.checkout-rankup-btn {
    width: 100%;
    justify-content: center;
}

.checkout-panel .rank-progression-display {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
    .checkout-panel {
        position: static;
        max-width: none;
        margin-top: 32px;
    }
}
.hero,
.hero--landing {
    background-image: none !important;
    background-color: transparent !important;
    border: none;
    box-shadow: none;
}

.hero::before,
.hero::after { display: none !important; }

/* Inner-page hero: compact banner, not a full screen */
.hero--page,
.hero {
    min-height: 0;
    padding: 80px 0 56px;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}

.hero-title--xl { font-size: clamp(44px, 7vw, 76px); }

.hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    background: none;
    border: none;
}

/* Old hero chips — strip the panel look if any page still renders them */
.hero-chip,
.hero-chip.glow-panel {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    color: var(--text-muted);
    font-size: 13px;
}

.hero-chip.glow-panel::before { content: none !important; }

/* ============================================================================
   17b. HOME HERO — floats free, no panel
   ============================================================================ */
.home-hero {
    padding: 120px 0 90px;
    text-align: center;
}

.home-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.home-hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(46px, 7.5vw, 80px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    margin: 0;
}

.home-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0;
}

.home-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero-stats { margin-top: 36px; }

@media (max-width: 768px) {
    .home-hero { padding: 70px 0 56px; }
}

/* Review marquee strips */
.review-marquee {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding: 18px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-card:hover {
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .review-slider { animation: none !important; }
}

/* ============================================================================
   18. FOOTER — transparent, divider only
   ============================================================================ */
.footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.footer-heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text);
}

.footer-text {
    font-weight: 300;
    color: var(--text-muted);
}

.footer-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-link:hover { color: var(--gold); }

/* ============================================================================
   19. REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    .gradient-text,
    .hero-title-gradient,
    .btn-primary::before,
    .glow-divider,
    .badge-dot {
        animation: none !important;
    }
}
