/* --- tokens.css --- */
:root {
    --bg-a: #100e0c;
    --bg-b: #161310;
    --card: rgba(255, 255, 255, 0.025);
    --card-hover: rgba(255, 255, 255, 0.04);
    --stroke: rgba(255, 255, 255, 0.07);
    --text: #dcdde2;
    --text-bright: #f4f4f6;
    --muted: #9397a3;
    --accent: #c9963e;
    --accent-bright: #e0b45a;
    --accent-dim: rgba(201, 150, 62, 0.12);
    --accent-glow: rgba(201, 150, 62, 0.32);
    --ok: #4cc9a7;
    --bad: #d96060;
    --discord: #5865f2;
    --discord-hover: #4752c4;
    --sans: "Sora", "Segoe UI", system-ui, sans-serif;
    --display: "Sora", "Segoe UI", system-ui, sans-serif;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-pill: 999px;
    --section-gap: clamp(32px, 6vw, 56px);
    --wrap: min(1180px, 100%);
    --content-max: 1180px;
    --glass: rgba(255, 255, 255, 0.025);
    --glass-strong: rgba(255, 255, 255, 0.045);
    --glass-border: rgba(255, 255, 255, 0.07);
    --stroke-strong: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
    --panel-solid: rgba(10, 10, 14, 0.92);
    --panel-proof: linear-gradient(160deg, rgba(201, 150, 62, 0.1), rgba(10, 10, 14, 0.94));
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/sora-latin-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/sora-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/sora-latin-700.woff2') format('woff2');
}


/* --- style.css --- */
* { box-sizing: border-box; margin: 0; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #0a0a0c;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus-visible {
    top: 16px;
    outline: 2px solid var(--text-bright);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html { scroll-behavior: smooth; }

html, body {
    min-height: 100%;
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg-a);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(201, 150, 62, 0.3);
    color: #fff;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.media-alpha {
    display: block;
    background: none;
    background-color: transparent;
    object-fit: contain;
}

/* ── Background ── */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201, 150, 62, 0.03) 0%, transparent 42%, rgba(12, 10, 8, 0.4) 100%);
    pointer-events: none;
}

/* ── Layout ── */
.page {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0 24px 100px;
}

.wrap {
    width: min(1180px, 100%);
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 8vw, 72px);
    padding-top: 16px;
}

.page-section {
    scroll-margin-top: 88px;
}

.section-head {
    margin-bottom: 18px;
}

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

.section-eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title-lg {
    margin: 0 0 10px;
    font-family: var(--sans);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-bright);
    text-transform: none;
}

.section-head--center .section-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ── Base Card ── */
.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 8px;
    padding: 22px;
    overflow: visible;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: rgba(255,255,255,0.09);
}

.card-glow { position: relative; }
.card-glow::before {
    content: '';
    position: absolute;
    top: -1px; left: 35%; right: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Topbar ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    background: rgba(8, 8, 12, 0.55);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0;
    padding: 14px 24px;
    margin: 0 -24px 0;
    width: calc(100% + 48px);
}

.topbar:hover { transform: none; }

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--stroke);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-bright);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    transition: color 0.2s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.topbar-nav a:hover {
    color: var(--text-bright);
}

/* ── Language Switcher ── */
.lang-switcher {
    position: relative;
    margin-left: 6px;
}

.lang-current {
    background: none;
    border: 1px solid var(--stroke);
    border-radius: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.06em;
    transition: color 0.15s, border-color 0.15s;
}

.lang-current img {
    border-radius: 2px;
    display: block;
}

.lang-current:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.15);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--bg-b);
    border: 1px solid var(--stroke);
    border-radius: 4px;
    padding: 4px 0;
    min-width: 52px;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.1s, background 0.1s;
}

.lang-option img {
    border-radius: 2px;
    display: block;
}

.lang-option:hover {
    color: var(--text-bright);
    background: rgba(255,255,255,0.04);
}

.lang-option.active {
    color: var(--accent);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand h1,
.brand-title {
    margin: 0;
    font-family: var(--sans);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--text-bright);
    text-transform: uppercase;
}

.brand-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.15;
}

.brand-title-main {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
    color: var(--accent-bright);
}

.brand-title-sub {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Status ── */
.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bad);
    box-shadow: 0 0 6px rgba(217,96,96,0.5);
    transition: background 0.3s, box-shadow 0.3s;
}

.dot.online {
    background: var(--ok);
    box-shadow: 0 0 6px rgba(76,201,167,0.5);
}

/* ── Hero ── */
.hero {
    padding: 8px 0 0;
    border: none;
    background: none;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-img-alpha,
.media-alpha {
    background: transparent;
    object-fit: contain;
}

.hero-logo {
    width: min(380px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
}

.hero-headline {
    margin: 0 0 12px;
    font-size: clamp(1.65rem, 3.8vw, 2.35rem);
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--text-bright);
    text-transform: none;
}

html.fonts-display-ready .hero-headline {
    font-family: var(--sans);
}

.hero-price-teaser {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-price-teaser strong {
    color: var(--accent);
    font-weight: 800;
}

.hero .hero-trust {
    margin: 0 0 20px;
    width: 100%;
}

.hero .hero-actions {
    justify-content: flex-start;
    margin-bottom: 0;
}

.hero .hero-eyebrow {
    margin-left: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    padding: 6px 12px;
    border: 1px solid rgba(201,150,62,0.28);
    border-radius: 999px;
    background: rgba(201,150,62,0.08);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-tagline {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 54ch;
    margin: 0 0 14px;
}

.hero-proof {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 14px;
    max-width: 760px;
}

.hero-proof-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text-bright);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(760px, 100%);
    margin: 0 auto 28px;
    overflow: hidden;
    border: 1px solid rgba(201, 150, 62, 0.14);
    border-radius: 10px;
    background: rgba(201, 150, 62, 0.1);
}

.hero-trust span {
    padding: 11px 12px;
    background: rgba(5, 5, 9, 0.72);
    color: var(--text-bright);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sales-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 24px;
}

.live-server-shell {
    max-width: 960px;
    margin: 0 auto;
    padding: 22px 22px 20px;
    border: 1px solid rgba(201, 150, 62, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(201, 150, 62, 0.05), rgba(255,255,255,0.02));
}

.live-server-head {
    max-width: 760px;
    margin: 0 auto 18px;
    text-align: center;
}

.live-server-head .section-title {
    text-align: center;
    margin-bottom: 8px;
}

.live-server-head .section-sub {
    text-align: center;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-cta-primary {
    min-width: 220px;
    box-shadow: 0 12px 30px rgba(201,150,62,0.14);
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    color: var(--text-bright);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input[type="range"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    border-color: var(--accent);
    color: #1a140a;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent));
    box-shadow: 0 8px 22px rgba(201, 150, 62, 0.22);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.45s ease;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #e8c06a, var(--accent-bright));
    color: #120e08;
    border-color: var(--accent-bright);
}

.btn-primary:hover::after {
    transform: translateX(120%);
}

.btn-ghost {
    color: var(--muted);
    border-color: rgba(255,255,255,0.1);
}

.btn-ghost:hover {
    color: var(--accent);
    border-color: rgba(201,150,62,0.3);
}

.btn-discord {
    background: rgba(88,101,242,0.12);
    border-color: rgba(88,101,242,0.4);
    color: #8b9aff;
}

.btn-discord:hover {
    background: rgba(88,101,242,0.22);
    color: #a7b4ff;
}

.btn-lg {
    padding: 12px 22px;
    font-size: 0.84rem;
}

.btn-block {
    width: 100%;
    margin-top: auto;
}

.topbar-cta {
    margin-left: 4px;
    padding: 8px 14px;
    font-size: 0.72rem;
}

/* ── Pricing cards (sales) ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(12, 12, 18, 0.88);
    min-height: 100%;
}

.price-card--featured {
    border-color: rgba(201, 150, 62, 0.55);
    background: linear-gradient(165deg, rgba(201, 150, 62, 0.16), rgba(12, 12, 18, 0.94) 42%);
    box-shadow: 0 0 0 1px rgba(201, 150, 62, 0.18), 0 24px 48px rgba(0, 0, 0, 0.32);
    transform: translateY(-4px);
}

.price-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: #120e08;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-card-diff {
    margin: 0;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.45;
}

.price-card--featured .pkg-price {
    font-size: clamp(2.2rem, 4.4vw, 2.9rem);
    color: var(--text-bright);
}

.price-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-card-kicker {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.price-card-head h3 {
    margin: 0;
    font-family: var(--sans);
    font-size: 1.35rem;
    color: var(--text-bright);
    letter-spacing: 0;
    text-transform: none;
}

.price-card-desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.price-card-list {
    flex: 1;
}

.price-card-note {
    align-self: flex-start;
    white-space: normal;
}

.price-card .pkg-price {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0;
}

.packages-section .package-proof-strip {
    margin-bottom: 20px;
}

.usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: rgba(201, 150, 62, 0.08);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* ── Section Layout ── */
.section-title {
    text-align: left;
    margin: 0 0 4px;
    font-family: var(--sans);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-bright);
    text-transform: none;
}

.section-sub {
    text-align: left;
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 0 20px;
}

.packages-head .section-sub {
    max-width: none;
    line-height: 1.65;
    margin-bottom: 20px;
}

.package-trust-line {
    margin: 16px auto 4px;
    max-width: 640px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text);
    line-height: 1.5;
}

.package-trust-line a {
    color: var(--text-bright);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.package-trust-line a:hover {
    color: var(--accent);
    border-bottom-color: rgba(201, 150, 62, 0.45);
}

.package-trust-line a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.package-trust-sep {
    margin: 0 0.45em;
    color: var(--accent);
    font-weight: 400;
}

.package-trust-line::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    margin: 0 auto 14px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.package-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: none;
    margin: 0 0 16px;
}

.package-proof-strip span {
    flex: 1 1 180px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.section-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.04);
    margin: 48px 0;
}

