/* =====================================================================
   DarkWare — Landing styles
   Design system + sections.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
    --bg-0:           #07060B;
    --bg-1:           #0A0A0F;
    --bg-2:           #11101A;
    --bg-3:           #1A1825;

    --violet:         #8A2BE2;
    --neon:           #BF00FF;
    --pink:           #FF00E5;
    --green:          #00FF94;
    --red:            #FF3860;

    --text-1:         #F5F2FA;
    --text-2:         #B8B4C7;
    --text-3:         #6E6A80;
    --text-mute:      #4A4759;

    --glass-bg:       rgba(20, 14, 32, 0.55);
    --glass-bg-soft:  rgba(20, 14, 32, 0.35);
    --glass-border:   rgba(191, 0, 255, 0.18);
    --glass-border-2: rgba(255, 255, 255, 0.06);

    --glow-sm:        0 0 24px rgba(191, 0, 255, 0.25);
    --glow-md:        0 0 48px rgba(191, 0, 255, 0.35);
    --glow-lg:        0 0 96px rgba(191, 0, 255, 0.45);
    --shadow-deep:    0 24px 64px rgba(0, 0, 0, 0.6);
    --shadow-card:    0 12px 32px rgba(0, 0, 0, 0.5),
                      inset 0 1px 0 rgba(255, 255, 255, 0.05);

    --grad-primary:   linear-gradient(135deg, #BF00FF 0%, #8A2BE2 100%);
    --grad-hot:       linear-gradient(135deg, #FF00E5 0%, #BF00FF 50%, #8A2BE2 100%);
    --grad-text:      linear-gradient(135deg, #FF7BFB 0%, #BF00FF 50%, #8A2BE2 100%);

    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-pill: 999px;

    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
    --ease-quick:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg-0);
    color: var(--text-1);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(191, 0, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(138, 43, 226, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 70%, rgba(255, 0, 229, 0.05) 0%, transparent 60%);
}

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
    body, a, button, .pricing-card, .bento-card, .video-play, [role="button"] {
        cursor: none;
    }
    /* Keep native I-beam where text selection matters */
    input, textarea, [contenteditable="true"] {
        cursor: text;
    }
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    will-change: transform;
    mix-blend-mode: screen;
    transform: translate3d(-100px, -100px, 0);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: #FFE9FF;
    box-shadow:
        0 0 8px rgba(255, 0, 229, 0.95),
        0 0 18px rgba(191, 0, 255, 0.85),
        0 0 32px rgba(138, 43, 226, 0.55);
    transition: transform 0.04s linear, opacity 0.25s ease;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 1.5px solid rgba(191, 0, 255, 0.55);
    box-shadow:
        0 0 16px rgba(191, 0, 255, 0.35),
        inset 0 0 8px rgba(191, 0, 255, 0.15);
    transition:
        width 0.3s var(--ease),
        height 0.3s var(--ease),
        margin 0.3s var(--ease),
        border-color 0.3s ease,
        background 0.3s ease,
        opacity 0.25s ease;
}

.cursor-ring.cursor-hover {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    border-color: rgba(255, 0, 229, 0.85);
    background: rgba(191, 0, 255, 0.08);
    box-shadow:
        0 0 28px rgba(255, 0, 229, 0.55),
        inset 0 0 16px rgba(191, 0, 255, 0.25);
}

.cursor-ring.cursor-active {
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border-color: rgba(255, 0, 229, 1);
}

.cursor-dot.cursor-hidden,
.cursor-ring.cursor-hidden {
    opacity: 0;
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

a { color: inherit; text-decoration: none; }
button { border: 0; background: 0; font: inherit; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* When custom cursor is inactive (touch / coarse pointer), re-enable native pointer feedback */
@media (hover: none), (pointer: coarse) {
    button, a, .pricing-card, .bento-card, .video-play, [role="button"] {
        cursor: pointer;
    }
}

/* ---------- Ambient layers ---------- */
#particles {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.grid-overlay {
    position: fixed; inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(191, 0, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191, 0, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 0%, transparent 80%);
}

.aurora {
    position: fixed; inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.55;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
}
.aurora .a1 {
    width: 700px; height: 700px;
    top: -200px; left: -150px;
    background: radial-gradient(circle, rgba(191, 0, 255, 0.5), transparent 70%);
    animation: floatBlob 22s ease-in-out infinite;
}
.aurora .a2 {
    width: 600px; height: 600px;
    top: 30%; right: -100px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4), transparent 70%);
    animation: floatBlob 28s ease-in-out infinite reverse;
}
.aurora .a3 {
    width: 550px; height: 550px;
    bottom: -150px; left: 35%;
    background: radial-gradient(circle, rgba(255, 0, 229, 0.3), transparent 70%);
    animation: floatBlob 26s ease-in-out infinite;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(60px, -40px) scale(1.08); }
    66%      { transform: translate(-40px, 50px) scale(0.94); }
}

