:root {
    color-scheme: dark;
    --deep-navy: #06142E;
    --dark-blue: #081B45;
    --electric-blue: #0A6BFF;
    --cyan: #28E8FF;
    --green: #7CFF3A;
    --lime: #DFFF3F;
    --gold: #FFD43B;
    --pink: #FF3EDB;
    --purple: #7B2CFF;
    --danger: #FF4D2E;
    --text: #FFFFFF;
    --secondary: #B8D7FF;
    --muted: #7EA6D9;
    --card: rgba(8, 27, 69, 0.82);
    --glass: rgba(255, 255, 255, 0.08);
    --border: rgba(40, 232, 255, 0.45);
    --button-glow: rgba(124, 255, 58, 0.45);
    --dark-text: #06142E;
    --container: 1200px;
    --heading-font: "Orbitron", "Russo One", "Arial Black", system-ui, sans-serif;
    --body-font: "Inter", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@keyframes float-cube {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
    50% { transform: translate3d(0, -20px, 0) rotate(18deg); }
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.88; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes drift-grid {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 72px 72px, -72px -72px; }
}

@keyframes shimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    font-family: var(--body-font);
    color: var(--text);
    background:
        radial-gradient(circle at 12% 0%, rgba(40, 232, 255, 0.16), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(255, 62, 219, 0.13), transparent 26%),
        linear-gradient(180deg, var(--deep-navy), #030A1C 62%, var(--deep-navy));
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(rgba(40, 232, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 232, 255, 0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    animation: drift-grid 24s linear infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(124, 255, 58, 0.08) 48% 52%, transparent 52%),
        radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(10, 107, 255, 0.14));
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 62px;
    z-index: 50;
    margin-top: 62px;
    padding: 0 12px;
}

.nav-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(40, 232, 255, 0.32);
    border-bottom-color: rgba(124, 255, 58, 0.34);
    border-radius: 18px;
    background: rgba(6, 20, 46, 0.78);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.36), 0 0 24px rgba(40, 232, 255, 0.1);
    backdrop-filter: blur(18px);
    padding: 10px 12px 10px 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-cube {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid #fff;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.36), transparent 34%),
        linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 0 22px rgba(40, 232, 255, 0.38), inset 0 -5px 0 rgba(6, 20, 46, 0.28);
    transform: rotate(8deg);
}

.brand-cube span {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--deep-navy);
    box-shadow: 12px 0 0 var(--deep-navy), 6px 11px 0 var(--deep-navy);
}

.brand-name {
    font-family: var(--heading-font);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 900;
    color: var(--text);
    text-shadow: 0 0 14px rgba(40, 232, 255, 0.48);
    white-space: nowrap;
}

