:root {
    --bg: #050608;
    --panel: rgba(255, 255, 255, 0.045);
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f7fb;
    --muted: rgba(245, 247, 251, 0.66);
    --dim: rgba(245, 247, 251, 0.42);
    --green: #39ff88;
    --purple: #7c3aed;
    --radius: 28px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top, rgba(57, 255, 136, 0.08), transparent 16%),
        radial-gradient(circle at 20% 14%, rgba(124, 58, 237, 0.14), transparent 21%),
        radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.05), transparent 12%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
}

img {
    display: block;
    max-width: 100%;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(5, 6, 8, 0.62);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

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

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    overflow: hidden;
    box-shadow: 0 0 24px rgba(57, 255, 136, 0.12);
    background: #08090d;
}

.brand-copy small,
.section-label,
.eyebrow,
.micro {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 11px;
    color: var(--dim);
}

.brand-copy strong {
    display: block;
    margin-top: 4px;
    font-size: 18px;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.topbar-tagline {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dim);
}

.top-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

.mobile-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(5, 6, 8, 0.96);
    border-top: 1px solid var(--line);
    z-index: 40;
    padding: 12px 16px;
}

.mobile-nav a {
    display: block;
    padding: 10px 6px;
    color: var(--muted);
    border-radius: 8px;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.03);
}

.hero {
    padding: 48px 0 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: stretch;
}

.hero-copy,
.hero-visual-card,
.module-card,
.statement-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.signal-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(57, 255, 136, 0.22);
    background: rgba(57, 255, 136, 0.08);
    color: #b8ffd3;
    box-shadow: 0 0 28px rgba(57, 255, 136, 0.09);
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

h1 {
    margin: 20px 0 0;
    font-size: clamp(46px, 7vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-sub {
    display: block;
    color: rgba(245, 247, 251, 0.8);
    margin-top: 10px;
    font-size: 15px;
}

.hero-body {
    margin: 22px 0 0;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.hero-body strong {
    color: var(--text);
    font-weight: 700;
}

.hero-tagline {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.btn,
.module-btn {
    border: 0;
    border-radius: 18px;
    padding: 14px 22px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.module-btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--green);
    color: #05130a;
    box-shadow: 0 0 30px rgba(57, 255, 136, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--line-strong);
}

.hero-visual-wrap {
    position: relative;
    min-height: 100%;
}

.hero-visual-card {
    padding: 14px;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.visual-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 14px;
}

.hero-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #030406;
    display: flex;
    flex-direction: column;
}

.hero-image-box img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    padding: 18px;
}

.hero-overlay h2 {
    margin: 8px 0 0;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.hero-overlay p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.section,
.dj-section {
    padding: 28px 0 0;
}

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

.section-head h2 {
    margin: 8px 0 4px;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -0.05em;
}

.section-head p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.section-graphic {
    display: block;
    width: min(100%, 920px);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: #030406;
    box-shadow: var(--shadow);
}

.section-graphic img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

a.section-graphic:hover img {
    transform: scale(1.012);
    filter: brightness(1.06);
}

.submission-graphic img {
    aspect-ratio: 3 / 1;
}

.bundle-graphic {
    display: block;
    width: min(100%, 520px);
    margin: 16px auto 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #030406;
}

.bundle-graphic img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.bundle-graphic:hover img {
    transform: scale(1.015);
    filter: brightness(1.06);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.module-card {
    padding: 20px 20px 76px;
    position: relative;
    min-height: 250px;
}

.module-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.module-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--dim);
}

.module-status {
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--dim);
}

.module-status.live {
    border-color: rgba(57, 255, 136, 0.24);
    background: rgba(57, 255, 136, 0.08);
    color: #b8ffd3;
}

.module-status.standby {
    border-color: rgba(124, 58, 237, 0.18);
    background: rgba(124, 58, 237, 0.08);
    color: #d6c3ff;
}

.module-path {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dim);
}

.module-card h3 {
    margin: 12px 0 0;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.module-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    max-width: 34ch;
}

.module-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--line-strong);
}

.module-btn.live {
    background: #f5f7fb;
    color: #06080b;
    border: 0;
}

.dj-card {
    border-radius: var(--radius);
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(135deg,
            rgba(124, 58, 237, 0.9),
            rgba(48, 255, 152, 0.28) 42%,
            rgba(10, 12, 16, 0.96) 100%);
    box-shadow: var(--shadow);
    padding: 26px 24px 26px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: stretch;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(57, 255, 136, 0.22);
    background: rgba(57, 255, 136, 0.08);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #bbffda;
    white-space: nowrap;
}

.dj-left-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dj-label {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.86);
}

.dj-heading {
    margin: 6px 0 0;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.dj-subcopy {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 15px;
    max-width: 56ch;
}

.dj-meta-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    opacity: 0.9;
}

