:root {
    --mc-bg-page: #081225;
    --mc-surface: #0e1b34;
    --mc-surface-soft: #13223f;
    --mc-border: #223554;
    --mc-border-soft: #34507f;
    --mc-primary: #2f6df6;
    --mc-primary-hover: #1f5ae0;
    --mc-primary-soft: rgba(47, 109, 246, 0.14);
    --mc-text-main: #f8fbff;
    --mc-text-muted: #94a7c6;
    --mc-shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.22);
    --mc-radius-md: 8px;
    --mc-radius-lg: 12px;
    --mc-radius-xl: 16px;

    --mc-input-bg: #1a2743;
    --mc-input-border: #2a3c5f;
    --mc-danger: #ef4444;
    --mc-danger-soft: rgba(239, 68, 68, 0.12);

    --mc-container: 1200px;
    --mc-header-height: 72px;
    --mc-font-main: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mc-bg-page);
    color: var(--mc-text-main);
    font-family: var(--mc-font-main);
    line-height: 1.55;
}

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

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

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

.section {
    padding: 72px 0;
}

.surface-alt {
    background: var(--mc-surface);
    border-top: 1px solid var(--mc-border);
    border-bottom: 1px solid var(--mc-border);
}

.surface-soft {
    background: var(--mc-surface-soft);
    border-top: 1px solid var(--mc-border);
    border-bottom: 1px solid var(--mc-border);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.97rem;
    font-weight: 700;
    font-family: var(--mc-font-main);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--mc-primary);
    color: var(--mc-text-main);
    box-shadow: 0 8px 18px rgba(47, 109, 246, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--mc-primary-hover);
}

.btn-secondary {
    background: var(--mc-surface-soft);
    border-color: var(--mc-border-soft);
    color: var(--mc-text-main);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--mc-input-bg);
    border-color: var(--mc-border-soft);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--mc-primary-soft);
    border: 1px solid rgba(47, 109, 246, 0.16);
    color: #cbdcff;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero {
    padding-top: 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.hero-copy h1,
.section-head h2,
.how-copy h2,
.product-copy h2,
.cta-panel h2 {
    margin: 18px 0 18px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    width: 90%;
    font-size: clamp(2.4rem, 4.2vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 0 0 22px;
}

.hero-text {
    max-width: 40ch;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.5;
    color: var(--mc-text-muted);
    margin: 0 0 28px;
}

.section-head p,
.how-copy p,
.product-copy > p,
.cta-panel p,
.pro-cta p {
    color: var(--mc-text-muted);
    font-size: 1.06rem;
    max-width: 64ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 18px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(52, 80, 127, 0.32);
    background: rgba(14, 27, 52, 0.65);
    color: var(--mc-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

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

.hero-image-frame {
    width: 100%;
    max-width: 920px;
    background: var(--mc-surface);
    border: 1px solid var(--mc-border-soft);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.hero-product-image {
    display: block;
    width: 100%;
    height: auto;
}

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

.section-head h2,
.how-copy h2,
.product-copy h2,
.cta-panel h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
}

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

.section-head-center p {
    margin-left: auto;
    margin-right: auto;
}

.card-grid {
    display: grid;
    gap: 18px;
}

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

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

.info-card,
.feature-card,
.pro-card,
.step-card,
.shot-card,
.faq-item,
.cta-panel {
    border-radius: var(--mc-radius-xl);
    background: rgba(14, 27, 52, 0.86);
    border: 1px solid rgba(52, 80, 127, 0.34);
    box-shadow: var(--mc-shadow-soft);
}

.info-card,
.feature-card,
.pro-card {
    padding: 24px;
}

.info-card h3,
.feature-card h3,
.pro-card h3,
.step-card h3,
.product-points h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.info-card p,
.feature-card p,
.pro-card p,
.step-card p,
.product-points p,
.faq-item p {
    margin: 0;
    color: var(--mc-text-muted);
}

.card-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--mc-primary-soft);
    border: 1px solid var(--mc-border-soft);
    color: var(--mc-primary);
    margin-bottom: 18px;
}

.card-icon .material-symbols-outlined {
    font-size: 28px;
    line-height: 1;
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.how-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: start;
}

.steps-list {
    display: grid;
    gap: 16px;
}

.step-card {
    display: flex;
    gap: 18px;
    padding: 24px;
}

.step-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(47, 109, 246, 0.22), rgba(47, 109, 246, 0.08));
    color: #d9e7ff;
    font-weight: 800;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.feature-mark {
    width: 12px;
    height: 12px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--mc-primary);
    box-shadow: 0 0 0 10px rgba(47, 109, 246, 0.08);
}

.how-extra-visual-wrap {
    margin-top: 26px;
}

.how-extra-visual {
    max-width: 980px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 34px;
    align-items: center;
}

.product-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-visuals-single {
    max-width: 980px;
}

.how-extra-visuals {
    max-width: 980px;
    margin: 0 auto;
}

.shot-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.shot-row-main-two {
    grid-template-columns: 1fr 1fr;
}

.shot-card {
    background: var(--mc-surface);
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius-xl);
    overflow: hidden;
    box-shadow: var(--mc-shadow-soft);
    position: relative;
}

.shot-card-large {
    width: 100%;
}

.shot-zoom-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

.shot-media {
    display: block;
    width: 100%;
}

.shot-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.shot-zoom-btn:hover .shot-image,
.shot-zoom-btn:focus-visible .shot-image {
    transform: scale(1.025);
}

.zoom-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(8, 18, 37, 0.72);
    border: 1px solid rgba(52, 80, 127, 0.5);
    color: var(--mc-text-main);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 2;
}