/* ---------- Layout helpers ---------- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--glass-border-2);
    box-shadow: var(--shadow-card);
    position: relative;
}
.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(191, 0, 255, 0.35) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 80%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
            mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* ---------- Typography ---------- */
.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradShift 8s ease infinite;
}
@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--neon);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.85;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-2);
    font-size: 17px;
    line-height: 1.6;
}

.mono { font-family: 'JetBrains Mono', monospace; }
.text-green { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}
.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}
.btn-block { width: 100%; }
.btn-arrow {
    transition: transform 0.3s var(--ease);
    display: inline-block;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow:
        0 8px 24px rgba(191, 0, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 36px rgba(191, 0, 255, 0.55),
        0 0 60px rgba(191, 0, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-1);
    border: 1px solid rgba(191, 0, 255, 0.25);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(191, 0, 255, 0.1);
    border-color: rgba(191, 0, 255, 0.5);
    color: #fff;
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.25);
}

.play-icon {
    display: inline-flex;
    width: 24px; height: 24px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--neon);
    color: #fff;
    font-size: 9px;
    box-shadow: 0 0 16px rgba(191, 0, 255, 0.6);
}

/* ---------- Pulse dot ---------- */
.dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 4px;
    flex-shrink: 0;
}
.dot-green {
    background: var(--green);
    box-shadow: 0 0 12px var(--green), 0 0 24px rgba(0, 255, 148, 0.5);
    animation: pulseGreen 2s ease-in-out infinite;
}
.dot-red {
    background: var(--red);
    box-shadow: 0 0 12px var(--red);
    animation: pulseGreen 1.5s ease-in-out infinite;
}
@keyframes pulseGreen {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.85); }
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 24px; left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 12px 12px 12px 24px;
    background: rgba(10, 8, 16, 0.7);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-pill);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease);
}
.nav.scrolled {
    background: rgba(7, 6, 11, 0.85);
    box-shadow:
        0 16px 64px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(191, 0, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 16px;
    color: var(--text-1);
    transition: filter 0.3s var(--ease);
}
.logo:hover {
    filter: brightness(1.1);
}
.logo-mark {
    width: 32px; height: 32px;
    color: #FFFFFF;
    filter:
        drop-shadow(0 0 6px rgba(191, 0, 255, 0.55))
        drop-shadow(0 0 14px rgba(255, 0, 229, 0.35));
    transition: transform 0.5s var(--ease), filter 0.3s var(--ease);
}
.logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.05);
    filter:
        drop-shadow(0 0 8px rgba(191, 0, 255, 0.85))
        drop-shadow(0 0 22px rgba(255, 0, 229, 0.55));
}
.logo-accent {
    background: var(--grad-text);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
}
.nav-links a {
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--text-1);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--grad-primary);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-tail {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(191, 0, 255, 0.22);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    backdrop-filter: blur(10px);
    user-select: none;
}
.lang-toggle:hover {
    background: rgba(191, 0, 255, 0.1);
    border-color: rgba(191, 0, 255, 0.5);
    box-shadow: 0 0 24px rgba(191, 0, 255, 0.25);
}
.lang-opt {
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.25s var(--ease);
    color: var(--text-3);
}
.lang-opt.active {
    color: #fff;
    background: var(--grad-primary);
    box-shadow: 0 0 12px rgba(191, 0, 255, 0.5);
}
.lang-sep {
    color: var(--text-mute);
    font-weight: 400;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 200px 24px 120px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 100vh;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    background: rgba(191, 0, 255, 0.08);
    border: 1px solid rgba(191, 0, 255, 0.25);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-2);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}
.hero-pill:hover {
    background: rgba(191, 0, 255, 0.15);
    border-color: rgba(191, 0, 255, 0.45);
    box-shadow: 0 0 24px rgba(191, 0, 255, 0.3);
    transform: translateY(-1px);
}
.pill-sep { color: var(--text-mute); }

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-2);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}
.trust-item b {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.5px;
}
.trust-item .unit {
    font-size: 14px;
    color: var(--text-3);
    margin-left: 4px;
    font-weight: 500;
}
.trust-item span {
    display: block;
    font-size: 12px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}
.trust-divider {
    width: 1px; height: 32px;
    background: linear-gradient(180deg, transparent, rgba(191, 0, 255, 0.3), transparent);
}

/* Hero visual */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 520px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-orbits {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(191, 0, 255, 0.12);
}
.orbit.o1 {
    inset: 5%;
    animation: orbit 30s linear infinite;
    border-style: dashed;
    border-color: rgba(191, 0, 255, 0.18);
}
.orbit.o2 {
    inset: 12%;
    animation: orbit 22s linear infinite reverse;
}
.orbit.o3 {
    inset: 22%;
    background: radial-gradient(circle, rgba(191, 0, 255, 0.08) 0%, transparent 60%);
    animation: pulseSoft 4s ease-in-out infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes pulseSoft {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 0.9; transform: scale(1.04); }
}