/* ── Features / USP ── */
#features,
#packages,
#live-server,
#faq {
    padding: 0;
}

.usp-pitch {
    text-align: center;
    color: var(--accent);
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 20px auto -4px;
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--stroke);
    border: 1px solid var(--stroke);
    border-radius: 6px;
    overflow: hidden;
}

.usp-card {
    padding: 28px 24px;
    text-align: left;
    border: none;
    border-radius: 0;
    background: var(--bg-a);
    transition: background 0.2s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.usp-card:hover {
    background: var(--bg-b);
    transform: none;
}

.usp-icon {
    font-size: 1.6rem;
    display: block;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 2px;
}

.usp-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: transparent;
    filter: drop-shadow(0 4px 12px rgba(201, 150, 62, 0.22));
}

.usp-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: transparent;
    opacity: 1;
    filter: none;
}

.usp-card h3 {
    margin: 0 0 6px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 0.02em;
    text-transform: none;
}

.usp-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.dot.inline,
.dot-inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.highlight-poster {
    position: relative;
    display: block;
}

/* ── Package shell ── */
.pkg-shell {
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(8, 8, 12, 0.55);
    box-shadow:
        0 0 0 1px rgba(201, 150, 62, 0.06),
        0 24px 48px rgba(0, 0, 0, 0.35);
}

.pkg-shell-clean {
    width: 100%;
    max-width: none;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(9, 9, 14, 0.78);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.pkg-offer-flag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

.pkg-offer-flag--testserver {
    border: 1px solid rgba(201, 150, 62, 0.28);
    background: rgba(201, 150, 62, 0.12);
    color: var(--accent);
}

.pkg-offer-note {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(76, 201, 167, 0.14);
    background: rgba(76, 201, 167, 0.06);
    color: var(--ok);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
}

.pkg-side-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkg-side-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 0.8rem;
    line-height: 1.45;
}

.pkg-side-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ok);
    font-weight: 900;
}

.pkg-price {
    margin: 20px 0 14px;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.pkg-price small {
    margin-left: 8px;
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pkg-price--contact {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 0.01em;
}

.pkg-price--contact small {
    display: none;
}

.pkg-sales-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(201, 150, 62, 0.14);
    background: rgba(201, 150, 62, 0.05);
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ── Video Player ── */
.video-gallery {
    max-width: 100%;
}

.preview-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    margin: 18px 0 16px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    scrollbar-width: none;
}

.preview-tabs::-webkit-scrollbar {
    display: none;
}

.preview-tab {
    flex: 0 0 auto;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 9px 13px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.preview-tab:hover {
    color: var(--text-bright);
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

.preview-tab.active {
    color: var(--accent);
    background: rgba(201,150,62,0.12);
    border-color: rgba(201,150,62,0.22);
    box-shadow: inset 0 0 0 1px rgba(201,150,62,0.08);
}

.preview-panel {
    display: none;
}

.preview-panel.active {
    display: block;
}

/* ── Thumbnail Grid ── */
.vgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

@media (max-width: 930px) {
    .vgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .vgrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.vthumb {
    position: relative;
    border: 1px solid var(--stroke);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16 / 9;
    padding: 0;
    transition: border-color 0.2s, transform 0.2s;
}

.vthumb:hover {
    border-color: rgba(255,255,255,0.15);
    transform: scale(1.02);
}

.vthumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.vthumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 2;
}

.vthumb:hover .vthumb-play {
    opacity: 1;
}

.vthumb.active .vthumb-play {
    opacity: 0;
}

.vthumb-copy {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 3;
    text-align: left;
    pointer-events: none;
}

.vthumb-copy strong {
    display: block;
    color: var(--text-bright);
    font-size: 0.8rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.vthumb-copy small {
    display: block;
    margin-top: 4px;
    color: rgba(220, 221, 226, 0.72);
    font-size: 0.68rem;
    line-height: 1.35;
}

/* ── Main Player ── */
.vplayer {
    position: relative;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    margin-top: 10px;
    animation: vplayerIn 0.3s ease;
}

@keyframes vplayerIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.vplayer-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.vplayer-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: opacity 0.2s;
    z-index: 2;
}

.vplayer-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.vplayer-overlay svg {
    opacity: 0.8;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.vplayer-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 3;
    opacity: 0;
    transition: opacity 0.25s;
}

.vplayer:hover .vplayer-controls {
    opacity: 1;
}

.vplayer-controls.force-show {
    opacity: 1;
}

.vctrl {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.vctrl:hover { opacity: 1; }

.vplayer-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.vplayer-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.vplayer-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
}

.vplayer-time {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    min-width: 32px;
    text-align: right;
}

/* ── Info Box ── */
.info-box {
    border-color: rgba(210, 60, 60, 0.2);
    background: rgba(210, 60, 60, 0.04);
    padding: 24px 28px;
    max-width: 100%;
    border-left: 2px solid #c44040;
    border-radius: 0 6px 6px 0;
}

.info-box-title {
    margin: 0 0 12px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #d45050;
    letter-spacing: 0.02em;
    text-transform: none;
}

.info-box p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
}

.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--text); }

.info-box-duck {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    border-color: rgba(201, 150, 62, 0.24);
    background: rgba(201, 150, 62, 0.05);
    border-left-color: var(--accent);
}

.info-box-duck .info-box-title {
    color: var(--accent);
}

.info-box-duck-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box-duck-image {
    width: min(220px, 100%);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,0.35));
}

