/* ══════════════════════════════════════════════════════
   CrimeLife: CIA — Production Styles
   ══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --bg-0: #0b0b0b;
    --bg-1: #121212;
    --bg-2: #1a1a1a;
    --bg-3: #242424;
    --text-0: #f5f5f5;
    --text-1: #b3b3b3;
    --text-2: #6b6b6b;
    --accent: #d92626;
    --accent-dark: #8c1a1a;
    --accent-soft: rgba(217, 38, 38, .12);
    --accent-glow: rgba(217, 38, 38, .3);
    --border: #222;
    --radius: 10px;
    --radius-lg: 16px;
    --font-head: 'Russo One', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --nav-h: 64px;
}

[data-theme="light"] {
    --bg-0: #f4f4f4;
    --bg-1: #eaeaea;
    --bg-2: #fff;
    --bg-3: #fff;
    --text-0: #111;
    --text-1: #555;
    --text-2: #999;
    --border: #ddd;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px)
}

body {
    font-family: var(--font-body);
    background: var(--bg-0);
    color: var(--text-0);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background .35s var(--ease), color .35s var(--ease)
}

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

ul {
    list-style: none
}

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

button {
    font-family: inherit
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    letter-spacing: .5px
}

/* ── UTILITY ── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px
}

.text-accent {
    color: var(--accent)
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .875rem;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap
}

.btn:active {
    transform: scale(.97)
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 20px var(--accent-glow)
}

.btn-ghost {
    background: transparent;
    color: var(--text-0);
    border-color: var(--border)
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.btn-ghost.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft)
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.btn-accent:hover {
    background: var(--accent-dark)
}

.btn-sm {
    padding: 6px 14px;
    font-size: .78rem
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem
}

.btn-xl {
    padding: 18px 32px;
    font-size: 1.1rem;
    letter-spacing: 1px
}

.btn-block {
    width: 100%
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-1);
    transition: all .25s var(--ease)
}

.icon-btn:hover {
    border-color: var(--accent);
    color: var(--accent)
}

/* theme icon toggle */
.icon-sun {
    display: none
}

[data-theme="light"] .icon-sun {
    display: block
}

[data-theme="light"] .icon-moon {
    display: none
}

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(11, 11, 11, .8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .35s var(--ease)
}

[data-theme="light"] .navbar {
    background: rgba(244, 244, 244, .85)
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.nav-brand-img {
    width: 36px;
    height: 36px;
    object-fit: contain
}

.nav-brand-name {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--accent)
}

.nav-menu {
    display: flex;
    gap: 28px;
    margin-left: auto
}

.nav-link {
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-1);
    transition: color .2s;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .25s var(--ease)
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent)
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-0);
    border-radius: 2px;
    transition: all .25s
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(.25);
    transform: scale(1.06)
}

[data-theme="light"] .hero-bg-img {
    filter: blur(4px) brightness(.55)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, .5) 0%, rgba(11, 11, 11, .3) 50%, rgba(11, 11, 11, .9) 100%)
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(180deg, rgba(244, 244, 244, .4) 0%, rgba(244, 244, 244, .2) 50%, rgba(244, 244, 244, .92) 100%)
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: calc(var(--nav-h) + 40px) 20px 60px;
    max-width: 720px
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px var(--accent-glow));
    animation: bob 3s ease-in-out infinite
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-1);
    margin-bottom: 28px
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap
}

.stat {
    text-align: center
}

.stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.7rem;
    color: var(--accent)
}

.stat span {
    font-size: .78rem;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 2px
}

/* ══════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════ */
.section {
    padding: 90px 0
}

.alt-bg {
    background: var(--bg-1)
}

.section-head {
    text-align: center;
    margin-bottom: 52px
}

.section-head h2 {
    font-size: 2.4rem;
    margin-bottom: 8px
}

.section-head p {
    color: var(--text-1);
    max-width: 540px;
    margin: 0 auto;
    font-size: .95rem
}

.badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--accent-soft);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: .7rem;
    letter-spacing: 3px;
    border-radius: 999px;
    border: 1px solid rgba(217, 38, 38, .25);
    margin-bottom: 12px
}

/* ══════════════════════════════════════════════════════
   WHEEL
   ══════════════════════════════════════════════════════ */
.wheel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.wheel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(217, 38, 38, .1);
    border: 3px solid var(--accent)
}

