/* ============================================
   BYTEBREAKER EXECUTOR — Official Website CSS
   Design: Clean White · Red Brand · v2.0
   ============================================ */

/* ── TOKENS ── */
:root {
    --red:        #D32F2F;
    --red-bright: #E53935;
    --red-dark:   #B71C1C;
    --red-glow:   rgba(211, 47, 47, 0.12);
    --red-glow-s: rgba(211, 47, 47, 0.25);
    --red-subtle: rgba(211, 47, 47, 0.06);

    --bg:         #FFFFFF;
    --bg-card:    #F8F9FA;
    --bg-card-h:  #F0F1F3;
    --bg-alt:     #FAFBFC;
    --bg-deep:    #F5F6F8;

    --border:     #E5E7EB;
    --border-h:   rgba(211, 47, 47, 0.35);
    --border-soft: #EFF0F2;

    --text:       #1A1A1A;
    --text-sec:   #4B5563;
    --text-muted: #9CA3AF;

    --green:   #10B981;
    --blue:    #3B82F6;
    --orange:  #F59E0B;
    --yellow:  #EAB308;

    --code-bg: #1E1E2E;
    --code-text: #CDD6F4;

    --r:        12px;
    --r-sm:     8px;
    --r-lg:     16px;
    --r-xl:     24px;

    --sp-section: 96px;
    --sp-card:    32px;

    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
    --shadow-red:  0 0 40px rgba(211, 47, 47, 0.12), 0 8px 32px rgba(0,0,0,.08);
    --shadow-soft: 0 2px 12px rgba(0,0,0,.04);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
code { font-family: 'JetBrains Mono', monospace; font-size: 0.85em; background: var(--bg-card-h); padding: 2px 6px; border-radius: 4px; color: var(--red); }

.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;
}

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

.section { padding: var(--sp-section) 0; }
.section-alt { background: var(--bg-alt); }

/* ── TYPOGRAPHY ── */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--text);
}
.section-header p {
    font-size: 1.0625rem;
    color: var(--text-sec);
    line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: var(--red); color: #fff;
    font-size: 0.9375rem; font-weight: 700;
    border-radius: var(--r-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--red-glow-s);
}
.btn-primary:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; }

.btn-primary-hero {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px;
    background: var(--red); color: #fff;
    font-size: 1.0625rem; font-weight: 700;
    border-radius: var(--r-sm);
    cursor: pointer; font-family: inherit; border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transform: translateX(-100%); transition: transform 0.55s ease;
}
.btn-primary-hero:hover { background: var(--red-bright); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn-primary-hero:hover::before { transform: translateX(100%); }

.btn-primary-xl {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 20px 44px;
    background: var(--red); color: #fff;
    font-size: 1.125rem; font-weight: 800;
    border-radius: var(--r-sm);
    cursor: pointer; font-family: inherit; border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary-xl:hover { background: var(--red-bright); transform: translateY(-3px); box-shadow: var(--shadow-red); }

.btn-ghost-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    color: var(--text-sec);
    font-size: 0.9375rem; font-weight: 600;
    border: 1px solid var(--border); border-radius: var(--r-sm);
    background: transparent;
    transition: all var(--transition); font-family: inherit; cursor: pointer;
}
.btn-ghost-hero:hover { color: var(--text); border-color: var(--border-h); background: var(--red-subtle); }

.btn-nav-dl {
    padding: 10px 20px;
    background: var(--red); color: #fff;
    font-size: 0.875rem; font-weight: 700;
    border-radius: var(--r-sm);
    cursor: pointer; font-family: inherit; border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap; flex-shrink: 0;
}
.btn-nav-dl:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 4px 16px var(--red-glow-s); }