.info-box-duck-content p {
    margin-bottom: 12px;
}

.duck-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.duck-list li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.duck-list li:last-child {
    margin-bottom: 0;
}

.vt-links-wrap {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.vt-links-title {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-bright);
}

.vt-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vt-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    background: rgba(255,255,255,0.025);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.vt-link:hover {
    border-color: rgba(201,150,62,0.45);
    background: rgba(201,150,62,0.06);
    transform: translateY(-1px);
}

.vt-link-label {
    color: var(--text-bright);
    font-size: 0.88rem;
    font-weight: 700;
}

.vt-link-url {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Live Server ── */
.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 20px;
    border: 1px solid var(--stroke);
    border-radius: 6px;
    overflow: hidden;
}

.live-grid-compact {
    margin-top: 0;
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.live-stat {
    padding: 24px 20px;
    text-align: center;
    border: none;
    border-radius: 0;
    background: var(--bg-a);
    border-right: 1px solid var(--stroke);
}

.live-stat:last-child { border-right: none; }

.live-stat .kpi-title {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--sans);
    font-weight: 700;
}

.live-stat .value {
    font-size: 1.6rem;
    margin-top: 8px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-bright);
    font-variant-numeric: tabular-nums;
}

.test-env-label {
    color: var(--muted);
    font-size: 0.78rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.test-env-label .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 4px rgba(76,201,167,0.4);
    animation: discPulse 2.5s infinite;
}

.live-test-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.live-action-btn {
    min-width: 200px;
    justify-content: center;
    color: #143016 !important;
    background: linear-gradient(180deg, #b8f08a 0%, #8fd96a 55%, #78c856 100%) !important;
    border: 1px solid rgba(90, 170, 55, 0.55) !important;
    box-shadow:
        0 0 0 1px rgba(143, 217, 106, 0.28),
        0 0 22px rgba(143, 217, 106, 0.32),
        0 10px 28px rgba(80, 160, 50, 0.22);
    animation: liveActionGlow 2.8s ease-in-out infinite;
}

.live-action-btn:hover,
.live-action-btn:focus-visible {
    color: #102612 !important;
    background: linear-gradient(180deg, #c6f59c 0%, #9be36b 55%, #84d45e 100%) !important;
    box-shadow:
        0 0 0 1px rgba(155, 227, 107, 0.4),
        0 0 28px rgba(155, 227, 107, 0.42),
        0 12px 32px rgba(80, 160, 50, 0.28);
}

@keyframes liveActionGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(143, 217, 106, 0.28),
            0 0 22px rgba(143, 217, 106, 0.32),
            0 10px 28px rgba(80, 160, 50, 0.22);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(155, 227, 107, 0.36),
            0 0 30px rgba(155, 227, 107, 0.4),
            0 12px 34px rgba(80, 160, 50, 0.26);
    }
}

.live-proof-copy {
    margin-top: 14px;
    text-align: center;
}

.live-server-note {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.test-download-btn {
    min-width: 220px;
    position: relative;
    color: #1a140a !important;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent)) !important;
    border-color: var(--accent) !important;
    box-shadow:
        0 0 0 1px rgba(201, 150, 62, 0.22),
        0 0 22px rgba(201, 150, 62, 0.28),
        0 0 42px rgba(201, 150, 62, 0.14);
    animation: testDownloadGlow 2.8s ease-in-out infinite;
}

.test-download-btn:hover,
.test-download-btn:focus-visible {
    color: #120e08 !important;
    background: linear-gradient(180deg, #e8c06a, var(--accent-bright)) !important;
    border-color: var(--accent-bright) !important;
    box-shadow:
        0 0 0 1px rgba(201, 150, 62, 0.34),
        0 0 26px rgba(201, 150, 62, 0.38),
        0 0 54px rgba(201, 150, 62, 0.2);
}

@keyframes testDownloadGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(201, 150, 62, 0.22),
            0 0 22px rgba(201, 150, 62, 0.28),
            0 0 42px rgba(201, 150, 62, 0.14);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(201, 150, 62, 0.3),
            0 0 28px rgba(201, 150, 62, 0.36),
            0 0 58px rgba(201, 150, 62, 0.18);
    }
}

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

/* ── Note Section ── */
.note-card {
    padding: 24px 22px;
    background: var(--bg-a);
    border: 1px solid var(--stroke);
    border-radius: 6px;
}

.note-card-single {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(201, 150, 62, 0.18);
    border-color: rgba(201, 150, 62, 0.42);
    box-shadow: inset 0 0 28px rgba(201, 150, 62, 0.05);
}

.note-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.note-card-single p {
    color: var(--text-bright);
}

.note-card p:last-child {
    margin-bottom: 0;
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
}

.faq-item {
    border: none;
    border-bottom: 1px solid var(--stroke);
    border-radius: 0;
    background: transparent;
    transition: none;
}

.faq-item:last-child { border-bottom: none; }

.faq-item.active { border-color: var(--stroke); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
    font-family: inherit;
}

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

.faq-question .faq-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--muted);
    opacity: 0.5;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 20px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    padding: 40px 0 8px;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

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

.footer-copy {
    margin: 0;
    line-height: 1.55;
}

.footer-divider {
    width: 30px;
    height: 1px;
    background: var(--stroke);
    margin: 8px auto;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    width: 36px; height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(8,8,12,0.9);
    color: var(--muted);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s, color 0.2s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--accent);
    border-color: rgba(201,150,62,0.3);
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10040;
    background: rgba(8,8,12,0.97);
    border-top: 1px solid var(--stroke);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--muted);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hiding { transform: translateY(100%); }

.cookie-text { max-width: 600px; line-height: 1.5; }

.cookie-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-bright);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cookie-text span {
    display: block;
    margin-bottom: 6px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-text a:hover { color: var(--text); }

.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-btn {
    padding: 8px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

.cookie-accept {
    background: var(--accent);
    color: #0b0b10;
}

.cookie-accept:hover { background: #d9a64e; }

.cookie-decline {
    background: rgba(255,255,255,0.05);
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.08);
}

.cookie-decline:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text);
}