.shot-zoom-btn:hover .zoom-icon,
.shot-zoom-btn:focus-visible .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.product-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.product-points article {
    padding: 18px 20px;
    border-radius: var(--mc-radius-lg);
    background: rgba(14, 27, 52, 0.56);
    border: 1px solid rgba(52, 80, 127, 0.22);
}

.section-cta {
    padding-top: 40px;
    padding-bottom: 40px;
}

.cta-panel {
    padding: 48px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(19, 34, 63, 0.95), rgba(10, 20, 38, 0.98));
}

.cta-panel .section-kicker {
    justify-content: center;
}

.cta-panel p {
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.cta-note {
    color: var(--mc-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.pro-wrap {
    display: grid;
    gap: 26px;
}

.pro-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.faq-wrap {
    max-width: 860px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-weight: 700;
    position: relative;
    padding-right: 54px;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mc-primary);
    font-size: 1.5rem;
    line-height: 1;
}

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

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

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.image-lightbox.is-open {
    display: block;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 18, 0.84);
    backdrop-filter: blur(6px);
}

.image-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1400px);
    height: 100dvh;
    max-height: 100dvh;
    margin: 0 auto;
    padding: 28px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-img {
    display: block;
    max-width: 100%;
    max-height: calc(100dvh - 56px);
    width: auto;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--mc-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    background: var(--mc-surface);
}

.image-lightbox-close {
    position: absolute;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--mc-border-soft);
    border-radius: 999px;
    background: var(--mc-surface-soft);
    color: var(--mc-text-main);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--mc-shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
    background: var(--mc-input-bg);
}

body.lightbox-open {
    overflow: hidden;
}

@media (hover: none) {
    .zoom-icon {
        opacity: 1;
        transform: scale(1);
    }
}

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

    .product-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
    }

    .hero-text {
        max-width: 64ch;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-image-frame {
        max-width: 700px;
    }

    .hero-copy {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .hero-copy .hero-text,
    .hero-copy h1,
    .hero-actions,
    .hero-meta {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-meta {
        justify-content: center;
    }

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

    .product-visuals {
        width: 100%;
        max-width: 780px;
        margin: 0 auto;
    }

    .product-copy {
        order: 1;
    }

    .product-visuals {
        order: 2;
    }

    .shot-row,
    .shot-row-main-two {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-meta {
        display: none;
    }

    .card-grid-two,
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 56px 0;
    }

    .container {
        width: min(calc(100% - 28px), var(--mc-container));
    }

    .hero {
        padding-top: 40px;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3rem);
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

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

    .hero-actions,
    .pro-cta,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cta-panel {
        padding: 32px 20px;
    }

    .hero-image-frame {
        border-radius: 14px;
    }

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

    .product-visuals {
        gap: 16px;
    }

    .shot-row,
    .shot-row-main-two {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .image-lightbox-dialog {
        width: 100vw;
        padding: 20px 12px;
    }

    .image-lightbox-img {
        max-width: 100%;
        max-height: calc(100dvh - 40px);
    }
}

@media (max-width: 480px) {
    .info-card,
    .feature-card,
    .pro-card,
    .step-card {
        padding: 20px;
    }

    .product-points article {
        padding: 14px;
    }
}

/* POPUP EMAIL PRO */
.waitlist-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
}

.waitlist-modal.is-open {
    display: block;
}

.waitlist-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 18, 0.84);
    backdrop-filter: blur(6px);
}

.waitlist-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 700px);
    margin: 0 auto;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 16px 28px;
}

.waitlist-modal-content {
    position: relative;
    width: 100%;
    padding: 28px;
    border-radius: var(--mc-radius-xl);
    background: rgba(14, 27, 52, 0.96);
    border: 1px solid rgba(52, 80, 127, 0.34);
    box-shadow: var(--mc-shadow-soft);
    overflow: visible;
}

.waitlist-modal-content h3 {
    margin: 16px 0 12px;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.waitlist-intro {
    margin: 0 0 22px;
    color: var(--mc-text-muted);
}

.waitlist-modal-close {
    position: absolute;
    top: 0;
    right: 18px;
    transform: translateY(-125%);
    width: 42px;
    height: 42px;
    border: 1px solid var(--mc-border-soft);
    border-radius: 999px;
    background: var(--mc-surface-soft);
    color: var(--mc-text-main);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.waitlist-modal-close:hover,
.waitlist-modal-close:focus-visible {
    background: var(--mc-input-bg);
}

.waitlist-form {
    display: grid;
    gap: 16px;
}

.waitlist-field {
    display: grid;
    gap: 8px;
}

.waitlist-field label {
    font-size: 0.95rem;
    font-weight: 700;
}

.waitlist-field input[type="email"] {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--mc-input-border);
    background: var(--mc-input-bg);
    color: var(--mc-text-main);
    font: inherit;
    outline: none;
}

.waitlist-field input[type="email"]::placeholder {
    color: var(--mc-text-muted);
}

.waitlist-field input[type="email"]:focus {
    border-color: var(--mc-primary);
    box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.14);
}

.waitlist-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 12px;
    color: var(--mc-text-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.waitlist-consent input {
    margin-top: 3px;
}

.waitlist-consent a {
    color: #cbdcff;
    text-decoration: underline;
}

.waitlist-submit {
    width: 100%;
}

.waitlist-message {
    margin: 0;
    min-height: 22px;
    font-size: 0.94rem;
    color: var(--mc-text-muted);
}

.waitlist-message.is-error {
    color: var(--mc-danger);
}

.waitlist-message.is-success {
    color: #8fd19e;
}

.waitlist-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

body.waitlist-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .waitlist-modal-dialog {
        width: 100vw;
        padding: 28px 12px 20px;
    }

    .waitlist-modal-close {
        top: 0;
        right: 14px;
        transform: translateY(-125%);
    }

    .waitlist-modal-content {
        padding: 22px 18px;
    }
}