.dj-gate-value {
    margin-top: 8px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.dj-tags {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.dj-description-box {
    margin-top: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(5, 6, 8, 0.72);
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #f5f7fb;
}

.dj-description-box strong {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    display: block;
    margin-bottom: 4px;
    color: rgba(245, 247, 251, 0.92);
}

.dj-right {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(1, 3, 5, 0.82);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dj-right-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(245, 247, 251, 0.86);
}

.dj-track-reason,
.dj-track-link {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(245, 247, 251, 0.9);
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.statement-card {
    padding: 22px;
}

.statement-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.profile-finder-card {
    display: grid;
    grid-template-columns: minmax(260px, 430px) 1fr;
    gap: clamp(24px, 5vw, 52px);
    align-items: center;
    padding: 28px;
    border-color: rgba(57, 255, 136, 0.28);
    background: linear-gradient(135deg, rgba(57, 255, 136, 0.09), rgba(255, 255, 255, 0.025));
}

.profile-finder-graphic {
    display: block;
    width: 100%;
    max-width: 430px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 22px 68px rgba(0, 0, 0, 0.48);
}

.profile-finder-graphic img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.chart-drop-card {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: clamp(24px, 5vw, 52px);
    align-items: center;
    padding: 28px;
    overflow: hidden;
}

.chart-drop-graphic {
    display: block;
    width: 100%;
    max-width: 360px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.38);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
}

.chart-drop-graphic img {
    display: block;
    width: 100%;
    height: auto;
}

.chart-drop-copy p {
    max-width: 650px;
    font-size: 16px;
}

.chart-drop-copy h2 {
    margin: 12px 0 0;
    max-width: 760px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.chart-drop-meta {
    margin-top: 10px;
    color: var(--dim);
    font-size: 13px !important;
}

.gates-radio-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(26px, 5vw, 58px);
    align-items: center;
    padding: clamp(22px, 4vw, 38px);
    overflow: hidden;
    border-color: rgba(124, 58, 237, 0.34);
    background:
        radial-gradient(circle at 8% 15%, rgba(124, 58, 237, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(57, 255, 136, 0.055), rgba(255, 255, 255, 0.018));
}

.gates-radio-graphic {
    display: block;
    width: 100%;
    max-width: 520px;
    padding: 12px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 136, 0.25);
    background: radial-gradient(circle at top, rgba(57, 255, 136, 0.10), transparent 34%), rgba(6, 8, 11, 0.96);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
}

.gates-radio-graphic img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.gates-radio-graphic:hover img {
    transform: scale(1.012);
    filter: brightness(1.05);
}

.gates-radio-copy h2 {
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.gates-radio-list {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.gates-radio-list li::before {
    content: "→";
    margin-right: 9px;
    color: var(--green);
    font-weight: 900;
}

.gates-radio-price {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--dim) !important;
    font-size: 13px !important;
}

.gates-radio-price strong {
    color: var(--green);
}

.gates-radio-hook {
    margin-top: 14px !important;
    color: var(--text) !important;
    font-size: 17px !important;
    font-weight: 750;
}

.profile-finder-label {
    color: var(--green);
}

.profile-finder-title {
    margin: 12px 0 0;
    max-width: 900px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.profile-finder-copy {
    max-width: 720px;
    font-size: 16px;
}

.profile-finder-btn {
    background: var(--green);
    color: #05130a;
}

.profile-bundle-card {
    display: grid;
    grid-template-columns: minmax(280px, 470px) 1fr;
    gap: clamp(26px, 5vw, 58px);
    align-items: center;
    padding: clamp(22px, 4vw, 36px);
}

.profile-bundle-card .bundle-graphic {
    width: 100%;
    max-width: 470px;
    margin: 0;
}

.profile-bundle-copy h2,
.channels-guide-copy h2,
.channels-checker-copy h2,
.submission-copy-card h2 {
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.product-problem {
    margin-top: 14px !important;
    padding-left: 14px;
    border-left: 2px solid var(--green);
    color: rgba(245, 247, 251, 0.82) !important;
    font-size: 15px !important;
}

.product-list {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.product-list li::before {
    content: "→";
    margin-right: 9px;
    color: var(--green);
    font-weight: 900;
}

.submission-copy-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-color: rgba(124, 58, 237, 0.3);
}

footer {
    border-top: 1px solid var(--line);
    margin-top: 32px;
    padding: 18px 0 26px;
    font-size: 12px;
    color: var(--dim);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .dj-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {

    .chart-drop-card {
        grid-template-columns: 1fr;
    }

    .chart-drop-graphic {
        max-width: 420px;
        margin-inline: auto;
    }

    .gates-radio-card {
        grid-template-columns: 1fr;
    }

    .gates-radio-graphic {
        max-width: 520px;
        margin-inline: auto;
    }

    .profile-finder-card,
    .profile-bundle-card,
    .submission-copy-card {
        grid-template-columns: 1fr;
    }

    .profile-finder-graphic,
    .profile-bundle-card .bundle-graphic {
        margin-inline: auto;
    }

    .topbar-inner,
    .footer-inner {
        align-items: flex-start;
    }

    .topbar-inner {
        flex-direction: column;
    }

    .top-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-nav.open {
        display: block;
    }

    .hero {
        padding-top: 26px;
    }

    .hero-copy,
    .hero-visual-card,
    .statement-card,
    .module-card,
    .dj-card {
        padding: 20px;
    }

    .module-grid,
    .statement-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        padding-bottom: 78px;
    }

    .cta-row {
        width: 100%;
    }

    .btn,
    .module-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 760px) {
    #profile-bundle .module-card[style*="grid-column"] {
        grid-column: span 1 !important;
    }
}

.channels-section {
    scroll-margin-top: 110px;
}

.channels-guide-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.88fr) minmax(380px, 1.12fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
    padding: clamp(22px, 4vw, 38px);
    overflow: hidden;
    border-color: rgba(57, 255, 136, 0.34);
    background: radial-gradient(circle at 6% 12%, rgba(124, 58, 237, 0.2), transparent 34%), linear-gradient(135deg, rgba(57, 255, 136, 0.065), rgba(255, 255, 255, 0.02));
}

.channels-cover {
    display: block;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 136, 0.34);
    border-radius: 22px;
    background: #030406;
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.58), 0 0 34px rgba(57, 255, 136, 0.08);
}

.channels-cover img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.channels-cover:hover img {
    transform: scale(1.012);
    filter: brightness(1.05);
}

.channels-label {
    color: var(--green);
}

.channels-guide-copy h2 {
    max-width: 760px;
}

.channels-lead {
    max-width: 720px;
    font-size: 16px !important;
}

.channels-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
}

