:root {
    --green:      #2ecc71;
    --green-dim:  #27ae60;
    --green-glow: rgba(46, 204, 113, 0.15);
    --bg:         #0a0a0a;
    --bg-card:    #141414;
    --bg-card2:   #1a1a1a;
    --border:     rgba(255,255,255,0.07);
    --border-h:   rgba(255,255,255,0.15);
    --text:       #f2f2f2;
    --text2:      #888;
    --text3:      #444;
    --sp: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --spring-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    --smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-h: 60px;
    --max: 1100px;
    --gut: clamp(1.25rem, 5vw, 3rem);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
    -webkit-text-size-adjust:100%;
}
body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; height:auto; }
button { cursor:none; border:none; background:none; color:inherit; font:inherit; }
.contain { max-width:var(--max); margin:0 auto; padding:0 var(--gut); }

.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--spring), height 0.3s var(--spring), background 0.3s var(--sp), opacity 0.3s var(--sp);
    mix-blend-mode: difference;
    will-change: transform;
}
.custom-cursor.hover {
    width: 40px; height: 40px;
    background: rgba(46, 204, 113, 0.3);
}
.custom-cursor.hover-green {
    width: 6px; height: 6px;
    background: var(--green);
}
.custom-cursor-outer {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border: 1px solid rgba(46, 204, 113, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--spring), height 0.4s var(--spring), border-color 0.3s var(--sp), border-width 0.3s var(--sp), opacity 0.3s var(--sp), scale 0.3s var(--spring);
    will-change: transform;
}
.custom-cursor-outer.hover {
    width: 56px; height: 56px;
    border-color: rgba(46, 204, 113, 0.15);
}
.custom-cursor-outer.hover-btn {
    width: 64px; height: 64px;
    border-color: var(--green);
    border-width: 2px;
}
.custom-cursor-outer.hover-link {
    width: 48px; height: 48px;
    border-color: rgba(46, 204, 113, 0.4);
}

@media (pointer: coarse), (max-width: 768px) {
    .custom-cursor, .custom-cursor-outer { display: none; }
    body, button { cursor: auto; }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50% }
    25%  { background-position: 100% 50% }
    50%  { background-position: 100% 0% }
    75%  { background-position: 0% 100% }
    100% { background-position: 0% 50% }
}
@keyframes ctaPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1) }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15) }
}

@keyframes rippleExpand {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.5 }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0 }
}
.btn-ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    animation: rippleExpand 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;

    }
    .custom-cursor, .custom-cursor-outer { display: none; }
    body, button { cursor: auto; }
    .hero-gradient-mesh { animation: none !important; }
}

.nav {
    position: fixed;
    top:0; left:0; right:0;
    height: var(--nav-h);
    z-index: 100;
    background: transparent;
    transition: background 0.4s var(--sp), border-color 0.4s var(--sp), backdrop-filter 0.4s var(--sp), -webkit-backdrop-filter 0.4s var(--sp);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(10,10,10,0.75);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom-color: var(--border);
}
.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gut);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Sora', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: opacity 0.3s var(--sp);
}
.nav-logo:hover { opacity: 0.8 }
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
    position: relative;
}
.nav-links a {
    font-size: 0.875rem;
    color: var(--text2);
    transition: color 0.3s var(--sp), transform 0.35s var(--spring);
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--spring);
    pointer-events: none;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}
.nav-links a:hover {
    color: var(--green);
    transform: translateY(-2px);
}
.nav-links a.active { color: var(--green) }

