:root {
    --navy: #1a2c74;
    --navy-deep: #0f1e57;
    --blue: #1c307d;
    --blue-slate: #294466;
    --blue-light: #a5c0e9;
    --blue-pale: #eaf1ff;
    --ink: #182868;
    --ink-soft: #42527e;
    --white: #ffffff;
    --off-white: #f6f8fe;
    --line: #d9e2f5;
    --orange: #ff6a00;
    --orange-dark-text: #111d4b;
    --shadow: 0 24px 60px rgba(15, 30, 87, 0.14);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--off-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input {
    font: inherit;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--navy-deep);
    background: var(--white);
    border-radius: 8px;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    color: var(--white);
    background: rgba(15, 30, 87, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
}

.brand {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    column-gap: 7px;
    color: inherit;
    text-decoration: none;
    line-height: 1;
}

.brand-mark {
    align-self: end;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.brand-name {
    font-size: 1.46rem;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.brand-tagline {
    grid-column: 1 / -1;
    margin-top: 4px;
    color: var(--blue-light);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 21px;
    font-size: 0.9rem;
    font-weight: 700;
}

.header-nav > a:not(.header-action) {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
}

.header-nav > a:not(.header-action):hover {
    color: var(--white);
}

.header-action,
.primary-cta,
.primary-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 11px 17px;
    color: var(--orange-dark-text);
    background: var(--orange);
    border: 0;
    border-radius: 10px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 9px 22px rgba(255, 106, 0, 0.2);
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-action {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.84rem;
}

.header-action:hover,
.primary-cta:hover,
.primary-small-button:hover {
    background: #ff7e24;
    box-shadow: 0 12px 28px rgba(255, 106, 0, 0.28);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 78px;
    color: var(--white);
    background: linear-gradient(135deg, #11215f 0%, var(--navy) 54%, #152765 100%);
}

.hero-glow {
    position: absolute;
    width: 520px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.34;
    pointer-events: none;
}

.hero-glow-one {
    top: -310px;
    right: -170px;
    background: radial-gradient(circle, #597fc8 0%, transparent 69%);
}

.hero-glow-two {
    bottom: -410px;
    left: -245px;
    background: radial-gradient(circle, #3656a5 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue-light);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.25;
}

.eyebrow-dark {
    color: var(--blue);
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: inherit;
    line-height: 1.1;
}

h1 {
    max-width: 950px;
    margin: 0 auto;
    font-size: clamp(2.35rem, 5.1vw, 4.75rem);
    font-weight: 900;
    letter-spacing: -0.062em;
}

.hero-lead {
    max-width: 745px;
    margin: 25px auto 38px;
    color: #d7e4ff;
    font-size: clamp(1.02rem, 1.7vw, 1.2rem);
    line-height: 1.65;
}

.vsl-area {
    max-width: 940px;
    margin: 0 auto;
    text-align: left;
}

.vsl-frame {
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 22px;
    box-shadow: 0 32px 75px rgba(4, 13, 49, 0.42);
}

.vsl-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #030716;
    border-radius: 15px;
    object-fit: contain;
}

.video-description,
.video-error {
    margin: 13px 3px 0;
    color: #d5e0f9;
    font-size: 0.85rem;
    line-height: 1.55;
}

.video-error {
    color: #fff1d6;
}

.vsl-gate {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 690px;
    margin: 25px auto 0;
    padding: 17px 20px;
    background: rgba(4, 15, 61, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: var(--radius-md);
}

.gate-progress {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 68px;
    height: 68px;
    place-items: center;
    color: var(--white);
    background: conic-gradient(var(--orange) calc(var(--gate-progress) * 1%), rgba(255, 255, 255, 0.18) 0);
    border-radius: 50%;
}

.gate-progress::before {
    position: absolute;
    inset: 6px;
    content: "";
    background: var(--navy-deep);
    border-radius: inherit;
}

.gate-progress span {
    position: relative;
    z-index: 1;
    font-size: 0.86rem;
    font-weight: 850;
}

.gate-copy p {
    margin: 0;
}

.gate-label {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 850;
}

.gate-status {
    margin-top: 3px !important;
    color: var(--blue-light);
    font-size: 0.91rem;
}

.gate-caption {
    margin-top: 4px !important;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.gated-content:not([hidden]) {
    animation: content-reveal 430ms ease both;
}

@keyframes content-reveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.unlock-banner {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 46px;
    padding: 17px 20px;
    color: var(--navy-deep);
    background: #e7efff;
    border: 1px solid #c8d9fc;
    border-radius: 14px;
}

.unlock-banner p {
    margin: 0;
}

.unlock-symbol {
    display: grid;
    flex: 0 0 auto;
    width: 29px;
    height: 29px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    font-weight: 900;
}

.section {
    padding: 105px 0;
}

.intro-section {
    padding-bottom: 91px;
    background: var(--white);
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
    gap: clamp(42px, 9vw, 150px);
    align-items: end;
}

h2 {
    font-size: clamp(2rem, 3.65vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.052em;
}

.split-intro h2 {
    max-width: 650px;
    margin-bottom: 0;
}

.intro-copy {
    color: var(--ink-soft);
    font-size: 1.07rem;
}

.intro-copy p {
    margin-top: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    color: var(--blue);
    font-weight: 850;
    text-underline-offset: 4px;
}

.text-link:hover {
    color: var(--navy-deep);
}

.section-soft {
    background: var(--off-white);
}

.section-heading {
    max-width: 730px;
    margin-bottom: 47px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.centered-heading {
    max-width: 865px;
    margin-inline: auto;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.benefit-card {
    min-height: 252px;
    padding: 24px;
    background: var(--white);
    border: 1px solid #e1e8f6;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(30, 56, 119, 0.06);
}

.card-number,
.module-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 39px;
    min-height: 25px;
    padding: 4px 8px;
    color: var(--blue);
    background: #e8effd;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.benefit-card h3 {
    margin: 25px 0 11px;
    font-size: 1.19rem;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.benefit-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.62;
}

.educational-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    max-width: 840px;
    margin: 30px auto 0;
    padding: 16px 19px;
    color: #243862;
    background: #edf3ff;
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    font-size: 0.91rem;
}

.educational-note > span {
    display: grid;
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 850;
}

.educational-note p {
    margin: 0;
}

.modules-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(150deg, var(--navy-deep), #172d76 90%);
}

.modules-section::after {
    position: absolute;
    right: -140px;
    bottom: -175px;
    width: 510px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(129, 164, 230, 0.23) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.modules-section .container {
    position: relative;
    z-index: 1;
}

.section-heading-light {
    max-width: 760px;
}

.section-heading-light > p:last-child {
    color: #d1def6;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.module-card {
    min-height: 335px;
    padding: 25px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.18);
}

.module-card h3 {
    margin: 22px 0 17px;
    color: var(--navy-deep);
    font-size: 1.38rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.module-card ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 750;
}

.module-card li {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.module-card li::before {
    content: "•";
    color: var(--orange);
    font-size: 1.2em;
}

.module-card > p:last-child {
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.55;
}

.how-section {
    background: var(--white);
}

.proof-section {
    overflow: hidden;
    background: var(--off-white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.proof-card {
    margin: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dce5f6;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 36px rgba(30, 56, 119, 0.1);
}

.proof-card img {
    width: 100%;
    height: auto;
    background: #e8effd;
}

.proof-card figcaption {
    padding: 13px 14px 14px;
    color: var(--navy-deep);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
}

.proof-note {
    max-width: 730px;
    margin: 25px auto 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
    text-align: center;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding-right: 16px;
}

.steps-list li:not(:last-child)::after {
    position: absolute;
    top: 26px;
    right: -12px;
    width: 22px;
    height: 1px;
    content: "";
    background: #b4c7ef;
}

.step-index {
    display: grid;
    flex: 0 0 auto;
    width: 51px;
    height: 51px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 15px;
    font-weight: 900;
}

.steps-list h3 {
    margin: 3px 0 7px;
    color: var(--navy-deep);
    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.steps-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.author-section {
    background: #e9f0ff;
}

.author-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 125px);
    align-items: center;
}

.author-image-wrap {
    position: relative;
    max-width: 420px;
    margin-inline: auto;
}

.author-image-wrap img {
    width: 100%;
    border: 8px solid var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.author-image-caption {
    position: absolute;
    right: -19px;
    bottom: 24px;
    max-width: 210px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy-deep);
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 800;
}

.author-copy h2 {
    margin-bottom: 22px;
}

.author-copy > p:not(.eyebrow) {
    max-width: 590px;
    margin: 0 0 13px;
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.offer-section {
    color: var(--white);
    background: var(--navy-deep);
}

.offer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
    gap: clamp(42px, 9vw, 130px);
    align-items: center;
}

.offer-layout h2 {
    max-width: 670px;
    margin-bottom: 28px;
}

.offer-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #dbe7ff;
}

.offer-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.offer-list span {
    display: grid;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    place-items: center;
    color: var(--orange-dark-text);
    background: var(--orange);
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 900;
}

.offer-action {
    padding: 30px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.offer-action p {
    margin: 0 0 21px;
    color: var(--ink-soft);
    line-height: 1.58;
}

.primary-cta {
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
}

.secure-note {
    display: block;
    margin-top: 13px;
    color: #637398;
    font-size: 0.8rem;
    text-align: center;
}

.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.1fr);
    gap: clamp(42px, 9vw, 145px);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 105px;
}

.faq-intro h2 {
    margin-bottom: 16px;
}

.faq-intro > p:last-child {
    color: var(--ink-soft);
}

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

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

.faq-list summary {
    position: relative;
    padding: 23px 39px 23px 0;
    color: var(--navy-deep);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 21px;
    right: 5px;
    content: "+";
    color: var(--blue);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 150ms ease;
}

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

.faq-list details p {
    max-width: 710px;
    margin: -2px 0 24px;
    color: var(--ink-soft);
}

.site-footer {
    padding: 57px 0 26px;
    color: #d2def6;
    background: #091744;
}

.footer-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 42px;
}

.footer-brand {
    color: var(--white);
}

.site-footer .brand-tagline {
    color: var(--blue-light);
}

.footer-layout p {
    margin: 15px 0 0;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    gap: 10px;
    justify-items: end;
    font-size: 0.91rem;
    font-weight: 750;
}

.footer-links a {
    color: var(--blue-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #9eb1d7;
    font-size: 0.76rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .benefit-grid,
    .modules-grid,
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card {
        min-height: 205px;
    }

    .module-card {
        min-height: 300px;
    }

    .steps-list {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .steps-list li {
        padding-right: 0;
    }

    .steps-list li:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -13px;
        left: 25px;
        width: 1px;
        height: 18px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .faq-intro {
        position: static;
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-inner {
        min-height: 67px;
    }

    .header-nav > a:not(.header-action) {
        display: none;
    }

    .header-action {
        min-height: 37px;
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    .hero {
        padding: 61px 0 57px;
    }

    h1 {
        font-size: clamp(2.15rem, 10vw, 3.25rem);
    }

    .hero-lead {
        margin: 19px auto 29px;
        font-size: 0.99rem;
    }

    .vsl-frame {
        padding: 4px;
        border-radius: 15px;
    }

    .vsl-frame video {
        border-radius: 11px;
    }

    .vsl-gate {
        align-items: flex-start;
        padding: 14px;
    }

    .gate-progress {
        width: 59px;
        height: 59px;
    }

    .gate-progress::before {
        inset: 5px;
    }

    .gate-caption {
        display: none;
    }

    .section {
        padding: 73px 0;
    }

    .unlock-banner {
        margin-top: 28px;
        padding: 14px;
        font-size: 0.9rem;
    }

    .split-intro,
    .author-layout,
    .offer-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .intro-section {
        padding-bottom: 70px;
    }

    h2 {
        font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    }

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

    .benefit-grid,
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .proof-grid {
        grid-template-columns: minmax(0, 360px);
        justify-content: center;
        gap: 17px;
    }

    .benefit-card,
    .module-card {
        min-height: auto;
    }

    .benefit-card {
        padding: 22px;
    }

    .benefit-card h3 {
        margin-top: 19px;
    }

    .educational-note {
        margin-top: 21px;
        padding: 14px;
    }

    .author-image-wrap {
        max-width: 350px;
        margin-left: 0;
    }

    .author-image-caption {
        right: -9px;
        bottom: 16px;
    }

    .offer-action {
        padding: 23px;
    }

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

    .footer-links {
        justify-items: start;
    }

    .footer-bottom {
        gap: 8px;
    }

}

@media (max-width: 420px) {
    .brand-name {
        font-size: 1.25rem;
    }

    .brand-tagline {
        font-size: 0.57rem;
    }

    .header-action {
        max-width: 129px;
        text-align: center;
    }

    .vsl-gate {
        gap: 12px;
    }

    .gate-label,
    .gate-status {
        font-size: 0.81rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