.header-actions {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.header-link {
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.92rem;
    padding: 10px 12px;
    border-radius: 12px;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-link:hover {
    color: var(--text);
    background: rgba(40, 232, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(40, 232, 255, 0.18);
}

.page {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: calc(100svh - 88px);
    display: grid;
    align-items: center;
    padding: 74px 0 56px;
    isolation: isolate;
}

.hero-bg,
.hero-bg span {
    position: absolute;
    pointer-events: none;
}

.hero-bg {
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.grid-block {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(40, 232, 255, 0.26);
    background:
        linear-gradient(rgba(40, 232, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 232, 255, 0.15) 1px, transparent 1px),
        rgba(8, 27, 69, 0.34);
    background-size: 24px 24px;
    box-shadow: 0 0 30px rgba(10, 107, 255, 0.24);
    transform: rotate(12deg);
}

.grid-block-one {
    left: -70px;
    top: 20%;
}

.grid-block-two {
    right: -86px;
    bottom: 10%;
    transform: rotate(-15deg);
}

.floating-cube {
    top: 17%;
    right: 12%;
    width: 74px;
    height: 74px;
    border: 3px solid #fff;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.42), transparent 38%),
        linear-gradient(135deg, var(--gold), var(--pink));
    box-shadow: 0 0 34px rgba(255, 62, 219, 0.55);
    animation: float-cube 5s ease-in-out infinite;
}

.floating-cube::before,
.floating-cube::after {
    content: "";
    position: absolute;
    background: var(--deep-navy);
}

.floating-cube::before {
    width: 10px;
    height: 10px;
    left: 17px;
    top: 20px;
    box-shadow: 28px 0 0 var(--deep-navy);
}

.floating-cube::after {
    width: 28px;
    height: 8px;
    left: 23px;
    top: 48px;
    border-radius: 0 0 8px 8px;
}

.spike {
    width: 0;
    height: 0;
    border-left: 26px solid transparent;
    border-right: 26px solid transparent;
    border-bottom: 58px solid var(--danger);
    filter: drop-shadow(0 0 15px rgba(255, 77, 46, 0.58));
}

.spike-one {
    left: 8%;
    bottom: 20%;
    transform: rotate(-8deg);
}

.spike-two {
    right: 26%;
    bottom: 7%;
    border-bottom-color: var(--lime);
    filter: drop-shadow(0 0 15px rgba(223, 255, 63, 0.52));
}

.portal-ring,
.cta-portal {
    border-radius: 50%;
    border: 8px solid rgba(40, 232, 255, 0.78);
    box-shadow:
        0 0 28px rgba(40, 232, 255, 0.6),
        inset 0 0 26px rgba(123, 44, 255, 0.62);
    animation: pulse-ring 2.6s ease-in-out infinite;
}

.portal-one {
    width: 120px;
    height: 120px;
    right: 4%;
    top: 43%;
}

.orb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px currentColor, 0 0 42px currentColor;
}

.orb-one {
    left: 15%;
    top: 16%;
    color: var(--green);
}

.orb-two {
    right: 19%;
    top: 66%;
    color: var(--pink);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.hero-copy {
    max-width: 710px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.chip,
.proof-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(40, 232, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.chip-accent {
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--green), var(--lime));
    border-color: #fff;
    box-shadow: 0 0 22px rgba(124, 255, 58, 0.38);
}

.hero-title,
.section-title {
    font-family: var(--heading-font);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-title {
    max-width: 800px;
    font-size: clamp(2.45rem, 8.5vw, 5.85rem);
    text-shadow:
        0 0 12px rgba(40, 232, 255, 0.55),
        0 6px 0 rgba(10, 107, 255, 0.22);
}

.hero-subtitle {
    max-width: 670px;
    margin-top: 20px;
    color: var(--secondary);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
}

.hero-media {
    justify-self: end;
    width: min(100%, 430px);
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background: rgba(8, 27, 69, 0.72);
    box-shadow:
        0 0 34px rgba(40, 232, 255, 0.36),
        0 20px 54px rgba(0, 0, 0, 0.38);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 14px;
    padding: 14px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, border-color 160ms ease;
    -webkit-tap-highlight-color: transparent;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.36) 44%, transparent 62%);
    transform: translateX(-120%);
}

.btn:hover {
    transform: translateY(-2px) scale(1.04);
}

.btn:hover::after {
    animation: shimmer 520ms ease;
}

.btn:active {
    transform: translateY(1px) scale(0.99);
}

.btn-primary,
.btn-submit {
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--green), var(--lime));
    border: 2px solid #fff;
    box-shadow: 0 0 24px var(--button-glow), inset 0 -4px 0 rgba(6, 20, 46, 0.18);
}

.btn-primary:hover,
.btn-submit:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 34px rgba(124, 255, 58, 0.62), 0 14px 34px rgba(0, 0, 0, 0.26);
}

.btn-secondary {
    color: var(--text);
    background: rgba(8, 27, 69, 0.68);
    border: 1px solid var(--cyan);
    box-shadow: 0 0 20px rgba(40, 232, 255, 0.14);
}

.btn-secondary:hover {
    box-shadow: 0 0 26px rgba(40, 232, 255, 0.42);
}

.btn-nav {
    display: none;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.78rem;
    border-radius: 12px;
}

.btn-small {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.82rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.level-panel,
.stat-card,
.feature-card,
.show-card,
.faq-item,
.cta-panel {
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(40, 232, 255, 0.09), transparent 40%),
        var(--card);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.level-panel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 18px;
}

.level-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(40, 232, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 232, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.7;
}

.level-panel > * {
    position: relative;
}

.panel-topline,
.progress-label,
.panel-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.panel-topline {
    font-family: var(--heading-font);
    font-weight: 900;
    text-transform: uppercase;
}

.status-dot {
    color: var(--green);
    font-size: 0.78rem;
    text-shadow: 0 0 16px rgba(124, 255, 58, 0.9);
}

.panel-stage {
    position: relative;
    min-height: 220px;
    margin: 16px 0;
    border-radius: 16px;
    border: 1px solid rgba(40, 232, 255, 0.34);
    background:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(10, 107, 255, 0.34), rgba(123, 44, 255, 0.16));
    background-size: 24px 24px, 24px 24px, 100% 100%;
    overflow: hidden;
}

.panel-stage::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    background:
        repeating-linear-gradient(45deg, rgba(124, 255, 58, 0.32) 0 12px, rgba(40, 232, 255, 0.24) 12px 24px),
        var(--dark-blue);
    border-top: 2px solid rgba(255,255,255,0.55);
}

.panel-cube {
    position: absolute;
    left: 13%;
    bottom: 58px;
    width: 54px;
    height: 54px;
    border: 3px solid #fff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    box-shadow: 0 0 28px rgba(255, 212, 59, 0.35);
    transform: rotate(10deg);
}

.panel-spike {
    position: absolute;
    left: 47%;
    bottom: 40px;
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 58px solid #fff;
    filter: drop-shadow(0 0 16px rgba(255,255,255,0.45));
}

.panel-orb {
    position: absolute;
    right: 31%;
    top: 52px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 26px rgba(124, 255, 58, 0.9);
}

.panel-portal {
    position: absolute;
    right: 9%;
    top: 70px;
    width: 62px;
    height: 96px;
    border-radius: 50%;
    border: 6px solid var(--cyan);
    box-shadow: 0 0 24px rgba(40, 232, 255, 0.65), inset 0 0 20px rgba(255, 62, 219, 0.5);
}

