:root {
    --green: #3d9b7a;
    --green-light: #5ec4a0;
    --green-dark: #1f5c47;
    --orange: #c9a227;
    --orange-light: #e8d48b;
    --gold: #c9a227;
    --gold-light: #f0dfa0;
    --gold-dark: #8a6d12;
    --champagne: #f5ecd8;
    --navy: #060b14;
    --navy-mid: #0c1424;
    --bg: #04070d;
    --bg-shell: rgba(10, 16, 28, 0.82);
    --border: rgba(255, 255, 255, 0.07);
    --border-green: rgba(201, 162, 39, 0.32);
    --border-gold: rgba(201, 162, 39, 0.38);
    --text: #f4f6fa;
    --muted: #9aa8bc;
    --radius: 20px;
    --radius-sm: 14px;
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --dock-h: 72px;
    --bx-gutter: clamp(12px, 2.5vw, 28px);
    --lux-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    --lux-glow: 0 0 60px rgba(201, 162, 39, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body.bx-body {
    font-family: var(--font);
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 162, 39, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(61, 155, 122, 0.08), transparent 50%),
        radial-gradient(ellipse 50% 35% at 0% 100%, rgba(201, 162, 39, 0.06), transparent 45%),
        linear-gradient(180deg, #060b14 0%, #04070d 100%);
    background-size: 100% 100%;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    padding-bottom: calc(var(--dock-h) + 16px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.lucide-icon, .lucide-icon svg, [data-lucide] svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
}

.medal-gold { color: #ffd43b; }
.medal-silver { color: #ced4da; }
.medal-bronze { color: #e67700; }

.bx-main { padding-top: 88px; }
.bx-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--bx-gutter) 32px;
}

/* â”€â”€ Nav â”€â”€ */
.bx-nav-wrap {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--bx-gutter);
    pointer-events: none;
}
.bx-nav {
    pointer-events: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(12, 18, 32, 0.94), rgba(8, 12, 22, 0.92));
    backdrop-filter: blur(22px);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    box-shadow: var(--lux-shadow), var(--lux-glow);
}
.bx-nav__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.bx-nav__logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-green);
    background: #0a1520;
    flex-shrink: 0;
}
.bx-nav__logo img { width: 100%; height: 100%; object-fit: cover; }
.bx-nav__meta { display: flex; flex-direction: column; justify-content: center; gap: 2px; min-width: 0; line-height: 1.15; }
.bx-nav__meta .gp-brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f0f4f8;
    -webkit-text-fill-color: #f0f4f8;
    background: none;
    background-clip: unset;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.bx-nav__meta strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
}
.bx-nav__verified,
.bx-nav__meta small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}
.gp-brand-cap {
    font-size: 1.2em;
    font-weight: 900;
    line-height: 1;
}
.bx-nav__actions { display: flex; align-items: center; gap: 8px; }
.bx-nav__icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text);
    transition: transform 0.2s, border-color 0.2s;
}
.bx-nav__icon-btn:hover { transform: translateY(-2px); border-color: var(--green); }
.bx-nav__icon-btn--accent {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(232, 212, 139, 0.15));
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--gold-light);
}
.bx-nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* â”€â”€ Shell / glass card â”€â”€ */
.bx-shell {
    background: linear-gradient(160deg, rgba(14, 22, 38, 0.92), rgba(8, 12, 22, 0.88));
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(16px, 3vw, 24px);
    box-shadow: var(--lux-shadow);
    position: relative;
    overflow: hidden;
}
.bx-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.35), transparent 40%, rgba(61, 155, 122, 0.2));
    -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;
    pointer-events: none;
}