.nav-indicator {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
    transition: left 0.35s var(--smooth), width 0.35s var(--smooth), opacity 0.3s var(--sp);
    opacity: 0;
    pointer-events: none;
}
.nav-indicator.visible {
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
    flex-shrink: 0;
}
.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(46,204,113,0.4);
    border-radius: 20px;
    transition: background 0.3s var(--sp), transform 0.4s var(--spring-bounce), box-shadow 0.5s var(--sp), border-color 0.3s var(--sp), color 0.3s var(--sp);
}
.nav-cta:hover {
    background: var(--green-glow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,204,113,0.15);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    width: 32px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.4s var(--spring), opacity 0.3s var(--sp);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-toggle.open span:nth-child(2) { opacity:0 }

.nav-account { position: relative; display: flex; align-items: center; }
.nav-login-btn { font-size: 0.8rem; font-weight: 600; color: var(--text2); padding: 0.35rem 0.75rem; border: 1px solid var(--border); border-radius: 20px; transition: color 0.25s var(--sp), border-color 0.25s var(--sp), background 0.25s var(--sp); cursor: pointer; background: transparent; }
.nav-login-btn:hover { color: var(--text); border-color: var(--border-h); background: rgba(255,255,255,0.04); }
.nav-player-btn { display: flex; align-items: center; gap: 0.45rem; padding: 0.25rem 0.6rem 0.25rem 0.25rem; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: border-color 0.25s var(--sp), background 0.25s var(--sp); background: transparent; }
.nav-player-btn:hover, .nav-player-btn.open { border-color: var(--border-h); background: rgba(255,255,255,0.04); }
.nav-player-head { width: 26px; height: 26px; border-radius: 4px; image-rendering: pixelated; display: block; }
.nav-player-name { font-size: 0.8rem; font-weight: 500; color: var(--text); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-chevron { font-size: 0.55rem; color: var(--text3); transition: transform 0.3s var(--spring); }
.nav-player-btn.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 0.5rem); right: 0; min-width: 160px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.5); opacity: 0; transform: translateY(-8px) scale(0.97); pointer-events: none; transition: opacity 0.25s var(--smooth, cubic-bezier(0.16,1,0.3,1)), transform 0.25s var(--smooth, cubic-bezier(0.16,1,0.3,1)); z-index: 200; overflow: hidden; }
.nav-dropdown.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.nav-dropdown-item { width: 100%; padding: 0.65rem 1rem; font-size: 0.82rem; color: var(--text2); display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s var(--sp), background 0.2s var(--sp); cursor: pointer; text-align: left; background: transparent; border: none; }
.nav-dropdown-item:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-dropdown-item.danger:hover { color: #fc6a6a; background: rgba(252,106,106,0.06); }

@media (max-width:700px) {
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        right: 0;
        width: 280px;
        height: calc(100vh - var(--nav-h));
        background: rgba(10,10,10,0.97);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: 2rem var(--gut);
        gap: 0;
        margin-left: 0;
        transform: translateX(100%);
        pointer-events: none;
        transition: transform 0.45s var(--smooth);
        border-left: 1px solid var(--border);
        align-items: flex-start;
    }
    .nav-links.open {
        transform: translateX(0);
        pointer-events: all;
    }
    .nav-links a {
        font-size: 1.1rem;
        opacity: 0;
        transform: translateX(20px);
        transition: color 0.3s var(--sp), opacity 0.35s var(--sp), transform 0.35s var(--smooth);
        padding: 0.75rem 0;
    }
    .nav-links.open a {
        opacity: 1;
        transform: translateX(0);
    }
    .nav-links.open a:nth-child(1) { transition-delay: 0.05s }
    .nav-links.open a:nth-child(2) { transition-delay: 0.1s }
    .nav-links.open a:nth-child(3) { transition-delay: 0.15s }
    .nav-links.open a:nth-child(4) { transition-delay: 0.2s }
    .nav-links.open a:nth-child(5) { transition-delay: 0.25s }
    .nav-indicator { display: none }
    .nav-toggle { display:flex }
    .nav-cta { display:none }
    .nav-actions { margin-left: auto }
    .nav-login-btn { font-size: 0.75rem; padding: 0.3rem 0.65rem }
}