.progress-wrap {
    display: grid;
    gap: 8px;
}

.progress-label {
    color: var(--secondary);
    font-weight: 800;
}

.progress-label strong {
    color: var(--text);
}

.progress-bar {
    height: 16px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,0.38);
    border-radius: 999px;
    background: rgba(6, 20, 46, 0.8);
}

.progress-bar span {
    display: block;
    width: 82%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green), var(--lime), var(--gold));
    box-shadow: 0 0 18px rgba(124, 255, 58, 0.58);
}

.panel-stats {
    margin-top: 14px;
}

.panel-stats div {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(40, 232, 255, 0.26);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.panel-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.panel-stats strong {
    display: block;
    margin-top: 2px;
    color: var(--text);
    font-family: var(--heading-font);
}

.play-button {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 18px auto 0;
    border: 3px solid #fff;
    border-radius: 50%;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 0 30px rgba(40, 232, 255, 0.56);
    cursor: pointer;
    font-weight: 950;
    text-transform: uppercase;
}

.stats,
.section {
    padding: 70px 0;
}

.stats-grid,
.feature-grid,
.showcase-grid {
    display: grid;
    gap: 16px;
}

.stat-card {
    min-height: 150px;
    border-radius: 18px;
    padding: 18px;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.stat-card:hover,
.feature-card:hover,
.show-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 255, 58, 0.58);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38), 0 0 26px rgba(40, 232, 255, 0.22);
}

.stat-icon,
.geo-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border: 2px solid #fff;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    box-shadow: 0 0 18px rgba(40, 232, 255, 0.42);
}

.stat-icon::before,
.geo-icon::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--lime);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.stat-card h2,
.feature-card h3,
.show-card h3,
.step h3 {
    font-family: var(--heading-font);
    font-size: 1.02rem;
    line-height: 1.18;
    text-transform: uppercase;
}

.stat-card p,
.feature-card p,
.show-card p,
.step p,
.faq-item p,
.cta-content p,
.site-footer p {
    color: var(--secondary);
    font-weight: 650;
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-head.centered {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--green);
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(124, 255, 58, 0.55);
}

.section-title {
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    text-shadow: 0 0 18px rgba(40, 232, 255, 0.34);
}

.section-subtitle {
    margin-top: 12px;
    color: var(--secondary);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
}

.feature-card {
    min-height: 235px;
    border-radius: 20px;
    padding: 22px;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.feature-card p,
.show-card p {
    margin-top: 10px;
}

.steps {
    position: relative;
    display: grid;
    gap: 18px;
    list-style: none;
    counter-reset: steps;
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(8, 27, 69, 0.72);
}

.step::after {
    content: ">";
    position: absolute;
    right: 18px;
    top: 20px;
    color: var(--cyan);
    font-family: var(--heading-font);
    font-weight: 900;
    text-shadow: 0 0 14px rgba(40, 232, 255, 0.7);
}

.step-num {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 12px;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--green), var(--gold));
    box-shadow: 0 0 22px rgba(124, 255, 58, 0.45);
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 900;
}

.step-text {
    padding-right: 26px;
}

.step p {
    margin-top: 6px;
}

.show-card {
    display: grid;
    gap: 10px;
    border-radius: 20px;
    padding: 16px;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.thumb {
    position: relative;
    min-height: 170px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(135deg, rgba(10,107,255,0.78), rgba(123,44,255,0.54));
    background-size: 22px 22px, 22px 22px, 100% 100%;
}

.thumb-image {
    display: grid;
    place-items: center;
    min-height: 190px;
    padding: 18px;
}

.thumb-image::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 999px;
    border: 2px solid rgba(124, 255, 58, 0.38);
    box-shadow: 0 0 28px rgba(40, 232, 255, 0.26), inset 0 0 26px rgba(123, 44, 255, 0.28);
}

.thumb-image img {
    position: relative;
    z-index: 1;
    width: min(82%, 168px);
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 18px rgba(40, 232, 255, 0.42));
    transition: transform 180ms ease, filter 180ms ease;
}

.show-card:hover .thumb-image img {
    transform: translateY(-5px) scale(1.04);
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 24px rgba(124, 255, 58, 0.44));
}

.thumb::before,
.thumb::after,
.thumb span {
    content: "";
    position: absolute;
}

.thumb-icons::before {
    width: 68px;
    height: 68px;
    left: 28px;
    top: 42px;
    border: 3px solid #fff;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    box-shadow: 0 0 24px rgba(255,62,219,0.45);
    transform: rotate(10deg);
}

.thumb-icons::after {
    right: 34px;
    bottom: 26px;
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-bottom: 70px solid var(--green);
}

.thumb-levels::before {
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: repeating-linear-gradient(45deg, var(--green) 0 14px, var(--cyan) 14px 28px);
}

.thumb-levels::after {
    left: 50%;
    bottom: 48px;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 58px solid #fff;
}

.thumb-rewards::before {
    inset: 36px auto auto 34px;
    width: 94px;
    height: 94px;
    border: 8px solid var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(223, 255, 63, 0.6);
}