.btn-discord {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: #5865F2; color: #fff;
    font-size: 0.9375rem; font-weight: 700;
    border-radius: var(--r-sm);
    transition: all var(--transition); font-family: inherit; cursor: pointer;
}
.btn-discord:hover { background: #4752C4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88,101,242,.25); }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }

.navbar-inner { display: flex; align-items: center; gap: 32px; height: 64px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo img { width: 32px; height: 32px; border-radius: 6px; }
.logo-text { font-size: 0.875rem; font-weight: 800; letter-spacing: 0.06em; color: var(--text); }
.logo-text em { font-style: normal; color: var(--text-muted); font-weight: 600; margin-left: 4px; }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
    padding: 6px 14px; font-size: 0.875rem; font-weight: 600;
    color: var(--text-sec); border-radius: var(--r-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--bg-card); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; cursor: pointer; background: none; border: none; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-bg-radial {
    position: absolute; top: 0; right: 0;
    width: 800px; height: 700px;
    background: radial-gradient(ellipse at 80% 20%, rgba(211, 47, 47, 0.08) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-layout { display: grid; grid-template-columns: 42% 1fr; gap: 56px; align-items: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: var(--red-subtle); border: 1px solid var(--red-glow);
    border-radius: 999px;
    font-size: 0.8125rem; font-weight: 600; color: var(--red);
    margin-bottom: 24px;
}
.badge-pulse {
    width: 8px; height: 8px; background: var(--red); border-radius: 50%;
    flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; color: var(--text);
}

.hero-lead { font-size: 1.0625rem; color: var(--text-sec); line-height: 1.75; margin-bottom: 36px; }
.hero-lead strong { color: var(--text); }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.trust-chip {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.78125rem; font-weight: 600; color: var(--text-sec);
    padding: 5px 11px; border: 1px solid var(--border); border-radius: 999px;
    background: var(--bg-card);
}

.hero-img-col { position: relative; }
.hero-screenshot {
    position: relative; border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border); box-shadow: 0 12px 48px rgba(0,0,0,.1); margin: 0;
}
.hero-screenshot img { display: block; width: 100%; border-radius: var(--r); }
.screenshot-glow {
    position: absolute; inset: -30px;
    background: radial-gradient(ellipse at 50% 40%, rgba(211, 47, 47, 0.1) 0%, transparent 65%);
    pointer-events: none; z-index: -1;
}

/* ── TRUST BAR (NEW) ── */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.trust-bar-grid {
    display: flex; align-items: center; justify-content: space-around;
    gap: 20px; flex-wrap: wrap;
}
.trust-bar-item { display: flex; align-items: center; gap: 12px; }
.tbi-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--red-subtle); border-radius: 8px;
}
.tbi-text { display: flex; flex-direction: column; }
.tbi-text strong { font-size: 0.8125rem; font-weight: 700; color: var(--text); }
.tbi-text span { font-size: 0.75rem; color: var(--text-muted); }

/* ── ANALYTICS BAR (NEW) ── */
.analytics-bar {
    background: var(--bg);
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}
.analytics-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px; justify-content: center;
}
.analytics-live-dot {
    width: 8px; height: 8px; background: var(--green); border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,.4); } 50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(16,185,129,0); } }
.analytics-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); }

.analytics-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.analytics-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-sm);
}
.ai-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--red-subtle); border-radius: 8px;
}
.ai-data { display: flex; flex-direction: column; }
.ai-num { font-size: 1.0625rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.ai-lbl { font-size: 0.6875rem; color: var(--text-muted); }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { flex: 1; text-align: center; padding: 8px 24px; }
.stat-num { display: block; font-size: 1.625rem; font-weight: 800; color: var(--red); letter-spacing: -0.02em; line-height: 1.2; }
.stat-num small { font-size: 1rem; font-weight: 700; }
.stat-lbl { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feature-card {
    padding: 28px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--r);
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--border-h); background: #fff;
    transform: translateY(-4px); box-shadow: 0 12px 40px rgba(211, 47, 47, 0.08);
}