.channels-price {
    margin-top: 18px !important;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--dim) !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.channels-price strong {
    color: var(--green);
    font-size: 17px;
}

.channels-preview-head {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.62fr);
    gap: 28px;
    align-items: end;
    margin: 28px 4px 16px;
}

.channels-preview-head h3 {
    margin: 10px 0 0;
    max-width: 760px;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.channels-preview-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.channels-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.channels-preview-grid a {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #030406;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
}

.channels-preview-grid img {
    width: 100%;
    aspect-ratio: 8.5 / 11;
    object-fit: cover;
    transition: transform 0.24s ease, filter 0.24s ease;
}

.channels-preview-grid a:hover img {
    transform: scale(1.018);
    filter: brightness(1.06);
}

.channels-checker-card {
    display: grid;
    grid-template-columns: minmax(240px, 380px) 1fr;
    gap: clamp(24px, 5vw, 52px);
    align-items: center;
    margin-top: 28px;
    padding: clamp(22px, 4vw, 34px);
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.42);
    border-radius: var(--radius);
    background: radial-gradient(circle at 90% 10%, rgba(57, 255, 136, 0.08), transparent 36%), linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.channels-checker-image {
    display: block;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.48);
    border-radius: 20px;
    background: #030406;
}

.channels-checker-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.channels-checker-copy p {
    max-width: 690px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .top-links {
        gap: 11px;
        font-size: 12px;
    }

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

@media (max-width: 760px) {

    .channels-guide-card,
    .channels-checker-card {
        grid-template-columns: 1fr;
    }

    .channels-cover,
    .channels-checker-image {
        margin-inline: auto;
    }

    .channels-list,
    .channels-preview-head {
        grid-template-columns: 1fr;
    }

    .channels-preview-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 0 12px;
        scrollbar-width: thin;
    }

    .channels-preview-grid a {
        flex: 0 0 min(78vw, 330px);
        scroll-snap-align: start;
    }
}

/* Anonymous submission examples */
.submission-examples {
    margin-top: 24px;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(124, 58, 237, 0.34);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 0%, rgba(124, 58, 237, 0.14), transparent 36%),
        rgba(9, 10, 14, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.submission-examples-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
}

.submission-examples-head h3 {
    max-width: 720px;
    margin: 10px 0 0;
    font-size: clamp(27px, 4vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.submission-examples-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.instagram-submission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.instagram-submission-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    padding: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #030406;
}

.instagram-submission-card h4 {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.instagram-submission-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.submission-number {
    display: block;
    padding: 2px 4px 0;
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.instagram-submission-card .btn {
    width: fit-content;
    max-width: 100%;
}

.instagram-submission-card .instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 540px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
}

@media (max-width: 820px) {
    .submission-examples {
        padding: 18px 14px 20px;
    }

    .submission-examples-head,
    .instagram-submission-grid {
        grid-template-columns: 1fr;
    }

    .submission-examples-head {
        gap: 14px;
        margin-bottom: 18px;
    }

    .submission-examples-head p {
        max-width: 100%;
    }

    .instagram-submission-grid {
        gap: 14px;
    }

    .instagram-submission-card {
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
        padding: 16px;
        border-radius: 18px;
    }

    .instagram-submission-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Refined site navigation */
.topbar {
    background: rgba(5, 6, 8, 0.86);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.topbar-inner {
    min-height: 72px;
    padding: 10px 0;
}

.brand {
    flex: 0 0 auto;
    gap: 11px;
}

.brand-icon {
    width: 40px;
    height: 40px;
}

.brand-copy strong {
    margin: 0;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.brand-copy small {
    display: block;
    margin-top: 5px;
    color: var(--dim);
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.2em;
}

.topbar-tagline {
    display: none;
}

.top-links {
    gap: 3px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 11px;
}

.top-links>span {
    display: none;
}

.top-links a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 750;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.top-links a:hover,
.top-links a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.top-links .nav-cta,
.mobile-nav .nav-cta {
    color: #031108;
    background: var(--green);
    box-shadow: 0 0 22px rgba(57, 255, 136, 0.17);
}

.top-links .nav-cta {
    margin-left: 3px;
    padding-inline: 15px;
}

.top-links .nav-cta:hover,
.top-links .nav-cta:focus-visible {
    color: #031108;
    background: #72ffa9;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-color: var(--line-strong);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
    display: block;
    width: 15px;
    height: 1px;
    background: var(--green);
}

.menu-lines {
    position: relative;
}

.menu-lines::before,
.menu-lines::after {
    position: absolute;
    left: 0;
    content: "";
}

.menu-lines::before {
    top: -5px;
}

.menu-lines::after {
    top: 5px;
}

.mobile-nav {
    padding: 10px 16px 16px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42);
}

.mobile-nav a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mobile-nav .nav-cta {
    margin-top: 10px;
    border-bottom: 0;
    border-radius: 999px;
    text-align: center;
}

@media (max-width: 1100px) {
    .top-links {
        gap: 2px;
        font-size: 10px;
    }

    .top-links a {
        padding-inline: 9px;
    }
}

@media (max-width: 760px) {
    .topbar-inner {
        min-height: 64px;
        flex-direction: row;
        align-items: center;
        padding: 9px 0;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-copy strong {
        font-size: 13px;
    }

    .brand-copy small {
        font-size: 7px;
    }

    .mobile-menu-toggle {
        margin-left: auto;
    }
}

@media (max-width: 390px) {
    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        max-width: 150px;
        font-size: 12px;
    }
}

/* Updated image system */
.hero-image-box>img {
    object-position: center 34%;
}

.channels-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 136, 0.34);
    border-radius: 22px;
    background: #030406;
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.58), 0 0 34px rgba(57, 255, 136, 0.08);
}

.channels-carousel-track {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #030406;
}

.channels-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.channels-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.channels-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #030406;
}

