:root {
    --dmlp-bg: #050505;
    --dmlp-surface: #0e0919;
    --dmlp-surface-2: #151025;
    --dmlp-purple: #7a1fff;
    --dmlp-purple-2: #a63cff;
    --dmlp-cyan: #00c8ff;
    --dmlp-white: #ffffff;
    --dmlp-muted: #b9b4c7;
    --dmlp-line: rgba(255, 255, 255, 0.12);
    --dmlp-max: 1180px;
}

html {
    scroll-behavior: smooth;
}

body.dmlp-canvas-body {
    margin: 0;
    background: var(--dmlp-bg);
}

.dmlp-page,
.dmlp-page * {
    box-sizing: border-box;
}

.dmlp-page {
    overflow: hidden;
    margin: 0;
    background:
        radial-gradient(circle at 18% 3%, rgba(122, 31, 255, 0.16), transparent 32rem),
        radial-gradient(circle at 85% 18%, rgba(0, 200, 255, 0.09), transparent 30rem),
        var(--dmlp-bg);
    color: var(--dmlp-white);
    font-family: Inter, Montserrat, Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.dmlp-page a {
    color: inherit;
    text-decoration: none;
}

.dmlp-page h1,
.dmlp-page h2,
.dmlp-page h3,
.dmlp-page p {
    margin-top: 0;
}

.dmlp-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 40px), var(--dmlp-max));
    min-height: 82px;
    margin: 0 auto;
    border-bottom: 1px solid var(--dmlp-line);
}

.dmlp-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.dmlp-brand-logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.dmlp-header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dmlp-header nav a {
    color: #d9d5e3;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.dmlp-header nav a:hover {
    color: var(--dmlp-cyan);
}

.dmlp-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    align-items: center;
    gap: 50px;
    width: min(calc(100% - 40px), var(--dmlp-max));
    min-height: 760px;
    margin: 0 auto;
    padding: 72px 0 88px;
}

.dmlp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.dmlp-orb {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(105px);
    pointer-events: none;
}

.dmlp-orb-one {
    top: 15%;
    left: -15%;
    background: rgba(122, 31, 255, 0.25);
}

.dmlp-orb-two {
    right: -15%;
    bottom: 10%;
    background: rgba(0, 200, 255, 0.17);
}

.dmlp-hero-copy,
.dmlp-product-visual {
    position: relative;
    z-index: 2;
}

.dmlp-eyebrow,
.dmlp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #d9bfff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dmlp-eyebrow i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dmlp-cyan);
    box-shadow: 0 0 18px var(--dmlp-cyan);
}

.dmlp-hero h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(43px, 5.8vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.dmlp-highlight {
    margin-bottom: 20px;
    background: linear-gradient(90deg, #d43cff, var(--dmlp-cyan));
    background-clip: text;
    color: transparent;
    font-size: clamp(20px, 2.2vw, 29px);
    font-weight: 900;
    line-height: 1.2;
}

.dmlp-lead {
    max-width: 670px;
    margin-bottom: 28px;
    color: #d1ccda;
    font-size: 18px;
    line-height: 1.75;
}

.dmlp-actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.dmlp-actions > span,
.dmlp-final-offer small {
    color: #aaa4b6;
    font-size: 12px;
}

.dmlp-cta.hotmart-fb.hotmart__button-checkout {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    min-height: 62px !important;
    max-width: 620px;
    padding: 16px 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 15px !important;
    background: linear-gradient(105deg, var(--dmlp-purple), #9636ff 45%, #087cc8) !important;
    box-shadow: 0 15px 45px rgba(122, 31, 255, 0.34) !important;
    color: #fff !important;
    font-family: Inter, Montserrat, Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    line-height: 1.25 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.dmlp-cta.hotmart-fb.hotmart__button-checkout:hover {
    box-shadow: 0 20px 58px rgba(122, 31, 255, 0.5) !important;
    transform: translateY(-3px);
}

.dmlp-cta svg {
    flex: 0 0 auto;
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.dmlp-cta:focus-visible,
.dmlp-page a:focus-visible,
.dmlp-page summary:focus-visible {
    outline: 3px solid var(--dmlp-cyan);
    outline-offset: 4px;
}

.dmlp-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.dmlp-proof li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #c9c4d3;
    font-size: 12px;
    font-weight: 700;
}

.dmlp-proof i,
.dmlp-audience li i {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.13);
    color: var(--dmlp-cyan);
    font-style: normal;
}

.dmlp-product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.dmlp-product-visual::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 3%;
    left: 5%;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    filter: blur(22px);
}

.dmlp-book-light,
.dmlp-final-light {
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.26), rgba(122, 31, 255, 0.1) 45%, transparent 70%);
    filter: blur(22px);
}

.dmlp-product-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 520px;
    max-height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 32px 36px rgba(0, 0, 0, 0.66));
}

