/* ==============================
   VARIABLES & RESET
   ============================== */
:root {
    --bg:          #060b14;
    --bg-2:        #0d1525;
    --bg-card:     #111827;
    --bg-card-2:   #0f172a;
    --orange:      #ff6b00;
    --orange-light:#ff8c3a;
    --orange-dim:  rgba(255, 107, 0, 0.12);
    --gold:        #ffc107;
    --text:        #e2e8f0;
    --text-muted:  #64748b;
    --text-sub:    #94a3b8;
    --border:      rgba(255, 107, 0, 0.18);
    --border-sub:  rgba(255, 255, 255, 0.07);
    --radius:      16px;
    --radius-lg:   24px;
    --shadow:      0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --font:        'Vazirmatn', 'Tahoma', sans-serif;
    --nav-h:       72px;
    --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================
   TYPOGRAPHY HELPERS
   ============================== */
.gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-dim);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-sub);
    max-width: 520px;
    margin: 0 auto;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(6, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border-sub);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.logo-emblem { width: 36px; height: 36px; flex-shrink: 0; }
.logo-emblem-sm { width: 30px; height: 30px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-sub);
    padding: 8px 14px;
    border-radius: 10px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-download-btn {
    background: var(--orange);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-download-btn:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 10px;
    transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.06); }

.bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-sub);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.nav-overlay.visible { display: block; }

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

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #e55a00 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 107, 0, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border-sub);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ==============================
   HERO
   ============================== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 40px) 0 80px;
    overflow: hidden;
}

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

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    bottom: 0;
    left: 10%;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,100,200,0.12) 0%, transparent 70%);
    top: 40%;
    left: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange-light);
    background: rgba(255,107,0,0.1);
    border: 1px solid rgba(255,107,0,0.25);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
}

.hero-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-sub);
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-numbers {
    display: flex;
    align-items: center;
    gap: 0;
}

.num-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 24px;
}

.num-item:first-child { padding-right: 0; }

.num-item strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: inline;
}

.num-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.num-divider {
    width: 1px;
    height: 36px;
    background: var(--border-sub);
    flex-shrink: 0;
}

/* Hero Phones */
.hero-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 20px;
}

/* Phone Shell */
.phone {
    position: relative;
    flex-shrink: 0;
}

.phone-shell {
    width: 230px;
    height: 470px;
    background: linear-gradient(145deg, #1e2538 0%, #0f1520 100%);
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 40px 80px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.phone-shell-sm {
    width: 190px;
    height: 390px;
    border-radius: 32px;
}

.phone-btns-left {
    position: absolute;
    right: -3px;
    top: 80px;
    width: 3px;
    height: 28px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px 0 0 2px;
    box-shadow: 0 36px 0 rgba(255,255,255,0.12), 0 70px 0 rgba(255,255,255,0.12);
}

.phone-btn-right {
    position: absolute;
    left: -3px;
    top: 100px;
    width: 3px;
    height: 46px;
    background: rgba(255,255,255,0.12);
    border-radius: 0 2px 2px 0;
}

.phone-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.phone-notch {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-camera {
    width: 10px;
    height: 10px;
    background: #0a0e1a;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.phone-screen {
    flex: 1;
    background: #060b14;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone-home-bar {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-home-bar::after {
    content: '';
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 2px;
}

/* Phone secondary position */
.phone-secondary {
    margin-bottom: 40px;
    transform: rotate(-4deg);
    filter: brightness(0.85);
    transition: filter var(--transition), transform var(--transition);
}

.phone-main { transform: rotate(3deg); }

.hero-phones:hover .phone-secondary { filter: brightness(0.95); transform: rotate(-4deg) translateY(-6px); }
.hero-phones:hover .phone-main { transform: rotate(3deg) translateY(-6px); }

/* ===== GAME SCREEN CONTENT ===== */
.ps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px 6px;
    font-size: 0.6rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ps-label { font-weight: 700; color: #fff; }

.ps-timer {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--orange);
    font-weight: 600;
    background: rgba(255,107,0,0.12);
    padding: 2px 6px;
    border-radius: 6px;
}

.ps-role-card {
    margin: 8px 8px 6px;
    background: linear-gradient(135deg, rgba(255,107,0,0.15) 0%, rgba(255,193,7,0.08) 100%);
    border: 1px solid rgba(255,107,0,0.25);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
}

.ps-role-label { font-size: 0.5rem; color: var(--text-muted); }
.ps-role-emoji { font-size: 1.2rem; margin: 2px 0; }
.ps-role-name { font-size: 0.75rem; font-weight: 800; color: var(--orange); }
.ps-role-hint { font-size: 0.48rem; color: var(--text-sub); margin-top: 1px; }

.ps-radar {
    flex: 1;
    position: relative;
    margin: 4px 8px;
    background: radial-gradient(ellipse at center, rgba(139,90,43,0.25) 0%, rgba(90,50,20,0.15) 50%, transparent 70%);
    border-radius: 50%;
    aspect-ratio: 1;
    max-height: 130px;
    align-self: center;
    width: calc(100% - 16px);
}

.ps-radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.ps-radar-ring.r1 { width: 100%; height: 100%; }
.ps-radar-ring.r2 { width: 66%; height: 66%; }
.ps-radar-ring.r3 { width: 33%; height: 33%; }

.ps-radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255,107,0,0.25) 40deg, transparent 40deg);
    animation: radar-spin 3s linear infinite;
}