/* â”€â”€ Hero â”€â”€ */
.bx-hero { margin-bottom: 20px; }
.bx-hero__shell {
    background:
        linear-gradient(155deg, rgba(18, 28, 48, 0.96) 0%, rgba(8, 14, 26, 0.98) 50%, rgba(4, 8, 16, 0.99) 100%);
    border-color: var(--border-gold);
    padding: clamp(18px, 3vw, 28px) clamp(16px, 3vw, 28px) clamp(14px, 2vw, 20px);
    box-shadow: var(--lux-shadow), var(--lux-glow);
}
.bx-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.bx-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.bx-tag--green {
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
}
.bx-tag--live {
    background: rgba(61, 155, 122, 0.12);
    border: 1px solid rgba(61, 155, 122, 0.35);
    color: var(--green-light);
}
.bx-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: bx-pulse 1.6s infinite;
}
.bx-dot--on { background: var(--green-light); box-shadow: 0 0 8px var(--green-light); }
@keyframes bx-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.bx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.bx-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 20px;
}
.bx-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.8vw, 2.65rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.bx-brand-pill {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1408;
    font-family: var(--font);
    font-weight: 800;
    box-shadow: 0 6px 28px rgba(201, 162, 39, 0.35);
}
.bx-hero__desc {
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 480px;
    margin-bottom: 20px;
}
.bx-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* Control suite */
.bx-suite {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.bx-suite__title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.bx-suite__list { display: flex; flex-direction: column; gap: 10px; }
.bx-suite__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.bx-suite__item strong { display: block; font-size: 0.82rem; }
.bx-suite__item small { font-size: 0.7rem; color: var(--muted); }
.bx-suite__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bx-suite__icon--teal { background: rgba(46, 196, 182, 0.2); color: #5eead4; }
.bx-suite__icon--orange { background: rgba(247, 127, 42, 0.2); color: var(--orange-light); }
.bx-suite__icon--purple { background: rgba(151, 117, 250, 0.2); color: #b197fc; }
.bx-mini-tag {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-light);
    text-transform: uppercase;
}
.bx-mini-tag--boost { background: rgba(61, 155, 122, 0.15); color: var(--green-light); }
.bx-mini-tag--fast { background: rgba(201, 162, 39, 0.2); color: var(--champagne); }

.bx-hero__dock-single { grid-column: 1 / -1; }
.bx-nav__dashboard { white-space: nowrap; }

.bx-hero__dock {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
}

/* â”€â”€ Buttons â”€â”€ */
.bx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.bx-btn:hover { transform: translateY(-2px); }
.bx-btn--orange {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1408;
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.bx-btn--teal {
    background: linear-gradient(135deg, rgba(30, 50, 45, 0.9), rgba(20, 40, 35, 0.95));
    color: var(--champagne);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.bx-btn--dock-login {
    background: linear-gradient(135deg, #1e2a5a, #2d1f4e);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}
.bx-btn--dock-start {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1408;
    width: 100%;
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.4);
}
.bx-btn--sm { padding: 10px 18px; font-size: 0.8rem; }
.bx-btn--block { width: 100%; }

/* â”€â”€ Ticker â”€â”€ */
.bx-ticker {
    overflow: hidden;
    margin: 0 calc(-1 * var(--bx-gutter)) 24px;
    padding: 10px var(--bx-gutter);
    border-block: 1px solid var(--border-gold);
    background: linear-gradient(90deg, rgba(8, 14, 24, 0.85), rgba(12, 18, 32, 0.9), rgba(8, 14, 24, 0.85));
}
.bx-ticker__track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: bx-ticker 35s linear infinite;
    font-size: 0.78rem;
    color: var(--champagne);
}
.bx-ticker__track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
@keyframes bx-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* â”€â”€ Section headers â”€â”€ */
.bx-section { margin-bottom: 28px; }
.bx-section--last { margin-bottom: 8px; }
.bx-section__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding: 0 4px;
}
.bx-section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.bx-section__aside {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.bx-bar {
    width: 4px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}
.bx-bar--orange { background: linear-gradient(180deg, var(--gold), var(--gold-light)); }

/* Premium stats strip */
.bx-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}
.bx-stat {
    padding: 18px 16px;
    text-align: center;
    background: linear-gradient(160deg, rgba(201, 162, 39, 0.08), rgba(8, 14, 24, 0.6));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}
.bx-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.bx-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.bx-stat small {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Trust badges */
.bx-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}
.bx-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 10px;
    background: rgba(8, 14, 24, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s, transform 0.25s;
}
.bx-trust__item:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}
.bx-trust__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}
.bx-trust__item strong {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.bx-trust__item span {
    font-size: 0.68rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Section titles */
.bx-section__label,
.bx-plans-head h2,
.bx-competition__head h2,
.bx-cta h2,
.bx-tasks-head h2 {
    font-family: var(--font-display);
    font-weight: 700;
}

/* â”€â”€ Profit feed â”€â”€ */
.bx-feed-shell { padding: 14px; }
.bx-feed-viewport {
    height: min(420px, 52vh);
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.bx-feed-list-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bx-feed-list { display: flex; flex-direction: column; gap: 10px; }
.bx-feed-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.bx-feed-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 196, 182, 0.15);
    color: #5eead4;
    border: 1px solid rgba(46, 196, 182, 0.3);
}
.bx-feed-item__body strong { display: block; font-size: 0.9rem; }
.bx-feed-item__body span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; }
.bx-feed-item__body small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 4px;
}
.bx-feed-item__amt {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--gold-light);
}

