/* ── Hybrid layout additions ── */

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.overlay {
    background:
        radial-gradient(720px 480px at 8% -5%, rgba(201,150,62,0.08), transparent 55%),
        radial-gradient(560px 420px at 92% 10%, rgba(201,150,62,0.04), transparent 50%),
        linear-gradient(180deg, rgba(8,8,12,0.35) 0%, rgba(8,8,12,0.94) 72%);
}

.bg-video.is-loaded { opacity: 0.72; }

.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-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.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;
    cursor: pointer;
    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-poster {
    aspect-ratio: 16 / 9;
    background: rgba(8, 8, 12, 0.92);
    position: relative;
    display: block;
    overflow: hidden;
}

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

.pkg-compare-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 20px;
}

.pkg-compare-col {
    padding: 14px 16px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

.pkg-compare-col--maxed {
    border-color: rgba(201, 150, 62, 0.28);
    background: rgba(201, 150, 62, 0.05);
}

.pkg-compare-col h4 {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-bright);
}

.pkg-compare-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkg-compare-col li {
    position: relative;
    padding: 0 0 0 14px;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.pkg-compare-col li:last-child { margin-bottom: 0; }

.pkg-compare-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.85;
}

@media (max-width: 720px) {
    .pkg-compare-strip { grid-template-columns: 1fr; }
}

/* 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 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--text-bright);
    text-transform: uppercase;
}

.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: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--stroke);
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(12px);
    gap: 8px;
}

.mobile-cta-bar .btn { flex: 1; justify-content: center; }

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

.vgrid-more-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0 14px;
}

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

.vthumb-labeled .vthumb-poster { border-radius: 8px 8px 0 0; }

/* 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(--display);
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--text-bright);
    text-transform: uppercase;
}

.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 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: 72px; }
    .topbar-cta { display: none; }
}

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