.carousel-arrow {
    position: absolute;
    top: calc(50% - 28px);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(5, 6, 8, 0.78);
    color: var(--text);
    cursor: pointer;
    font-size: 29px;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.carousel-count strong {
    color: var(--green);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(245, 247, 251, 0.3);
    cursor: pointer;
    transition: width 0.18s ease, background 0.18s ease;
}

.carousel-dots button.active {
    width: 24px;
    background: var(--green);
}

.channels-checker-image img {
    aspect-ratio: 1 / 1;
    object-position: center;
}

.submission-copy-card {
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) auto;
    padding: clamp(22px, 4vw, 34px);
    overflow: hidden;
}

.submission-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    min-height: 280px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.42);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(10, 12, 17, 0.96), rgba(3, 4, 6, 0.98));
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.46);
}

.submission-card-image img {
    display: block;
    width: 100%;
    max-height: 420px;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
}

.submission-card-copy p {
    max-width: 690px;
}

@media (max-width: 980px) {
    .submission-copy-card {
        grid-template-columns: minmax(220px, 320px) 1fr;
    }

    .submission-action {
        grid-column: 2;
    }
}

@media (max-width: 760px) {
    .channels-carousel {
        margin-inline: auto;
    }

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

    .carousel-footer>span:last-child {
        display: none;
    }

    .submission-copy-card {
        grid-template-columns: 1fr;
    }

    .submission-card-image {
        max-width: 420px;
        margin-inline: auto;
    }

    .submission-action {
        grid-column: auto;
    }
}

/* Hero primary actions */
.hero-cta-row {
    gap: 12px;
}

.hero-cta-row .btn {
    padding: 18px 30px;
    font-size: 13px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-row .btn-primary {
    box-shadow: 0 0 44px rgba(57, 255, 136, 0.34);
}

.btn-hero-alt {
    background: rgba(124, 58, 237, 0.16);
    color: var(--text);
    border: 1px solid rgba(124, 58, 237, 0.7);
    text-decoration: none;
}

.btn-hero-alt:hover {
    background: rgba(124, 58, 237, 0.26);
}

/* =========================================================
   MANIFESTOR EXPERIENCE REBUILD
   Added September 2026. Intentionally direct, modular and mobile-first.
   ========================================================= */
.experience-site {
    background: #050608
}

.ma-hero {
    padding: clamp(56px, 8vw, 110px) 0 70px
}

.ma-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 28px;
    align-items: end
}

.kicker {
    margin: 0;
    color: var(--green);
    font-weight: 900;
    letter-spacing: .26em;
    font-size: 11px
}

.ma-hero h1 {
    max-width: 970px;
    margin: 18px 0 0;
    font-size: clamp(48px, 7.8vw, 100px);
    line-height: .88;
    letter-spacing: -.075em
}

.ma-hero h1 span {
    color: rgba(245, 247, 251, .52)
}

.ma-lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.72
}

.ma-note {
    max-width: 740px;
    margin: 20px 0 0;
    color: var(--dim);
    font-size: 13px;
    line-height: 1.7
}

.ma-manifesto-card {
    padding: 28px;
    border: 1px solid rgba(57, 255, 136, .28);
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(57, 255, 136, .12), transparent 36%), rgba(255, 255, 255, .035);
    box-shadow: var(--shadow)
}

.ma-manifesto-card p {
    margin: 18px 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75
}

.ma-manifesto-card strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    line-height: 1.4
}

.path-section {
    padding: 70px 0
}

.section-head.wide {
    max-width: 850px
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.journey-card {
    position: relative;
    min-height: 310px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .03);
    transition: .2s ease
}

.journey-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 255, 136, .35);
    background: rgba(255, 255, 255, .05)
}

.journey-card>span {
    display: block;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em
}

.journey-card h3 {
    margin: 34px 0 12px;
    font-size: 29px;
    letter-spacing: -.045em
}

.journey-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7
}

.journey-card b {
    position: absolute;
    left: 26px;
    bottom: 26px;
    color: var(--text);
    font-size: 11px;
    letter-spacing: .16em
}

.journey-card.accent {
    border-color: rgba(124, 58, 237, .7);
    background: linear-gradient(145deg, rgba(124, 58, 237, .2), rgba(57, 255, 136, .07))
}

.split-band {
    padding: 30px 0 70px
}

.split-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--line)
}

.split-band-grid>div {
    padding: 34px;
    background: #08090c
}

.split-band h2 {
    margin: 12px 0;
    font-size: clamp(29px, 4vw, 44px);
    letter-spacing: -.055em
}

.split-band p {
    color: var(--muted);
    line-height: 1.8
}

.tool-grid,
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px
}

.tool-card,
.shop-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .03)
}

.tool-card>span,
.shop-card>span {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em
}

.tool-card h3,
.shop-card h3 {
    margin: 22px 0 10px;
    font-size: 24px;
    letter-spacing: -.04em
}

.tool-card p,
.shop-card p {
    color: var(--muted);
    line-height: 1.7
}

.shop-card {
    display: flex;
    flex-direction: column;
    min-height: 370px
}

.shop-card strong {
    margin-top: auto;
    padding: 18px 0 12px;
    font-size: 28px
}

