/* ========================================================
   lucide.gg — Styles
   ======================================================== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #141414;
    --bg-card-border: rgba(255, 255, 255, 0.06);
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --accent-subtle: rgba(59, 130, 246, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-muted: rgba(255, 255, 255, 0.35);
    --font-display: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --header-height: 64px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    position: relative;
    isolation: isolate;
    font-family: var(--font-body);
    background: linear-gradient(180deg, #060b14 0%, #09111e 44%, #0a1525 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.9;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 24%, rgba(37, 99, 235, 0.26), transparent 0 26%),
        radial-gradient(circle at 82% 16%, rgba(96, 165, 250, 0.18), transparent 0 24%),
        radial-gradient(circle at 18% 74%, rgba(29, 78, 216, 0.14), transparent 0 24%),
        radial-gradient(circle at 78% 58%, rgba(14, 165, 233, 0.08), transparent 0 28%);
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

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

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    z-index: 10000;
    transition: none;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 12px var(--accent-glow);
}

/* ========================================================
   Header
   ======================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-bottom-color: var(--bg-card-border);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link--status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Status ping */
.status-ping {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
}

.status-ping--sm {
    width: 8px;
    height: 8px;
}

.status-ping__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    z-index: 1;
}

.status-ping--sm .status-ping__dot {
    width: 6px;
    height: 6px;
}

.status-ping__ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-login {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}

.header-login:hover {
    color: var(--text-primary);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #ffffff;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.btn-discord:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
    opacity: 0.92;
}

.btn-bonus-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(17, 30, 52, 0.98), rgba(9, 17, 31, 0.98));
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.btn-bonus-header:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.32);
    box-shadow: 0 10px 24px rgba(2, 8, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-bonus-header__spark {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
    flex: 0 0 auto;
}

.btn-bonus-header__label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-bonus-header__text--primary {
    color: #f8fafc;
}

.btn-bonus-header__text--accent {
    color: #60a5fa;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    padding: 32px 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-menu__divider {
    height: 1px;
    background: var(--bg-card-border);
    margin: 8px 0;
}

/* ========================================================
   Hero Section
   ======================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 48px) 0 80px;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* Hero reveal animation */
.hero-reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--delay, 0) * 0.12s + 0.2s);
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Status Pill */
.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px 7px 12px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    width: fit-content;
    letter-spacing: 0.01em;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title--muted {
    color: var(--text-muted);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat__value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-stat__label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat__divider {
    width: 1px;
    height: 36px;
    background: var(--bg-card-border);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    background-image: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    box-shadow: 0 2px 12px var(--accent-glow);
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn--primary:hover::after {
    left: 120%;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow);
}

.btn--outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.02);
}

/* Terminal Card */
.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.terminal-card {
    width: 100%;
    max-width: 480px;
    background: #0d0d0d;
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--bg-card-border);
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.terminal-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.terminal-dot--red { background: #ff5f57; }
.terminal-dot--yellow { background: #ffbd2e; }
.terminal-dot--green { background: #28c840; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-muted);
    margin-left: auto;
}

.terminal-body {
    padding: 20px;
    min-height: 220px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.8;
}

.terminal-line {
    opacity: 0;
    animation: heroReveal 0.3s ease forwards;
    white-space: nowrap;
    overflow: hidden;
}

.terminal-line .prompt {
    color: var(--accent-light);
}

.terminal-line .cmd {
    color: var(--text-primary);
}

.terminal-line .flag {
    color: #f59e0b;
}

.terminal-line .output {
    color: var(--text-muted);
}

.terminal-line .success {
    color: #22c55e;
}

.terminal-line .accent {
    color: var(--accent-light);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--accent-light);
    animation: cursorBlink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

/* ========================================================
   Sections — Shared
   ======================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 15.5px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================================
   Why Us Section
   ======================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-right {
    display: flex;
    flex-direction: column;
}

.why-card--support {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-card--small {
    padding: 28px;
}

.why-card__stat {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card__online-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
}

.why-card__online-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.why-card {
    background: linear-gradient(165deg, #161616, #0e0e0e);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
    opacity: 0;
    transform: translateY(24px);
    will-change: transform;
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.why-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 32px rgba(59, 130, 246, 0.06), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.why-card__icon-row {
    margin-bottom: 20px;
}

.why-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.why-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Payment Marquee */
.payment-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    padding: 8px 0;
}

.payment-marquee__track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.payment-logo {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.payment-logo:hover {
    opacity: 1;
}

/* Safe stat */
.safe-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.08);
    border-radius: var(--radius-md);
}

.safe-stat__shield {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safe-stat__check {
    position: absolute;
}

.safe-stat__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.safe-stat__number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: -0.02em;
}

.safe-stat__label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Delivery stat */
.delivery-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--accent-subtle);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-md);
}

.delivery-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glowPulse 2s ease-in-out infinite;
}

.delivery-stat__value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

.delivery-stat__label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Ticket Panel */
.ticket-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ticket-panel__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--bg-card-border);
}

.ticket-panel__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.ticket-panel__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ticket-panel__row:last-child {
    border-bottom: none;
}

.ticket-panel__id {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.ticket-panel__subject {
    color: var(--text-secondary);
    flex: 1;
    font-weight: 500;
}

.ticket-panel__badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ticket-panel__badge--resolved {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.ticket-panel__badge--open {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* ========================================================
   Products Section
   ======================================================== */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid transparent;
    border-radius: 8px;
    transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.filter-btn.active {
    color: var(--text-primary);
    background: var(--accent-subtle);
    border-color: rgba(59, 130, 246, 0.15);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Product Card */
.product-card {
    position: relative;
    background: rgba(13, 21, 37, 0.74);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.product-card::before {
    display: none;
}

.product-card:hover::before {
    background-position: 100%;
}

.product-card:hover {
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.product-card__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 56%;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__image {
    transform: scale(1.02);
}

.product-card__image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #161616, #0e0e0e);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -0.02em;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 8px;
    z-index: 2;
}

.product-card__badge--popular {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-light);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.product-card__badge--new {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.product-card__badge--updated {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.product-card__badge--exclusive {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.product-card__badge--bestseller {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-light);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.product-card__body {
    padding: 18px;
    position: relative;
    z-index: 2;
}

.product-card__game {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-family: var(--font-mono);
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.product-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.product-card__price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    color: var(--accent-light);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.product-card__cta:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: none;
}

/* ========================================================
   FAQ Section
   ======================================================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    background: linear-gradient(165deg, rgba(22, 22, 22, 0.6), rgba(14, 14, 14, 0.4));
    overflow: hidden;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.faq-item.open::before {
    opacity: 1;
}

.faq-item.open {
    border-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer__inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================================
   Footer
   ======================================================== */
.footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--bg-card-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--accent) 50%, transparent 95%);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand__desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col__title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.footer-link {
    font-size: 13.5px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    width: fit-content;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--bg-card-border);
}

.footer-copy {
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.footer-social:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

/* ========================================================
   Keyframes
   ======================================================== */
@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120px) translateX(20px);
        opacity: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 4px var(--accent-glow));
    }
    50% {
        filter: drop-shadow(0 0 12px var(--accent-glow));
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes shimmerSweep {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================================
   Responsive
   ======================================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        justify-content: center;
    }

    .terminal-card {
        max-width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-nav,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding-top: calc(var(--header-height) + 32px);
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat__value {
        font-size: 18px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-bottom-row {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .product-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .section {
        padding: 72px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand__desc {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-stat__divider {
        display: none;
    }

    .hero-stat {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-answer__inner {
        padding: 0 18px 16px;
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