/* â”€â”€ Competition â”€â”€ */
.bx-competition__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.bx-competition__head h2 { font-size: 1.35rem; font-weight: 900; }
.bx-competition__head p { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.bx-competition__trophy {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 127, 42, 0.15);
    color: var(--orange-light);
    border: 1px solid rgba(247, 127, 42, 0.3);
    flex-shrink: 0;
}

.bx-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.bx-countdown > div {
    flex: 1;
    min-width: 80px;
    text-align: center;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.bx-countdown strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--gold-light); font-family: var(--font-display); }
.bx-countdown small { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.bx-prizes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.bx-prize {
    text-align: center;
    padding: 14px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
}
.bx-prize--gold { border-color: rgba(255, 212, 59, 0.35); box-shadow: 0 0 20px rgba(255, 212, 59, 0.08); }
.bx-prize--silver { border-color: rgba(206, 212, 218, 0.25); }
.bx-prize--bronze { border-color: rgba(230, 119, 0, 0.25); }
.bx-prize strong { display: block; font-size: 1.1rem; margin: 6px 0 2px; }
.bx-prize small { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; }

.bx-podium-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.bx-podium-head small {
    font-size: 0.68rem;
    color: var(--muted);
}
.bx-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #6ee7b7;
}
.bx-live-tag i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7b7;
    box-shadow: 0 0 10px rgba(110, 231, 183, 0.8);
    animation: bx-live-pulse 1.4s ease-in-out infinite;
}
@keyframes bx-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
}
.bx-podium {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 10px;
    align-items: end;
    margin-bottom: 16px;
}
.bx-podium--live.is-refreshing .bx-podium__card {
    opacity: 0.55;
    transform: translateY(4px);
}
.bx-podium__card {
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.bx-podium__card {
    text-align: center;
    padding: 16px 10px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.bx-podium__card--1 {
    order: 2;
    padding-bottom: 22px;
    border-color: rgba(255, 212, 59, 0.4);
    transform: translateY(-8px);
}
.bx-podium__card--2 { order: 1; }
.bx-podium__card--3 { order: 3; }
.bx-podium__card strong { display: block; font-size: 0.88rem; margin: 8px 0 4px; }
.bx-podium__card span { display: block; font-size: 0.72rem; color: var(--muted); }
.bx-podium__card em {
    display: block;
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold-light);
    margin-top: 8px;
}

/* â”€â”€ Steps â”€â”€ */
.bx-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.bx-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: var(--bg-shell);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}
.bx-step__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bx-step__icon--blue { background: rgba(77, 171, 247, 0.2); color: #74c0fc; }
.bx-step__icon--orange { background: rgba(247, 127, 42, 0.2); color: var(--orange-light); }
.bx-step__icon--green { background: rgba(82, 183, 136, 0.2); color: var(--green-light); }
.bx-step__icon--purple { background: rgba(151, 117, 250, 0.2); color: #b197fc; }
.bx-step h3 { font-size: 0.9rem; font-weight: 800; margin-bottom: 4px; }
.bx-step p { font-size: 0.78rem; color: var(--muted); }
.bx-step__arrow { color: var(--muted); opacity: 0.6; }

/* Tasks carousel (plans use plan-cards.css) */
.bx-tasks-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.bx-tasks-carousel::-webkit-scrollbar { display: none; }

.bx-tasks-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}
.bx-tasks-dots { display: flex; gap: 6px; }
.bx-tasks-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
}
.bx-tasks-dots button.active { background: var(--green); box-shadow: 0 0 8px var(--green); }