.fc-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--red-subtle); border: 1px solid var(--red-glow);
    border-radius: var(--r-sm); color: var(--red); margin-bottom: 18px;
    transition: all var(--transition);
}
.feature-card:hover .fc-icon { background: rgba(211, 47, 47, 0.12); border-color: rgba(211, 47, 47, 0.3); }

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; color: var(--text); }
.feature-card p { font-size: 0.875rem; color: var(--text-sec); line-height: 1.65; }

/* ── WHAT YOU CAN RUN ── */
.wycr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.wycr-card {
    padding: 24px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--r);
    text-align: center; transition: all var(--transition);
}
.wycr-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.wycr-icon { font-size: 2rem; margin-bottom: 12px; }
.wycr-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.wycr-card p { font-size: 0.8125rem; color: var(--text-sec); line-height: 1.6; }

/* Anti-Cheat Block */
.anti-cheat-block {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 32px;
}
.acb-header { text-align: center; margin-bottom: 28px; }
.acb-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.acb-header p { font-size: 0.875rem; color: var(--text-sec); }

.acb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.acb-item {
    padding: 18px; background: #fff;
    border: 1px solid var(--border); border-radius: var(--r-sm);
    transition: all var(--transition);
}
.acb-item:hover { border-color: var(--border-h); box-shadow: var(--shadow-soft); }
.acb-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.acb-partial .acb-status { color: var(--orange); }
.acb-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.acb-dot-yellow { background: var(--orange); }
.acb-name { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.acb-desc { font-size: 0.8125rem; color: var(--text-sec); line-height: 1.5; }

.acb-note {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px; background: var(--red-subtle);
    border: 1px solid var(--red-glow); border-radius: var(--r-sm);
    font-size: 0.8125rem; color: var(--text-sec);
}
.acb-note svg { flex-shrink: 0; }

/* ── INTERFACE SPLIT SECTION ── */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-text h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 16px; color: var(--text); }
.split-text p { font-size: 0.9375rem; color: var(--text-sec); line-height: 1.75; margin-bottom: 28px; }

.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; font-weight: 500; color: var(--text-sec); }
.check {
    display: flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%; font-size: 0.6875rem; font-weight: 800; color: var(--green); flex-shrink: 0;
}

.split-img {
    border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-card); margin: 0;
    transition: all var(--transition);
}
.split-img:hover { border-color: var(--border-h); box-shadow: var(--shadow-red); }
.split-img img { border-radius: var(--r); }