.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 3.5rem) var(--gut) 4rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(46, 204, 113, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(46, 204, 113, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 50% 80%, rgba(39, 174, 96, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(46, 204, 113, 0.03) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-meta {
    font-size: 0.82rem;
    color: var(--text3);
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.hero-h1 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    color: var(--text);
    opacity: 0;
    transform: translateY(20px);
}

.hero-p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text2);
    max-width: 500px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
}
.hero-actions {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}
.hero-showcase {
    margin-top: 4rem;
    max-width: 920px;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
}
.hero-showcase img {
    width: 100%;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.5rem;
    background: var(--green);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background 0.25s var(--sp), transform 0.25s var(--sp);
}
.btn-primary:hover {
    background: #27ae60;
    transform: translateY(-1px);
}
.btn-primary.btn-lg { padding:0.85rem 2rem; font-size:1rem }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--border-h);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: border-color 0.25s var(--sp), color 0.25s var(--sp), background 0.25s var(--sp), transform 0.25s var(--sp);
}
.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(46,204,113,0.05);
    transform: translateY(-1px);
}
.btn-full { width:100%; justify-content:center }
.btn-disabled {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    background: var(--bg-card2);
    color: var(--text3);
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: not-allowed;
    width: 100%;
    text-align: center;
    transition: transform 0.4s var(--sp), opacity 0.3s var(--sp);
}


body > section { padding: 7rem var(--gut) }
.section-header { text-align:center; margin-bottom:3.5rem }
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.65rem;
}
.section-header h2 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.section-header p, .section-sub {
    color: var(--text2);
    font-size: 1rem;
    margin-top: 0.7rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.features { background: var(--bg) }
.features-title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    max-width: var(--max);
    margin: 0 auto 4rem;
}

.feature-row {
    max-width: var(--max);
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.feature-row.reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-text h3 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.feature-text h3 .counter { display: inline; }
.feature-text p {
    font-size: 0.98rem;
    color: var(--text2);
    line-height: 1.65;
    max-width: 42ch;
    margin-bottom: 1.2rem;
}
.feature-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.feature-visual {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-card);
}
.feature-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--smooth);
}
.feature-row:hover .feature-visual img { transform: scale(1.02); }

@media (max-width: 760px) {
    .feature-row,
    .feature-row.reverse { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 4rem; }
    .feature-row.reverse .feature-text { order: 1; }
    .feature-row.reverse .feature-visual { order: 0; }
}

.counter {
    display: inline;
}

.mods-list-block {
    max-width: var(--max);
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
}
.mods-list-label {
    font-size: 0.82rem;
    color: var(--text3);
    margin-bottom: 0.5rem;
}
.mods-list-prose {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.75;
    max-width: 760px;
}

.showcase {
    background: var(--bg);
    padding-bottom: 0;
}

.horizontal-scroll-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.horizontal-scroll-track {
    display: flex;
    gap: 1.5rem;
    padding: 2rem var(--gut) 5rem;
    will-change: transform;
}

.hs-item {
    flex: 0 0 auto;
    width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s var(--sp), box-shadow 0.5s var(--sp), transform 0.4s var(--spring-bounce), filter 0.3s var(--sp);
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
}

.hs-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(46,204,113,0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--sp);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 14px 14px;
}
.hs-item:hover::before { opacity: 1 }
.hs-item:hover {
    border-color: rgba(46,204,113,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(46,204,113,0.08);
    transform: scale(1.03);
}
.hs-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--spring), filter 0.3s var(--sp);
}
.hs-item:hover img { transform: scale(1.05); filter: brightness(1.1) }
.hs-label {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: var(--text2);
    font-weight: 500;
    transition: color 0.3s var(--sp), transform 0.35s var(--spring);
}
.hs-item:hover .hs-label { color: var(--text); transform: translateX(4px) }

@media (max-width: 700px) {
    .hs-item { width: 78vw; max-width: 320px }
    .hs-item img { height: 200px }
    .horizontal-scroll-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
    }
    .horizontal-scroll-wrapper::-webkit-scrollbar { display: none }
    .horizontal-scroll-track {
        padding: 1.25rem var(--gut) 2.5rem;
        transform: none !important;
        width: max-content;
    }
    .hs-item { scroll-snap-align: start }
}

.lightbox {
    position: fixed; inset:0;
    background: rgba(0,0,0,0.93);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--sp);
}
.lightbox.active { opacity:1; pointer-events:all }
.lb-img {
    max-width:90vw; max-height:85vh;
    border-radius:10px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    transform: scale(0.88) translateY(20px);
    transition: transform 0.5s var(--smooth);
}
.lightbox.active .lb-img { transform: scale(1) translateY(0) }
.lb-close {
    position:absolute; top:1.25rem; right:1.25rem;
    width:36px; height:36px; border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex; align-items:center; justify-content:center;
    font-size:1rem;
    transition: background 0.3s var(--sp), transform 0.4s var(--spring);
}
.lb-close:hover {
    background:rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.1);
}

