:root {
    --bg: #06080d;
    --panel: rgba(10, 15, 24, 0.8);
    --panel-strong: rgba(14, 20, 31, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --text: #f7f9fc;
    --muted: #b6c0cf;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(116, 156, 223, 0.3);
    --accent: #4e7cd3;
    --accent-strong: #7fa4ff;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(3, 6, 12, 0.8), rgba(3, 6, 12, 0.95)),
        url('./hero-bg_1hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: max(24px, env(safe-area-inset-top)) 16px max(40px, env(safe-area-inset-bottom));
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

button,
summary {
    font: inherit;
}

.page-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.panel {
    background: linear-gradient(180deg, rgba(13, 19, 29, 0.9), rgba(8, 12, 19, 0.94));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero,
.content-section,
.final-cta {
    padding: 28px 18px;
}

.hero {
    display: grid;
    gap: 24px;
}

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

.eyebrow,
.section-kicker,
.step-number {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow,
.section-kicker {
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
}

.big-title {
    font-size: clamp(1.75rem, 4.2vw, 3.2rem);
    line-height: 1.05;
    margin-top: 14px;
}

.mini-description,
.final-copy,
.step-card p {
    color: var(--muted);
}

.mini-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 42ch;
    margin: 16px auto 0;
}

.hero-actions {
    margin-top: 24px;
    display: grid;
    gap: 12px;
    justify-items: center;
}

.cta-link {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.get-access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    padding: 16px 28px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: linear-gradient(135deg, #2956a6, #3c72d7 52%, #5f8dea);
    box-shadow: 0 16px 30px rgba(32, 77, 164, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-align: center;
}

.get-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(32, 77, 164, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.04);
}

.get-access-btn:active {
    transform: translateY(0);
}

.video-shell {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.video-player {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #05070b;
    aspect-ratio: 16 / 10;
}

.video-poster-button {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
}

.video-poster-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #05070b;
}

.video-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(10, 16, 26, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 24px;
    background: #05070b;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    object-fit: cover;
}

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

.video-player.is-playing .video-poster-button {
    display: none;
}

.content-section,
.final-cta {
    margin-top: 18px;
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    margin-top: 10px;
}

.steps-grid,
.benefits-grid {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.step-card,
.benefit-card,
.step-proof {
    background: linear-gradient(180deg, var(--panel-soft), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: 22px;
}

.step-card,
.benefit-card {
    padding: 18px;
}

.step-number {
    display: inline-block;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
}

.step-card h3,
.benefit-card h3 {
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.step-card p {
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.55;
}

.step-proof {
    margin-top: 18px;
    overflow: hidden;
}

.screenshot-image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #0a0f18;
}

.step-proof figcaption {
    padding: 14px 16px 16px;
    font-size: 0.95rem;
    color: #e7edf8;
    font-weight: 600;
}

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

.benefit-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(78, 124, 211, 0.14);
    color: #9cbcff;
    flex-shrink: 0;
}

.final-cta {
    text-align: center;
    padding-bottom: 34px;
}

.final-copy {
    max-width: 36ch;
    margin: 16px auto 24px;
    line-height: 1.6;
}

.secondary-cta {
    width: min(100%, 340px);
}

.faq-section {
    margin-top: 18px;
    padding: 8px 0 4px;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.faq-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 18px 52px 18px 18px;
    color: #f4f7ff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    -webkit-tap-highlight-color: transparent;
}

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

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

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

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 18px;
    transition: height 0.32s ease, opacity 0.24s ease, padding 0.32s ease;
}

.faq-answer p {
    padding-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.65;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    padding: 0 18px;
}

.footer {
    margin-top: 0;
    padding: 28px 0 6px;
}

.footer-top,
.footer-bottom {
    display: grid;
    gap: 14px;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: grid;
    gap: 8px;
}

.footer-kicker {
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}

.footer-copy,
.footer-meta {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(127, 164, 255, 0.24);
    background: rgba(255, 255, 255, 0.03);
    color: #f4f7ff;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    background: rgba(127, 164, 255, 0.08);
    border-color: rgba(127, 164, 255, 0.42);
    transform: translateY(-1px);
}

.get-access-btn:focus-visible,
.footer-link:focus-visible,
.video-poster-button:focus-visible,
.faq-item summary:focus-visible {
    outline: 2px solid rgba(127, 164, 255, 0.9);
    outline-offset: 3px;
}

@media (max-width: 479px) {
    body {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero,
    .content-section,
    .final-cta {
        padding: 24px 16px;
    }

    .big-title {
        font-size: 2rem;
    }

    .video-play-badge {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

@media (hover: none) {
    .get-access-btn:hover,
    .footer-link:hover {
        transform: none;
        filter: none;
    }
}

@media (min-width: 760px) {
    body {
        padding: 40px 24px 56px;
    }

    .hero,
    .content-section,
    .final-cta {
        padding: 36px;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        align-items: center;
    }

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

    .mini-description,
    .final-copy {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-actions {
        justify-items: flex-start;
    }

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

    .footer {
        padding: 32px 0 8px;
    }

    .footer-top,
    .footer-bottom {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

}

@media (min-width: 1180px) {
    .page-shell {
        width: min(1180px, 100%);
    }

    .hero,
    .content-section,
    .final-cta {
        padding: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}