/* â”€â”€ Tasks â”€â”€ */
.bx-tasks-shell { padding-bottom: 18px; }
.bx-tasks-empty {
    padding: 28px 18px;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.bx-tasks-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.bx-tasks-head h2 { font-size: 1.2rem; font-weight: 900; }
.bx-tasks-head p { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* â”€â”€ Benefits â”€â”€ */
.bx-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.bx-benefit {
    padding: 20px 16px;
    background: var(--bg-shell);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    transition: transform 0.2s, border-color 0.2s;
}
.bx-benefit:hover { transform: translateY(-3px); border-color: var(--border-gold); }
.bx-benefit__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    margin-bottom: 12px;
}
.bx-benefit h3 { font-size: 0.92rem; font-weight: 800; margin-bottom: 6px; }
.bx-benefit p { font-size: 0.78rem; color: var(--muted); }

/* â”€â”€ CTA â”€â”€ */
.bx-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.7), rgba(8, 14, 24, 0.95));
    border-color: var(--border-gold);
}
.bx-cta h2 { font-size: 1.35rem; font-weight: 900; margin-bottom: 6px; }
.bx-cta p { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; max-width: 420px; }
.bx-cta__btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.bx-cta__btns .bx-btn {
    width: auto;
    flex: 0 0 auto;
}
.bx-cta__btns .bx-btn--dock-login {
    width: auto;
}
.bx-cta__rocket {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(61, 155, 122, 0.15));
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    flex-shrink: 0;
}
.bx-faq__chev { color: var(--gold-light); transition: transform 0.2s; flex-shrink: 0; }