.staff-wrap { margin-top: 5rem; padding-top: 1rem; }
.staff-wrap .section-header { margin-bottom: 2.5rem; }
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}
.staff-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s var(--sp), box-shadow 0.5s var(--sp), transform 0.4s var(--spring);
    position: relative;
    overflow: hidden;
}
.staff-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    background: linear-gradient(160deg, rgba(46,204,113,0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--sp);
    z-index: 0;
    pointer-events: none;
}
.staff-card:hover {
    border-color: rgba(46,204,113,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 30px rgba(46,204,113,0.08);
    transform: translateY(-6px);
}
.staff-card:hover::after { opacity: 1; }
.staff-skin {
    position: relative;
    z-index: 1;
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1rem;
    background: radial-gradient(ellipse at center bottom, rgba(46,204,113,0.12), transparent 65%);
    border-radius: 10px;
}
.staff-skin img,
.staff-skin canvas {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55));
    transition: transform 0.5s var(--spring);
}
.staff-card:hover .staff-skin img,
.staff-card:hover .staff-skin canvas { transform: translateY(-4px) scale(1.03); }
.staff-meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.staff-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}
.staff-flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.staff-acct {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text2);
    font-size: 0.75rem;
    flex-shrink: 0;
    cursor: help;
    transition: background 0.2s var(--sp), color 0.2s var(--sp), transform 0.2s var(--spring);
}
.staff-acct:hover {
    background: rgba(255,255,255,0.12);
    color: var(--text);
    transform: scale(1.08);
}
.staff-acct[data-acct="offline"] {
    background: rgba(46,204,113,0.12);
    border-color: rgba(46,204,113,0.3);
    color: var(--green);
}
.staff-acct[data-acct="offline"]:hover {
    background: rgba(46,204,113,0.2);
    color: var(--green);
}
.staff-role {
    display: block;
    font-size: 0.825rem;
    color: var(--green);
    background: var(--green-glow);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
    width: fit-content;
}
@media (max-width: 600px) {
    .staff-skin { height: 220px; }
}