.thumb-rewards::after {
    right: 38px;
    top: 58px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 28px rgba(255, 62, 219, 0.78);
}

.thumb-guides::before {
    left: 26px;
    top: 34px;
    width: calc(100% - 52px);
    height: 22px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 44px 0 rgba(255,255,255,0.78), 0 88px 0 var(--green);
}

.final-cta {
    padding-top: 34px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    align-items: center;
    border-radius: 24px;
    padding: 40px 22px 70px;
    background:
        radial-gradient(circle at 82% 42%, rgba(40, 232, 255, 0.2), transparent 34%),
        radial-gradient(circle at 20% 10%, rgba(124, 255, 58, 0.18), transparent 24%),
        rgba(8, 27, 69, 0.86);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta-content p {
    max-width: 620px;
    margin-top: 12px;
    font-size: 1.08rem;
}

.cta-content .btn {
    margin-top: 22px;
}

.cta-portal {
    position: absolute;
    right: -56px;
    top: 50%;
    width: 240px;
    height: 240px;
    transform: translateY(-50%);
    opacity: 0.72;
}

.spike-row {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background:
        linear-gradient(135deg, transparent 0 50%, var(--danger) 50%) 0 0 / 48px 48px,
        linear-gradient(225deg, transparent 0 50%, var(--danger) 50%) 24px 0 / 48px 48px;
    filter: drop-shadow(0 -8px 16px rgba(255, 77, 46, 0.22));
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 18px;
    font-family: var(--heading-font);
    font-weight: 900;
    text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.6rem;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 18px 18px;
}

.site-footer {
    padding: 42px 0 34px;
    border-top: 1px solid rgba(40, 232, 255, 0.22);
    background: rgba(3, 10, 28, 0.68);
}

.footer-grid {
    display: grid;
    gap: 24px;
}

.footer-brand {
    margin-bottom: 14px;
}

.disclaimer {
    max-width: 820px;
    margin-top: 12px;
    color: var(--muted) !important;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: start;
}

.footer-links a {
    color: var(--secondary);
    font-weight: 850;
    padding: 8px 10px;
    border: 1px solid rgba(40, 232, 255, 0.24);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
}

.lang-switcher {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    width: min(100% - 24px, 880px);
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px;
    border: 1px solid rgba(40, 232, 255, 0.42);
    border-radius: 16px;
    background: rgba(8, 27, 69, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.34), 0 0 24px rgba(40, 232, 255, 0.14);
}

.lang-pills {
    display: flex;
    flex: 1;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.lang-pills::-webkit-scrollbar {
    display: none;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.lang-pill.active,
.lang-pill:hover {
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.74);
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 0 18px rgba(40, 232, 255, 0.35);
}

.lang-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--green);
    font-family: var(--heading-font);
    font-size: 1.05rem;
    background: rgba(40, 232, 255, 0.1);
    box-shadow: 0 0 16px rgba(124, 255, 58, 0.35);
}

.lang-select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.modal,
.ios-popup {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-backdrop,
.ios-popup-background {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 28, 0.72);
    backdrop-filter: blur(8px);
}

.modal-content,
.ios-popup-content {
    position: relative;
    width: min(92vw, 440px);
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(6, 20, 46, 0.96);
    box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 28px rgba(40, 232, 255, 0.22);
    overflow: hidden;
}

.modal-content {
    max-height: min(86vh, 720px);
    overflow: auto;
}

.modal-body {
    padding: 20px 18px 0;
}

.simple-modal-title {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    text-transform: uppercase;
}

.simple-modal-note,
.ios-instruction-text p {
    margin-top: 8px;
    color: var(--secondary);
    font-weight: 700;
}

.form-group {
    margin-top: 16px;
}

.form-group input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    outline: none;
    color: var(--text);
    background: rgba(255,255,255,0.08);
    font-weight: 800;
}

.error-message {
    min-height: 20px;
    margin-top: 8px;
    color: var(--danger);
    font-weight: 850;
}

.modal-footer {
    padding: 16px 18px 18px;
}

.btn-full {
    width: 100%;
}