/* ── SCRIPT HUB ── */
.script-cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 32px; }
.script-cat {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
    padding: 22px 12px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--r);
    cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.script-cat:hover { border-color: var(--border-h); background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.script-cat.sc-active { border-color: var(--red); background: #fff; box-shadow: 0 4px 20px var(--red-glow-s); }
.sc-emoji { font-size: 1.75rem; line-height: 1; }
.sc-name { font-size: 0.8125rem; font-weight: 700; color: var(--text); }
.sc-count { font-size: 0.75rem; color: var(--text-muted); }

/* Hub Console */
.hub-console {
    background: var(--code-bg); border: 1px solid #313244;
    border-radius: var(--r); overflow: hidden;
    margin-bottom: 40px; box-shadow: 0 12px 48px rgba(0,0,0,.15);
}
.hc-titlebar {
    display: flex; align-items: center; gap: 16px;
    padding: 10px 16px; background: #181825;
    border-bottom: 1px solid #313244;
}
.hc-dots { display: flex; gap: 6px; flex-shrink: 0; }
.dot-close { width: 12px; height: 12px; border-radius: 50%; background: #FF5F57; }
.dot-min { width: 12px; height: 12px; border-radius: 50%; background: #FEBC2E; }
.dot-max { width: 12px; height: 12px; border-radius: 50%; background: #28C840; }
.hc-title { flex: 1; font-size: 0.8125rem; color: #6C7086; font-family: 'JetBrains Mono', monospace; }
.hc-status { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--green); }
.hc-status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }

.hc-body {
    padding: 16px 20px; max-height: 320px; overflow-y: auto;
    font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; line-height: 1.7;
}
.hc-body::-webkit-scrollbar { width: 6px; }
.hc-body::-webkit-scrollbar-track { background: transparent; }
.hc-body::-webkit-scrollbar-thumb { background: #45475A; border-radius: 3px; }

.hc-line { display: flex; gap: 8px; }
.hc-cmd { color: #89B4FA; }
.hc-arg { color: #F9E2AF; }
.hc-out { color: #A6ADC8; }
.hc-ok { color: #A6E3A1; }
.hc-err { color: #F38BA8; }
.hc-info { color: #89DCEB; }
.hc-warn { color: #FAB387; }
.hc-item { color: #CBA6F7; cursor: pointer; }
.hc-item:hover { text-decoration: underline; }

.hc-input-row {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; background: #181825; border-top: 1px solid #313244;
}
.hc-prompt { color: #89B4FA; font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; white-space: nowrap; }
.hc-input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--code-text); font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem;
}
.hc-input::placeholder { color: #585B70; }
.hc-send {
    background: var(--red); color: #fff; border: none;
    width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; cursor: pointer; transition: background var(--transition);
}
.hc-send:hover { background: var(--red-bright); }

/* ── PLATFORM TABS ── */
.platform-tabs {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.platform-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--r-sm);
    font-size: 0.9375rem; font-weight: 600; color: var(--text-sec);
    cursor: pointer; font-family: inherit; transition: all var(--transition);
}
.platform-tab:hover { border-color: var(--border-h); color: var(--text); }
.platform-tab.pt-active {
    background: var(--red); color: #fff; border-color: var(--red);
    box-shadow: 0 4px 20px var(--red-glow-s);
}
.platform-tab.pt-active svg path,
.platform-tab.pt-active svg rect { stroke: #fff; }

.platform-content { display: none; }
.platform-content.pc-active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.pc-steps { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.pc-step {
    display: flex; gap: 20px; padding: 24px 28px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); transition: all var(--transition);
}
.pc-step:hover { border-color: var(--border-h); box-shadow: var(--shadow-soft); }
.pc-step-num {
    font-size: 2rem; font-weight: 800; color: var(--red);
    font-family: 'JetBrains Mono', monospace; line-height: 1; flex-shrink: 0;
    min-width: 48px;
}
.pc-step-body h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.pc-step-body p { font-size: 0.875rem; color: var(--text-sec); line-height: 1.7; }
.pc-step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.pc-tag {
    font-size: 0.6875rem; font-weight: 600; padding: 3px 10px;
    background: var(--red-subtle); border: 1px solid var(--red-glow);
    border-radius: 999px; color: var(--red);
}

.hiw-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 40px; }
.hiw-note { font-size: 0.8125rem; color: var(--text-muted); }

/* ── CHANGELOG CONSOLE ── */
.changelog-console {
    background: var(--code-bg); border: 1px solid #313244;
    border-radius: var(--r); overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.15);
    max-width: 900px; margin: 0 auto;
}
.clc-titlebar {
    display: flex; align-items: center; gap: 16px;
    padding: 10px 16px; background: #181825; border-bottom: 1px solid #313244;
}
.clc-dots { display: flex; gap: 6px; }
.clc-title { flex: 1; font-size: 0.8125rem; color: #6C7086; font-family: 'JetBrains Mono', monospace; }

.clc-body {
    padding: 16px 20px; max-height: 600px; overflow-y: auto;
    font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; line-height: 1.7;
}
.clc-body::-webkit-scrollbar { width: 6px; }
.clc-body::-webkit-scrollbar-track { background: transparent; }
.clc-body::-webkit-scrollbar-thumb { background: #45475A; border-radius: 3px; }

.clc-entry { margin-bottom: 4px; }
.clc-entry-header {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 6px; cursor: pointer;
    transition: background .15s;
}
.clc-entry-header:hover { background: rgba(255,255,255,.04); }
.clc-entry.clc-expanded .clc-entry-header { background: rgba(255,255,255,.03); }
.clc-arrow { color: #6C7086; transition: transform .2s; font-size: 0.75rem; }
.clc-expanded .clc-arrow { transform: rotate(90deg); }
.clc-ver { color: #89B4FA; font-weight: 600; }
.clc-badge-latest {
    font-size: 0.625rem; font-weight: 700; padding: 2px 8px;
    background: var(--red); color: #fff; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.clc-date { color: #6C7086; margin-left: auto; }
.clc-items {
    padding: 8px 12px 12px 32px; display: none;
    border-left: 2px solid #313244; margin-left: 16px; margin-top: 4px;
}
.clc-expanded .clc-items { display: block; animation: fadeIn .3s ease; }
.clc-items li {
    color: #A6ADC8; padding-left: 16px; position: relative; margin-bottom: 6px;
    line-height: 1.5;
}
.clc-items li::before { content: '•'; position: absolute; left: 0; }
.clc-new::before { color: #A6E3A1; }
.clc-fix::before { color: #FAB387; }
.clc-perf::before { color: #89DCEB; }
.clc-new { color: #A6E3A1; }
.clc-fix { color: #FAB387; }
.clc-perf { color: #89DCEB; }

/* ── COMMUNITY ── */
.community-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.community-text h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 16px; color: var(--text); }
.community-text p { font-size: 0.9375rem; color: var(--text-sec); line-height: 1.75; margin-bottom: 32px; }

.community-stats { display: flex; gap: 32px; margin-bottom: 32px; }
.cs-item { display: flex; flex-direction: column; gap: 4px; }
.cs-num { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.cs-green { color: var(--green); }
.cs-lbl { font-size: 0.8125rem; color: var(--text-muted); }

/* Discord card */
.discord-card {
    background: #313338; border-radius: var(--r-lg); overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.15); border: 1px solid #3A3C41;
}
.dc-header {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; background: #2B2D31;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 0.875rem; font-weight: 600; color: #E3E5E8;
}
.dc-live-dot { width: 8px; height: 8px; background: #23A55A; border-radius: 50%; flex-shrink: 0; }
.dc-channel { flex: 1; }
.dc-online { font-size: 0.75rem; color: #80848E; }
.dc-body { padding: 14px 16px 8px; display: flex; flex-direction: column; gap: 4px; }
.dc-msg { display: flex; gap: 12px; padding: 5px 6px; border-radius: 4px; transition: background .15s; }
.dc-msg:hover { background: rgba(255,255,255,.03); }
.dc-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; color: #fff; margin-top: 2px; }
.av1 { background: #5865F2; }
.av2 { background: #57F287; color: #1a1a1a; }
.av3 { background: var(--red); }
.av4 { background: #FEE75C; color: #1a1a1a; }
.dc-mc { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dc-meta { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: #E3E5E8; }
.dc-time { font-size: 0.6875rem; font-weight: 400; color: #80848E; }
.dc-role { font-size: 0.6875rem; font-weight: 700; padding: 1px 6px; background: rgba(211, 47, 47, 0.2); color: #EF5350; border-radius: 4px; }
.dc-mc p { font-size: 0.9375rem; color: #DBDEE1; line-height: 1.4; }
.dc-input { padding: 10px 16px 14px; }
.dc-input span { display: block; padding: 11px 16px; background: #383A40; border-radius: 8px; font-size: 0.9375rem; color: #80848E; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.testimonial-card {
    padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); transition: all var(--transition); display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.tc-stars { font-size: 0.875rem; color: #FBBF24; letter-spacing: 2px; }
.tc-text { font-size: 0.8125rem; color: var(--text-sec); line-height: 1.7; flex: 1; }
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; }
.tc-info { display: flex; flex-direction: column; }
.tc-info strong { font-size: 0.8125rem; color: var(--text); }
.tc-info span { font-size: 0.6875rem; color: var(--text-muted); }

/* ── REQUIREMENTS ── */
.req-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.req-card-platform {
    padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
    transition: all var(--transition); display: flex; flex-direction: column; gap: 16px;
}
.req-card-platform:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.rcp-header { display: flex; align-items: center; gap: 12px; }
.rcp-header h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text); }
.req-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.req-list li { font-size: 0.8125rem; color: var(--text-sec); line-height: 1.5; }
.req-list li strong { color: var(--text); }
.rcp-file {
    font-size: 0.75rem; font-family: 'JetBrains Mono', monospace;
    padding: 8px 12px; background: var(--bg-card-h); border-radius: 6px;
    color: var(--red); text-align: center;
}

.req-tech-specs {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 32px;
}
.req-tech-specs h3 { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 20px; text-align: center; }
.specs-table { display: flex; flex-direction: column; gap: 0; max-width: 600px; margin: 0 auto; }
.specs-table .specs-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid var(--border-soft); gap: 16px;
}
.specs-table .specs-row:last-child { border-bottom: none; }
.specs-table dt { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.specs-table dd { font-size: 0.875rem; font-weight: 600; color: var(--red); }

/* ── FAQ ACCORDION ── */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-acc-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm);
    overflow: hidden; transition: border-color var(--transition);
}
.faq-acc-item:hover { border-color: var(--border-h); }
.faq-acc-q {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 20px 24px;
    font-size: 0.9375rem; font-weight: 700; color: var(--text);
    cursor: pointer; font-family: inherit; text-align: left;
    transition: background var(--transition);
}
.faq-acc-q:hover { background: var(--bg-card-h); }
.faq-acc-icon {
    font-size: 1.5rem; color: var(--red); flex-shrink: 0; transition: transform var(--transition);
    width: 24px; text-align: center;
}
.faq-acc-item.faq-open .faq-acc-icon { transform: rotate(45deg); }
.faq-acc-a { padding: 0 24px 20px 24px; }
.faq-acc-a p { font-size: 0.875rem; color: var(--text-sec); line-height: 1.7; }

/* ── FINAL CTA ── */
.final-cta { background: var(--bg-deep); text-align: center; }
.cta-box { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0; }
.cta-version-pill {
    display: inline-flex; padding: 7px 18px;
    background: var(--red-subtle); border: 1px solid var(--red-glow);
    border-radius: 999px; font-size: 0.8125rem; font-weight: 700;
    color: var(--red); font-family: 'JetBrains Mono', monospace; margin-bottom: 24px;
}
.cta-box h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 14px; color: var(--text); }
.cta-box > p { font-size: 1rem; color: var(--text-sec); margin-bottom: 36px; }
.cta-meta { margin-top: 18px !important; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0 !important; }

/* ── SOCIAL SHARE ── */
.social-share { padding: 48px 0; border-top: 1px solid var(--border); background: var(--bg-alt); }
.share-title { text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.share-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--r-sm);
    color: var(--text-sec); font-size: 0.875rem; font-weight: 600;
    transition: all var(--transition); cursor: pointer; font-family: inherit;
}
.share-btn:hover { color: var(--text); border-color: var(--border-h); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* ── BREADCRUMB ── */
.breadcrumb-nav { margin-bottom: 40px; }
.breadcrumb-nav ol { display: flex; align-items: center; gap: 8px; list-style: none; }
.breadcrumb-nav li { font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.breadcrumb-nav li:not(:last-child)::after { content: '/'; }
.breadcrumb-nav a { color: var(--text-sec); transition: color var(--transition); }
.breadcrumb-nav a:hover { color: var(--text); }

/* ── FOOTER ── */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 0.875rem; font-weight: 800; letter-spacing: 0.08em; color: var(--text); }
.footer-logo img { width: 26px; height: 26px; border-radius: 5px; }
.footer-brand-col p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.footer-ver { font-size: 0.75rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-disc { font-size: 0.75rem !important; }

/* ── NOTIFICATION ── */
.notif {
    position: fixed; top: 80px; right: 24px;
    padding: 14px 20px; border-radius: var(--r-sm);
    font-size: 0.875rem; font-weight: 600; color: #fff; z-index: 9999;
    animation: notif-in .3s ease; box-shadow: 0 8px 24px rgba(0,0,0,.15); max-width: 320px;
}
.notif-success { background: #2E7D32; }
.notif-error { background: #C62828; }
@keyframes notif-in { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ── FOCUS / A11Y ── */
a:focus-visible, button:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; border-radius: 4px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */

@media (max-width: 1024px) {
    :root { --sp-section: 72px; }

    .hero-layout { grid-template-columns: 1fr; }
    .hero-img-col { order: -1; max-width: 700px; margin: 0 auto; width: 100%; }

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

    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-reverse { direction: ltr; }

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

    .community-layout { grid-template-columns: 1fr; gap: 48px; }

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

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

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

    .trust-bar-grid { gap: 16px; }
}

@media (max-width: 768px) {
    :root { --sp-section: 56px; }

    .navbar-inner { gap: 16px; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(255,255,255,.98);
        padding: 20px 24px; border-bottom: 1px solid var(--border);
        gap: 4px; z-index: 999;
    }
    .nav-links.open a { padding: 12px 16px; font-size: 1rem; }
    .nav-toggle { display: flex; }

    .hero { padding: 96px 0 56px; min-height: auto; }
    .hero h1 { font-size: 1.875rem; }
    .hero-cta-row { gap: 12px; }
    .btn-primary-hero, .btn-ghost-hero { width: 100%; justify-content: center; }
    .hero-trust-row { gap: 8px; }

    .trust-bar-grid { flex-direction: column; align-items: flex-start; gap: 16px; }
    .trust-bar-item { width: 100%; }

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

    .stats-grid { flex-wrap: wrap; gap: 0; }
    .stat-item { flex: 0 0 50%; padding: 16px; }
    .stat-div { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .wycr-grid { grid-template-columns: 1fr; }
    .acb-grid { grid-template-columns: 1fr; }

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

    .platform-tabs { flex-direction: column; }
    .platform-tab { width: 100%; justify-content: center; }

    .pc-step { flex-direction: column; gap: 12px; padding: 20px; }
    .pc-step-num { font-size: 1.5rem; }

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

    .req-grid-4 { grid-template-columns: 1fr; }

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

    .stats-bar { padding: 20px 0; }

    .share-row { gap: 8px; }
    .share-btn span { display: none; }
    .share-btn { padding: 10px 14px; }

    .community-stats { flex-wrap: wrap; gap: 20px; }

    .clc-body { font-size: 0.75rem; }
    .hc-body { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.625rem; }
    .hero-badge { font-size: 0.75rem; }
    .btn-primary-xl { padding: 16px 28px; font-size: 1rem; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header { margin-bottom: 40px; }

    .analytics-grid { grid-template-columns: 1fr; }
    .analytics-item { padding: 12px; }

    .script-cats { grid-template-columns: 1fr 1fr; }

    .pc-step { padding: 16px; }
    .pc-step-body h3 { font-size: 0.9375rem; }
    .pc-step-body p { font-size: 0.8125rem; }

    .faq-acc-q { padding: 16px 18px; font-size: 0.875rem; }
    .faq-acc-a { padding: 0 18px 16px 18px; }
    .faq-acc-a p { font-size: 0.8125rem; }

    .anti-cheat-block { padding: 20px; }

    .container { padding: 0 16px; }

    .clc-body { padding: 12px 14px; }
    .hc-body { padding: 12px 14px; }
}