.dmlp-page-badge {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 12%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(10, 7, 18, 0.86);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.dmlp-page-badge strong {
    color: var(--dmlp-cyan);
    font-size: 27px;
    line-height: 1;
}

.dmlp-page-badge span {
    color: #dcd7e5;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.dmlp-reveal {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: auto 1fr 1.25fr;
    align-items: center;
    gap: 28px;
    width: min(calc(100% - 40px), var(--dmlp-max));
    margin: -24px auto 0;
    padding: 28px 34px;
    border: 1px solid rgba(143, 66, 255, 0.35);
    border-radius: 22px;
    background: linear-gradient(110deg, rgba(122, 31, 255, 0.17), rgba(0, 200, 255, 0.07));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.dmlp-reveal > span {
    padding: 8px 11px;
    border-radius: 8px;
    background: var(--dmlp-purple);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.1em;
}

.dmlp-reveal p,
.dmlp-reveal strong {
    margin: 0;
}

.dmlp-reveal p {
    color: #c9c4d3;
}

.dmlp-reveal strong {
    font-size: 18px;
    line-height: 1.4;
}

.dmlp-section {
    width: min(calc(100% - 40px), var(--dmlp-max));
    margin: 0 auto;
    padding: 110px 0;
}

.dmlp-centered {
    text-align: center;
}

.dmlp-section h2,
.dmlp-income h2,
.dmlp-final-offer h2 {
    margin-bottom: 20px;
    font-size: clamp(35px, 4.2vw, 57px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.dmlp-centered > h2,
.dmlp-centered > .dmlp-section-intro {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.dmlp-section-intro,
.dmlp-content-copy > p,
.dmlp-income-copy > p {
    color: var(--dmlp-muted);
    font-size: 17px;
    line-height: 1.8;
}

.dmlp-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
    text-align: left;
}

.dmlp-benefit-grid article,
.dmlp-path-grid article {
    position: relative;
    overflow: hidden;
    padding: 31px;
    border: 1px solid var(--dmlp-line);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.dmlp-benefit-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--dmlp-purple), var(--dmlp-cyan));
}

.dmlp-benefit-grid article > span {
    display: block;
    margin-bottom: 35px;
    color: var(--dmlp-cyan);
    font-size: 13px;
    font-weight: 900;
}

.dmlp-benefit-grid h3,
.dmlp-path-grid h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.25;
}

.dmlp-benefit-grid p,
.dmlp-path-grid p {
    margin-bottom: 0;
    color: var(--dmlp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.dmlp-content {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 80px;
    align-items: start;
    border-top: 1px solid var(--dmlp-line);
}

.dmlp-content-copy {
    position: sticky;
    top: 35px;
}

.dmlp-content-note,
.dmlp-responsible {
    margin-top: 30px;
    padding: 18px 20px;
    border-left: 3px solid var(--dmlp-purple);
    border-radius: 0 12px 12px 0;
    background: rgba(122, 31, 255, 0.09);
    color: #d8d3e1;
    font-size: 14px;
}

.dmlp-learning-list {
    border-top: 1px solid var(--dmlp-line);
}

.dmlp-learning-list > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--dmlp-line);
}

.dmlp-learning-list span {
    color: var(--dmlp-purple-2);
    font-size: 12px;
    font-weight: 950;
}

.dmlp-learning-list p {
    margin: 0;
    color: #ebe7f0;
    font-weight: 700;
}

.dmlp-income {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 70px;
    width: min(calc(100% - 40px), var(--dmlp-max));
    margin: 0 auto;
    padding: 88px 70px;
    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 0 0, rgba(122, 31, 255, 0.23), transparent 40%),
        linear-gradient(135deg, #10091c, #080c15);
}

.dmlp-responsible {
    border-left-color: var(--dmlp-cyan);
    background: rgba(0, 200, 255, 0.07);
}

.dmlp-path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.dmlp-path-grid article {
    padding: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.dmlp-audience {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 75px;
}

.dmlp-audience ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dmlp-audience li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid var(--dmlp-line);
    color: #e1dce8;
    font-weight: 700;
}

.dmlp-faq {
    border-top: 1px solid var(--dmlp-line);
}

.dmlp-faq > h2 {
    max-width: 720px;
}

.dmlp-faq-list {
    max-width: 900px;
    margin-top: 40px;
}

.dmlp-faq details {
    border-bottom: 1px solid var(--dmlp-line);
}

.dmlp-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 850;
    list-style: none;
}

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