.wheel-pointer-wrap {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5
}

.wheel-pointer {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 22px solid var(--accent);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5))
}

.wheel-hub {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-0);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 0 16px var(--accent-glow)
}

.wheel-hub img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

.wheel-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.info-row {
    display: flex;
    gap: 14px
}

.info-box {
    flex: 1;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center
}

.info-label {
    display: block;
    font-size: .7rem;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px
}

.info-value {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--accent)
}

.shop-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px
}

.shop-card h4 {
    margin-bottom: 14px;
    font-size: .9rem
}

.shop-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-1);
    font-size: .88rem
}

.shop-row:last-child {
    border-bottom: none
}

/* ══════════════════════════════════════════════════════
   LEADERBOARD
   ══════════════════════════════════════════════════════ */
.tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 36px
}

.tab {
    padding: 10px 28px;
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-1);
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: all .2s var(--ease)
}

.tab.active,
.tab:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft)
}

.tab-body {
    display: none
}

.tab-body.active {
    display: block
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 36px
}

.podium-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    text-align: center;
    min-width: 160px;
    transition: transform .2s var(--ease), border-color .2s
}

.podium-card:hover {
    transform: translateY(-4px)
}

.podium-card.gold {
    border-color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow);
    padding: 28px 36px;
    margin-bottom: 16px
}

.podium-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin: 0 auto 8px
}

.podium-name {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 4px
}

.podium-val {
    font-size: .82rem;
    color: var(--accent);
    font-weight: 700
}

.lb-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border)
}

.lb-table th {
    padding: 12px 18px;
    text-align: left;
    font-family: var(--font-head);
    font-size: .72rem;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--bg-3)
}

.lb-table td {
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    font-size: .9rem
}

.lb-table tr:hover td {
    background: var(--accent-soft)
}

.lb-table td:first-child {
    font-family: var(--font-head);
    color: var(--accent)
}

/* ══════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════ */
.tier-path {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    font-size: .85rem;
    color: var(--text-1)
}

.tier-path span {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 999px
}

.tier-path .arrow {
    background: none;
    border: none;
    padding: 0;
    color: var(--accent);
    font-weight: 700
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px
}

.price-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent)
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 28px var(--accent-glow)
}

.pc-ribbon {
    position: absolute;
    top: 14px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    padding: 3px 36px;
    transform: rotate(45deg);
    letter-spacing: 1.5px
}

.pc-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--bg-3);
    color: var(--text-2);
    border: 1px solid var(--border)
}

.pc-badge.exclusive {
    background: #1a1a30;
    color: #7b68ee;
    border-color: #7b68ee
}

.pc-badge.vip {
    background: #1a1a00;
    color: #ffd700;
    border-color: #ffd700
}

.pc-badge.rpg {
    background: #1a0e00;
    color: #ff6600;
    border-color: #ff6600
}

.price-card h3 {
    font-size: 1.15rem
}

.pc-price strong {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--accent)
}

.pc-price span {
    color: var(--text-2);
    font-size: .85rem
}

.pc-og {
    font-size: .78rem;
    color: var(--text-2);
    text-decoration: line-through
}

.price-card ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1
}

.price-card li {
    font-size: .85rem;
    color: var(--text-1);
    padding-left: 20px;
    position: relative
}

.price-card li.yes::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800
}

.price-card li.no::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--text-2);
    font-weight: 700
}

.price-card li.no {
    color: var(--text-2)
}

.pc-durations {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pricing-note {
    text-align: center;
    padding: 16px 20px;
    background: var(--accent-soft);
    border: 1px solid rgba(217, 38, 38, .2);
    border-radius: var(--radius);
    color: var(--text-1);
    font-size: .9rem
}

/* ══════════════════════════════════════════════════════
   POINTS
   ══════════════════════════════════════════════════════ */
.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.pt-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .25s var(--ease)
}

.pt-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent)
}

.pt-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 14px
}

.pt-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem
}

.pt-card p {
    color: var(--text-1);
    font-size: .88rem;
    margin-bottom: 14px
}

.pt-card li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    color: var(--text-1)
}

.pt-card li:last-child {
    border-bottom: none
}

.rr {
    font-weight: 700;
    font-size: .78rem;
    padding: 1px 6px;
    border-radius: 3px
}

.rr.common {
    color: #aaa
}