.compare { background: var(--bg) }
.compare-wrap {
    max-width: var(--max);
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--bg-card);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.compare-table { min-width:600px; width:100% }
.ctr {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s var(--sp);
    will-change: transform, opacity;
    position: relative;
}
.ctr:not(.ctr-head)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--green);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--spring);
    border-radius: 0 2px 2px 0;
}
.ctr:not(.ctr-head):hover::before { transform: scaleY(1) }
.ctr:last-child { border-bottom:none }
.ctr:not(.ctr-head):hover { background: rgba(255,255,255,0.035) }
.ctd {
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ctr-head {
    background: rgba(46,204,113,0.04);
    border-bottom: 1px solid rgba(46,204,113,0.12);
}
.ctr-head .ctd {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    padding: 1.1rem 1.2rem;
}
.ctd-feature {
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
}
.ctd-leaf {
    color: var(--green) !important;
    font-weight: 700 !important;
    position: relative;
}
.ctr-head .ctd-leaf {
    color: var(--text) !important;
    font-size: 0.78rem;
}
.ctd-competitor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ctd-competitor i {
    font-size: 0.85rem;
    color: var(--text3);
    opacity: 0.6;
}
.ctr:not(.ctr-head) .ctd-leaf {
    background: rgba(46,204,113,0.03);
}

.ctr:not(.ctr-head) .ctd-leaf::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(46,204,113,0.04), transparent);
    pointer-events: none;
}
.ci-yes { color:var(--green); font-size:1rem }
.ci-no  { color:rgba(255,80,80,0.7); font-size:0.9rem }
.ci-mid { color:#f39c12; font-size:0.9rem }

.ci-yes, .ci-no, .ci-mid {
    will-change: transform, opacity;
}

.compare-note {
    text-align:center; font-size:0.75rem;
    color:var(--text3); margin-top:1.25rem;
}

.ctr > .ctd:not(.ctd-feature) {
    justify-content: center;
    text-align: center;
}
.ctr-head > .ctd:not(.ctd-feature) {
    justify-content: center;
    text-align: center;
}

@media (max-width: 720px) {
    .compare-wrap { border-radius: 12px; }
    .compare-table { min-width: 0; }
    .ctr {
        grid-template-columns: 1.4fr repeat(4, 1fr);
    }
    .ctd {
        padding: 0.75rem 0.5rem;
        font-size: 0.78rem;
        gap: 0.25rem;
    }
    .ctd-feature {
        font-size: 0.8rem;
        padding-left: 0.75rem;
    }
    .ctr-head .ctd {
        font-size: 0.62rem;
        padding: 0.85rem 0.3rem;
        letter-spacing: 0.04em;
    }
    .ctd-competitor,
    .ctr > .ctd:not(.ctd-feature):not(.ctd-leaf) {
        flex-direction: column;
        gap: 0.2rem;
    }
    .ctd-competitor i,
    .ctr > .ctd:not(.ctd-feature):not(.ctd-leaf) i {
        font-size: 0.95rem;
    }
    .ci-yes { font-size: 1rem }
    .ci-no, .ci-mid { font-size: 0.9rem }
}

@media (max-width: 420px) {
    .ctr {
        grid-template-columns: 1.6fr repeat(4, 1fr);
    }
    .ctd { padding: 0.65rem 0.35rem; font-size: 0.72rem }
    .ctd-feature { font-size: 0.75rem; padding-left: 0.6rem }
    .ctr-head .ctd { font-size: 0.55rem; padding: 0.7rem 0.2rem }
}

.about { background: var(--bg) }
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.25rem;
    max-width: var(--max);
    margin: 0 auto;
}
.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.25rem 1.75rem 2rem;
    transition: border-color 0.3s var(--sp), box-shadow 0.5s var(--sp), transform 0.4s var(--spring), background 0.3s var(--sp);
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.about-card:hover {
    border-color: rgba(46,204,113,0.2);
    box-shadow: 0 14px 36px rgba(0,0,0,0.4), 0 0 20px rgba(46,204,113,0.05);
    transform: translateY(-8px);
}
.about-num {
    position: absolute;
    top: -0.15em;
    right: 0.15em;
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
    transition: color 0.4s var(--sp), opacity 0.4s var(--sp);
    will-change: transform;
}
.about-card:hover .about-num { color: rgba(46,204,113,0.05) }
.about-card h3 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
}
.about-card p { font-size:0.86rem; color:var(--text2); line-height:1.65; position:relative }
.about-link {
    display:inline-flex; align-items:center; gap:0.4rem;
    margin-top:1.1rem; font-size:0.82rem;
    font-weight:600; color:var(--green);
    transition: gap 0.3s var(--spring), color 0.3s var(--sp), transform 0.35s var(--spring);
    position: relative;
}
.about-link:hover { gap:0.65rem; transform: translateX(3px) }