.dmlp-faq summary span {
    color: var(--dmlp-cyan);
    font-size: 27px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.dmlp-faq details[open] summary span {
    transform: rotate(45deg);
}

.dmlp-faq details p {
    max-width: 780px;
    padding: 0 0 25px;
    color: var(--dmlp-muted);
}

.dmlp-final-offer {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    width: min(calc(100% - 40px), var(--dmlp-max));
    margin: 0 auto 70px;
    padding: 70px;
    overflow: hidden;
    border: 1px solid rgba(122, 31, 255, 0.34);
    border-radius: 32px;
    background: linear-gradient(140deg, #170a2b, #07101a);
}

.dmlp-final-offer > div:not(.dmlp-final-light),
.dmlp-final-offer > img {
    position: relative;
    z-index: 2;
}

.dmlp-final-offer p {
    max-width: 650px;
    color: var(--dmlp-muted);
    font-size: 17px;
}

.dmlp-final-offer small {
    display: block;
    margin-top: 11px;
}

.dmlp-final-offer > img {
    display: block;
    width: 100%;
    max-height: 490px;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.55));
}

.dmlp-final-light {
    right: -18%;
    bottom: -55%;
}

.dmlp-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 30px;
    width: min(calc(100% - 40px), var(--dmlp-max));
    margin: 0 auto;
    padding: 35px 0 45px;
    border-top: 1px solid var(--dmlp-line);
}

.dmlp-footer p,
.dmlp-footer small {
    margin: 0;
    color: #9e98a8;
    font-size: 11px;
}

.dmlp-footer small {
    grid-column: 1 / -1;
}

.dmlp-mobile-buy {
    display: none;
}

@media (max-width: 980px) {
    .dmlp-header nav {
        display: none;
    }

    .dmlp-hero,
    .dmlp-content,
    .dmlp-income,
    .dmlp-audience,
    .dmlp-final-offer {
        grid-template-columns: 1fr;
    }

    .dmlp-hero {
        gap: 10px;
        padding-top: 55px;
        text-align: center;
    }

    .dmlp-hero-copy {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .dmlp-product-visual {
        min-height: 480px;
    }

    .dmlp-product-visual img {
        max-height: 500px;
    }

    .dmlp-reveal {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .dmlp-reveal > span {
        justify-self: center;
    }

    .dmlp-content-copy {
        position: static;
    }

    .dmlp-income,
    .dmlp-final-offer {
        padding: 55px 40px;
    }

    .dmlp-final-offer > img {
        max-height: 420px;
    }
}

@media (max-width: 720px) {
    .dmlp-header,
    .dmlp-hero,
    .dmlp-reveal,
    .dmlp-section,
    .dmlp-income,
    .dmlp-final-offer,
    .dmlp-footer {
        width: min(calc(100% - 28px), var(--dmlp-max));
    }

    .dmlp-header {
        min-height: 68px;
    }

    .dmlp-brand-logo {
        width: 150px;
    }

    .dmlp-hero {
        min-height: auto;
        padding: 48px 0 70px;
    }

    .dmlp-hero h1 {
        font-size: clamp(39px, 13vw, 58px);
    }

    .dmlp-highlight {
        font-size: 20px;
    }

    .dmlp-lead,
    .dmlp-section-intro,
    .dmlp-content-copy > p,
    .dmlp-income-copy > p,
    .dmlp-final-offer p {
        font-size: 15px;
    }

    .dmlp-cta.hotmart-fb.hotmart__button-checkout {
        width: 100% !important;
        min-height: 58px !important;
        padding: 14px 17px !important;
        font-size: 13px !important;
    }

    .dmlp-proof {
        justify-content: center;
    }

    .dmlp-product-visual {
        min-height: 400px;
    }

    .dmlp-product-visual img {
        max-height: 420px;
    }

    .dmlp-page-badge {
        right: 2%;
        bottom: 5%;
    }

    .dmlp-reveal {
        margin-top: -22px;
        padding: 24px 20px;
    }

    .dmlp-section {
        padding: 78px 0;
    }

    .dmlp-section h2,
    .dmlp-income h2,
    .dmlp-final-offer h2 {
        font-size: 36px;
    }

    .dmlp-benefit-grid,
    .dmlp-path-grid {
        grid-template-columns: 1fr;
    }

    .dmlp-benefit-grid {
        margin-top: 34px;
    }

    .dmlp-content,
    .dmlp-audience {
        gap: 46px;
    }

    .dmlp-income,
    .dmlp-final-offer {
        gap: 42px;
        padding: 45px 22px;
        border-radius: 22px;
    }

    .dmlp-final-offer {
        margin-bottom: 55px;
        text-align: center;
    }

    .dmlp-final-offer .dmlp-eyebrow {
        justify-content: center;
    }

    .dmlp-final-offer > img {
        max-height: 360px;
    }

    .dmlp-footer {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 105px;
    }

    .dmlp-mobile-buy {
        position: fixed;
        z-index: 9998;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 10px 12px max(10px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(5, 5, 5, 0.94);
        backdrop-filter: blur(14px);
    }

    .dmlp-mobile-buy .dmlp-cta {
        max-width: none;
    }
}

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

    .dmlp-page *,
    .dmlp-page *::before,
    .dmlp-page *::after {
        transition: none !important;
    }
}