.shop-card .btn {
    width: 100%;
    text-align: center
}

.shop-card small {
    display: block;
    margin-top: 12px;
    color: var(--dim)
}

.playground-promo {
    padding: 80px 0
}

.playground-promo-inner {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 36px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(57, 255, 136, .34);
    border-radius: 32px;
    background: radial-gradient(circle at 90% 5%, rgba(57, 255, 136, .14), transparent 32%), radial-gradient(circle at 15% 90%, rgba(124, 58, 237, .22), transparent 36%), #08090d;
    box-shadow: var(--shadow)
}

.playground-promo h2 {
    margin: 12px 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -.065em
}

.playground-promo p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8
}

.playground-list {
    display: grid;
    gap: 12px
}

.playground-list div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035)
}

.playground-list b {
    display: block;
    color: var(--green);
    font-size: 11px;
    letter-spacing: .18em
}

.playground-list span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    line-height: 1.5
}

.playground-price {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 26px;
    border-top: 1px solid var(--line)
}

.playground-price strong {
    font-size: 48px;
    letter-spacing: -.05em
}

.playground-price span {
    color: var(--dim);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.playground-price .btn {
    margin-left: auto
}

.raw-section {
    padding: 70px 0 110px
}

.raw-inner {
    max-width: 980px;
    padding-left: 26px;
    border-left: 3px solid var(--green)
}

.raw-inner>p:first-child {
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px
}

.raw-inner h2 {
    margin: 16px 0;
    font-size: clamp(40px, 6vw, 70px);
    line-height: .98;
    letter-spacing: -.065em
}

.raw-inner p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75
}

.raw-inner .btn {
    margin-top: 16px
}

/* educational pages */
.lesson-hero {
    padding: 70px 0 36px
}

.lesson-hero-inner {
    max-width: 930px
}

.lesson-hero h1 {
    font-size: clamp(52px, 8vw, 94px);
    line-height: .9
}

.lesson-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8
}

.lesson-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    padding: 30px 0 90px
}

.lesson-nav {
    position: sticky;
    top: 95px;
    align-self: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .025)
}

.lesson-nav a {
    display: block;
    padding: 10px 0;
    color: var(--muted);
    font-size: 13px
}

.lesson-nav a:hover {
    color: var(--green)
}

.lesson-content {
    display: grid;
    gap: 22px
}

.lesson-block {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .025)
}

.lesson-block h2 {
    margin: 8px 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -.05em
}

.lesson-block h3 {
    margin: 26px 0 10px;
    font-size: 22px
}

.lesson-block p,
.lesson-block li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8
}

.lesson-block strong {
    color: var(--text)
}

.truth-callout {
    padding: 20px 22px;
    border-left: 3px solid var(--green);
    background: rgba(57, 255, 136, .055);
    color: var(--text) !important;
    font-size: 19px !important
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.authority-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .03)
}

.authority-card h3 {
    margin: 14px 0 8px;
    font-size: 27px
}

.authority-card .authority-word {
    color: var(--green);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .18em
}

.authority-card p {
    color: var(--muted);
    line-height: 1.7
}

.authority-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--text);
    font-weight: 800
}

/* Playground */
.playground-body {
    background: #040507
}

.gate-screen {
    min-height: calc(100vh - 70px);
    display: grid;
    place-items: center;
    padding: 50px 16px
}

.gate-card {
    width: min(620px, 100%);
    padding: 36px;
    border: 1px solid rgba(57, 255, 136, .32);
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(57, 255, 136, .1), transparent 34%), #090a0e;
    box-shadow: var(--shadow)
}

.gate-card h1 {
    font-size: clamp(42px, 8vw, 70px)
}

.gate-card p {
    color: var(--muted);
    line-height: 1.7
}

.code-row {
    display: flex;
    gap: 10px;
    margin-top: 22px
}

.code-row input,
.play-select,
.play-input,
.play-textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: #050608;
    color: var(--text);
    padding: 14px 15px;
    font: inherit
}

.code-row input:focus,
.play-select:focus,
.play-input:focus,
.play-textarea:focus {
    outline: 2px solid rgba(57, 255, 136, .32);
    border-color: var(--green)
}

.gate-error {
    min-height: 20px;
    margin-top: 10px;
    color: #ff8c9f !important;
    font-size: 13px
}

.playground-app {
    display: none
}

.playground-app.unlocked {
    display: block
}

.play-hero {
    padding: 54px 0 22px
}

.play-hero h1 {
    font-size: clamp(48px, 8vw, 88px);
    line-height: .9
}

.play-hero p {
    max-width: 750px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75
}

.play-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
    padding: 20px 0 80px
}

.play-nav {
    position: sticky;
    top: 90px;
    align-self: start;
    display: grid;
    gap: 8px
}

.play-nav button {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
    color: var(--muted);
    text-align: left;
    cursor: pointer
}

.play-nav button.active {
    border-color: rgba(57, 255, 136, .4);
    background: rgba(57, 255, 136, .08);
    color: var(--text)
}

.play-panel {
    display: none
}

.play-panel.active {
    display: block
}

.play-panel-head {
    margin-bottom: 18px
}

.play-panel-head h2 {
    margin: 8px 0;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -.055em
}

.play-panel-head p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.75
}

.play-box {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .028);
    margin-bottom: 16px
}