/* ── Discord Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    padding: 20px;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-b);
    border: 1px solid var(--stroke);
    border-radius: 8px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

.modal-title {
    margin: 0 0 6px;
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    text-transform: none;
    letter-spacing: 0.02em;
}

.modal-desc {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.modal-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
    user-select: none;
}

.modal-check:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.modal-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.modal-proceed {
    width: 100%;
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.2s;
}

.modal-proceed.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-proceed-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 930px) {
    .pkg-shell-clean {
        padding: 12px;
    }
    .pkg-offer-note {
        white-space: normal;
    }
    .hero-trust,
    .package-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-visual { order: -1; }
    .hero-copy { text-align: center; }
    .hero-headline { font-size: 1.55rem; }
    .hero-tagline,
    .hero-price-teaser { margin-left: auto; margin-right: auto; }
    .hero .hero-trust { max-width: 100%; }
    .hero .hero-actions { justify-content: center; }
    .hero-logo { width: min(300px, 88vw); }
    .pricing-grid { grid-template-columns: 1fr; }
    .topbar-cta {
        width: 100%;
        justify-content: center;
        margin-top: 6px;
    }
    .sales-summary { grid-template-columns: 1fr; }
    .topbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(8,8,12,0.95);
        align-items: center;
    }
    .mobile-menu-toggle {
        display: inline-flex;
        order: 2;
    }
    .topbar-nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 12px;
        padding: 12px;
        border: 1px solid var(--stroke);
        border-radius: 8px;
        background: rgba(12,13,18,0.96);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .topbar.menu-open .topbar-nav {
        display: flex;
    }
    .topbar-nav a {
        width: 100%;
        padding: 10px 12px;
        border-radius: 6px;
        background: rgba(255,255,255,0.02);
    }
    .topbar-nav a:hover {
        background: rgba(255,255,255,0.05);
    }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .topbar .lang-switcher {
        margin-left: 0;
    }
    .topbar .lang-current {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px;
    }
    .topbar .lang-dropdown {
        position: static;
        display: none;
        margin-top: 6px;
        width: 100%;
        box-shadow: none;
    }
    .topbar .lang-switcher.open .lang-dropdown {
        display: block;
    }
    .brand h1 { font-size: 1rem; }
    .topbar-live {
        order: 3;
        width: 100%;
        max-width: none;
    }
    .status {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        padding-top: 4px;
    }
    .live-grid {
        grid-template-columns: 1fr 1fr;
    }
    .live-stat {
        border-bottom: 1px solid var(--stroke);
    }
    .live-stat:last-child { border-bottom: none; border-right: none; }
    .info-box-duck {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .vt-links {
        grid-template-columns: 1fr;
    }
    .site-footer {
        padding: 28px 0 calc(16px + env(safe-area-inset-bottom));
        margin-bottom: 4px;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
    }
    .footer-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 12px;
        border: 1px solid var(--stroke);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
        font-size: 0.66rem;
        letter-spacing: 0.05em;
        line-height: 1.35;
        text-align: center;
    }
    .footer-links a:hover {
        color: var(--text-bright);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(201, 150, 62, 0.28);
    }
    .footer-copy {
        font-size: 0.72rem;
        max-width: 22rem;
        margin-inline: auto;
        padding: 0 4px;
    }
}

@media (max-width: 600px) {
    .usp-grid { grid-template-columns: 1fr; }
    .live-grid { grid-template-columns: 1fr; }
    .live-stat { border-right: none; }
    .hero-trust,
    .package-proof-strip {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 28px 12px 24px;
        max-width: 100%;
    }
    .hero-logo {
        width: min(280px, 84vw);
        height: auto;
    }
    .hero-eyebrow {
        margin-bottom: 10px;
        padding: 5px 10px;
        font-size: 0.66rem;
    }
    .hero h2 {
        margin-bottom: 10px;
        font-size: 1.35rem;
        line-height: 1.15;
        letter-spacing: 1px;
    }
    .hero-tagline {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .hero-proof {
        width: 100%;
        gap: 8px;
        margin-bottom: 14px;
    }
    .hero-proof-item {
        flex: 1 1 calc(50% - 8px);
        min-height: 0;
        padding: 7px 10px;
        font-size: 0.69rem;
        letter-spacing: 0.02em;
    }
    .hero-proof-item:last-child {
        flex-basis: 100%;
    }
    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 16px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 8px;
    }
    .hero-trust span {
        font-size: 0.64rem;
        line-height: 1.35;
        padding: 10px 8px;
    }
    .sales-summary {
        margin-top: 12px;
    }
    .live-server-shell {
        padding: 18px 16px 16px;
    }
    .live-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sales-card {
        padding: 16px 14px;
    }
    .sales-card h3 {
        font-size: 0.82rem;
    }
    .sales-card p {
        font-size: 0.79rem;
    }
    .section-divider { margin: 32px 0; }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        text-align: center;
        padding: 12px;
        gap: 12px;
        border: 1px solid var(--stroke);
        border-radius: 12px;
    }
    .cookie-text {
        font-size: 0.76rem;
        line-height: 1.45;
    }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; }
    .topbar {
        margin: 0 -24px;
        padding: 12px 16px;
    }
    .preview-tabs {
        gap: 4px;
        padding: 5px;
        margin: 16px 0 14px;
    }
    .preview-tab {
        padding: 8px 12px;
        font-size: 0.68rem;
    }
    .info-box {
        padding: 20px 18px;
    }
}

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


/* --- components.css --- */
/* ── Background: clean dark canvas ── */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, #14110e 0%, #100e0c 40%, #0c0b0a 100%);
}

.page-bg__wash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 95% 60% at 50% -8%, rgba(201, 150, 62, 0.1), transparent 58%),
        radial-gradient(ellipse 70% 50% at 85% 30%, rgba(201, 150, 62, 0.05), transparent 65%),
        radial-gradient(ellipse 60% 45% at 10% 75%, rgba(201, 150, 62, 0.04), transparent 70%),
        linear-gradient(180deg, rgba(201, 150, 62, 0.035) 0%, transparent 45%);
}

.page-bg__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 20%, transparent 75%);
}

.glass-panel {
    border: 1px solid var(--glass-border, var(--stroke));
    border-radius: var(--radius-md, var(--radius));
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.15);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    box-shadow: var(--shadow-soft);
}

.glass-panel:hover {
    border-color: var(--stroke-strong, rgba(255, 255, 255, 0.12));
}

.presentation-chapter:not(#intro) {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}

.vthumb-poster--deferred {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(8, 8, 12, 0.72);
}

@media (max-width: 900px) {
    .glass-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 12, 18, 0.92);
    }
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--accent), #e8b85a);
    box-shadow: 0 0 12px var(--accent-glow);
    pointer-events: none;
}

/* Presentation layout */
.presentation-layout {
    padding-left: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
}

.presentation-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100%;
    max-width: calc(var(--content-max, 1180px) + 220px);
    margin: 0 auto;
}

@media (min-width: 1100px) {
    .presentation-body {
        grid-template-columns: 188px minmax(0, 1fr);
        gap: 28px;
        align-items: start;
    }
}

.chapter-nav-aside {
    display: none;
}

.chapter-nav {
    display: none;
}

@media (min-width: 1100px) {
    .chapter-nav-aside {
        display: block;
        width: 188px;
        align-self: start;
        flex-shrink: 0;
    }

    .chapter-nav {
        display: flex;
        flex-direction: column;
        padding: 12px 0;
        max-height: calc(100vh - 108px);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
    }

    .chapter-nav.is-fixed {
        position: fixed;
        z-index: 45;
        width: 188px;
    }

    .chapter-nav::-webkit-scrollbar {
        width: 4px;
    }

    .chapter-nav::-webkit-scrollbar-thumb {
        background: var(--stroke);
        border-radius: 4px;
    }

    .chapter-nav-title {
        margin: 0 0 12px;
        padding: 0 10px;
        color: var(--muted);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .chapter-nav-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .chapter-nav-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: var(--radius-sm);
        color: var(--muted);
        font-size: 0.74rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s, background 0.2s, border-color 0.2s;
        border: 1px solid transparent;
    }

    .chapter-nav-link:hover {
        color: var(--text-bright);
        background: rgba(255, 255, 255, 0.03);
    }

    .chapter-nav-link.is-active {
        color: var(--accent);
        background: var(--accent-dim);
        border-color: rgba(201, 150, 62, 0.28);
    }

    .chapter-nav-num {
        flex-shrink: 0;
        width: 22px;
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        opacity: 0.7;
    }

    .brand-strip--sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
        padding: 14px 8px 4px;
        border-top: 1px solid var(--stroke);
    }
}

.brand-strip {
    display: none;
}