/* â”€â”€ FAQ â”€â”€ */
.bx-faq { display: flex; flex-direction: column; gap: 10px; }
.bx-faq__item {
    background: var(--bg-shell);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.bx-faq__q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 16px 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-item.open .bx-faq__chev { transform: rotate(180deg); }
.bx-faq__a {
    display: none;
    padding: 0 18px 16px;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}
.faq-item.open .bx-faq__a { display: block; }

/* â”€â”€ Fixed dock â”€â”€ */
.bx-dock {
    position: fixed;
    bottom: 12px;
    left: var(--bx-gutter);
    right: var(--bx-gutter);
    z-index: 999;
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 10px;
    width: auto;
    max-width: none;
    margin: 0;
}
.bx-dock__login, .bx-dock__start, .bx-dock__dashboard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.88rem;
}
.bx-dock__dashboard {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1408;
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}
.bx-dock__login {
    background: linear-gradient(135deg, #1e2a5a, #2d1f4e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
}
.bx-dock__start {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1408;
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}

/* â”€â”€ Footer â”€â”€ */
.footer {
    padding: 24px 0 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}
.footer__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--bx-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.footer__brand img { height: 32px; }
.footer__links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__links a { font-size: 0.82rem; color: var(--muted); }
.footer__links a:hover { color: var(--green-light); }
.footer__copy {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* â”€â”€ Responsive â”€â”€ */
@media (min-width: 1200px) {
    .bx-hero__grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: clamp(22px, 3vw, 40px);
    }
    .bx-hero__desc { max-width: 560px; }
    .bx-benefits { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .bx-steps { gap: 16px; }
}

@media (max-width: 1024px) {
    .bx-hero__grid { grid-template-columns: 1fr; }
    .bx-hero__desc { max-width: none; }
    .bx-suite { margin-top: 4px; }
}

@media (max-width: 900px) {
    .bx-trust { grid-template-columns: repeat(2, 1fr); }
    .bx-stats { grid-template-columns: 1fr; }
    .bx-podium { grid-template-columns: 1fr; }
    .bx-podium__card--1 { order: 0; transform: none; }
    .bx-podium__card--2, .bx-podium__card--3 { order: 0; }
    .bx-benefits { grid-template-columns: repeat(2, 1fr); }
    .bx-steps { grid-template-columns: 1fr; }
    .bx-prizes { grid-template-columns: 1fr; }
    .bx-section__head { flex-wrap: wrap; gap: 8px; }
    .bx-competition__head { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .bx-nav__toggle { display: inline-flex; }
    .bx-nav__actions {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        flex-direction: row;
        justify-content: center;
        padding: 12px;
        background: rgba(8, 14, 24, 0.98);
        border: 1px solid var(--border);
        border-radius: 16px;
    }
    .bx-nav__actions.open { display: flex; }
    .bx-nav--auth .bx-nav__toggle { display: none; }
    .bx-nav--auth .bx-nav__actions {
        display: flex !important;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }
    .bx-nav-wrap { position: fixed; }
    .bx-nav {
        position: relative;
        padding: 8px 12px;
        gap: 10px;
        align-items: center;
    }
    .bx-nav__brand {
        flex: 1;
        min-width: 0;
        align-items: center;
        gap: 10px;
    }
    .bx-nav__logo {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }
    .bx-nav__meta {
        gap: 3px;
        min-width: 0;
    }
    .bx-nav__meta .gp-brand-name {
        font-size: 1rem;
        display: block;
    }
    .bx-nav__verified,
    .bx-nav__meta small {
        font-size: 0.56rem;
        letter-spacing: 0.07em;
    }
    .bx-nav__dashboard {
        flex-shrink: 0;
        padding: 9px 14px;
        font-size: 0.68rem;
    }
    .bx-hero__dock { display: none; }
    .bx-cta { flex-direction: column; align-items: flex-start; }
    .bx-cta__rocket { align-self: flex-end; }
    .bx-benefits { grid-template-columns: 1fr; }
    .bx-main { padding-top: 96px; }
    .bx-hero { margin-top: 12px; }
}

@media (min-width: 769px) {
    .bx-dock { display: none; }
    body.bx-body { padding-bottom: 24px; }
}

@media (max-width: 480px) {
    :root { --bx-gutter: 12px; }
    .bx-stats { grid-template-columns: 1fr; gap: 8px; }
    .bx-trust { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bx-trust__item { padding: 12px 8px; }
    .bx-hero__shell { padding: 18px 14px 14px; border-radius: 16px; }
    .bx-hero__title { font-size: clamp(1.45rem, 7vw, 1.85rem); }
    .bx-hero__top { flex-wrap: wrap; }
    .bx-hero__cta { flex-direction: column; }
    .bx-hero__cta .bx-btn { width: 100%; }
    .bx-suite__item { grid-template-columns: auto 1fr; }
    .bx-suite__item .bx-mini-tag { grid-column: 2; justify-self: start; margin-top: -4px; }
    .bx-feed-item { grid-template-columns: auto 1fr; gap: 10px; }
    .bx-feed-item__amt { grid-column: 2; justify-self: start; font-size: 0.95rem; }
    .bx-step { grid-template-columns: auto 1fr; }
    .bx-step__arrow { display: none; }
    .bx-cta__btns { flex-direction: column; width: 100%; }
    .bx-cta__btns .bx-btn { width: 100%; }
    .footer__inner { flex-direction: column; align-items: flex-start; }
}
/* Plan card styles: gigypay/css/plan-cards.css */