.play-box h3 {
    margin: 0 0 14px;
    font-size: 23px
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.choice-btn {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #08090c;
    color: var(--muted);
    cursor: pointer;
    text-align: left
}

.choice-btn:hover,
.choice-btn.selected {
    border-color: rgba(57, 255, 136, .5);
    color: var(--text);
    background: rgba(57, 255, 136, .07)
}

.result-box {
    display: none;
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(57, 255, 136, .25);
    border-radius: 18px;
    background: rgba(57, 255, 136, .055)
}

.result-box.show {
    display: block
}

.result-box h4 {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase
}

.result-box p,
.result-box li {
    color: var(--muted);
    line-height: 1.75
}

.result-box strong {
    color: var(--text)
}

.mini-disclaimer {
    color: var(--dim);
    font-size: 12px;
    line-height: 1.6
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.resource-link {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .025)
}

.resource-link b {
    display: block
}

.resource-link span {
    display: block;
    margin-top: 6px;
    color: var(--dim);
    font-size: 12px
}

@media(max-width:1000px) {

    .ma-hero-grid,
    .playground-promo-inner {
        grid-template-columns: 1fr
    }

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

    .tool-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .playground-price {
        flex-wrap: wrap
    }

    .playground-price .btn {
        margin-left: 0
    }

    .authority-grid {
        grid-template-columns: 1fr
    }

    .resource-links {
        grid-template-columns: 1fr
    }
}

@media(max-width:760px) {
    .ma-hero {
        padding-top: 42px
    }

    .ma-hero h1 {
        font-size: clamp(46px, 15vw, 70px)
    }

    .journey-grid,
    .tool-grid,
    .shop-grid,
    .split-band-grid {
        grid-template-columns: 1fr
    }

    .journey-card {
        min-height: 270px
    }

    .lesson-grid,
    .play-shell {
        grid-template-columns: 1fr
    }

    .lesson-nav,
    .play-nav {
        position: static
    }

    .play-nav {
        grid-template-columns: repeat(2, 1fr)
    }

    .choice-grid {
        grid-template-columns: 1fr
    }

    .code-row {
        flex-direction: column
    }

    .playground-price {
        align-items: flex-start;
        flex-direction: column
    }

    .playground-price .btn {
        width: 100%
    }
}

/* ===== Manifestor Anonymous public/free site additions ===== */
.free-home-hero h1 {
    font-size: clamp(46px, 6.9vw, 88px);
    line-height: .92;
    letter-spacing: -.065em
}

.hero-muted {
    color: rgba(245, 247, 251, .48)
}

.free-site .section-head>p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75
}

.visual-feature {
    padding-top: 34px
}

.visual-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
}

.visual-product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .03)
}

.visual-product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-bottom: 1px solid var(--line)
}

.visual-product-card>div {
    padding: 26px
}

.visual-product-card h3 {
    margin: 12px 0;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -.045em
}

.visual-product-card p {
    color: var(--muted);
    line-height: 1.75
}

.music-feature .gates-radio-card {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: center
}

.gates-radio-visual img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid var(--line)
}

.gates-radio-copy h2 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: .96;
    letter-spacing: -.055em
}

.gates-radio-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8
}

.playground-tease {
    padding: 50px 0 80px
}

.playground-tease-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    padding: 36px;
    border: 1px solid rgba(57, 255, 136, .3);
    border-radius: 28px;
    background: radial-gradient(circle at 82% 20%, rgba(124, 58, 237, .23), transparent 35%), rgba(255, 255, 255, .025)
}

.playground-tease h2 {
    margin: 12px 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -.055em
}

.playground-tease p {
    max-width: 780px;
    color: var(--muted);
    line-height: 1.75
}

.explorer-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .025)
}

.explorer-result {
    margin-top: 24px
}

.explorer-result h2 {
    font-size: clamp(36px, 5vw, 58px);
    margin: 8px 0 20px
}

.result-kicker {
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em
}

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

.result-grid>div,
.result-connections,
.paid-depth-note {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025)
}

.result-grid b,
.result-connections b,
.paid-depth-note b {
    color: var(--green);
    font-size: 10px;
    letter-spacing: .16em
}

.result-grid p,
.result-connections p,
.paid-depth-note p,
.explorer-empty {
    color: var(--muted);
    line-height: 1.7
}

.paid-depth-note {
    margin-top: 14px;
    border-color: rgba(124, 58, 237, .35)
}

.status-pill {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em
}

.status-pill.possible {
    background: rgba(57, 255, 136, .1);
    border: 1px solid rgba(57, 255, 136, .28);
    color: var(--green)
}

.status-pill.impossible {
    background: rgba(255, 77, 109, .1);
    border: 1px solid rgba(255, 77, 109, .28);
    color: #ff8399
}

.play-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 800
}

.play-select {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #090b0f;
    color: var(--text);
    font-size: 16px
}

.eleven-callout {
    max-width: 980px;
    margin: 24px auto 0;
    padding: 30px;
    border: 1px solid rgba(57, 255, 136, .25);
    border-radius: 24px;
    background: rgba(57, 255, 136, .04)
}

.eleven-callout h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 10px 0
}

.eleven-callout p {
    color: var(--muted);
    line-height: 1.75
}

.social-link {
    margin-top: 4px
}

@media(max-width:900px) {

    .visual-product-grid,
    .music-feature .gates-radio-card,
    .result-grid {
        grid-template-columns: 1fr
    }

    .playground-tease-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .playground-tease-inner .btn {
        width: 100%;
        text-align: center
    }
}

/* Step-zero chart generator */
.chart-first-card {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(180px, .55fr);
    gap: 32px;
    align-items: center;
    overflow: hidden
}

.chart-first-copy {
    min-width: 0
}

.chart-first-copy h2 {
    margin: .45rem 0 .8rem
}