.ios-popup {
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ios-popup-content {
    display: block;
    padding: 24px;
    text-align: center;
    border-color: var(--border);
    background: rgba(6, 20, 46, 0.96);
}

.ios-instruction-gif {
    width: 100%;
    display: block;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.ios-instruction-text h3 {
    font-family: var(--heading-font);
    font-size: 1.05rem;
    text-transform: uppercase;
    margin: 14px 0 8px;
}

.lang-pill:focus-visible,
.btn:focus-visible,
.play-button:focus-visible,
.form-group input:focus-visible,
.faq-item summary:focus-visible,
.header-link:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid rgba(40, 232, 255, 0.46);
    outline-offset: 3px;
}

@media (min-width: 640px) {
    .stats-grid,
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .btn-nav {
        display: inline-flex;
    }
}

@media (min-width: 920px) {
    .header-actions {
        display: inline-flex;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
        gap: 38px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .steps::before {
        content: "";
        position: absolute;
        left: 15%;
        right: 15%;
        top: 49px;
        border-top: 2px dashed rgba(40, 232, 255, 0.62);
        filter: drop-shadow(0 0 12px rgba(40, 232, 255, 0.7));
    }

    .showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 54px;
        margin-top: 54px;
        padding: 0;
    }

    .nav-shell {
        width: 100%;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        border-radius: 0 0 18px 18px;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .level-panel {
        padding: 14px;
    }

    .panel-stage {
        min-height: 190px;
    }

    .section,
    .stats {
        padding: 52px 0;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand-cube {
        width: 34px;
        height: 34px;
    }

    .brand-name {
        font-size: 0.82rem;
    }

    .hero-title {
        font-size: clamp(2.1rem, 13vw, 3.25rem);
    }

    .lang-switcher {
        width: min(100% - 16px, 880px);
        top: calc(6px + env(safe-area-inset-top));
        border-radius: 14px;
    }

    .lang-pill {
        padding-inline: 9px;
        font-size: 0.72rem;
    }

    .panel-stats {
        display: grid;
    }

    .step {
        grid-template-columns: 48px 1fr;
        padding: 16px;
    }

    .step-num {
        width: 48px;
        height: 48px;
    }

    .faq-item summary {
        font-size: 0.88rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}

/* Geometry Dash wiki-inspired skin */
:root {
    color-scheme: dark;
    --deep-navy: #0757c8;
    --dark-blue: #064296;
    --electric-blue: #096dff;
    --cyan: #2ff5f0;
    --green: #7cf12c;
    --lime: #c6ff35;
    --gold: #ffd20a;
    --pink: #ff5ed8;
    --purple: #676bff;
    --danger: #ff4930;
    --text: #ffffff;
    --secondary: #fff6df;
    --muted: #ebd0a8;
    --card: #9f5b34;
    --glass: rgba(255, 255, 255, 0.15);
    --border: #101a22;
    --button-glow: rgba(198, 255, 53, 0.55);
    --dark-text: #0f1922;
    --container: 1120px;
    --heading-font: "Fredoka", "Baloo 2", "Arial Rounded MT Bold", system-ui, sans-serif;
    --body-font: "Baloo 2", "Fredoka", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #0644ec;
    background-size: auto;
    color: var(--text);
    font-family: var(--body-font);
    letter-spacing: 0;
}

body::before {
    background: none;
    mask-image: none;
    animation: none;
}

body::after {
    background: none;
    opacity: 1;
}

.lang-switcher,
.nav-shell,
.level-panel,
.stat-card,
.feature-card,
.show-card,
.faq-item,
.cta-panel,
.modal-content,
.ios-popup-content,
.step {
    border: 4px solid #101a22;
    outline: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 10px 0 rgba(0, 0, 0, 0.32),
        inset 0 0 0 3px rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
}

.site-header {
    top: 0;
    margin-top: 18px;
}

.nav-shell,
.lang-switcher {
    background: #0644ec;
    border-radius: 8px;
    min-height: 72px;
}

.lang-switcher {
    position: absolute;
    min-height: auto;
    padding: 8px;
    box-shadow: 0 7px 0 rgba(0,0,0,0.35);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

body.has-scrolled .lang-switcher {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -140%);
    visibility: hidden;
}

.brand-name,
.hero-title,
.section-title,
.panel-topline,
.stat-card h2,
.feature-card h3,
.show-card h3,
.step h3,
.faq-item summary,
.simple-modal-title,
.ios-instruction-text h3 {
    color: #fff;
    text-shadow:
        0 3px 0 #101a22,
        2px 0 0 #101a22,
        -2px 0 0 #101a22,
        0 -2px 0 #101a22;
}

.brand-name,
.header-link {
    color: #ffffff;
}

.brand-cube,
.stat-icon,
.geo-icon,
.step-num,
.notice-icon {
    border: 4px solid #101a22;
    outline: 3px solid #ffffff;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.36), transparent 36%),
        linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: inset 0 -7px 0 rgba(0,0,0,0.22), 0 4px 0 rgba(0,0,0,0.34);
}

.brand-cube {
    transform: rotate(0);
}

.header-link,
.lang-pill,
.footer-links a,
.chip,
.proof-pill {
    border: 3px solid #101a22;
    border-radius: 8px;
    color: #ffffff;
    background: #61c829;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.22);
    text-shadow: 0 2px 0 rgba(0,0,0,0.5);
}

.header-link:hover,
.lang-pill.active,
.lang-pill:hover,
.chip-accent {
    color: #101a22;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.42), transparent 44%),
        var(--gold);
    text-shadow: none;
}

.lang-icon {
    border: 3px solid #101a22;
    border-radius: 8px;
    color: #101a22;
    background: var(--cyan);
}

.hero {
    min-height: auto;
    padding: 8px 0 18px;
}

.hero-bg {
    display: none;
}

.hero-inner {
    align-items: stretch;
}

.hero-copy,
.level-panel,
.section .container,
.stats-grid,
.footer-grid {
    position: relative;
}

.hero-copy {
    display: grid;
    align-content: center;
    max-width: none;
    padding: clamp(22px, 4vw, 46px);
    border: 4px solid #101a22;
    outline: 4px solid #ffffff;
    border-radius: 8px;
    background: #9f5b34;
    box-shadow: 0 11px 0 rgba(0,0,0,0.34), inset 0 0 0 3px rgba(255,255,255,0.08);
}

.hero-copy::before,
.hero-copy::after,
.level-panel::after,
.cta-panel::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-copy::before,
.level-panel::after,
.cta-panel::before {
    left: -16px;
    right: -16px;
    height: 56px;
    border: 4px solid #101a22;
    outline: 4px solid #ffffff;
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.38), transparent 42%),
        linear-gradient(90deg, var(--cyan) 0 86px, var(--lime) 86px calc(100% - 86px), var(--cyan) calc(100% - 86px));
    box-shadow: inset 0 -8px 0 rgba(0,0,0,0.22);
}

.hero-copy::before {
    top: -38px;
}

.hero-copy::after {
    left: 18px;
    right: 18px;
    bottom: -28px;
    height: 36px;
    border: 4px solid #101a22;
    outline: 4px solid #ffffff;
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.28), transparent 42%),
        var(--lime);
    box-shadow: inset 0 -7px 0 rgba(0,0,0,0.22);
}