@keyframes radar-spin { to { transform: rotate(360deg); } }

.ps-player {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.ps-avatar {
    width: 26px;
    height: 26px;
    background: #1a2035;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.ps-avatar.ps-you {
    border-color: var(--orange);
    box-shadow: 0 0 8px rgba(255,107,0,0.4);
}

.ps-player span { font-size: 0.42rem; color: var(--text-sub); }

.ps-vote-btn {
    margin: 4px 8px;
    background: linear-gradient(135deg, var(--orange), #c55000);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-align: center;
    padding: 7px;
    border-radius: 8px;
}

.ps-mic-bar {
    margin: 4px 8px 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.5rem;
    color: var(--text-muted);
    padding: 6px;
}

/* ===== PROFILE SCREEN CONTENT ===== */
.pp-avatar-wrap {
    display: flex;
    justify-content: center;
    margin: 16px 0 8px;
    position: relative;
    width: fit-content;
    align-self: center;
}

.pp-avatar {
    width: 52px;
    height: 52px;
    background: radial-gradient(circle, #2a3550, #141e30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.pp-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    animation: ring-pulse 2.5s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.pp-name {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.pp-edit {
    text-align: center;
    font-size: 0.45rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pp-stats {
    display: flex;
    justify-content: space-around;
    padding: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin: 0 4px 8px;
}

.pp-stat { text-align: center; }
.pp-stat strong { display: block; font-size: 0.75rem; color: #fff; }
.pp-stat span { font-size: 0.4rem; color: var(--text-muted); }

.pp-game-stats {
    display: flex;
    gap: 4px;
    padding: 0 6px;
    margin-bottom: 8px;
}

.pp-gs {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 5px;
    text-align: center;
}
.pp-gs strong { display: block; font-size: 0.6rem; color: #fff; }
.pp-gs span { font-size: 0.38rem; color: var(--text-muted); }
.pp-gs-orange strong { color: var(--orange); }
.pp-gs-gold strong { color: var(--gold); }

.pp-avatars-label {
    font-size: 0.5rem;
    color: var(--text-muted);
    text-align: right;
    padding: 0 8px;
    margin-bottom: 4px;
}

.pp-avatars-row {
    display: flex;
    gap: 4px;
    padding: 0 6px;
}

.pp-av {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 1.5px solid transparent;
}

.pp-av.active {
    border-color: var(--orange);
    background: rgba(255,107,0,0.15);
    box-shadow: 0 0 8px rgba(255,107,0,0.3);
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 14px;
    backdrop-filter: blur(12px);
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

.float-card-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-card .float-icon { font-size: 1.2rem; }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-size: 0.8rem; color: #fff; }
.float-card small { font-size: 0.68rem; color: var(--text-muted); }
.float-rank { font-size: 1.1rem; margin-right: 4px; }
.active-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    margin-right: 4px;
    animation: pulse-dot 2s infinite;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    transition: opacity var(--transition);
    z-index: 2;
}

.scroll-down:hover { opacity: 1; }

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scroll-anim 1.6s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ==============================
   FEATURES
   ============================== */
.features-section {
    padding: 120px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,107,0,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,0,0.1);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--orange-dim);
    border: 1px solid rgba(255,107,0,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ==============================
   HOW IT WORKS
   ============================== */
.hiw-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-2);
    overflow: hidden;
}

.hiw-section::before, .hiw-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}
.hiw-section::before { top: 0; }
.hiw-section::after { bottom: 0; }

.hiw-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hiw-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.hiw-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.hiw-step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange) 0%, #c55000 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255,107,0,0.35);
    flex-shrink: 0;
}

.hiw-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    width: 100%;
    transition: border-color var(--transition), transform var(--transition);
}

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

.hiw-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin: 0 auto 16px;
}

.hiw-step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.hiw-step-card p {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.7;
}

.hiw-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    margin-top: 24px;
    flex-shrink: 0;
    opacity: 0.4;
}

/* ==============================
   SHOWCASE
   ============================== */
.showcase-section {
    padding: 100px 0;
}

.showcase-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.showcase-cards::-webkit-scrollbar { display: none; }

.showcase-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    scroll-snap-align: start;
    transition: border-color var(--transition), transform var(--transition);
}

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

.sc-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.showcase-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.showcase-card p {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* ==============================
   ABOUT
   ============================== */
.about-section {
    padding: 80px 0;
    background: var(--bg-2);
    position: relative;
}

.about-section::before, .about-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.about-section::before { top: 0; }
.about-section::after { bottom: 0; }

.about-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-sub);
    border-radius: 28px;
    padding: 56px 64px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-icon { font-size: 4rem; flex-shrink: 0; }