.chart-first-note {
    margin: 18px 0 0;
    color: var(--muted, #b9b9b9);
    font-size: .95rem
}

.chart-first-stamp {
    min-height: 190px;
    border: 1px solid rgba(191, 255, 0, .45);
    background: linear-gradient(145deg, rgba(191, 255, 0, .08), rgba(144, 70, 255, .10));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    transform: rotate(2deg)
}

.chart-first-stamp span,
.chart-first-stamp small {
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72rem
}

.chart-first-stamp strong {
    font-size: clamp(1.7rem, 4vw, 3.4rem);
    line-height: .95;
    margin: 10px 0
}

@media(max-width:720px) {
    .chart-first-card {
        grid-template-columns: 1fr
    }

    .chart-first-stamp {
        min-height: 130px;
        transform: none
    }
}

/* Final public offers + Playground feature */
.offer-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.included-badge {
    display: inline-flex;
    margin: 0 0 14px;
    padding: 7px 10px;
    border: 1px solid rgba(57, 255, 136, .38);
    border-radius: 999px;
    color: var(--green);
    background: rgba(57, 255, 136, .07);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em
}

.visual-product-card .included-badge+.section-label {
    display: block
}

.playground-feature {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: center;
    padding-top: 16px
}

.playground-graphic {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #090b0f
}

.playground-graphic img {
    display: block;
    width: 100%;
    height: auto
}

.playground-tease-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(40px, 5.3vw, 72px);
    line-height: .94;
    letter-spacing: -.06em
}

.playground-tease-copy>p {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75
}

.playground-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 16px
}

.playground-includes span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.playground-exclusion {
    font-size: 13px !important
}

@media(max-width:1000px) {
    .offer-grid-three {
        grid-template-columns: 1fr 1fr
    }

    .offer-grid-three .visual-product-card:last-child {
        grid-column: 1/-1
    }

    .playground-feature {
        grid-template-columns: 1fr
    }
}

@media(max-width:680px) {
    .offer-grid-three {
        grid-template-columns: 1fr
    }

    .offer-grid-three .visual-product-card:last-child {
        grid-column: auto
    }

    .playground-feature {
        gap: 26px
    }

    .playground-tease-copy h2 {
        font-size: clamp(38px, 12vw, 58px)
    }
}


/* Homepage visual balance refinements - Sept 2026 */
@media (min-width: 1001px) {
    .free-home-hero .hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
        gap: 52px;
        align-items: center;
    }

    .free-home-hero .hero-copy {
        padding: 38px 40px;
        align-self: center;
    }

    .free-home-hero .hero-copy h1 {
        max-width: 760px;
    }

    .free-home-hero .hero-body {
        max-width: 610px;
        margin-top: 24px;
        font-size: 17px;
        line-height: 1.65;
    }

    .free-home-hero .hero-cta-row {
        margin-top: 28px;
    }

    .free-home-hero .hero-visual-card {
        height: auto;
        padding: 14px;
    }
}

.hero-right-copy {
    padding: 22px 18px 12px;
}

.hero-right-copy>p {
    margin: 9px 0 0;
    max-width: 560px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.hero-right-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 15px;
}