.hero-title {
    max-width: 780px;
    font-size: clamp(2.35rem, 6.8vw, 5.1rem);
    line-height: 0.98;
}

.hero-subtitle,
.section-subtitle,
.stat-card p,
.feature-card p,
.show-card p,
.step p,
.faq-item p,
.cta-content p,
.site-footer p,
.simple-modal-note,
.ios-instruction-text p {
    color: #fff8e9;
    font-size: 1.18rem;
    font-weight: 700;
    text-shadow: 0 2px 0 rgba(0,0,0,0.32);
}

.hero-subtitle {
    max-width: 690px;
}

.eyebrow {
    color: var(--gold);
    text-shadow: 0 2px 0 #101a22, 1px 0 0 #101a22, -1px 0 0 #101a22;
}

.btn,
.play-button,
.btn-submit {
    min-height: 54px;
    border: 4px solid #101a22;
    outline: 3px solid #ffffff;
    border-radius: 10px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 3px 0 rgba(0,0,0,0.42);
    box-shadow: inset 0 -7px 0 rgba(0,0,0,0.24), 0 7px 0 rgba(0,0,0,0.35);
}

.btn-primary,
.btn-submit {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.32), transparent 44%),
        var(--green);
}

.btn-secondary {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.28), transparent 44%),
        #4d6cff;
}

.btn:hover,
.play-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.level-panel,
.stat-card,
.feature-card,
.show-card,
.faq-item,
.cta-panel,
.modal-content,
.ios-popup-content,
.step {
    border-radius: 8px;
    background: #9f5b34;
}

.level-panel::before {
    background:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 34px 34px;
}

.level-panel::after {
    bottom: -32px;
}

.panel-stage,
.thumb {
    border: 4px solid #101a22;
    border-radius: 8px;
    background:
        linear-gradient(rgba(255,255,255,0.12) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255,255,255,0.12) 2px, transparent 2px),
        linear-gradient(180deg, #1987f0, #0b55b8);
    background-size: 28px 28px, 28px 28px, 100% 100%;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,0.13);
}

.panel-stage::after {
    background:
        repeating-linear-gradient(45deg, var(--green) 0 16px, var(--cyan) 16px 32px),
        var(--dark-blue);
    border-top: 4px solid #101a22;
}

.progress-label,
.panel-stats span,
.progress-label strong,
.panel-stats strong,
.status-dot {
    color: #ffffff;
    text-shadow: 0 2px 0 rgba(0,0,0,0.42);
}

.progress-bar {
    height: 22px;
    border: 4px solid #101a22;
    border-radius: 8px;
    background: #5d331f;
}

.progress-bar span {
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.36), transparent 48%),
        linear-gradient(90deg, var(--green), var(--lime), var(--gold));
}

.panel-stats div {
    border: 3px solid #101a22;
    border-radius: 8px;
    background: rgba(91, 48, 28, 0.68);
}

.stats,
.section {
    padding: 64px 0;
}

.stat-card,
.feature-card,
.show-card,
.step,
.faq-item {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 34%),
        #9f5b34;
}

.stat-card:hover,
.feature-card:hover,
.show-card:hover {
    border-color: #101a22;
    box-shadow:
        0 13px 0 rgba(0,0,0,0.34),
        0 0 0 4px #ffffff,
        0 0 32px rgba(198,255,53,0.42);
}

.section-head {
    padding: 8px 0;
}

.section-title {
    color: var(--gold);
}

.step::after {
    color: var(--gold);
    text-shadow: 0 2px 0 #101a22;
}

.show-card {
    gap: 12px;
}

.thumb-image::before {
    border-color: rgba(255, 210, 10, 0.72);
    box-shadow: 0 0 0 5px rgba(16, 26, 34, 0.2), inset 0 0 24px rgba(47, 245, 240, 0.35);
}