.brand-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 12px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.brand-pill:hover {
    color: var(--text-bright);
    border-color: rgba(201, 150, 62, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.brand-pill-icon {
    flex-shrink: 0;
    width: 36px;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-pill-icon--duck {
    width: 32px;
}

.brand-pill-label {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.chapter-chips {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 12px;
    margin: 0 0 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.chapter-chips::-webkit-scrollbar { display: none; }

@media (min-width: 1100px) {
    .chapter-chips { display: none; }
}

.chapter-chip {
    flex: 0 0 auto;
    padding: 7px 12px;
    border-radius: var(--radius-pill, 999px);
    border: 1px solid var(--stroke);
    background: rgba(8, 8, 12, 0.72);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.chapter-chip:hover {
    color: var(--text-bright);
    border-color: rgba(201, 150, 62, 0.28);
}

.chapter-chip.is-active {
    color: var(--accent);
    border-color: rgba(201, 150, 62, 0.4);
    background: var(--accent-dim);
}

.presentation-chapter {
    scroll-margin-top: 108px;
}

.chapter-label {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4em;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.chapter-label-num {
    color: var(--accent);
    opacity: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.chapter-label--center {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.section-head--center .chapter-label {
    justify-content: center;
}

/* Hero refresh */
.hero.presentation-hero {
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
    gap: clamp(24px, 5vw, 48px);
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.hero-brand-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 440px);
    padding: 8px 0;
}

.hero-brand-glow {
    position: absolute;
    inset: 18% 14% 22%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(201, 150, 62, 0.1) 0%,
        rgba(201, 150, 62, 0.03) 45%,
        transparent 70%
    );
    filter: blur(20px);
    animation: none;
    pointer-events: none;
}

.hero-logo--showcase {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    animation: hero-logo-float 8s ease-in-out infinite;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.5));
}

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

@keyframes hero-logo-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.04); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 420px;
    margin: 0 0 20px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md, var(--radius));
    background: rgba(8, 10, 14, 0.85);
    overflow: hidden;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 10px 15px;
    text-align: left;
}

.hero-stat + .hero-stat {
    border-left: 1px solid var(--stroke);
}

.hero-stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Why Reforged — hero callout */
.why-reforged {
    margin: 22px 0 8px;
    padding: 22px 22px 18px;
    border-color: rgba(201, 150, 62, 0.35);
    background:
        linear-gradient(145deg, rgba(201, 150, 62, 0.12), rgba(12, 12, 18, 0.88) 55%),
        rgba(10, 10, 14, 0.9);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.why-reforged-title {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 2.6vw, 1.55rem);
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.why-reforged-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.why-reforged-points li {
    padding: 8px 12px;
    border: 1px solid rgba(201, 150, 62, 0.28);
    border-radius: var(--radius-sm, 8px);
    background: rgba(8, 8, 12, 0.55);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
}

.why-reforged-once {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: var(--radius-sm, 8px);
    border: 1px solid rgba(76, 201, 167, 0.28);
    background: rgba(76, 201, 167, 0.08);
    color: var(--text-bright);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
}

.why-reforged-once strong {
    color: #7de3c4;
}

/* Key facts */
.keyfacts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 0;
}

@media (min-width: 720px) {
    .keyfacts-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.keyfact-card {
    padding: 16px 14px;
    border-radius: var(--radius);
    text-align: left;
}

.keyfact-card h3 {
    margin: 0 0 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.35;
}

.keyfact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.keyfact-card--compact .keyfact-value {
    display: block;
    margin-top: 4px;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 800;
}

.keyfact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.sales-summary.glass-panel-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
}

.sales-summary.glass-panel-row .sales-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

/* Feature tabs */
.feat-overview {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(8, 10, 14, 0.45);
    overflow: hidden;
}

.features-section .feat-overview {
    background: linear-gradient(180deg, rgba(12, 14, 20, 0.82) 0%, rgba(6, 8, 12, 0.92) 100%);
}

.feat-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-section .feat-tab-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 12px 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    background: rgba(4, 5, 8, 0.45);
    border-bottom: 1px solid var(--stroke);
}

.features-section .feat-tab-bar::-webkit-scrollbar {
    height: 4px;
}

.features-section .feat-tab-bar::-webkit-scrollbar-thumb {
    background: var(--stroke);
    border-radius: 4px;
}

.feat-tab {
    flex: 1 1 0;
    min-width: 5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 8px;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.features-section .feat-tab {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    min-width: 9.5rem;
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.feat-tab:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.03);
}

.features-section .feat-tab:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.feat-tab.is-active {
    color: var(--accent);
    background: var(--accent-dim);
    border-color: rgba(201, 150, 62, 0.35);
}

.features-section .feat-tab.is-active {
    color: var(--text-bright);
    background: rgba(201, 150, 62, 0.12);
    border-color: rgba(201, 150, 62, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feat-tab-count {
    display: inline-block;
    min-width: 1rem;
    padding: 0 5px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--muted);
}

.features-section .feat-tab-count {
    min-width: 1.35rem;
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
}

.feat-tab.is-active .feat-tab-count {
    border-color: rgba(201, 150, 62, 0.35);
    color: var(--accent);
}

.features-section .feat-tab.is-active .feat-tab-count {
    border-color: rgba(201, 150, 62, 0.28);
    background: rgba(201, 150, 62, 0.14);
    color: var(--accent);
}

.feat-tab-panels {
    border-top: 1px solid var(--stroke);
}

.features-section .feat-tab-panels {
    border-top: none;
}

.feat-tab-panel[hidden] {
    display: none;
}

.features-section .feat-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.05);
}

.features-section .feat-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 16px;
    background: rgba(8, 10, 14, 0.78);
    color: var(--text);
    font-size: 0.8rem;
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease;
}

.features-section .feat-list-item:hover {
    background: rgba(201, 150, 62, 0.07);
    color: var(--text-bright);
}

.features-section .feat-list-item::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(201, 150, 62, 0.35);
}

.features-section .feat-list-item--accent {
    gap: 8px;
    background: rgba(201, 150, 62, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.features-section .feat-list-item--accent:hover {
    background: rgba(201, 150, 62, 0.14);
    color: var(--accent);
}

.features-section .feat-list-item--accent::before {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    content: '+';
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 960px) {
    .features-section .feat-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 930px) {
    .features-section .feat-list {
        grid-template-columns: 1fr;
    }

    .features-section .feat-tab-bar {
        flex-direction: column;
        overflow-x: visible;
        gap: 6px;
        padding: 12px;
    }

    .features-section .feat-tab {
        flex: none;
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        padding: 14px 16px;
        min-height: 48px;
        font-size: 0.8rem;
    }

    .features-section .feat-list-item {
        min-height: 48px;
        padding: 14px 16px;
        font-size: 0.84rem;
        line-height: 1.45;
    }
}

.package-proof-strip.glass-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.package-proof-strip span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.live-server-shell.glass-panel {
    padding: 24px 20px;
}

.preview-panel.glass-panel {
    padding: 16px;
}

.video-gallery--modern .preview-shell.glass-panel {
    padding: 14px 16px 16px;
}

.faq-item.glass-panel {
    margin-bottom: 8px;
    overflow: hidden;
}

.price-card.glass-panel {
    padding: 0;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo--showcase {
        animation: none !important;
    }
}

@media (max-width: 1099px) {
    .brand-strip--toolbar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 0 0 10px;
    }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 0; order: -1; }
    .hero-logo--showcase { width: min(340px, 88vw); }
    .sales-summary.glass-panel-row { grid-template-columns: 1fr; }
    .hero-stats { max-width: 100%; }
}

@media (max-width: 520px) {
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat + .hero-stat {
        border-left: none;
        border-top: 1px solid var(--stroke);
    }
    .keyfacts-grid { grid-template-columns: 1fr; }
}

/* ── Hybrid layout additions ── */

.overlay {
    background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201, 150, 62, 0.03) 0%, transparent 42%, rgba(12, 10, 8, 0.4) 100%);
}

.wrap { gap: var(--section-gap); }

.card { border-radius: var(--radius); }

/* Hero live badge */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(76, 201, 167, 0.22);
    background: rgba(76, 201, 167, 0.08);
    color: var(--ok);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.hero-live-badge:hover {
    border-color: rgba(76, 201, 167, 0.45);
    background: rgba(76, 201, 167, 0.12);
    transform: translateY(-1px);
}