.hero-right-links a {
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.free-home-hero .hero-image-box {
    border-radius: 22px;
}

.free-home-hero .hero-image-box img {
    width: 100%;
    height: clamp(310px, 34vw, 445px);
    max-height: none;
    object-fit: cover;
    object-position: center 28%;
}

/* Product art should never be cropped. */
.offer-grid-three .visual-product-card {
    display: flex;
    flex-direction: column;
}

.offer-grid-three .visual-product-card>img {
    width: 100%;
    height: clamp(245px, 23vw, 330px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    padding: 16px;
    background:
        radial-gradient(circle at 50% 45%, rgba(124, 58, 237, .11), transparent 52%),
        #07080b;
    border-bottom: 1px solid var(--line);
}

.offer-grid-three .visual-product-card>div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-grid-three .visual-product-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Playground promo: clean two-column desktop balance. */
.playground-feature {
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
    gap: clamp(42px, 5vw, 72px);
    align-items: center;
}

.playground-graphic {
    align-self: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.playground-graphic img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 26px 44px rgba(0, 0, 0, .34));
}

.playground-tease-copy {
    max-width: 720px;
}

.playground-tease-copy h2 {
    max-width: 690px;
}

.playground-tease-copy>p {
    max-width: 650px;
}

.playground-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.playground-actions .btn {
    margin: 0;
}

.playground-existing-link {
    color: var(--green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .04em;
}

.playground-exclusion {
    margin-top: 17px;
    color: var(--dim) !important;
}

@media (max-width: 1000px) {
    .playground-feature {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .playground-graphic {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .free-home-hero .hero-copy {
        padding: 25px 22px;
    }

    .free-home-hero .hero-image-box img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .hero-right-copy {
        padding: 20px 6px 8px;
    }

    .offer-grid-three .visual-product-card>img {
        height: auto;
        max-height: 420px;
        padding: 12px;
    }

    .playground-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .playground-actions .btn {
        width: 100%;
        text-align: center;
    }

    .playground-existing-link {
        text-align: center;
    }
}

/* PLAYGROUND-FIRST HOMEPAGE */

.playground-home-hero {
    padding: clamp(42px, 7vw, 92px) 0;
    border-bottom: 1px solid var(--line);
}

.playground-home-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: clamp(34px, 6vw, 84px);
}

.playground-home-copy h1 {
    max-width: 820px;
    margin: 20px 0;
    font-size: clamp(3rem, 6.8vw, 6.7rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.playground-home-copy .hero-body {
    max-width: 720px;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.65;
}

.playground-home-art {
    display: block;
    border: 1px solid var(--line-strong);
    background: #020303;
    box-shadow:
        var(--shadow),
        0 0 44px rgba(57, 255, 136, 0.08);
    overflow: hidden;
}

.playground-home-art img {
    width: 100%;
    height: auto;
}


/* ROOM PREVIEW CAROUSEL */

.room-preview-section {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.room-preview-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.room-preview-controls {
    display: flex;
    gap: 10px;
    padding-bottom: 28px;
}

.room-preview-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(57, 255, 136, 0.5);
    border-radius: 50%;
    background: rgba(57, 255, 136, 0.07);
    color: var(--green);
    cursor: pointer;
    font-size: 1.4rem;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.room-preview-arrow:hover,
.room-preview-arrow:focus-visible {
    background: var(--green);
    color: #021009;
    transform: translateY(-2px);
    outline: none;
}

.room-preview-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(230px, 24vw, 310px);
    gap: 18px;

    overflow-x: auto;
    overscroll-behavior-inline: contain;

    scroll-snap-type: inline mandatory;

    scrollbar-width: thin;
    scrollbar-color:
        var(--green) rgba(255, 255, 255, 0.08);

    padding: 8px 2px 24px;
}

.room-preview-card {
    scroll-snap-align: start;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.room-preview-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.room-preview-card>div {
    padding: 20px;
}

.room-preview-card h3 {
    margin: 0 0 10px;
    font-size: 1.14rem;
}

.room-preview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.96rem;
}

.room-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    margin-top: 8px;
    color: var(--dim);
}


/* SIMPLIFIED LEARNING PATH */

.choice-grid-three,
.next-choice-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

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

.manifestor-core-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.manifestor-core-grid .journey-card {
    cursor: default;
}

.manifestor-core-grid .journey-card a {
    color: var(--green);
}

.optional-learning-note {
    margin: 24px 0 0;
    color: var(--green);
    text-align: center;
    font-weight: 750;
}


/* TABLET */

@media (max-width: 900px) {

    .playground-home-grid {
        grid-template-columns: 1fr;
    }

    .playground-home-art {
        max-width: 680px;
    }

    .choice-grid-three,
    .next-choice-grid,
    .manifestor-core-grid {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .playground-home-hero {
        padding: 34px 0 48px;
    }

    .playground-home-copy h1 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    .room-preview-heading {
        display: block;
    }

    .room-preview-controls {
        display: none;
    }

    .room-preview-track {
        grid-auto-columns: min(78vw, 290px);
        margin-right: -16px;
    }

    .room-preview-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .room-preview-footer .btn {
        text-align: center;
    }

    .basics-four-grid {
        grid-template-columns: 1fr;
    }

}

/* MANIFESTOR 101 */

.chart-anatomy-grid {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.manifestor-three-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.anatomy-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.anatomy-card>b {
    display: block;
    color: var(--green);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

.anatomy-card h3 {
    margin: 13px 0 10px;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.anatomy-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.anatomy-card .btn {
    margin-top: 20px;
}

.lesson-nav>.section-label {
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .manifestor-three-grid {
        grid-template-columns: 1fr;
    }
}

/* Final foundation: common focus, privacy and event treatment. */
:focus-visible {
    outline: 2px solid #c9ff2e;
    outline-offset: 4px;
}

.ma-privacy {
    margin: 22px 0;
    padding: 14px 18px;
    border: 1px solid #49494e;
    border-radius: 12px;
    color: #c7c7cc;
    font-size: 14px;
    line-height: 1.6;
}

.ma-privacy summary {
    cursor: pointer;
    font-weight: 700;
    color: #eee;
}

.ma-event {
    max-width: 1100px;
    margin: 48px auto 24px;
    display: grid;
    grid-template-columns: minmax(150px, 260px) 1fr;
    gap: 28px;
    padding: 24px;
    border: 1px solid #675275;
    background: #100c15;
}

.ma-event img {
    width: 100%;
    height: 100%;
    max-height: 330px;
    object-fit: cover;
}

.ma-event.library-feature img {
    height: auto;
    max-height: none;
    object-fit: contain;
}

.ma-event p {
    line-height: 1.6;
    color: #cbc5cf;
}

.ma-event h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin: 12px 0;
}

.ma-neon {
    display: inline-block;
    color: #dfb6ef !important;
    border: 2px solid #916b9e;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 26px;
    letter-spacing: .14em;
    text-shadow: 0 0 9px #b676cc;
    box-shadow: inset 0 0 12px #673d7740, 0 0 12px #673d7740;
}

.ma-neon-small {
    font-size: 12px;
    padding: 8px;
    letter-spacing: .05em;
}

.ma-lobby-extra {
    max-width: 1100px;
    margin: 24px auto;
    color: #ccc;
}

.ma-lobby-extra a {
    color: #c9ff2e;
}

.ma-playground-headline {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -.045em;
}

.pg-access {
    overflow-y: auto;
}

.pg-access-card {
    margin: auto;
}

.rr-signal-board {
    margin: 24px 0;
    border: 2px solid #e28c4b;
    padding: 20px;
    background: #1b100e;
}

.rr-signal-board p {
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

@media(max-width:680px) {
    .ma-event {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .ma-event img {
        max-height: 200px;
        object-position: center 35%;
    }

    .pg-nav {
        flex-wrap: wrap;
    }
}

@media print {
    .ma-privacy {
        display: none;
    }
}

#play .statement-card .btn {
    display: inline-flex;
    margin-top: 16px;
}

#play .statement-card h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    margin: 14px 0;
}

#play .statement-card p {
    margin: 12px 0;
}

.ma-event .section-label {
    display: block;
}