.cta {
    text-align:center;
    padding:6rem var(--gut);
    background:var(--bg);
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(46,204,113,0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaPulse 3s ease-in-out infinite;
    z-index: 0;
}
.cta-box { max-width:540px; margin:0 auto; position: relative; z-index: 1 }
.cta-box h2, .cta-heading {
    font-family:'Sora',system-ui,sans-serif;
    font-size:clamp(1.75rem,4vw,2.5rem);
    font-weight:700; letter-spacing:-0.025em;
    line-height:1.15; margin-bottom:0.875rem;
}
.cta-box p, .cta-text { color:var(--text2); font-size:1rem; margin-bottom:2rem; line-height:1.65 }
.cta-buttons { display:flex; gap:0.875rem; justify-content:center; flex-wrap:wrap }

.footer { border-top:1px solid var(--border); padding:3rem var(--gut) 2rem }
.footer-inner { max-width:var(--max); margin:0 auto }
.footer-top {
    display:grid; grid-template-columns:1.5fr 1fr 1fr;
    gap:3rem; padding-bottom:2.5rem;
    border-bottom:1px solid var(--border);
    margin-bottom:1.5rem;
}
.footer-logo {
    display:flex; align-items:center; gap:0.5rem;
    font-family:'Sora',system-ui,sans-serif;
    font-weight:700; font-size:1rem;
    margin-bottom:0.75rem;
}
.footer-brand p { font-size:0.83rem; color:var(--text2); line-height:1.6; max-width:260px; margin-bottom:1rem }
.footer-socials { display:flex; gap:0.75rem }
.footer-socials a {
    width:34px; height:34px; border-radius:8px;
    background:var(--bg-card2);
    border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    font-size:0.9rem; color:var(--text2);
    transition: color 0.3s var(--sp), border-color 0.3s var(--sp), background 0.3s var(--sp), transform 0.4s var(--spring), box-shadow 0.5s var(--sp);
}
.footer-socials a:hover {
    color:var(--text); border-color:var(--border-h); background:var(--bg-card);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.footer-col h4 {
    font-size:0.78rem; font-weight:700;
    letter-spacing:0.08em; text-transform:uppercase;
    color:var(--text); margin-bottom:1rem;
}
.footer-col a {
    display:inline-block; font-size:0.83rem; color:var(--text2);
    margin-bottom:0.55rem;
    transition: color 0.3s var(--sp), transform 0.3s var(--spring);
    position: relative;
}
.footer-col a::after {
    content: '\203A';
    display: inline-block;
    margin-left: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s var(--sp), transform 0.3s var(--spring), margin-left 0.3s var(--sp);
}
.footer-col a:hover {
    color: var(--green);
    transform: translateX(4px);
}
.footer-col a:hover::after {
    opacity: 1;
    transform: translateX(0);
    margin-left: 4px;
}
.footer-bottom {
    display:flex; align-items:center;
    justify-content:space-between; flex-wrap:wrap; gap:0.5rem;
}
.footer-bottom p { font-size:0.78rem; color:var(--text3) }
.footer-disc { opacity:0.8 }
@media (max-width:700px) {
    .footer-top { grid-template-columns:1fr; gap:2rem }
    .footer-bottom { flex-direction:column; align-items:flex-start }
}

.ad-container { max-width:var(--max); margin:0 auto; padding:0 var(--gut); min-height:0 }

body.dl-page { display:flex; flex-direction:column; min-height:100vh }
.dl-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 4rem) var(--gut) 5rem;
}
.platform-row {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap:1.25rem; max-width:980px; width:100%; margin:0 auto;
}
.platform-card .jar-select {
    width:100%;
    background-color:#13131a;
    color:var(--text);
    border:1px solid var(--border);
    border-radius:8px;
    padding:0.55rem 2rem 0.55rem 0.7rem;
    font-size:0.85rem;
    font-family:inherit;
    margin-top:0.4rem;
    margin-bottom:0.2rem;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    color-scheme:dark;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23e0e0e0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 0.7rem center;
    background-size:10px;
}
.platform-card .jar-select:focus {
    outline:none;
    border-color:var(--green);
}
.platform-card .jar-select option {
    background-color:#1a1a22;
    color:#e0e0e0;
}
.platform-card .jar-select option:checked {
    background-color:#2a2a36;
    color:#ffffff;
}
.platform-card .fa-cube { font-size:2.25rem; color:var(--text2); margin-bottom:0.2rem; transition: transform 0.4s var(--spring-bounce), color 0.3s var(--sp) }
.platform-card.active .fa-cube { color:var(--green) }
.platform-card.active:hover .fa-cube { transform: scale(1.1) }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.platform-card {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:14px; padding:2rem 1.5rem;
    display:flex; flex-direction:column; align-items:center;
    gap:0.6rem; text-align:center;
    transition: border-color 0.3s var(--sp), box-shadow 0.5s var(--sp), transform 0.4s var(--spring), background 0.3s var(--sp);
    will-change: transform;
}
.platform-card.active { border-color:rgba(46,204,113,0.35) }
.platform-card.active:hover {
    border-color:var(--green);
    box-shadow:0 16px 40px rgba(46,204,113,0.15), 0 0 30px rgba(46,204,113,0.2);
    transform: translateY(-8px);
}
.platform-card.disabled { opacity:0.42; cursor:not-allowed }
.platform-card.disabled:hover {
    animation: disabledShake 0.5s ease;
}
@keyframes disabledShake {
    0%, 100% { transform: translateX(0) }
    20% { transform: translateX(-3px) }
    40% { transform: translateX(3px) }
    60% { transform: translateX(-2px) }
    80% { transform: translateX(2px) }
}
.platform-card .fa-brands { font-size:2.25rem; color:var(--text2); margin-bottom:0.2rem; transition: transform 0.4s var(--spring-bounce), color 0.3s var(--sp) }
.platform-card.active .fa-brands { color:var(--green) }
.platform-card.active:hover .fa-brands { transform: scale(1.1) }
.platform-card h3 { font-family:'Sora',system-ui,sans-serif; font-weight:700; font-size:1.05rem }
.version-text { font-size:0.8rem; color:var(--text2); min-height:1.2em }
.req-list {
    list-style:none; font-size:0.8rem; color:var(--text2);
    width:100%; text-align:left;
    margin:0.25rem 0 0.5rem; display:flex; flex-direction:column; gap:0.4rem;
}
.req-list li { display:flex; align-items:center; gap:0.45rem }
.req-list .fa-check { color:var(--green); font-size:0.7rem }