.hero-live-badge.is-offline {
    border-color: rgba(217, 96, 96, 0.22);
    background: rgba(217, 96, 96, 0.08);
    color: var(--bad);
}

.hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 720px) {
    .hero-trust { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Sales steps */
.sales-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sales-card {
    position: relative;
    padding: 20px 18px 18px 52px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: var(--card);
}

.sales-card-step {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent-dim);
    border: 1px solid rgba(201, 150, 62, 0.28);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
}

.sales-card h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    color: var(--text-bright);
}

.sales-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

/* Featured highlights */
.highlights-section { scroll-margin-top: 88px; }

.highlights-section .section-head--center,
.highlights-section .section-head--center .section-eyebrow,
.highlights-section .section-head--center .section-title-lg,
.highlights-section .section-head--center .section-sub {
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.highlight-card.glass-panel {
    background: var(--glass);
}

.price-card.glass-panel .price-card-top,
.price-card.glass-panel .price-card-desc,
.price-card.glass-panel .price-card-list,
.price-card.glass-panel .btn-block {
    margin-left: 18px;
    margin-right: 18px;
}

.price-card.glass-panel .btn-block {
    margin-bottom: 18px;
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
}

.price-card.glass-panel .price-card-top {
    margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

.highlight-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(10, 10, 15, 0.82);
    overflow: hidden;
    text-align: left;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.highlight-card:hover {
    border-color: rgba(201, 150, 62, 0.35);
    transform: translateY(-2px);
}

.highlight-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: rgba(8, 8, 12, 0.92);
    overflow: hidden;
}

.highlight-poster,
.highlight-poster-img,
.highlight-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlight-video {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    background: #000;
}

.highlight-card.is-playing .highlight-video {
    opacity: 1;
    pointer-events: auto;
}

.highlight-card.is-playing .highlight-poster-img {
    opacity: 0;
}

.highlight-play-btn {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(8, 8, 12, 0.28);
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
}

.highlight-play-btn:hover {
    background: rgba(8, 8, 12, 0.18);
}

.highlight-play-btn .highlight-play-icon,
.highlight-play-btn .highlight-pause-icon {
    width: 56px;
    height: 56px;
    padding: 14px;
    border-radius: 50%;
    background: rgba(201, 150, 62, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.highlight-play-btn .highlight-pause-icon {
    display: none;
}

.highlight-card.is-playing .highlight-play-btn {
    background: transparent;
    opacity: 0;
}

.highlight-card.is-playing:hover .highlight-play-btn,
.highlight-card.is-playing:focus-within .highlight-play-btn {
    opacity: 1;
    background: rgba(8, 8, 12, 0.22);
}

.highlight-card.is-playing .highlight-play-btn .highlight-play-icon {
    display: none;
}

.highlight-card.is-playing .highlight-play-btn .highlight-pause-icon {
    display: block;
}

.highlight-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 8, 12, 0.28);
    pointer-events: none;
}

.highlights-footer {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.highlights-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.highlights-link:hover { text-decoration: underline; }

.highlight-poster-img,
.vthumb-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

.highlight-poster-img {
    position: absolute;
    inset: 0;
}

.highlight-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1;
    opacity: 0.85;
}

.highlight-copy {
    padding: 12px 14px 14px;
}

.highlight-copy strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-bright);
    font-size: 0.78rem;
}

.highlight-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.highlights-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.highlights-link:hover { text-decoration: underline; }

.highlight-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(8, 8, 12, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Bento USP */
.usp-grid.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.usp-card.bento-large {
    grid-column: span 1;
    min-height: 180px;
}

.usp-card.bento-large:first-child { grid-row: span 1; }

.usp-card {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: var(--card);
}

/* CTA bands */
.cta-band {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 150, 62, 0.2);
    background: linear-gradient(135deg, rgba(201,150,62,0.08), rgba(255,255,255,0.02));
    text-align: center;
}

.cta-band h3,
.cta-band h2,
.cta-band-title {
    margin: 0 0 8px;
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-bright);
    text-transform: none;
}

.cta-band p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.88rem;
}

.cta-band-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-band--final {
    padding: 32px 24px;
    border-color: rgba(201, 150, 62, 0.32);
}

/* Support disclaimer under pricing */
.pkg-support-disclaimer {
    margin: 18px 0 6px;
    padding: 14px 16px;
    border: 1px solid rgba(201, 150, 62, 0.28);
    border-radius: var(--radius-sm);
    background: rgba(201, 150, 62, 0.08);
    color: var(--text);
    font-size: 0.84rem;
    line-height: 1.6;
}

.pkg-support-disclaimer strong {
    color: var(--text-bright);
}

/* Top features + full feature list */
.packages-section .pkg-top-features {
    margin-top: 18px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.packages-section .feature-panel-head,
.packages-section .pkg-feature-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.packages-section .feature-panel-head h4,
.packages-section .pkg-feature-group-head h4 {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.packages-section .feature-panel-meta,
.packages-section .feature-group-count {
    flex-shrink: 0;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(201, 150, 62, 0.22);
    background: rgba(201, 150, 62, 0.08);
    color: var(--accent);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.packages-section .feature-chip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.packages-section .feature-chip-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.packages-section .feature-chip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(8, 8, 12, 0.42);
    color: var(--text);
    font-size: 0.78rem;
    line-height: 1.45;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.packages-section .feature-chip::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, transparent 55%, rgba(76, 201, 167, 0.18) 56%),
        rgba(76, 201, 167, 0.12);
    box-shadow: inset 0 0 0 1px rgba(76, 201, 167, 0.35);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234cc9a7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.packages-section .feature-chip:hover {
    border-color: rgba(201, 150, 62, 0.24);
    background: rgba(201, 150, 62, 0.06);
    transform: translateY(-1px);
}

.packages-section .feature-chip--accent {
    border-color: rgba(201, 150, 62, 0.28);
    background: rgba(201, 150, 62, 0.08);
    color: var(--accent);
    font-weight: 700;
}

.packages-section .feature-chip--accent::before {
    background-color: rgba(201, 150, 62, 0.14);
    box-shadow: inset 0 0 0 1px rgba(201, 150, 62, 0.35);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9963e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}

.packages-section .pkg-features-accordion {
    margin-top: 14px;
}

.packages-section .pkg-features-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-bright);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.packages-section .pkg-features-toggle-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-align: left;
}

.packages-section .pkg-features-toggle-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    border: 1px solid rgba(201, 150, 62, 0.22);
    background: rgba(201, 150, 62, 0.08);
    color: var(--accent);
    flex-shrink: 0;
}

.packages-section .pkg-features-toggle-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.packages-section .pkg-features-toggle-text > span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-bright);
}