.rr.uncommon {
    color: #4ade80
}

.rr.rare {
    color: #60a5fa
}

.rr.epic {
    color: #c084fc
}

.rr.legendary {
    color: #fbbf24
}

/* ══════════════════════════════════════════════════════
   LIVE FEED (slide-out panel + tab)
   ══════════════════════════════════════════════════════ */

/* The tab that's always visible on the right edge */
.feed-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 12px 8px;
    cursor: pointer;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-family: var(--font-head);
    font-size: .7rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s var(--ease);
    box-shadow: -2px 0 12px var(--accent-glow)
}

.feed-tab:hover {
    padding-right: 12px;
    background: var(--accent-dark)
}

.feed-tab-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: blink 1.5s ease-in-out infinite
}

.feed-tab-label {
    letter-spacing: 3px
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* The panel */
.feed-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: var(--bg-1);
    border-left: 1px solid var(--border);
    z-index: 300;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    display: flex;
    flex-direction: column
}

.feed-panel.open {
    transform: translateX(0)
}

.feed-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border)
}

.feed-panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: .82rem;
    color: var(--accent);
    letter-spacing: 2px
}

.feed-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1.5s ease-in-out infinite
}

.feed-close {
    background: none;
    border: none;
    color: var(--text-2);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color .2s
}

.feed-close:hover {
    color: var(--accent)
}

.feed-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.feed-list::-webkit-scrollbar {
    width: 3px
}

.feed-list::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 2px
}

.feed-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 250;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease)
}

.feed-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.feed-item {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 10px 12px;
    font-size: .8rem;
    animation: feedIn .35s var(--ease)
}

.feed-item .fi-user {
    color: var(--accent);
    font-weight: 700
}

.feed-item .fi-action {
    color: var(--text-2);
    font-weight: 600;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

.feed-item .fi-prize {
    color: var(--text-0);
    font-weight: 600
}

.feed-item .fi-time {
    display: block;
    font-size: .68rem;
    color: var(--text-2);
    margin-top: 3px
}

@keyframes feedIn {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* ══════════════════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════════════════ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal[hidden] {
    display: none
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px)
}

.modal-box {
    position: relative;
    background: var(--bg-2);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 48px var(--accent-glow);
    animation: modalPop .3s var(--ease)
}

@keyframes modalPop {
    from {
        transform: scale(.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.modal-star {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 12px
}

.modal-box h3 {
    font-size: 1.3rem;
    margin-bottom: 6px
}

.modal-box p {
    color: var(--text-1);
    margin-bottom: 20px;
    font-size: .92rem
}

.modal-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px
}

.text-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-1);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-0);
    font-size: .95rem;
    font-family: var(--font-body);
    transition: border-color .2s
}

.text-input:focus {
    outline: none;
    border-color: var(--accent)
}

.hint {
    display: block;
    font-size: .78rem;
    color: var(--text-2);
    margin-top: 4px
}

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

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-2);
    font-size: .82rem
}

.footer-logo {
    width: 32px;
    height: 32px;
    object-fit: contain
}

.footer-right {
    display: flex;
    gap: 20px
}

.footer-right a {
    color: var(--text-2);
    font-size: .82rem;
    transition: color .2s
}

.footer-right a:hover {
    color: var(--accent)
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media(max-width:1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:800px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--bg-1);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 20px;
        gap: 14px
    }

    .nav-menu.open {
        display: flex
    }

    .hamburger {
        display: flex
    }

    .nav-end {
        margin-left: auto
    }

    .wheel-grid {
        grid-template-columns: 1fr
    }

    .hero-title {
        font-size: 2.2rem
    }

    .section-head h2 {
        font-size: 1.8rem
    }

    .podium {
        flex-direction: column;
        align-items: center
    }

    .podium-card.gold {
        margin-bottom: 0
    }

    .points-grid {
        grid-template-columns: 1fr
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .price-card.featured {
        box-shadow: none
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center
    }

    .feed-panel {
        width: 280px
    }

    #wheel-canvas {
        width: 320px;
        height: 320px
    }
}

@media(max-width:500px) {
    .hero-title {
        font-size: 1.7rem
    }

    .hero-stats {
        gap: 20px
    }

    .stat strong {
        font-size: 1.3rem
    }

    .info-row {
        flex-direction: column
    }

    .tier-path {
        flex-direction: column
    }
}