.final-cta {
    padding-top: 42px;
}

.cta-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 38%),
        #9f5b34;
}

.cta-panel::before {
    top: -34px;
}

.spike-row {
    height: 54px;
    background:
        linear-gradient(135deg, transparent 0 50%, #ff4930 50%) 0 0 / 54px 54px,
        linear-gradient(225deg, transparent 0 50%, #ff4930 50%) 27px 0 / 54px 54px,
        #5d331f;
    border-top: 4px solid #101a22;
}

.faq-item summary::after {
    color: var(--gold);
    text-shadow: 0 2px 0 #101a22;
}

.site-footer {
    border-top: 4px solid #101a22;
    outline: 4px solid rgba(255,255,255,0.9);
    background: #9f5b34;
}

.disclaimer {
    color: #f0d7b6 !important;
}

.modal-backdrop,
.ios-popup-background {
    background: rgba(7, 87, 200, 0.72);
}

.form-group input {
    border: 4px solid #101a22;
    border-radius: 8px;
    color: #101a22;
    background: #fff8e9;
}

.error-message {
    color: #ffd20a;
    text-shadow: 0 2px 0 #101a22;
}

.portal-ring,
.cta-portal,
.panel-portal {
    border-color: var(--cyan);
    box-shadow:
        0 0 0 4px #101a22,
        0 0 0 7px #ffffff,
        0 0 24px rgba(47,245,240,0.72),
        inset 0 0 24px rgba(198,255,53,0.44);
}

@media (min-width: 920px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 0;
        margin-top: 14px;
    }

    .nav-shell {
        border-radius: 0 0 8px 8px;
        outline-width: 0;
        border-left: 0;
        border-right: 0;
    }

    .hero {
        padding: 6px 0 14px;
    }

    .hero-copy {
        padding-top: 38px;
    }

    .hero-copy::before,
    .level-panel::after,
    .cta-panel::before {
        left: -8px;
        right: -8px;
        height: 44px;
    }

    .hero-copy::before {
        top: -30px;
    }

    .hero-copy::after {
        bottom: -22px;
    }
}

@media (max-width: 430px) {
    .hero-title {
        font-size: clamp(2rem, 11.5vw, 3rem);
    }

    .hero-subtitle,
    .section-subtitle,
    .stat-card p,
    .feature-card p,
    .show-card p,
    .step p,
    .faq-item p,
    .cta-content p,
    .site-footer p {
        font-size: 1rem;
    }
}

/* Centered top logo */
.site-header .nav-shell {
    justify-content: center;
    min-height: clamp(78px, 12vw, 132px);
    padding-inline: 20px;
    border-color: #ffffff;
    outline: 0;
    box-shadow: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

body.has-scrolled .site-header {
    pointer-events: none;
}

body.has-scrolled .site-header .nav-shell {
    opacity: 0;
    transform: translateY(-130%);
    visibility: hidden;
}

.site-header .brand {
    width: 100%;
    justify-content: center;
    gap: 0;
    overflow: visible;
}

.brand-logo-img {
    width: min(92vw, 1040px);
    max-height: clamp(58px, 10vw, 118px);
    object-fit: contain;
    filter: drop-shadow(8px 10px 0 rgba(0, 39, 124, 0.5));
}

@media (max-width: 760px) {
    .site-header .nav-shell {
        min-height: 76px;
        padding-inline: 12px;
    }

    .brand-logo-img {
        width: min(94vw, 680px);
        max-height: 72px;
    }
}

/* Final responsive polish */
:root {
    --container: 920px;
}

.container {
    width: min(100% - clamp(22px, 5vw, 48px), var(--container));
}

.site-header {
    position: relative;
    margin-top: clamp(10px, 2vw, 18px);
    padding: 0;
}

.site-header .nav-shell {
    width: min(100% - clamp(22px, 5vw, 48px), 1040px);
    min-height: clamp(66px, 9vw, 118px);
    padding: clamp(8px, 1.6vw, 16px);
    border: 3px solid #ffffff;
    border-radius: 8px;
}

.header-actions,
.btn-nav {
    display: none !important;
}

.site-header nav,
.site-header button {
    display: none !important;
}

.brand-logo-img {
    width: min(100%, 940px);
    max-height: clamp(50px, 8vw, 96px);
}

.page {
    padding-top: clamp(6px, 1.8vw, 16px);
}

.hero {
    padding: clamp(6px, 1.8vw, 14px) 0 clamp(28px, 5vw, 54px);
}

.hero-inner,
.section > .container {
    width: min(100% - clamp(22px, 5vw, 48px), 880px);
}

.hero-copy {
    padding: clamp(26px, 5vw, 52px) clamp(22px, 5vw, 48px) clamp(34px, 5.5vw, 58px);
}

.hero-title {
    max-width: 760px;
    font-size: clamp(2.15rem, 8.4vw, 4.45rem);
    line-height: 1;
}

.hero-subtitle {
    max-width: 700px;
    font-size: clamp(1rem, 2.3vw, 1.22rem);
    line-height: 1.42;
}

.chips,
.hero-proof {
    gap: clamp(8px, 2vw, 14px);
}

.chip,
.proof-pill {
    min-height: clamp(38px, 8vw, 52px);
    padding: 9px clamp(12px, 3vw, 22px);
    font-size: clamp(0.82rem, 2.3vw, 1rem);
}

.hero-cta .btn,
.btn {
    min-height: clamp(50px, 9vw, 66px);
    padding: 13px clamp(16px, 4vw, 28px);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    white-space: normal;
    text-align: center;
}

.section {
    padding: clamp(30px, 6vw, 64px) 0;
}

.final-cta {
    padding-top: clamp(20px, 4vw, 42px);
}

.cta-panel {
    min-height: auto;
    padding: clamp(34px, 6vw, 56px) clamp(22px, 5vw, 44px) clamp(78px, 10vw, 92px);
}

.cta-content p {
    font-size: clamp(1rem, 2.4vw, 1.18rem);
}

.cta-image {
    width: min(100%, 560px);
    margin: clamp(14px, 3vw, 22px) 0;
    border: 4px solid #101a22;
    outline: 3px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
    background: #0644ec;
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.34);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 7vw, 3.6rem);
    line-height: 1.04;
}