.packages-section .pkg-features-toggle-text small {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.packages-section .pkg-features-toggle:hover,
.packages-section .pkg-features-toggle.is-open {
    border-color: rgba(201, 150, 62, 0.32);
    background: rgba(201, 150, 62, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.packages-section .pkg-features-chevron {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.25s ease, color 0.2s ease;
}

.packages-section .pkg-features-toggle.is-open .pkg-features-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.packages-section .pkg-included {
    margin-top: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.012) 100%);
}

.packages-section .pkg-included[hidden] {
    display: none !important;
}

.packages-section .pkg-feature-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.packages-section .pkg-feature-group {
    padding: 16px 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(8, 8, 12, 0.35);
}

.packages-section .pkg-feature-group-head h4 {
    color: var(--accent);
    letter-spacing: 0.08em;
}

@media (max-width: 980px) {
    .packages-section .pkg-feature-groups {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .packages-section .feature-chip-grid,
    .packages-section .feature-chip-grid--compact {
        grid-template-columns: 1fr;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 60;
    transform: translate(-50%, 120%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(201, 150, 62, 0.28);
    background: rgba(8, 8, 12, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    transition: transform 0.35s cubic-bezier(.22,1,.36,1);
    max-width: calc(100vw - 24px);
}

.sticky-cta.show { transform: translate(-50%, 0); }

.sticky-cta-text {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.sticky-cta-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sticky-cta .btn-sm { padding: 8px 12px; font-size: 0.68rem; }

.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 55;
    padding: 8px;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 12, 0.97);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.mobile-cta-bar .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 12px 10px;
    margin: 0;
    border-radius: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}

.mobile-cta-bar .btn-primary {
    background: rgba(201, 150, 62, 0.14);
    border-color: rgba(201, 150, 62, 0.42);
    color: var(--accent);
}

.mobile-cta-bar .btn-discord {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.48);
    color: #a7b4ff;
}

/* Gallery pagination */
.vthumb.is-page-hidden { display: none; }

.vthumb-poster {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    pointer-events: none;
    background: rgba(8, 8, 12, 0.92);
}

.vthumb-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Preview — hero player + compact clip grid */
.video-gallery--modern .preview-shell {
    padding: 14px 16px 16px;
    background: linear-gradient(180deg, rgba(12, 14, 20, 0.82) 0%, rgba(6, 8, 12, 0.94) 100%);
}

.video-gallery--modern .preview-tabs {
    margin: 0 0 14px;
}

.video-gallery--modern .preview-hero {
    margin-bottom: 18px;
    scroll-margin-top: 96px;
}

.video-gallery--modern .vplayer--hero {
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) - 2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
    aspect-ratio: 16 / 9;
}

.video-gallery--modern .preview-now-playing {
    padding: 14px 2px 0;
}

.video-gallery--modern .preview-now-title {
    display: block;
    margin: 0 0 6px;
    color: var(--text-bright);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.video-gallery--modern .preview-now-desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
    max-width: 68ch;
}

.video-gallery--modern .preview-panel {
    padding-top: 2px;
}

.video-gallery--modern .vgrid-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 0;
}

.video-gallery--modern .vthumb-compact {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0;
    width: 100%;
    min-height: 76px;
    aspect-ratio: auto;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(5, 5, 9, 0.88);
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.video-gallery--modern .vthumb-compact::after {
    display: none;
}

.video-gallery--modern .vthumb-compact:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.video-gallery--modern .vthumb-compact.active {
    border-color: rgba(201, 150, 62, 0.42);
    background: rgba(201, 150, 62, 0.08);
    box-shadow: 0 0 0 1px rgba(201, 150, 62, 0.16);
}

.video-gallery--modern .vthumb-media {
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-gallery--modern .vthumb-compact .vthumb-poster {
    width: 100%;
    height: 100%;
    min-height: 76px;
    aspect-ratio: auto;
}

.video-gallery--modern .vthumb-compact .vthumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.72;
    z-index: 2;
}

.video-gallery--modern .vthumb-compact:hover .vthumb-play {
    opacity: 1;
}

.video-gallery--modern .vthumb-compact.active .vthumb-play {
    opacity: 0;
}

.video-gallery--modern .vthumb-compact .vthumb-copy {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.video-gallery--modern .vthumb-compact .vthumb-copy strong {
    font-size: 0.78rem;
    line-height: 1.25;
}

.video-gallery--modern .vthumb-compact .vthumb-copy small {
    margin-top: 0;
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-gallery--modern .vthumb-compact.active .vthumb-copy strong {
    color: var(--accent);
}

.video-gallery--modern .vthumb-compact.is-page-hidden,
.video-gallery--modern .vthumb.is-page-hidden {
    display: none !important;
}

.video-gallery--modern .preview-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--stroke);
}

.video-gallery--modern .preview-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.video-gallery--modern .preview-page-btn:hover:not(:disabled) {
    border-color: rgba(201, 150, 62, 0.32);
    background: rgba(201, 150, 62, 0.08);
    color: var(--accent);
}

.video-gallery--modern .preview-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.video-gallery--modern .preview-page-nums {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.video-gallery--modern .preview-page-num {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.video-gallery--modern .preview-page-num:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.video-gallery--modern .preview-page-num.is-active {
    color: var(--accent);
    background: rgba(201, 150, 62, 0.12);
    border-color: rgba(201, 150, 62, 0.32);
}

.video-gallery--modern .preview-page-status {
    flex: 1 1 100%;
    text-align: center;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* FAQ — modern accordion shell */
.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.faq-section .section-head {
    margin-bottom: 8px;
}

.faq-shell.glass-panel {
    width: 100%;
    max-width: min(48rem, 100%);
    margin-inline: auto;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(12, 14, 20, 0.82) 0%, rgba(6, 8, 12, 0.94) 100%);
}

.faq-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: none;
}

.faq-section .faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: transparent;
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
    box-shadow: none;
}

.faq-section .faq-item:hover {
    border-color: rgba(201, 150, 62, 0.28);
    background: rgba(255, 255, 255, 0.015);
}

.faq-section .faq-item.active {
    border-color: rgba(201, 150, 62, 0.4);
    background: rgba(201, 150, 62, 0.04);
    box-shadow: none;
}

.faq-section .faq-item-title {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-section .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
    font-family: inherit;
}

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

.faq-section .faq-q-num {
    flex-shrink: 0;
    width: 28px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.faq-section .faq-q-text {
    flex: 1;
    min-width: 0;
}

.faq-section .faq-question .faq-arrow {
    margin-top: 2px;
    transition: transform 0.3s ease, color 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
    color: var(--muted);
    opacity: 0.45;
}

.faq-section .faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
    opacity: 1;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-section .faq-answer-inner {
    padding: 0 18px 16px 56px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.faq-section .faq-answer-inner strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 620px) {
    .faq-shell.glass-panel {
        padding: 8px;
    }

    .faq-section .faq-question {
        padding: 12px 12px;
        font-size: 0.84rem;
        gap: 10px;
    }

    .faq-section .faq-answer-inner {
        padding: 0 14px 14px 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 820px) {
    .video-gallery--modern .vgrid-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .video-gallery--modern .preview-shell {
        padding: 12px;
    }

    .video-gallery--modern .vthumb-compact {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 68px;
    }

    .video-gallery--modern .vthumb-compact .vthumb-poster {
        min-height: 68px;
    }

    .video-gallery--modern .preview-now-title {
        font-size: 0.92rem;
    }
}

/* Compact footer CTA */
.page-close-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(201, 150, 62, 0.24);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(201,150,62,0.06), rgba(255,255,255,0.02));
}

.page-close-note p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.page-close-note p:last-child { margin-bottom: 0; }

.page-close-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.page-close-cta h3 {
    margin: 0 0 6px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-bright);
    text-transform: none;
}

.page-close-cta p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.page-close-cta .cta-band-actions {
    justify-content: center;
}

@media (max-width: 860px) {
    .page-close-card {
        grid-template-columns: 1fr;
    }

    .page-close-cta {
        padding-left: 0;
        padding-top: 16px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
}

/* Contact center */
.contact-section {
    text-align: center;
}

.contact-section .section-title,
.contact-section .section-sub {
    text-align: center;
}

.contact-section .btn-discord {
    margin: 0 auto;
}

/* Modal progress */
.modal-progress {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.modal-progress strong { color: var(--accent); }

/* Topbar live proof (compact) */
.topbar-live {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: auto;
    padding: 9px 16px 9px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    max-width: none;
}

.topbar-live-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-bright);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    font-size: 0.76rem;
}

.topbar-live-status .dot {
    width: 10px;
    height: 10px;
}

.topbar-live-status:hover {
    color: var(--accent);
}

.topbar-live-divider {
    width: 1px;
    height: 28px;
    background: var(--stroke);
    flex-shrink: 0;
}

.topbar-live-metrics {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    color: var(--muted);
}

.topbar-live-metric {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.topbar-live-metric-val {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.topbar-live-metric-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    opacity: 0.9;
    color: var(--muted);
}

/* Compact live-server chapter */
.live-server-shell--compact {
    padding: 18px 20px;
}

.live-server-compact-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.live-server-compact-head .chapter-label {
    margin-bottom: 4px;
}

.live-server-compact-head .section-title-lg {
    margin: 0 0 6px;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.live-server-compact-sub {
    margin: 0;
    font-size: 0.82rem;
    max-width: 42rem;
}

.live-server-note--compact {
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--stroke);
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--muted);
}

.live-server-compact .live-test-actions {
    flex-shrink: 0;
}

@media (max-width: 930px) {
    .topbar-live {
        order: 3;
        width: 100%;
        max-width: none;
        margin-left: 0;
        justify-content: flex-start;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        flex-wrap: wrap;
    }

    .topbar-live-metric-val {
        font-size: 0.98rem;
    }

    .topbar-live-metrics {
        flex-wrap: wrap;
        gap: 10px 18px;
    }
}

@media (max-width: 520px) {
    .topbar-live {
        flex-wrap: wrap;
        gap: 8px;
    }

    .topbar-live-divider {
        display: none;
    }

    .topbar-live-metrics {
        width: 100%;
        padding-left: 2px;
    }

    .live-server-compact-head {
        flex-direction: column;
    }

    .live-test-actions {
        width: 100%;
        justify-content: stretch;
    }

    .live-action-btn {
        flex: 1 1 auto;
        min-width: 0;
    }
}

/* Topbar layout refresh */
.topbar {
    border-radius: var(--radius);
    margin: 0;
    width: 100%;
    padding: 12px 18px;
}

@media (max-width: 930px) {
    .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .usp-grid.bento-grid { grid-template-columns: 1fr; }
    .sticky-cta { display: none; }
    .mobile-cta-bar { display: flex; }
    body.has-mobile-cta {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }
    .topbar-cta { display: none; }
    .back-to-top {
        bottom: calc(96px + env(safe-area-inset-bottom));
        right: 16px;
    }
}

@media (max-width: 520px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Sales / presentation polish ── */
.presentation-chapter:not(#intro) {
    margin-top: clamp(28px, 4vw, 48px);
    padding-top: 0;
}

.presentation-chapter {
    scroll-margin-top: 96px;
}

.presentation-chapter > .chapter-label + .hero,
.presentation-chapter > .chapter-label + .section-head,
.presentation-chapter > .chapter-label + .live-server-shell,
.presentation-chapter > .chapter-label + * {
    margin-top: 0;
}

.hero--pitch {
    min-height: 0;
    display: block;
    padding-top: 2px;
}

.hero--pitch .hero-grid {
    width: 100%;
    align-items: start;
}

.hero-brand-mark {
    margin: 0 0 4px;
    font-family: var(--sans);
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--accent-bright);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
}

.hero-brand-sub {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-tagline--pitch {
    max-width: 34rem;
    font-size: 1.02rem;
    line-height: 1.55;
}

.hero-platform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.hero-platform-row span {
    padding: 6px 10px;
    border: 1px solid rgba(201, 150, 62, 0.28);
    border-radius: 999px;
    background: rgba(201, 150, 62, 0.08);
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-support {
    margin-top: clamp(36px, 6vw, 64px);
    padding-top: clamp(24px, 4vw, 36px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-support .hero-stats {
    margin-bottom: 12px;
}

.hero-support .hero-price-teaser {
    margin-bottom: 28px;
}

.highlights-grid--feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 1100px) {
    .highlights-grid--feature {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .highlight-card--lead {
        grid-column: auto;
    }
}

.highlight-card--lead {
    border-color: rgba(201, 150, 62, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.live-server-shell--proof {
    padding: 28px 24px;
    border-color: rgba(201, 150, 62, 0.22);
    background: linear-gradient(160deg, rgba(201, 150, 62, 0.08), rgba(12, 12, 18, 0.92));
}

.live-server-shell--proof .section-title-lg {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.live-proof-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.live-proof-kpi {
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(8, 8, 12, 0.55);
    text-align: center;
}

.live-proof-kpi-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.2;
}

.live-proof-kpi-lbl {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.test-download-btn--accent {
    box-shadow: 0 10px 28px rgba(201, 150, 62, 0.28);
}

@media (max-width: 900px) {
    .live-proof-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .highlights-grid--feature { grid-template-columns: 1fr; }
    .price-card--featured { transform: none; }
}

/* ── Style Pass v2: Forged Metal ── */
body {
    letter-spacing: 0.01em;
}

p, .section-sub, .faq-answer-inner, .price-card-desc, .keyfact-card p {
    line-height: 1.65;
}

/* Hero pitch: solid, less glass */
#intro .hero--pitch {
    position: relative;
}

#intro .hero--pitch::before {
    display: none;
}

#intro .hero--pitch .hero-grid {
    position: relative;
    z-index: 1;
}

.hero-brand-showcase::after {
    display: none;
}

.hero-brand-showcase .hero-logo {
    position: relative;
    z-index: 1;
}

/* Support / keyfacts: bordered panels, less blur */
#intro .hero-support .glass-panel,
#intro .keyfact-card.glass-panel,
#intro .sales-card.glass-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--panel-solid);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

#intro .keyfact-card.glass-panel:hover,
#intro .sales-card.glass-panel:hover {
    border-color: rgba(201, 150, 62, 0.28);
}

/* Proof chapters */
.highlights-section .highlight-card,
.live-server-shell--proof {
    border-color: rgba(201, 150, 62, 0.28);
}

.live-server-shell--proof {
    background: var(--panel-proof);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(201, 150, 62, 0.22);
}

/* Pricing materials */
.pkg-vs-line {
    margin: 0 0 18px;
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.price-card--core.glass-panel {
    background: rgba(10, 10, 14, 0.9);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.08);
}

.price-card--featured.glass-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(201, 150, 62, 0.18), rgba(12, 12, 18, 0.96) 46%);
    border-color: rgba(201, 150, 62, 0.55);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.price-card--featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-bright), var(--accent), transparent);
    z-index: 2;
}