.platform-buttons {
    width:100%;
    display:flex; flex-direction:column;
    gap:0.5rem;
    margin-top:0.25rem;
}
.platform-buttons .btn-primary {
    padding:0.6rem 0.9rem;
    font-size:0.85rem;
}
.platform-buttons .btn-sub {
    margin-left:0.35rem;
    color:rgba(255,255,255,0.7);
    font-weight:500;
    font-size:0.78rem;
}

.modal-overlay {
    position:fixed; inset:0;
    background:rgba(0,0,0,0.8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index:200;
    display:flex; align-items:center; justify-content:center;
    padding:1.5rem;
}
.modal-content {
    background:var(--bg-card); border:1px solid var(--border-h);
    border-radius:14px; width:100%; max-width:380px;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    animation: modalIn 0.4s var(--smooth) forwards;
}
@keyframes modalIn {
    to { opacity: 1; transform: translateY(0) scale(1) }
}
.modal-header {
    display:flex; align-items:center; justify-content:space-between;
    padding:1.1rem 1.4rem; border-bottom:1px solid var(--border);
}
.modal-header h3 { font-family:'Sora',system-ui,sans-serif; font-size:0.95rem; font-weight:700 }
.close-btn {
    width:28px; height:28px; border-radius:50%;
    background:rgba(255,255,255,0.06);
    display:flex; align-items:center; justify-content:center;
    font-size:0.8rem;
    transition: background 0.3s var(--sp), transform 0.4s var(--spring);
}
.close-btn:hover { background:rgba(255,255,255,0.15); transform: rotate(90deg) scale(1.1) }
.modal-body { padding:1.4rem; font-size:0.9rem; color:var(--text2); line-height:1.6 }
.text-link { font-size:0.82rem; color:var(--green); text-decoration:underline }
.hidden { display:none !important }

.page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s var(--sp);
}
.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.install-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin: 0 0 0.75rem 0;
    overflow: hidden;
    transition: border-color 0.18s var(--sp), background 0.18s var(--sp);
}
.install-details[open] {
    border-color: var(--border-h);
    background: var(--bg-card2);
}
.install-details summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
    color: var(--text);
    user-select: none;
}
.install-details summary::-webkit-details-marker { display: none; }
.install-details summary .os-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 0.95rem;
    flex: 0 0 auto;
}
.install-details summary .os-label { flex: 1; }
.install-details summary .os-chev {
    color: var(--text2);
    font-size: 0.8rem;
    transition: transform 0.2s var(--sp);
}
.install-details[open] summary .os-chev { transform: rotate(180deg); }
.install-details .install-body {
    padding: 0 1.25rem 1.15rem;
    color: var(--text);
    line-height: 1.65;
}
.install-details .install-body ol {
    margin: 0;
    padding-left: 1.2rem;
}
.install-details .install-body ol li {
    margin-bottom: 0.5rem;
}
.install-details .install-body p {
    margin: 0.6rem 0 0 0;
    color: var(--text2);
    font-size: 0.93rem;
}
.install-details .install-body code {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    padding: 0.05rem 0.4rem;
    border-radius: 5px;
    font-size: 0.9em;
}