#showcase-title {
    color: #ffffff;
    text-align: center;
    margin-inline: auto;
}

.section-head {
    margin-bottom: clamp(18px, 4vw, 30px);
}

.steps,
.showcase-grid {
    gap: clamp(14px, 3vw, 22px);
}

.step {
    grid-template-columns: clamp(50px, 10vw, 64px) 1fr;
    padding: clamp(16px, 4vw, 24px);
}

.step-num {
    width: clamp(50px, 10vw, 64px);
    height: clamp(50px, 10vw, 64px);
}

.show-card {
    padding: clamp(14px, 3.5vw, 20px);
}

.thumb-image {
    min-height: clamp(170px, 36vw, 230px);
}

.site-footer {
    padding: clamp(28px, 6vw, 46px) 0;
}

@media (min-width: 920px) {
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 560px) {
    .site-header .nav-shell {
        width: calc(100% - 20px);
        min-height: 58px;
        padding: 7px 8px;
    }

    .brand-logo-img {
        max-height: 52px;
        filter: drop-shadow(5px 7px 0 rgba(0, 39, 124, 0.5));
    }

    .page {
        padding-top: 4px;
    }

    .hero-inner,
    .section > .container,
    .container {
        width: calc(100% - 20px);
    }

    .hero {
        padding-bottom: 26px;
    }

    .hero-copy {
        padding: 34px 26px 40px;
    }

    .hero-copy::before {
        top: -28px;
        height: 40px;
    }

    .hero-copy::after {
        bottom: -20px;
        height: 32px;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10.2vw, 2.85rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .chip,
    .proof-pill {
        justify-content: center;
        text-align: center;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .cta-panel {
        padding: 30px 24px 74px;
    }

    .cta-image {
        margin-block: 14px;
    }

.cta-portal {
    width: 170px;
    height: 170px;
    right: -48px;
    opacity: 0.38;
}

    .step {
        grid-template-columns: 52px 1fr;
    }

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

    .footer-links a {
        flex: 1 1 auto;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .site-header .nav-shell,
    .hero-inner,
    .section > .container,
    .container {
        width: calc(100% - 16px);
    }

    .hero-copy,
    .cta-panel,
    .step,
    .show-card {
        border-width: 3px;
        outline-width: 3px;
    }

    .hero-copy {
        padding-inline: 22px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 9.8vw, 2.55rem);
    }

    .chips {
        gap: 8px;
    }

    .chip,
    .proof-pill {
        min-height: 38px;
        padding-inline: 10px;
        font-size: 0.78rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 8.4vw, 2.35rem);
    }

    .cta-portal {
        width: 130px;
        height: 130px;
        right: -46px;
    }

    .spike-row {
        height: 42px;
        background:
            linear-gradient(135deg, transparent 0 50%, #ff4930 50%) 0 0 / 42px 42px,
            linear-gradient(225deg, transparent 0 50%, #ff4930 50%) 21px 0 / 42px 42px,
            #5d331f;
    }
}

*,
*::before,
*::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

.ios-popup {
    z-index: 2500;
}

.ios-popup-background {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
}

.ios-popup-content {
    width: min(92vw, 420px);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    outline: 0;
    border-radius: 16px;
    background: rgba(8, 27, 69, 0.96);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 28px rgba(40, 232, 255, 0.22);
    text-align: center;
}

.ios-instruction-gif {
    width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
}

.ios-instruction-text h3 {
    margin: 14px 0 8px;
}

.ios-instruction-text p {
    margin-top: 0;
    font-size: 0.9rem;
}

@media (min-width: 920px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
    }
}

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

    .hero-media {
        justify-self: center;
        width: min(100%, 520px);
    }
}

@media (max-width: 560px) {
    .hero-media {
        width: min(100%, 360px);
        border-radius: 12px;
    }
}