.price-card--featured.is-entered {
    animation: price-card-enter 0.55s cubic-bezier(.22,1,.36,1) both;
}

@keyframes price-card-enter {
    from {
        opacity: 0.55;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(-4px) scale(1);
    }
}

/* FAQ shell quieter */
.faq-shell.glass-panel {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
}

.faq-section .faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Sticky / mobile CTA hierarchy */
.sticky-cta .btn-primary {
    color: #1a140a;
}

.sticky-cta-text {
    color: var(--text);
}

.mobile-cta-bar .btn-primary {
    flex: 1.2;
}

.mobile-cta-bar .btn-discord {
    flex: 0.9;
    opacity: 0.95;
}

/* Live dot pulse */
.topbar-live-status .dot.online,
.hero-live-badge .dot.online,
.pulse-dot {
    box-shadow: 0 0 0 0 rgba(76, 201, 167, 0.55);
    animation: live-dot-pulse 2.2s ease-out infinite;
}

@keyframes live-dot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 201, 167, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(76, 201, 167, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 201, 167, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .price-card--featured.is-entered {
        animation: none;
    }
    .topbar-live-status .dot.online,
    .hero-live-badge .dot.online,
    .pulse-dot {
        animation: none;
    }
    .btn-primary::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .price-card--featured.is-entered {
        animation: none;
        transform: none;
    }
}