.about-content .section-tag { margin-bottom: 12px; }

.about-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.about-content p {
    font-size: 0.93rem;
    color: var(--text-sub);
    line-height: 1.85;
}

/* ==============================
   DOWNLOAD
   ============================== */
.download-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.download-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(255,193,7,0.04) 100%);
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: 32px;
    padding: 72px 80px;
    position: relative;
    overflow: hidden;
}

.download-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b00' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.download-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.download-text > p {
    font-size: 1.05rem;
    color: var(--text-sub);
    margin-bottom: 36px;
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.store-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.store-btn-icon { width: 36px; height: 36px; flex-shrink: 0; }

.store-btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.store-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.store-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.download-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Download Visual */
.download-visual {
    position: relative;
    width: 180px;
    height: 340px;
    flex-shrink: 0;
}

.dv-phone {
    width: 180px;
    height: 340px;
    background: linear-gradient(145deg, #1e2538, #0f1520);
    border-radius: 32px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.dv-screen {
    height: 100%;
    background: #060b14;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dv-screen-content { text-align: center; padding: 20px; }

.dv-header {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.dv-game-icon { font-size: 2.5rem; margin-bottom: 8px; }

.dv-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.dv-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.dv-install-btn {
    background: linear-gradient(135deg, var(--orange), #c55000);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
}

.dv-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.dv-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,107,0,0.15);
    animation: ring-expand 3s ease-out infinite;
}

.dv-ring-1 { width: 220px; height: 220px; animation-delay: 0s; }
.dv-ring-2 { width: 300px; height: 300px; animation-delay: 1s; }
.dv-ring-3 { width: 380px; height: 380px; animation-delay: 2s; }

@keyframes ring-expand {
    0% { opacity: 0.6; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(1.2); }
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-sub);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-btn:hover {
    background: var(--orange-dim);
    border-color: var(--border);
    color: var(--orange);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li, .footer-contact li { margin-bottom: 12px; }

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--orange); }

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.contact-link:hover { color: var(--orange-light); }

.contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border-sub);
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-bottom-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--orange); }

/* ==============================
   FLOATING CTA
   ============================== */
.floating-cta {
    position: fixed;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), #c55000);
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 100px;
    box-shadow: 0 8px 28px rgba(255,107,0,0.45);
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta:hover {
    box-shadow: 0 14px 36px rgba(255,107,0,0.6);
    transform: translateY(-2px);
}

/* ==============================
   SCROLL REVEAL
   ============================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid children */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.3s; }

.hiw-steps .hiw-step:nth-child(1) { transition-delay: 0.05s; }
.hiw-steps .hiw-step:nth-child(3) { transition-delay: 0.15s; }
.hiw-steps .hiw-step:nth-child(5) { transition-delay: 0.25s; }

.showcase-cards .showcase-card:nth-child(1) { transition-delay: 0.05s; }
.showcase-cards .showcase-card:nth-child(2) { transition-delay: 0.1s; }
.showcase-cards .showcase-card:nth-child(3) { transition-delay: 0.15s; }
.showcase-cards .showcase-card:nth-child(4) { transition-delay: 0.2s; }
.showcase-cards .showcase-card:nth-child(5) { transition-delay: 0.25s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-card { padding: 40px 48px; }
    .download-inner { padding: 56px 48px; gap: 48px; }
    .footer-grid { gap: 40px; }
}

@media (max-width: 900px) {
    .hiw-steps { flex-direction: column; align-items: center; }
    .hiw-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--orange), transparent); margin: 0; }
    .hiw-step { max-width: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    /* Nav mobile */
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 80vw);
        height: 100dvh;
        background: #0d1525;
        border-left: 1px solid var(--border-sub);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--nav-h) + 20px) 24px 40px;
        gap: 4px;
        transition: right var(--transition);
        z-index: 1000;
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    }

    .nav-menu.open { right: 0; }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-download-btn { width: 100%; text-align: center; justify-content: center; margin-top: 12px; }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-badge { justify-content: center; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-numbers { justify-content: center; }

    .hero-phones { justify-content: center; }
    .float-card-1 { left: 0; }
    .float-card-2 { right: 0; }

    /* Sections */
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-card { flex-direction: column; text-align: center; padding: 40px 28px; gap: 24px; }
    .download-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
    .download-visual { display: none; }
    .store-buttons { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { justify-content: center; text-align: center; }

    .floating-cta { bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px); }
    .floating-cta.visible { transform: translateX(-50%) translateY(0); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-phones { transform: scale(0.85); transform-origin: center top; }
    .phone-shell { width: 200px; height: 410px; }
    .phone-shell-sm { width: 165px; height: 340px; }
    .hero-numbers { flex-wrap: wrap; gap: 16px; }
    .num-item { padding: 0 12px; }
    .hiw-step-card { padding: 20px 16px; }
    .showcase-card { min-width: 150px; }
    .btn { padding: 12px 22px; font-size: 0.88rem; }
}