.hero-chip {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 60px rgba(191, 0, 255, 0.4));
    animation: chipFloat 6s ease-in-out infinite;
}
@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.chip-ring {
    transform-origin: 240px 240px;
    animation: orbit 18s linear infinite;
}
.chip-ring-rev {
    animation: orbit 24s linear infinite reverse;
}

.hero-scrollhint {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-mute);
    text-transform: uppercase;
}
.scrollhint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--neon), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%   { transform: translateY(-10px); opacity: 0; }
    50%  { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ---------- Ticker ---------- */
.ticker {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid rgba(191, 0, 255, 0.15);
    border-bottom: 1px solid rgba(191, 0, 255, 0.15);
    background: rgba(10, 8, 16, 0.5);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    margin: 32px 0 0;
}
.ticker-track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    animation: tickerMove 40s linear infinite;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-2);
    text-transform: uppercase;
}
.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
@keyframes tickerMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Status card ---------- */
.status {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 40px;
}
.status-card {
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.status-left {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 280px;
}
.status-eyebrow {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.status-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
}
.status-pulse {
    position: relative;
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}
.status-pulse-core {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 24px var(--green), 0 0 8px var(--green) inset;
    z-index: 2;
}
.status-pulse-ring {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid var(--green);
    animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
    0%   { transform: scale(1);   opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 32px;
}
.status-grid .status-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.status-grid .status-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

/* ---------- Features (Bento) ---------- */
.features {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px;
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 20px;
}

.bento-card {
    position: relative;
    padding: 32px;
    border-radius: var(--r-lg);
    background: var(--glass-bg-soft);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--glass-border-2);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(191, 0, 255, 0.3), transparent 50%, rgba(191, 0, 255, 0.1));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
            mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0.6;
}
.bento-card::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(191, 0, 255, 0.18) 0%, transparent 60%);
    top: var(--my, 50%); left: var(--mx, 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s;
    z-index: -1;
}
.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(191, 0, 255, 0.35);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.6),
        0 0 48px rgba(191, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover::after  { opacity: 1; }

.bento-lg   { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-full { grid-column: span 3; }
.bento-full .bento-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* "Hardware required" badge under aimbot title */
.bento-badge-req {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    margin-top: -6px;
    align-self: flex-start;
    border-radius: var(--r-pill);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neon);
    background: rgba(191, 0, 255, 0.1);
    border: 1px solid rgba(191, 0, 255, 0.4);
    box-shadow: 0 0 16px rgba(191, 0, 255, 0.18);
}
.bento-badge-req::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon);
}

.bento-icon {
    width: 56px; height: 56px;
    display: grid;
    place-items: center;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(191, 0, 255, 0.12), rgba(138, 43, 226, 0.04));
    border: 1px solid rgba(191, 0, 255, 0.25);
    color: var(--neon);
    flex-shrink: 0;
    box-shadow: 0 0 24px rgba(191, 0, 255, 0.15) inset;
    transition: all 0.3s var(--ease);
}
.bento-icon svg {
    width: 28px; height: 28px;
    filter: drop-shadow(0 0 8px rgba(191, 0, 255, 0.8));
    transition: filter 0.3s;
}
.bento-card:hover .bento-icon {
    border-color: var(--neon);
    background: linear-gradient(135deg, rgba(191, 0, 255, 0.22), rgba(138, 43, 226, 0.08));
    transform: scale(1.05);
}
.bento-card:hover .bento-icon svg {
    filter: drop-shadow(0 0 14px rgba(191, 0, 255, 1));
    animation: flicker 0.6s steps(1);
}
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.4; }
}

.bento-lg .bento-icon {
    width: 72px; height: 72px;
}
.bento-lg .bento-icon svg {
    width: 36px; height: 36px;
}

.bento-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.bento-lg .bento-title {
    font-size: 32px;
}
.bento-desc {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}
.bento-lg .bento-desc {
    font-size: 16px;
    max-width: 540px;
}
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.bento-tags li {
    padding: 4px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-2);
    background: rgba(191, 0, 255, 0.06);
    border: 1px solid rgba(191, 0, 255, 0.18);
    border-radius: var(--r-pill);
}

.bento-wide .bento-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

/* ---------- Showcase ---------- */
.showcase {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}
.video-frame {
    border-radius: var(--r-xl);
    padding: 24px;
    position: relative;
}
.video-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: var(--grad-hot);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
            mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    background-size: 200% 200%;
    animation: gradShift 6s linear infinite;
    opacity: 0.7;
}
.video-bezel {
    position: relative;
    border-radius: var(--r-lg);
    background: #050208;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(191, 0, 255, 0.4),
        inset 0 0 60px rgba(191, 0, 255, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.7);
}
.video-screen {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(191, 0, 255, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #110820 0%, #08040E 100%);
}
.video-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.video-scanlines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.02) 50%);
    background-size: 100% 4px;
    opacity: 0.5;
    pointer-events: none;
}
.video-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}
.video-hud-tl, .video-hud-tr, .video-hud-bl, .video-hud-br {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.video-hud-tl { top: 20px; left: 20px; }
.video-hud-tr { top: 20px; right: 20px; flex-direction: column; align-items: flex-end; gap: 4px; }
.video-hud-tr b { color: var(--neon); }
.video-hud-bl { bottom: 20px; left: 20px; }
.video-hud-br { bottom: 20px; right: 20px; }
.video-play {
    width: 96px; height: 96px;
    transition: all 0.3s var(--ease);
    filter: drop-shadow(0 0 32px rgba(191, 0, 255, 0.5));
}
.video-play:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 48px rgba(191, 0, 255, 0.8));
}

/* ---------- Pricing ---------- */
.pricing {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 32px;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: all 0.4s var(--ease);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(191, 0, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.pricing-card-featured {
    background: linear-gradient(180deg, rgba(40, 10, 60, 0.7), rgba(20, 10, 32, 0.85));
    transform: scale(1.04);
}
.pricing-card-featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: var(--grad-hot);
    background-size: 200% 200%;
    animation: gradShift 4s linear infinite;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
            mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}
.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    border-radius: var(--r-pill);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    background: var(--grad-hot);
    background-size: 200% 200%;
    animation: gradShift 3s linear infinite;
    box-shadow:
        0 8px 24px rgba(255, 0, 229, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    z-index: 2;
}
.badge-glow {
    position: absolute;
    inset: -8px;
    border-radius: var(--r-pill);
    background: var(--grad-hot);
    filter: blur(16px);
    opacity: 0.5;
    z-index: -1;
}

.pricing-head h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-head p {
    color: var(--text-3);
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-family: 'Rajdhani', sans-serif;
}
.price-currency {
    font-size: 28px;
    color: var(--text-2);
    margin-top: 8px;
}
.price-amount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-1);
    letter-spacing: -2px;
}
.pricing-card-featured .price-amount {
    background: var(--grad-text);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}
.price-period {
    margin-left: 6px;
    margin-top: auto;
    font-size: 14px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 14px;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(191, 0, 255, 0.15);
    border: 1px solid rgba(191, 0, 255, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8 L7 12 L13 4' stroke='%23BF00FF' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pricing-foot {
    text-align: center;
    color: var(--text-3);
    font-size: 13px;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Why Us ---------- */
.why {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.why-stat {
    padding: 28px;
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s var(--ease);
}
.why-stat:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 32px rgba(191, 0, 255, 0.18);
}
.why-stat-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--neon);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}
.why-stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}
.why-stat-value .unit {
    font-size: 22px;
    margin-left: 4px;
    -webkit-text-fill-color: var(--text-3);
}
.why-stat-label {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}

.why-cta {
    padding: 40px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.why-cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}
.why-cta-sub {
    color: var(--text-2);
    font-size: 15px;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(191, 0, 255, 0.1);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}
.footer-brand .logo {
    margin-bottom: 16px;
}
.footer-tagline {
    color: var(--text-3);
    font-size: 14px;
    max-width: 280px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-cols a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-2);
    transition: color 0.2s;
}
.footer-cols a:hover { color: var(--text-1); }
.footer-col-title {
    display: block;
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--neon);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 1.5px;
}

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-stagger="1"] { transition-delay: 0.08s; }
.reveal[data-stagger="2"] { transition-delay: 0.16s; }
.reveal[data-stagger="3"] { transition-delay: 0.24s; }
.reveal[data-stagger="4"] { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 160px 24px 80px;
        gap: 48px;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions  { justify-content: center; }
    .hero-trust    { justify-content: center; }
    .hero-visual   { max-width: 420px; margin: 0 auto; }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-lg, .bento-wide, .bento-full {
        grid-column: span 2;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-6px); }
    .why-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
    .nav {
        padding: 10px 10px 10px 18px;
        gap: 16px;
    }
    .nav-links { display: none; }
    .status-card { flex-direction: column; align-items: flex-start; padding: 24px; }
    .status-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; width: 100%; }
    .bento { grid-template-columns: 1fr; }
    .bento-lg, .bento-wide, .bento-full { grid-column: span 1; }
    .why-stats { grid-template-columns: 1fr; }
    .why-cta { flex-direction: column; text-align: center; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
}
