:root {
    color-scheme: light;
    --navy-950: #050c16;
    --navy-900: #07111f;
    --navy-850: #0a1929;
    --navy-800: #0d2236;
    --navy-700: #17344d;
    --ink: #102233;
    --ink-soft: #405467;
    --paper: #ffffff;
    --paper-warm: #fffdf8;
    --mist: #edf4f7;
    --mist-deep: #d6e4e9;
    --cyan: #31dbe7;
    --cyan-deep: #087581;
    --gold: #f1c76b;
    --gold-deep: #855b12;
    --coral: #f4776d;
    --success: #36c59b;
    --shadow-lg: 0 32px 90px rgb(0 0 0 / 0.34);
    --shadow-md: 0 18px 44px rgb(6 20 32 / 0.14);
    --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 16px;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 4%, rgb(49 219 231 / 0.11), transparent 24rem),
        radial-gradient(circle at 90% 22%, rgb(241 199 107 / 0.08), transparent 26rem),
        var(--navy-900);
    font-family: var(--font-sans);
    font-size: 19px;
    line-height: 1.9;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    line-break: strict;
    text-wrap: balance;
    word-break: auto-phrase;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

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

::selection {
    color: var(--navy-950);
    background: var(--gold);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    min-height: 44px;
    padding: 8px 18px;
    transform: translateY(-160%);
    border-radius: 4px;
    color: var(--navy-950);
    background: var(--cyan);
    font-weight: 800;
    line-height: 28px;
}

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

.hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    overflow: hidden;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    color: var(--paper);
    background:
        linear-gradient(115deg, rgb(3 9 17 / 0.98) 0%, rgb(7 17 31 / 0.97) 54%, rgb(9 30 47 / 0.94) 100%);
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero__glow {
    position: absolute;
    z-index: -1;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    pointer-events: none;
}

.hero__glow--cyan {
    top: -20rem;
    right: 10%;
    background: var(--cyan);
}

.hero__glow--gold {
    bottom: -26rem;
    left: 8%;
    background: var(--gold);
}

.hero__inner {
    position: relative;
    width: min(1180px, calc(100% - 64px));
    min-height: 700px;
    margin: 0 auto;
    padding: 76px 0 64px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: clamp(42px, 6vw, 92px);
    align-items: center;
}

.hero__copy {
    position: relative;
    z-index: 2;
}

.hero__product {
    margin: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__product {
    margin-top: 12px;
    color: rgb(255 255 255 / 0.68);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero h1 {
    max-width: 690px;
    margin: 24px 0 26px;
    font-size: clamp(2.7rem, 4vw, 4rem);
    line-height: 1.16;
    letter-spacing: -0.055em;
}

.hero__line {
    white-space: nowrap;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgb(49 219 231 / 0.55);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.14em;
}

.hero__lead {
    max-width: 650px;
    margin: 0;
    color: rgb(255 255 255 / 0.82);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.95;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 28px;
}

.hero__chips span {
    min-height: 34px;
    padding: 6px 11px;
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: 2px;
    color: rgb(255 255 255 / 0.88);
    background: rgb(255 255 255 / 0.045);
    font-size: 0.75rem;
    font-weight: 750;
    line-height: 20px;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgb(49 219 231 / 0.55);
    color: var(--paper);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    color: var(--cyan);
}

.hero__visual {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.13);
    border-radius: 8px;
    background: rgb(5 12 22 / 0.58);
    box-shadow:
        0 38px 80px rgb(0 0 0 / 0.5),
        inset 0 1px rgb(255 255 255 / 0.08);
}

.hero__visual::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgb(49 219 231 / 0.08);
    content: "";
    pointer-events: none;
}

.hero__visual--image {
    aspect-ratio: 16 / 10;
}

.hero__visual--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__visual--fallback {
    aspect-ratio: 16 / 11;
}

.hero__footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 44px;
    padding: 10px max(32px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(255 255 255 / 0.08);
    color: rgb(255 255 255 / 0.44);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

/*
 * Reference-led first view: one full-bleed advertising visual.
 * The background artwork, headline and three-step mechanism share one frame
 * instead of splitting into independent copy and image columns.
 */
.sales-hero {
    position: relative;
    overflow: hidden;
    color: var(--paper);
    background: #020711;
}

.sales-hero__frame {
    position: relative;
    isolation: isolate;
    min-height: clamp(650px, 56.25vw, 810px);
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 70%, rgb(49 219 231 / 0.18), transparent 42%),
        linear-gradient(145deg, #061321, #020711 72%);
}

.sales-hero__art,
.sales-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sales-hero__art {
    z-index: -3;
    object-fit: cover;
    object-position: center;
}

.sales-hero__shade {
    z-index: -2;
    background:
        linear-gradient(
            to bottom,
            rgb(1 5 12 / 0.82) 0%,
            rgb(1 7 16 / 0.54) 28%,
            rgb(2 8 17 / 0.64) 70%,
            rgb(2 7 15 / 0.94) 100%
        ),
        radial-gradient(circle at 50% 44%, rgb(0 0 0 / 0.06), rgb(0 0 0 / 0.5) 86%);
}

.sales-hero__frame::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
    background-size: 58px 58px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 84%);
    pointer-events: none;
}

.sales-hero__frame::after {
    position: absolute;
    z-index: 5;
    inset: 0;
    border: 1px solid rgb(255 255 255 / 0.1);
    box-shadow: inset 0 0 90px rgb(0 0 0 / 0.38);
    content: "";
    pointer-events: none;
}

.sales-hero__sale {
    position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    left: 0;
    min-height: 46px;
    margin: 0;
    padding: 9px 20px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid rgb(241 199 107 / 0.55);
    color: #fff1bf;
    background: linear-gradient(90deg, rgb(3 10 20 / 0.94), rgb(34 24 10 / 0.92), rgb(3 10 20 / 0.94));
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 0 2px 12px rgb(0 0 0 / 0.9);
}

.sales-hero__content {
    position: relative;
    z-index: 2;
    width: min(1160px, calc(100% - 64px));
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 88px 0 46px;
    text-align: center;
}

.sales-hero__product,
.sales-hero__lead {
    margin-right: auto;
    margin-left: auto;
}

.sales-hero__product {
    margin-top: 0;
    margin-bottom: 14px;
    color: #ffe29b;
    font-size: clamp(2.45rem, 4.7vw, 4.6rem);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: 0.065em;
    text-shadow:
        0 2px 0 #5e3500,
        0 0 22px rgb(241 199 107 / 0.5),
        0 9px 24px rgb(0 0 0 / 0.9);
}

.sales-hero h1 {
    width: 100%;
    min-width: 0;
    max-width: 1100px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.7rem, 4.6vw, 4.15rem);
    font-weight: 950;
    line-height: 1.27;
    letter-spacing: -0.052em;
    text-align: center;
    text-shadow:
        0 3px 0 rgb(0 0 0 / 0.7),
        0 8px 24px rgb(0 0 0 / 0.96);
    text-wrap: wrap;
    word-break: auto-phrase;
}

.sales-hero h1 em {
    color: #ffc94f;
    font-style: normal;
    text-shadow:
        0 2px 0 #6a3b00,
        0 0 18px rgb(241 199 107 / 0.34),
        0 8px 24px rgb(0 0 0 / 0.96);
}

.sales-hero__keep {
    display: inline-block;
    white-space: nowrap;
}

.sales-hero__line,
.sales-hero h1 .sales-hero__line {
    display: block;
}

@media (min-width: 1024px) {
    .sales-hero h1 .sales-hero__line--single {
        font-size: clamp(36px, 3.4vw, 46px);
        white-space: nowrap;
    }
}

.sales-hero__bridge .sales-hero__line--red {
    color: #ff5252;
    text-shadow: 0 2px 14px rgb(255 64 64 / 0.5);
}

.sales-hero__question {
    width: min(1320px, 100%);
    margin: 0 auto 22px;
    color: #ffe29b;
    font-size: clamp(1.35rem, 2.4vw, 1.875rem);
    font-weight: 950;
    line-height: 1.5;
    text-align: center;
    text-shadow:
        0 2px 0 rgb(0 0 0 / 0.72),
        0 0 18px rgb(241 199 107 / 0.28);
}

.sales-hero__lead {
    max-width: 880px;
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(255 255 255 / 0.92);
    font-size: clamp(1.1rem, 1.55vw, 1.28rem);
    font-weight: 750;
    line-height: 1.9;
    text-shadow: 0 3px 16px rgb(0 0 0 / 0.96);
}

.sales-hero--compact .sales-hero__frame {
    min-height: auto;
}

.sales-hero--compact .sales-hero__content {
    padding-bottom: 20px;
}

.sales-hero__mechanism {
    width: min(940px, 100%);
    margin: 0 auto;
    padding: 16px 20px;
    border: 1px solid rgb(49 219 231 / 0.38);
    border-radius: 8px;
    background: linear-gradient(145deg, rgb(3 12 24 / 0.72), rgb(12 29 44 / 0.56));
    box-shadow:
        0 12px 26px rgb(0 0 0 / 0.28),
        inset 0 1px rgb(255 255 255 / 0.06);
}

.sales-hero__mechanism .sales-hero__lead {
    max-width: none;
}

@media (max-width: 599px) {
    .sales-hero--compact .sales-hero__content {
        padding-bottom: 18px;
    }

    .sales-hero__mechanism {
        padding: 14px 12px;
    }
}

.sales-hero__flow {
    width: min(940px, 100%);
    margin: 30px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    counter-reset: none;
}

.sales-hero__flow li {
    position: relative;
    min-width: 0;
    min-height: 104px;
    padding: 16px 17px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 11px;
    align-content: center;
    align-items: center;
    border: 1px solid rgb(255 255 255 / 0.22);
    border-radius: 8px;
    background: linear-gradient(145deg, rgb(3 12 24 / 0.82), rgb(12 29 44 / 0.65));
    box-shadow:
        0 14px 32px rgb(0 0 0 / 0.4),
        inset 0 1px rgb(255 255 255 / 0.08);
    text-align: left;
    backdrop-filter: blur(6px);
}

.sales-hero__flow b {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(49 219 231 / 0.5);
    border-radius: 50%;
    color: #07111f;
    background: linear-gradient(145deg, #c9fbff, var(--cyan));
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 0 18px rgb(49 219 231 / 0.28);
}

.sales-hero__flow strong {
    min-width: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
}

.sales-hero__flow span {
    min-width: 0;
    color: rgb(255 255 255 / 0.68);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.sales-hero__flow li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -19px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    color: #07111f;
    background: var(--gold);
    font-size: 16px;
    font-weight: 950;
    line-height: 1;
    content: "›";
    box-shadow: 0 5px 14px rgb(0 0 0 / 0.42);
}

.sales-hero__bridge {
    position: relative;
    min-height: 96px;
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-top: 1px solid rgb(49 219 231 / 0.32);
    border-bottom: 1px solid rgb(241 199 107 / 0.24);
    background:
        linear-gradient(90deg, transparent, rgb(49 219 231 / 0.08) 48%, transparent),
        #050c16;
    text-align: center;
}

.sales-hero__bridge::before {
    position: absolute;
    top: 0;
    right: 14%;
    left: 14%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
    content: "";
}

.sales-hero__bridge strong {
    color: #fff;
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
    font-weight: 900;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .sales-hero__frame {
        min-height: 680px;
    }

    .sales-hero__content {
        width: min(100% - 40px, 760px);
        padding-top: 82px;
        padding-bottom: 38px;
    }

    .sales-hero__product {
        font-size: clamp(2.25rem, 7.4vw, 3.7rem);
    }

    .sales-hero h1 {
        font-size: clamp(2.35rem, 6.4vw, 3.45rem);
    }
}

@media (max-width: 720px) {
    .sales-hero__frame {
        min-height: 610px;
    }

    .sales-hero__art {
        object-position: 60% center;
    }

    .sales-hero__shade {
        background:
            linear-gradient(
                to bottom,
                rgb(1 5 12 / 0.82) 0%,
                rgb(1 7 16 / 0.64) 32%,
                rgb(2 8 17 / 0.74) 72%,
                rgb(2 7 15 / 0.97) 100%
            ),
            radial-gradient(circle at 50% 44%, rgb(0 0 0 / 0.08), rgb(0 0 0 / 0.54) 84%);
    }

    .sales-hero__sale {
        min-height: 42px;
        padding: 8px 12px;
        font-size: 14px;
        letter-spacing: 0.02em;
    }

    .sales-hero__content {
        width: 100%;
        padding: 66px 16px 28px;
    }

    .sales-hero__product {
        margin-bottom: 12px;
        font-size: clamp(1.85rem, 8.3vw, 2.45rem);
        letter-spacing: 0.035em;
    }

    .sales-hero h1 {
        margin-bottom: 15px;
        font-size: clamp(1.9rem, 8vw, 2.25rem);
        line-height: 1.38;
        letter-spacing: -0.045em;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .sales-hero h1 em {
        display: block;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .sales-hero__lead {
        max-width: 36rem;
        font-size: 16px;
        line-height: 1.78;
    }

    .sales-hero__flow {
        margin-top: 22px;
        gap: 5px;
    }

    .sales-hero__flow li {
        min-height: 76px;
        padding: 8px 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        border-radius: 5px;
        text-align: center;
    }

    .sales-hero__flow b {
        width: 26px;
        height: 26px;
        flex: 0 0 auto;
        font-size: 14px;
    }

    .sales-hero__flow strong {
        font-size: 14px;
        line-height: 1.38;
    }

    .sales-hero__flow span,
    .sales-hero__flow li::after {
        display: none;
    }

    .sales-hero__bridge {
        min-height: 88px;
        padding: 20px 16px 22px;
    }

    .sales-hero__bridge strong {
        font-size: 20px;
    }
}

.lp-shell {
    width: min(900px, 100%);
    margin: 0 auto;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
}

.lp-section {
    position: relative;
    border-bottom: 1px solid #e1e9ec;
    background: var(--paper);
}

.section-band {
    padding: 46px clamp(34px, 7vw, 72px) 50px;
    color: var(--paper);
    background:
        linear-gradient(120deg, rgb(49 219 231 / 0.09), transparent 42%),
        var(--navy-850);
}

.section-band h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    line-break: strict;
    line-height: 1.3;
    letter-spacing: -0.042em;
    text-wrap: pretty;
    word-break: auto-phrase;
}

.section-body {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 82px 42px 96px;
}

.section-body > :first-child {
    margin-top: 0;
}

.section-body > :last-child {
    margin-bottom: 0;
}

.section-body p {
    margin: 0 0 1.05em;
}

.lead-copy {
    color: var(--ink);
    font-size: clamp(1.16rem, 2vw, 1.34rem);
    font-weight: 650;
    line-height: 1.9;
    letter-spacing: -0.015em;
}

.emphasis-line {
    margin-top: 54px !important;
    text-align: center;
    font-size: clamp(1.18rem, 2.2vw, 1.42rem);
    font-weight: 750;
}

mark {
    padding: 0 0.12em 0.08em;
    color: inherit;
    background: linear-gradient(transparent 58%, rgb(241 199 107 / 0.58) 58%);
}

.future-stage {
    position: relative;
    margin: 52px 0;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--mist-deep);
    border-radius: 6px;
    background:
        linear-gradient(rgb(255 255 255 / 0.92), rgb(244 250 251 / 0.98)),
        repeating-linear-gradient(90deg, transparent 0 39px, rgb(11 36 53 / 0.05) 39px 40px);
    box-shadow: var(--shadow-md);
}

.future-stage::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(var(--cyan), var(--gold));
    content: "";
}

.future-stage__track {
    width: 62%;
    margin: 0 auto 16px;
    padding: 18px 22px;
    border: 1px solid rgb(14 157 169 / 0.3);
    background: var(--navy-900);
    color: var(--paper);
}

.future-stage__track strong {
    display: block;
    margin-top: 0;
    font-size: 1rem;
}

.future-stage__arrow {
    color: var(--cyan-deep);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
}

.future-stage__screens {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.future-stage__screens article {
    min-height: 150px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid #cadce1;
    background: var(--paper);
}

.future-stage__screens strong {
    margin: 0 0 4px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.future-stage__screens span {
    color: var(--ink-soft);
    font-size: 0.72rem;
    line-height: 1.6;
}

.future-stage__catalog {
    margin: 18px auto 0;
    padding: 14px 18px;
    border: 1px solid rgb(188 135 48 / 0.28);
    background: #fff9e9;
    text-align: center;
}

.future-stage__catalog strong {
    display: block;
    margin-top: 0;
    font-size: 0.9rem;
}

.statement-card {
    margin-top: 46px;
    padding: 28px 30px;
    border-left: 5px solid var(--cyan);
    background: var(--navy-900);
    color: var(--paper);
}

.statement-card p {
    margin: 0.2em 0;
    color: rgb(255 255 255 / 0.78);
    font-size: 0.94rem;
}

.statement-card strong {
    display: block;
    margin-top: 15px;
    color: var(--gold);
    font-size: 1.05rem;
}

.friction-grid {
    margin: 48px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--mist-deep);
    border-left: 1px solid var(--mist-deep);
}

.friction-grid article {
    min-width: 0;
    padding: 28px;
    border-right: 1px solid var(--mist-deep);
    border-bottom: 1px solid var(--mist-deep);
}

.friction-grid article > span {
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
}

.friction-grid h3 {
    margin: 10px 0 12px;
    font-size: 1.06rem;
    line-height: 1.55;
}

.friction-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.85;
}

.before-after {
    margin: 50px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
    align-items: stretch;
}

.before-after article {
    min-width: 0;
    padding: 30px 26px;
    border: 1px solid var(--mist-deep);
}

.before-after__before {
    color: var(--ink-soft);
    background: #f4f6f6;
}

.before-after__after {
    border-color: rgb(14 157 169 / 0.35) !important;
    background: linear-gradient(150deg, #ecfbfc, #fffdf6);
}

.before-after article > span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.before-after__after > span {
    color: var(--cyan-deep);
}

.before-after h3 {
    margin: 12px 0;
    font-size: 1.12rem;
    line-height: 1.6;
}

.before-after p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.8;
}

.before-after__switch {
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    font-weight: 900;
}

.key-idea {
    margin: 48px 0 0;
    padding: 38px;
    border: 1px solid rgb(241 199 107 / 0.45);
    background:
        linear-gradient(120deg, rgb(241 199 107 / 0.09), transparent 55%),
        var(--navy-900);
    color: var(--paper);
    text-align: center;
}

.key-idea strong {
    display: block;
    margin-top: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    line-height: 1.7;
}

.lp-section--ink .section-body {
    width: 100%;
    max-width: none;
    padding-right: clamp(42px, 8vw, 70px);
    padding-left: clamp(42px, 8vw, 70px);
    color: var(--paper);
    background:
        radial-gradient(circle at 80% 8%, rgb(49 219 231 / 0.1), transparent 28rem),
        var(--navy-900);
}

.lp-section--ink .lead-copy {
    color: var(--paper);
}

.loop-diagram {
    position: relative;
    margin: 54px 0;
    padding: 0;
    list-style: none;
}

.loop-diagram::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 25px;
    width: 1px;
    background: linear-gradient(var(--cyan), var(--gold));
    content: "";
}

.loop-diagram > li {
    position: relative;
    min-width: 0;
    margin-bottom: 18px;
    padding: 27px 26px 27px 76px;
    border: 1px solid rgb(255 255 255 / 0.13);
    background: rgb(255 255 255 / 0.035);
}

.loop-diagram__number {
    position: absolute;
    z-index: 1;
    top: 24px;
    left: 10px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--cyan);
    background: var(--navy-900);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 900;
}

.loop-diagram strong {
    display: block;
    margin: 0 0 7px;
    font-size: 1.12rem;
}

.loop-diagram p {
    margin: 0;
    color: rgb(255 255 255 / 0.66);
    font-size: 0.86rem;
    line-height: 1.8;
}

.output-pair {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.output-pair span {
    min-width: 0;
    padding: 15px;
    border-left: 3px solid var(--gold);
    background: rgb(255 255 255 / 0.07);
    color: rgb(255 255 255 / 0.7);
    font-size: 0.77rem;
    line-height: 1.7;
}

.output-pair b {
    display: block;
    margin-bottom: 3px;
    color: var(--paper);
    font-size: 0.86rem;
}

.loop-assets {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    align-items: center;
}

.loop-assets article {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgb(241 199 107 / 0.24);
    background: rgb(241 199 107 / 0.055);
}

.loop-assets strong {
    display: block;
    margin: 0 0 7px;
    font-size: 1.12rem;
}

.loop-assets p {
    margin: 0;
    color: rgb(255 255 255 / 0.62);
    font-size: 0.82rem;
    line-height: 1.75;
}

.loop-assets > i {
    color: var(--cyan);
    text-align: center;
    font-style: normal;
    font-weight: 900;
}

.service-route {
    position: relative;
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-route article {
    position: relative;
    min-width: 0;
    min-height: 260px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--mist-deep);
    background: var(--paper-warm);
}

.service-route article::after {
    position: absolute;
    top: -30px;
    right: -20px;
    color: rgb(14 157 169 / 0.07);
    content: attr(data-number);
    font-family: var(--font-mono);
    font-size: 7rem;
}

.service-route article > span {
    color: var(--gold-deep);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 900;
}

.service-route h3 {
    margin: 24px 0 12px;
    font-size: 1.45rem;
}

.service-route p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.8;
}

.supporting-tools {
    margin: -18px 0 44px;
    padding: 20px 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgb(14 157 169 / 0.25);
    background: #effafb;
    font-size: 0.82rem;
}

.supporting-tools span {
    color: var(--ink-soft);
}

.supporting-tools strong {
    color: var(--navy-850);
}

.supporting-tools i {
    color: var(--gold-deep);
    font-style: normal;
    font-weight: 900;
}

.comparison-table {
    margin: 48px 0;
    border: 1px solid var(--mist-deep);
}

.comparison-table [role="row"] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-table [role="cell"],
.comparison-table [role="columnheader"] {
    min-width: 0;
    padding: 20px 22px;
    border-bottom: 1px solid var(--mist-deep);
    font-size: 0.86rem;
    line-height: 1.75;
}

.comparison-table [role="cell"] + [role="cell"],
.comparison-table [role="columnheader"] + [role="columnheader"] {
    border-left: 1px solid var(--mist-deep);
}

.comparison-table [role="row"]:last-child span {
    border-bottom: 0;
}

.comparison-table__head {
    color: var(--paper);
    background: var(--navy-850);
    font-weight: 800;
}

.comparison-table__head span:last-child {
    color: var(--cyan);
}

.comparison-table [role="row"]:not(.comparison-table__head) span:last-child {
    background: #f1fbfc;
    font-weight: 650;
}

.discovery-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 4px solid var(--gold);
    background: var(--navy-900);
}

.discovery-map article {
    min-width: 0;
    padding: 28px 22px;
    color: var(--paper);
}

.discovery-map article + article {
    border-left: 1px solid rgb(255 255 255 / 0.1);
}

.discovery-map strong {
    display: block;
    margin: 0 0 10px;
    font-size: 0.92rem;
}

.discovery-map p {
    margin: 0;
    color: rgb(255 255 255 / 0.62);
    font-size: 0.76rem;
    line-height: 1.7;
}

.asset-columns {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.asset-columns article {
    min-width: 0;
    padding: 28px 22px;
    border: 1px solid var(--mist-deep);
    background: var(--paper-warm);
}

.asset-columns article:nth-child(2) {
    border-top-color: var(--cyan);
}

.asset-columns article:nth-child(3) {
    border-top-color: var(--gold);
}

.asset-columns h3 {
    min-height: 4.6em;
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.55;
}

.asset-columns p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.8rem;
    line-height: 1.75;
}

.asset-columns small {
    display: block;
    margin-top: 22px;
    padding-top: 15px;
    border-top: 1px solid var(--mist-deep);
    color: var(--ink);
    font-size: 0.7rem;
    line-height: 1.65;
}

.beginner-reasons {
    margin: 48px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.beginner-reasons article {
    min-width: 0;
    padding: 29px;
    border: 1px solid var(--mist-deep);
    border-top: 4px solid var(--cyan);
    background: linear-gradient(155deg, #fff, #f6fafb);
}

.beginner-reasons article:nth-child(even) {
    border-top-color: var(--gold);
}

.beginner-reasons h3 {
    margin: 0 0 11px;
    font-size: 1.06rem;
}

.beginner-reasons p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.78;
}

.numbers-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    color: var(--paper);
    background: var(--navy-850);
}

.numbers-ribbon div {
    min-width: 0;
    padding: 25px 12px;
    text-align: center;
}

.numbers-ribbon div + div {
    border-left: 1px solid rgb(255 255 255 / 0.1);
}

.numbers-ribbon strong {
    display: block;
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 1.8rem;
    line-height: 1;
}

.numbers-ribbon span {
    display: block;
    margin-top: 8px;
    color: rgb(255 255 255 / 0.68);
    font-size: 0.66rem;
    line-height: 1.4;
}

.lp-section--demo .section-body {
    width: 100%;
    max-width: none;
    padding-right: clamp(28px, 6vw, 54px);
    padding-left: clamp(28px, 6vw, 54px);
    background: #edf4f6;
}

.demo-screenshot {
    margin: 44px 0 24px;
    overflow: hidden;
    border: 1px solid #b9ced5;
    border-radius: 7px;
    background: var(--navy-900);
    box-shadow: var(--shadow-md);
}

.demo-screenshot img {
    width: 100%;
    height: auto;
}

.demo-screenshot figcaption {
    padding: 12px 16px;
    color: rgb(255 255 255 / 0.72);
    background: var(--navy-900);
    font-size: 0.68rem;
    line-break: strict;
    line-height: 1.6;
    text-wrap: pretty;
    word-break: auto-phrase;
}

.demo-screenshot figcaption span {
    margin-right: 8px;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.content-visual {
    position: relative;
    width: min(100%, 820px);
    margin: 46px auto;
}

/* Keep the first text line clear of the figure glow/shadow. */
.section-body :is(.content-visual, .step-visual) + :is(p, ul, ol) {
    margin-top: clamp(44px, 5vw, 68px) !important;
}

/* Warm box list: bold for readability against the tinted background. */
.section-body .plain-list--box-warm > li {
    font-weight: 750;
}

.content-visual img {
    width: 100%;
}

.content-visual figcaption {
    font-size: 0.72rem;
    line-break: strict;
    line-height: 1.75;
    text-wrap: pretty;
    word-break: auto-phrase;
}

.content-visual__label {
    display: inline-block;
    margin-right: 10px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.content-visual--art {
    padding: 10px 10px 0;
    border: 1px solid #d7cba9;
    border-radius: 3px;
    background:
        linear-gradient(135deg, rgb(241 199 107 / 0.14), transparent 42%),
        var(--paper-warm);
    box-shadow: 0 22px 48px rgb(11 36 53 / 0.13);
}

.content-visual--art::before {
    position: absolute;
    z-index: 1;
    top: -8px;
    left: 28px;
    width: 76px;
    height: 18px;
    transform: rotate(-2deg);
    background: rgb(241 199 107 / 0.66);
    content: "";
    pointer-events: none;
}

.content-visual--art img {
    border-radius: 2px;
}

.content-visual--art figcaption {
    padding: 13px 8px 14px;
    color: var(--ink-soft);
}

.content-visual--art .content-visual__label {
    color: var(--gold-deep);
}

.content-visual--screen {
    padding: 13px;
    overflow: hidden;
    border: 1px solid #163b54;
    border-radius: 8px;
    background:
        linear-gradient(125deg, rgb(49 219 231 / 0.08), transparent 34%),
        var(--navy-900);
    box-shadow: 0 24px 54px rgb(6 20 32 / 0.24);
}

.content-visual--screen::before {
    display: block;
    height: 18px;
    margin: -2px 0 9px;
    background:
        radial-gradient(circle at 6px 9px, var(--coral) 0 3px, transparent 3.5px),
        radial-gradient(circle at 18px 9px, var(--gold) 0 3px, transparent 3.5px),
        radial-gradient(circle at 30px 9px, var(--success) 0 3px, transparent 3.5px);
    content: "";
}

.content-visual--screen img {
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 3px;
    background: var(--paper);
}

.content-visual--screen figcaption {
    padding: 13px 5px 2px;
    color: rgb(255 255 255 / 0.74);
}

.content-visual--screen .content-visual__label {
    color: var(--cyan);
}

.nav-demo {
    margin: 24px 0 26px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #c7d9df;
    border-radius: 7px;
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.nav-demo__sidebar {
    min-width: 0;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    color: var(--paper);
    background:
        linear-gradient(160deg, rgb(49 219 231 / 0.08), transparent 42%),
        var(--navy-900);
}

.nav-demo__sidebar > div:first-child span {
    display: block;
    color: var(--cyan);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.nav-demo__sidebar > div:first-child small {
    display: block;
    margin-top: 2px;
    color: rgb(255 255 255 / 0.42);
    font-family: var(--font-mono);
    font-size: 0.48rem;
    letter-spacing: 0.11em;
}

.nav-demo__sidebar ol {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.nav-demo__sidebar li {
    min-height: 48px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgb(255 255 255 / 0.07);
}

.nav-demo__sidebar li.is-active {
    border-left: 3px solid var(--cyan);
    background: rgb(49 219 231 / 0.08);
}

.nav-demo__sidebar li i {
    color: rgb(255 255 255 / 0.45);
    font-size: 0.62rem;
    font-style: normal;
}

.nav-demo__sidebar li.is-complete i,
.nav-demo__sidebar li.is-active i {
    color: var(--cyan);
}

.nav-demo__sidebar li > span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
}

.nav-demo__sidebar li small {
    display: block;
    color: rgb(255 255 255 / 0.46);
    font-family: var(--font-sans);
    font-size: 0.56rem;
}

.nav-demo__progress {
    margin-top: auto;
}

.nav-demo__progress > span {
    color: rgb(255 255 255 / 0.38);
    font-family: var(--font-mono);
    font-size: 0.5rem;
}

.nav-demo__progress > strong {
    display: block;
    margin: 3px 0 8px;
    font-size: 0.75rem;
}

.nav-demo__progress > i {
    height: 4px;
    display: block;
    overflow: hidden;
    background: rgb(255 255 255 / 0.1);
}

.nav-demo__progress b {
    width: 54%;
    height: 100%;
    display: block;
    background: var(--cyan);
}

.nav-demo__screen {
    min-width: 0;
    padding: 30px;
}

.nav-demo__top {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--mist-deep);
}

.nav-demo__top > span,
.nav-demo__top > em {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-style: normal;
    letter-spacing: 0.1em;
}

.nav-demo__top > span {
    color: var(--cyan-deep);
}

.nav-demo__top > em {
    margin-top: 12px;
    color: var(--ink-soft);
}

.nav-demo__top > strong {
    display: block;
    margin-top: 4px;
    font-size: 0.98rem;
    line-height: 1.5;
}

.nav-demo__now {
    margin: 20px 0;
    padding: 16px;
    display: flex;
    gap: 14px;
    border-left: 4px solid var(--cyan);
    background: #eefafb;
}

.nav-demo__now > small {
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 0.54rem;
    font-weight: 900;
}

.nav-demo__now h3 {
    margin: 0 0 4px;
    font-size: 0.85rem;
}

.nav-demo__now p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.65rem;
    line-height: 1.6;
}

.nav-demo__card {
    padding: 18px;
    border: 1px solid var(--mist-deep);
}

.nav-demo__card > span {
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 0.54rem;
}

.nav-demo__card > span b {
    float: right;
    color: var(--gold-deep);
}

.nav-demo__card h3 {
    margin: 8px 0 12px;
    font-size: 0.84rem;
}

.nav-demo__card div {
    display: grid;
    gap: 5px;
}

.nav-demo__card code {
    padding: 7px 8px;
    overflow-wrap: anywhere;
    color: #1e4e59;
    background: #edf5f6;
    font-family: var(--font-mono);
    font-size: 0.53rem;
}

.nav-demo__choice {
    min-width: 0;
    margin: 20px 0 0;
    padding: 0;
    border: 0;
}

.nav-demo__choice legend {
    margin-bottom: 8px;
    font-size: 0.7rem;
    font-weight: 800;
}

.nav-demo__choice label {
    min-height: 44px;
    padding: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid var(--mist-deep);
}

.nav-demo__choice label + label {
    margin-top: 5px;
}

.nav-demo__choice input {
    margin-top: 5px;
    accent-color: var(--cyan-deep);
}

.nav-demo__choice span {
    min-width: 0;
}

.nav-demo__choice b,
.nav-demo__choice small {
    display: block;
    line-height: 1.45;
}

.nav-demo__choice b {
    font-size: 0.66rem;
}

.nav-demo__choice small {
    color: var(--ink-soft);
    font-size: 0.56rem;
}

.nav-demo__result {
    margin-top: 12px;
    padding: 13px 15px;
    border-left: 3px solid var(--gold);
    background: #fff8e7;
}

.nav-demo__result span {
    display: block;
    color: var(--gold-deep);
    font-family: var(--font-mono);
    font-size: 0.5rem;
}

.nav-demo__result strong {
    display: block;
    margin-top: 3px;
    font-size: 0.68rem;
}

.nav-demo__result p {
    margin: 2px 0 0;
    color: var(--ink-soft);
    font-size: 0.58rem;
}

.demo-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.demo-features span {
    padding: 7px 10px;
    border: 1px solid #c5d7dc;
    background: var(--paper);
    font-size: 0.68rem;
    font-weight: 700;
}

.small-start-grid {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.small-start-grid article {
    min-width: 0;
    padding: 26px 20px;
    border: 1px solid var(--mist-deep);
    border-bottom: 4px solid var(--cyan);
}

.small-start-grid article:nth-child(2) {
    border-bottom-color: var(--gold);
}

.small-start-grid article:nth-child(3) {
    border-bottom-color: var(--coral);
}

.small-start-grid h3 {
    min-height: 2.8em;
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.4;
}

.small-start-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.75;
}

.soft-callout {
    padding: 38px;
    border: 1px solid rgb(14 157 169 / 0.32);
    background:
        radial-gradient(circle at 90% 10%, rgb(49 219 231 / 0.14), transparent 40%),
        #effafb;
    text-align: center;
}

.soft-callout > .soft-callout__headline {
    display: block;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.15rem, 2.3vw, 1.5rem);
    line-height: 1.65;
}

.soft-callout > .soft-callout__headline + .soft-callout__headline {
    margin-top: 0.85em;
}

.soft-callout > .soft-callout__headline + p:not(.soft-callout__headline) {
    margin-top: 14px;
}

.soft-callout p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.lp-section--roadmap .section-body {
    width: 100%;
    max-width: none;
    padding-right: clamp(42px, 7vw, 66px);
    padding-left: clamp(42px, 7vw, 66px);
}

.roadmap {
    position: relative;
    margin: 54px 0;
    padding: 0;
    list-style: none;
}

.roadmap::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 115px;
    width: 2px;
    background: linear-gradient(var(--cyan), var(--gold));
    content: "";
}

.roadmap li {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.roadmap li + li {
    margin-top: 17px;
}

.roadmap li > span {
    padding: 7px 4px;
    border: 1px solid var(--cyan-deep);
    color: var(--cyan-deep);
    background: var(--paper);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 900;
    text-align: center;
}

.roadmap li > span::after {
    position: absolute;
    top: 13px;
    left: 111px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--paper);
    border-radius: 50%;
    background: var(--cyan-deep);
    box-shadow: 0 0 0 2px var(--cyan-deep);
    content: "";
}

.roadmap li > div {
    min-width: 0;
    padding: 20px 22px;
    border: 1px solid var(--mist-deep);
    background: var(--paper-warm);
}

.roadmap li small {
    display: block;
    color: var(--ink-soft);
    font-family: var(--font-mono);
    font-size: 0.56rem;
}

.roadmap li strong {
    display: block;
    margin: 5px 0;
    font-size: 1rem;
}

.roadmap li p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.roadmap li.roadmap__focus > div {
    border-color: rgb(188 135 48 / 0.38);
    background: #fff8e9;
}

.roadmap li.roadmap__focus > span {
    border-color: var(--gold-deep);
    color: var(--gold-deep);
}

.roadmap li.roadmap__focus > span::after {
    background: var(--gold-deep);
    box-shadow: 0 0 0 2px var(--gold-deep);
}

.roadmap-note {
    padding: 26px 28px;
    border-left: 5px solid var(--gold);
    background: var(--navy-900);
    color: var(--paper);
}

.roadmap-note strong {
    display: block;
    font-size: 1rem;
}

.roadmap-note p {
    margin: 8px 0 0;
    color: rgb(255 255 255 / 0.66);
    font-size: 0.8rem;
}

.curriculum-list {
    margin: 50px 0;
    border-top: 1px solid var(--mist-deep);
}

.curriculum-list article {
    min-width: 0;
    padding: 22px 0;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    border-bottom: 1px solid var(--mist-deep);
}

.curriculum-list article > span {
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 900;
}

.curriculum-list h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.55;
}

.curriculum-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.79rem;
    line-height: 1.7;
}

.curriculum-list p small {
    display: inline-block;
    margin-right: 10px;
    padding: 1px 7px;
    color: var(--navy-850);
    background: #e8f5f7;
    font-size: 0.62rem;
    font-weight: 750;
}

.curriculum-summary {
    padding: 34px;
    color: var(--paper);
    background:
        linear-gradient(125deg, rgb(49 219 231 / 0.12), transparent 50%),
        var(--navy-850);
}

.curriculum-summary strong {
    display: block;
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 1.02rem;
    line-height: 1.7;
}

.curriculum-summary p {
    margin: 0;
    color: rgb(255 255 255 / 0.65);
    font-size: 0.8rem;
}

.lp-section--templates .section-body {
    width: 100%;
    max-width: none;
    padding-right: clamp(36px, 7vw, 64px);
    padding-left: clamp(36px, 7vw, 64px);
    background: #f4f8f9;
}

.template-stack {
    margin: 48px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.template-stack article {
    min-width: 0;
    min-height: 58px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ccdce1;
    background: var(--paper);
}

.template-stack span {
    flex: 0 0 auto;
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 900;
}

.template-stack strong {
    min-width: 0;
    font-size: 0.75rem;
    line-height: 1.5;
}

.implemented-tools {
    display: grid;
    gap: 12px;
}

.implemented-tools article {
    padding: 28px;
    border-left: 4px solid var(--cyan);
    background: var(--navy-900);
    color: var(--paper);
}

.implemented-tools article:nth-child(2) {
    border-left-color: var(--gold);
}

.implemented-tools article:nth-child(3) {
    border-left-color: var(--coral);
}

.implemented-tools span {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

.implemented-tools h3 {
    margin: 8px 0;
    font-size: 1.03rem;
}

.implemented-tools p {
    margin: 0;
    color: rgb(255 255 255 / 0.64);
    font-size: 0.78rem;
    line-height: 1.75;
}

.fit-list {
    margin: 48px 0;
    padding: 0;
    list-style: none;
}

.fit-list li {
    min-height: 72px;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--mist-deep);
}

.fit-list li:first-child {
    border-top: 1px solid var(--mist-deep);
}

.fit-list span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--cyan-deep);
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 900;
}

.fit-list p {
    margin: 0;
    font-weight: 650;
    line-height: 1.75;
}

.fit-close {
    padding: 40px;
    border: 1px solid rgb(241 199 107 / 0.35);
    background: #fff9ea;
    text-align: center;
}

.fit-close strong {
    display: block;
    margin-top: 0;
    font-size: clamp(1.14rem, 2.4vw, 1.5rem);
    line-height: 1.75;
}

.lp-section--before .section-body {
    width: 100%;
    max-width: none;
    padding-right: clamp(36px, 7vw, 64px);
    padding-left: clamp(36px, 7vw, 64px);
}

.before-cards {
    margin: 48px 0 22px;
    display: grid;
    gap: 14px;
}

.before-cards > article {
    padding: 30px;
    border: 1px solid var(--mist-deep);
    background: var(--paper-warm);
}

.before-cards h3 {
    margin: 0 0 16px;
    font-size: 1.14rem;
}

.before-cards > article > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.cost-list {
    border-top: 1px solid var(--mist-deep);
}

.cost-list > div {
    min-width: 0;
    padding: 15px 0;
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.75fr;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--mist-deep);
}

.cost-list strong,
.cost-list span,
.cost-list small {
    min-width: 0;
    line-height: 1.6;
}

.cost-list strong {
    font-size: 0.76rem;
}

.cost-list span {
    color: var(--gold-deep);
    font-size: 0.75rem;
    font-weight: 800;
}

.cost-list small {
    color: var(--ink-soft);
    font-size: 0.65rem;
}

.checked-on {
    margin-top: 14px !important;
    color: var(--ink-soft);
    font-size: 0.66rem !important;
}

.plan-options {
    padding: 26px;
    border: 1px solid rgb(14 157 169 / 0.3);
    background: #eefafb;
}

.plan-options > span {
    display: block;
    margin-bottom: 13px;
    color: var(--cyan-deep);
    font-size: 0.76rem;
    font-weight: 850;
}

.plan-options > div {
    min-width: 0;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    border-top: 1px solid #c9e0e4;
}

.plan-options strong,
.plan-options em,
.plan-options small {
    min-width: 0;
    line-height: 1.55;
}

.plan-options strong {
    font-size: 0.77rem;
}

.plan-options em {
    color: var(--gold-deep);
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 850;
}

.plan-options small {
    color: var(--ink-soft);
    font-size: 0.64rem;
}

.lp-section--offer .section-body {
    width: 100%;
    max-width: none;
    padding: 76px clamp(34px, 7vw, 64px) 94px;
    background:
        radial-gradient(circle at 50% 0, rgb(49 219 231 / 0.13), transparent 32rem),
        #eaf3f5;
}

.offer-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(11 36 53 / 0.2);
    background: var(--paper);
    box-shadow: 0 32px 74px rgb(6 20 32 / 0.2);
}

.offer-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    content: "";
}

.offer-card__top {
    padding: 34px 36px 26px;
    color: var(--paper);
    background: var(--navy-900);
    text-align: center;
}

.offer-card__top span {
    display: block;
    color: var(--cyan);
    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.offer-card__top small {
    display: block;
    margin-top: 7px;
    color: rgb(255 255 255 / 0.61);
    font-size: 0.72rem;
}

.offer-card__price {
    padding: 36px 28px 32px;
    border-bottom: 1px solid var(--mist-deep);
    text-align: center;
}

.offer-card__price small {
    display: block;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
}

.offer-card__price strong {
    display: block;
    margin-top: 4px;
    color: var(--navy-900);
    font-size: clamp(2.3rem, 7vw, 4rem);
    line-height: 1.25;
    letter-spacing: -0.06em;
}

.offer-card__contents {
    padding: 32px 42px 24px;
}

.offer-card__contents h3 {
    margin: 0 0 18px;
    font-size: 1.04rem;
    text-align: center;
}

.offer-card__contents ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offer-card__contents li {
    position: relative;
    padding: 11px 0 11px 34px;
    border-bottom: 1px solid var(--mist-deep);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.65;
}

.offer-card__contents li::before {
    position: absolute;
    top: 13px;
    left: 4px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cyan-deep);
    color: var(--paper);
    content: "✓";
    font-size: 0.58rem;
    font-weight: 900;
}

.offer-card__proof {
    width: auto;
    margin: 12px 42px 28px;
    box-shadow: 0 18px 38px rgb(6 20 32 / 0.2);
}

.offer-card__inventory {
    margin: 0 42px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--mist-deep);
}

.offer-card__inventory span {
    min-width: 0;
    padding: 16px 9px;
    text-align: center;
    font-size: 0.61rem;
    line-height: 1.45;
}

.offer-card__inventory span + span {
    border-left: 1px solid var(--mist-deep);
}

.offer-card__inventory b {
    display: block;
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 1.25rem;
}

.offer-card__action {
    padding: 32px 42px 42px;
}

.offer-card__plan-summary {
    padding: 32px 42px 42px;
    border-top: 1px solid var(--mist-deep);
    background: #f5fafb;
    text-align: center;
}

.offer-card__plan-summary > p {
    margin: 0 0 18px;
    font-size: 0.84rem;
    font-weight: 800;
}

.offer-plan-prices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--mist-deep);
    background: var(--paper);
}

.offer-plan-prices > span {
    min-width: 0;
    padding: 16px 10px;
}

.offer-plan-prices > span + span {
    border-left: 1px solid var(--mist-deep);
}

.offer-plan-prices small,
.offer-plan-prices strong {
    display: block;
    line-height: 1.5;
}

.offer-plan-prices small {
    color: var(--ink-soft);
    font-size: 0.61rem;
    font-weight: 750;
}

.offer-plan-prices strong {
    margin-top: 4px;
    color: var(--navy-900);
    font-size: 0.88rem;
}

.offer-card__plan-link {
    min-height: 52px;
    margin-top: 20px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-bottom: 2px solid var(--cyan-deep);
    color: var(--navy-900);
    font-size: 0.8rem;
    font-weight: 850;
    line-height: 1.5;
    text-decoration: none;
}

.offer-card__plan-link span {
    color: var(--cyan-deep);
}

.lp-section--plans .section-body {
    width: 100%;
    max-width: none;
    padding: 72px 34px 88px;
    background:
        radial-gradient(circle at 50% 0, rgb(241 199 107 / 0.14), transparent 28rem),
        #f4f8f9;
}

.lp-section--plans .lead-copy {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
}

.pricing-grid {
    margin: 48px 0 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgb(11 36 53 / 0.2);
    background: var(--paper);
    box-shadow: 0 18px 38px rgb(6 20 32 / 0.12);
}

.pricing-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    content: "";
}

.pricing-card__header {
    min-height: 158px;
    padding: 29px 16px 22px;
    border-bottom: 1px solid var(--mist-deep);
    text-align: center;
}

.pricing-card__header h3 {
    min-height: 3em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card .pricing-card__price {
    margin: 10px 0 0 !important;
    color: #b42318 !important;
    font-size: clamp(2rem, 4.5vw, 3rem) !important;
    font-weight: 900 !important;
    line-height: 1.35;
    letter-spacing: -0.045em;
}

.pricing-card__audience {
    min-height: 8.7em;
    margin: 0 !important;
    padding: 22px 18px;
    color: var(--ink-soft);
    font-size: 0.76rem;
    line-break: strict;
    line-height: 1.85;
    text-wrap: pretty;
    word-break: auto-phrase;
}

.pricing-card__details {
    margin: 0;
    padding: 0 18px;
    list-style: none;
}

.pricing-card__details li {
    padding: 14px 0;
    border-top: 1px solid var(--mist-deep);
}

.pricing-card__details strong,
.pricing-card__details span {
    display: block;
}

.pricing-card__details strong {
    color: var(--cyan-deep);
    font-size: 0.62rem;
    letter-spacing: 0.04em;
}

.pricing-card__details span {
    margin-top: 3px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1.65;
}

.pricing-card__action {
    margin-top: auto;
    padding: 20px 16px 22px;
}

.cta-button.cta-button--plan {
    min-height: 82px;
    padding: 12px 10px;
    gap: 7px;
    font-size: 0.72rem;
    line-break: strict;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: auto-phrase;
}

.cta-button--plan span {
    min-width: 0;
}

.cta-button--plan b {
    flex: 0 0 auto;
    font-size: 0.95rem;
}

.pricing-common-note {
    margin: 0 !important;
    padding: 20px 22px;
    border-left: 4px solid var(--gold);
    color: var(--ink-soft);
    background: var(--paper);
    font-size: 0.76rem;
    line-height: 1.75;
}

.pricing-common-note strong {
    color: var(--navy-900);
}

.cta-button {
    width: 100%;
    min-height: 70px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid var(--gold-deep);
    border-radius: 4px;
    color: var(--navy-950);
    background: linear-gradient(100deg, var(--gold), #f8df98 44%, var(--cyan));
    box-shadow:
        0 14px 34px rgb(14 157 169 / 0.2),
        inset 0 1px rgb(255 255 255 / 0.6);
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.cta-button b {
    font-size: 1.2rem;
}

.cta-button:not(.is-disabled):hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.cta-button.is-disabled,
.cta-button:disabled {
    border-color: #8d999d;
    color: #314149;
    background: linear-gradient(100deg, #d7dcde, #eef1f2);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.86;
}

.checkout-note {
    margin: 12px 0 0 !important;
    color: var(--ink-soft);
    font-size: 0.7rem;
    line-height: 1.6;
    text-align: center;
}

.lp-section--faq .section-body {
    padding-top: 60px;
    padding-bottom: 82px;
}

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

.faq-list details:first-child {
    border-top: 1px solid var(--mist-deep);
}

.faq-list summary {
    position: relative;
    min-height: 64px;
    padding: 16px 52px 16px 4px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-weight: 750;
    line-break: strict;
    line-height: 1.65;
    list-style: none;
    text-wrap: pretty;
    word-break: auto-phrase;
}

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

.faq-list summary::after {
    position: absolute;
    top: 17px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--mist-deep);
    color: var(--cyan-deep);
    content: "+";
    font-size: 1.2rem;
}

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

.faq-list summary span {
    flex: 0 0 auto;
    color: var(--cyan-deep);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 900;
}

.faq-list details > div {
    padding: 0 36px 24px 42px;
}

.faq-list details p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.9;
}

.lp-section--final {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--paper);
    background:
        radial-gradient(circle at 50% 0, rgb(49 219 231 / 0.15), transparent 30rem),
        linear-gradient(155deg, #07111f, #0b263a);
}

.final-cta__art {
    position: absolute;
    z-index: -1;
    inset: 0;
    margin: 0;
    opacity: 0.18;
    pointer-events: none;
}

.final-cta__art::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgb(7 17 31 / 0.34), rgb(7 17 31 / 0.78)),
        linear-gradient(90deg, rgb(7 17 31 / 0.74), transparent 38%, rgb(7 17 31 / 0.74));
    content: "";
}

.final-cta__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-section--final .section-body {
    padding-top: 96px;
    padding-bottom: 100px;
    text-align: center;
}

.lp-section--final h2 {
    margin: 0 0 22px;
    font-size: clamp(2.2rem, 5vw, 3.45rem);
    line-break: strict;
    line-height: 1.3;
    letter-spacing: -0.045em;
    text-wrap: balance;
    word-break: auto-phrase;
}

.lp-section--final .section-body > p:not(.checkout-note) {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    color: rgb(255 255 255 / 0.73);
}

.final-cta__price {
    margin: 38px 0 22px;
}

.final-cta__price span {
    display: block;
    color: rgb(255 255 255 / 0.5);
    font-size: 0.7rem;
}

.final-cta__price strong {
    display: block;
    color: var(--gold);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.35;
}

.cta-button--final {
    max-width: 590px;
    margin: 0 auto;
}

.checkout-note--light {
    color: rgb(255 255 255 / 0.52);
}

.lp-section--postscript .section-body {
    padding-top: 74px;
    padding-bottom: 92px;
}

.postscript-mark {
    margin: 0 0 26px !important;
    color: var(--gold-deep);
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 900;
}

.postscript-close {
    margin-top: 46px !important;
    padding-top: 32px;
    border-top: 1px solid var(--mist-deep);
    text-align: center;
    font-size: 1.1rem;
}

.postscript-close strong {
    color: var(--cyan-deep);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.site-footer {
    min-height: 130px;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255 / 0.58);
    text-align: center;
}

.site-footer > span {
    color: var(--paper);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.site-footer small {
    margin-top: 5px;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.13em;
}

.mobile-sticky {
    display: none;
}

.hero h1 em {
    display: block;
    margin-top: 0.18em;
}

.letter-from-seller {
    position: relative;
    margin: 0 0 52px;
    padding: 42px 44px 38px;
    border: 1px solid var(--mist-deep);
    border-top: 5px solid var(--cyan-deep);
    background:
        linear-gradient(145deg, rgb(49 219 231 / 0.06), transparent 46%),
        var(--paper-warm);
    box-shadow: var(--shadow-md);
}

.letter-from-seller > .letter-from-seller__closing {
    display: block;
    margin: 0;
    color: var(--navy-900);
    font-size: 19px;
    line-height: 1.8;
}

.letter-from-seller > .letter-from-seller__closing--first {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--mist-deep);
}

.letter-from-seller > .letter-from-seller__closing + .letter-from-seller__closing {
    margin-top: 0.85em;
}

.letter-from-seller > small {
    display: block;
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 750;
    text-align: right;
}

.method-manifesto {
    margin-top: 44px;
    padding: 34px 36px;
    border: 1px solid rgb(241 199 107 / 0.32);
    background: linear-gradient(135deg, #fff8e5, #f0fbfc);
}

.method-manifesto > strong {
    display: block;
    margin-top: 0;
    color: var(--navy-900);
    font-size: clamp(20px, 2.5vw, 27px);
    line-height: 1.65;
}

.method-manifesto > p {
    margin: 14px 0 0;
    color: var(--ink-soft);
}

.sale-countdown {
    max-width: 680px;
    margin: 42px auto 20px;
    padding: 30px 28px 26px;
    border: 1px solid rgb(241 199 107 / 0.42);
    border-radius: 6px;
    color: var(--paper);
    background:
        radial-gradient(circle at 50% 0, rgb(49 219 231 / 0.15), transparent 20rem),
        var(--navy-900);
    box-shadow: 0 24px 54px rgb(5 12 22 / 0.25);
    text-align: center;
}

.sale-countdown__values {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
}

.sale-countdown__values > span {
    min-width: 76px;
}

.sale-countdown__values strong,
.sale-countdown__values small {
    display: block;
}

.sale-countdown__values strong {
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: clamp(38px, 5.2vw, 56px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.sale-countdown__values small {
    margin-top: 8px;
    color: rgb(255 255 255 / 0.66);
    font-size: 14px;
    font-weight: 750;
}

.sale-countdown__values > i {
    padding-top: 7px;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 30px;
    font-style: normal;
    line-height: 1;
}

.sale-countdown__status {
    margin: 18px 0 0 !important;
    color: rgb(255 255 255 / 0.74);
    font-size: 15px;
    font-weight: 750;
}

.sale-countdown.is-expired {
    padding-top: 38px;
    padding-bottom: 38px;
}

.sale-countdown.is-expired .sale-countdown__status {
    margin-top: 0 !important;
    color: var(--gold);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
}

.early-sale-copy,
.commerce-note {
    width: 100%;
    max-width: none;
    margin-right: 0 !important;
    margin-left: 0 !important;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.85;
    text-align: center;
}

.pricing-card__discount {
    width: fit-content;
    margin: 10px auto 0 !important;
    padding: 5px 10px;
    border-radius: 999px;
    color: #5b3900;
    background: #ffe4a2;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
}

.pricing-card__regular {
    margin: 10px 0 -5px !important;
    color: var(--ink-soft);
    font-size: 14px;
    text-decoration: line-through;
}

.pricing-card__header:has(.pricing-card__discount) {
    min-height: 224px;
}

@media (min-width: 901px) {
    .pricing-card__header {
        min-height: 224px;
    }
}

.commerce-note {
    margin-top: 18px !important;
    padding: 18px 20px;
    border: 1px solid var(--mist-deep);
    background: rgb(255 255 255 / 0.74);
}

.sale-countdown--final {
    margin-top: 34px;
    background: rgb(5 12 22 / 0.82);
    box-shadow: none;
}

.seller-line {
    margin-top: 20px !important;
    color: rgb(255 255 255 / 0.62) !important;
    font-size: 14px;
}

.postscript-signature {
    margin: 38px 0 0 !important;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
}

.postscript-signature strong {
    color: var(--navy-900);
    font-size: 18px;
}

@media (max-width: 900px) {
    .hero__inner {
        width: min(100% - 40px, 760px);
        min-height: auto;
        padding-top: 64px;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero__copy {
        max-width: 720px;
    }

    .hero__visual {
        width: min(100%, 720px);
        margin: 0 auto 62px;
    }

    .hero__footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    .lp-shell {
        width: min(100%, 900px);
    }

    .offer-plan-prices,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .offer-plan-prices > span + span {
        border-top: 1px solid var(--mist-deep);
        border-left: 0;
    }

    .pricing-grid {
        gap: 16px;
    }

    .pricing-card__header,
    .pricing-card__header h3,
    .pricing-card__audience {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 17px;
        line-height: 1.85;
    }

    body.sticky-cta-visible {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        width: 100%;
        padding: 48px 18px 68px;
        gap: 34px;
    }

    .hero h1 {
        margin: 19px 0 22px;
        font-size: clamp(2.28rem, 11vw, 3.7rem);
        line-height: 1.18;
    }

    .hero__lead {
        font-size: 0.98rem;
    }

    .hero__chips {
        gap: 7px;
        margin-top: 24px;
    }

    .hero__chips span {
        font-size: 0.68rem;
    }

    .hero__visual {
        margin-bottom: 20px;
        border-radius: 5px;
    }

    .hero__visual--image {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 8;
        padding: 6px;
        background: #050c16;
    }

    .hero__visual--image img {
        object-fit: contain;
        object-position: center;
    }

    .hero__visual--fallback {
        aspect-ratio: 16 / 9;
    }

    .hero__footer {
        display: none;
    }

    .section-band {
        padding: 34px 18px 37px;
    }

    .section-band h2 {
        font-size: clamp(1.6rem, 7vw, 2.25rem);
        line-height: 1.38;
    }

    .section-body,
    .lp-section--ink .section-body,
    .lp-section--demo .section-body,
    .lp-section--roadmap .section-body,
    .lp-section--templates .section-body,
    .lp-section--before .section-body,
    .lp-section--offer .section-body,
    .lp-section--plans .section-body {
        padding: 56px 18px 68px;
    }

    .lead-copy {
        font-size: 1.08rem;
    }

    .content-visual {
        margin-top: 36px;
        margin-bottom: 36px;
    }

    .content-visual--art {
        padding: 7px 7px 0;
    }

    .content-visual--art figcaption {
        padding: 11px 6px 12px;
    }

    .content-visual--screen {
        padding: 8px;
        border-radius: 5px;
    }

    .content-visual figcaption {
        font-size: 0.68rem;
    }

    .content-visual__label {
        display: block;
        margin: 0 0 3px;
        white-space: normal;
    }

    .future-stage {
        margin: 38px 0;
        padding: 22px 16px;
    }

    .future-stage__track {
        width: 84%;
    }

    .statement-card {
        padding: 23px 20px;
    }

    .friction-grid,
    .service-route,
    .beginner-reasons,
    .template-stack {
        grid-template-columns: 1fr;
    }

    .friction-grid {
        margin: 38px 0;
    }

    .before-after {
        margin: 38px 0;
        grid-template-columns: 1fr;
    }

    .before-after__switch {
        min-height: 44px;
        transform: rotate(90deg);
    }

    .key-idea {
        padding: 30px 20px;
    }

    .loop-diagram > li {
        padding: 22px 17px 22px 62px;
    }

    .loop-diagram::before {
        left: 21px;
    }

    .loop-diagram__number {
        top: 20px;
        left: 6px;
    }

    .output-pair,
    .loop-assets,
    .discovery-map,
    .asset-columns,
    .small-start-grid {
        grid-template-columns: 1fr;
    }

    .loop-assets {
        gap: 8px;
    }

    .loop-assets > i {
        min-height: 28px;
    }

    .service-route article {
        min-height: 0;
    }

    .comparison-table [role="cell"],
    .comparison-table [role="columnheader"] {
        padding: 15px 13px;
        font-size: 0.74rem;
    }

    .discovery-map article + article {
        border-top: 1px solid rgb(255 255 255 / 0.1);
        border-left: 0;
    }

    .asset-columns {
        gap: 10px;
    }

    .asset-columns h3,
    .small-start-grid h3 {
        min-height: 0;
    }

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

    .numbers-ribbon div:nth-child(3) {
        border-top: 1px solid rgb(255 255 255 / 0.1);
        border-left: 0;
    }

    .numbers-ribbon div:nth-child(4) {
        border-top: 1px solid rgb(255 255 255 / 0.1);
    }

    .nav-demo {
        margin-top: 38px;
        grid-template-columns: 1fr;
    }

    .nav-demo__sidebar {
        padding: 17px;
        display: block;
    }

    .nav-demo__sidebar ol {
        margin: 17px 0 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .nav-demo__sidebar li {
        min-width: 0;
        min-height: 50px;
        padding: 6px 4px;
        display: block;
        text-align: center;
    }

    .nav-demo__sidebar li.is-active {
        border-bottom: 3px solid var(--cyan);
        border-left: 0;
    }

    .nav-demo__sidebar li i {
        display: block;
    }

    .nav-demo__progress {
        margin-top: 14px;
    }

    .nav-demo__screen {
        padding: 22px 16px;
    }

    .soft-callout {
        padding: 30px 20px;
    }

    .roadmap::before {
        left: 12px;
    }

    .roadmap li {
        grid-template-columns: 1fr;
        gap: 9px;
        padding-left: 32px;
    }

    .roadmap li + li {
        margin-top: 22px;
    }

    .roadmap li > span {
        width: fit-content;
        min-width: 104px;
    }

    .roadmap li > span::after {
        top: 13px;
        left: 8px;
    }

    .curriculum-list article {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
    }

    .curriculum-summary,
    .fit-close {
        padding: 28px 20px;
    }

    .implemented-tools article {
        padding: 24px 20px;
    }

    .fit-list p {
        font-size: 0.92rem;
    }

    .before-cards > article {
        padding: 25px 18px;
    }

    .cost-list > div,
    .plan-options > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .offer-card__top,
    .offer-card__contents,
    .offer-card__action,
    .offer-card__plan-summary {
        padding-right: 20px;
        padding-left: 20px;
    }

    .offer-card__price {
        padding-right: 15px;
        padding-left: 15px;
    }

    .offer-card__proof {
        margin-right: 20px;
        margin-left: 20px;
    }

    .offer-card__inventory {
        margin-right: 20px;
        margin-left: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-card__inventory span:nth-child(3) {
        border-top: 1px solid var(--mist-deep);
        border-left: 0;
    }

    .offer-card__inventory span:nth-child(4) {
        border-top: 1px solid var(--mist-deep);
    }

    .offer-plan-prices,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .offer-plan-prices > span + span {
        border-top: 1px solid var(--mist-deep);
        border-left: 0;
    }

    .pricing-grid {
        margin-top: 38px;
        gap: 16px;
    }

    .pricing-card__header {
        min-height: 0;
    }

    .pricing-card__header h3,
    .pricing-card__audience {
        min-height: 0;
    }

    .pricing-card__price {
        font-size: 1.9rem;
    }

    .pricing-card__action {
        padding-right: 18px;
        padding-left: 18px;
    }

    .cta-button.cta-button--plan {
        min-height: 68px;
        font-size: 0.84rem;
    }

    .cta-button {
        min-height: 64px;
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .faq-list summary {
        padding-left: 0;
        gap: 10px;
        font-size: 0.92rem;
    }

    .faq-list details > div {
        padding-right: 8px;
        padding-left: 0;
    }

    .lp-section--final .section-body {
        padding-top: 76px;
        padding-bottom: 82px;
    }

    .mobile-sticky {
        position: fixed;
        z-index: 100;
        right: 10px;
        bottom: 0;
        left: 10px;
        min-height: 68px;
        padding: 8px 8px max(8px, env(safe-area-inset-bottom));
        display: flex;
        align-items: center;
        gap: 9px;
        border: 1px solid rgb(255 255 255 / 0.15);
        border-radius: 6px 6px 0 0;
        background: rgb(5 12 22 / 0.96);
        box-shadow: 0 14px 42px rgb(0 0 0 / 0.48);
        opacity: 0;
        transform: translateY(calc(100% + 24px));
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 180ms ease,
            transform 180ms ease,
            visibility 180ms linear;
    }

    .mobile-sticky.is-visible {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-sticky > div {
        flex: 0 0 34%;
        min-width: 0;
        padding-left: 6px;
    }

    .mobile-sticky > div small,
    .mobile-sticky > div strong {
        display: block;
        overflow-wrap: anywhere;
        line-height: 1.4;
    }

    .mobile-sticky > div small {
        color: rgb(255 255 255 / 0.52);
        font-size: 0.52rem;
        font-weight: 800;
    }

    .mobile-sticky > div strong {
        color: var(--gold);
        font-size: 0.79rem;
    }

    .cta-button--sticky {
        min-width: 0;
        min-height: 48px;
        padding: 9px 6px;
        flex: 1;
        gap: 4px;
        font-size: 0.7rem;
    }

    .cta-button--sticky span {
        white-space: nowrap;
    }

    .cta-button--sticky b {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .hero__inner,
    .section-band,
    .section-body,
    .lp-section--ink .section-body,
    .lp-section--demo .section-body,
    .lp-section--roadmap .section-body,
    .lp-section--templates .section-body,
    .lp-section--before .section-body,
    .lp-section--offer .section-body,
    .lp-section--plans .section-body {
        padding-right: 15px;
        padding-left: 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-band h2 {
        font-size: 1.6rem;
    }

    .hero__chips span {
        width: 100%;
    }

    .future-stage__screens {
        gap: 9px;
    }

    .future-stage__screens article {
        min-height: 132px;
        padding: 13px;
    }

    .output-pair span {
        padding: 12px;
    }

    .supporting-tools {
        justify-content: flex-start;
    }

    .comparison-table [role="cell"],
    .comparison-table [role="columnheader"] {
        padding: 12px 9px;
        font-size: 0.67rem;
    }

    .numbers-ribbon span {
        font-size: 0.6rem;
    }

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

    .nav-demo__sidebar li:nth-child(3),
    .nav-demo__sidebar li:nth-child(4) {
        border-top: 1px solid rgb(255 255 255 / 0.07);
    }

    .template-stack article {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .fit-list li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .fit-list span {
        width: 34px;
        height: 34px;
    }

    .offer-card__plan-summary,
    .pricing-card__audience,
    .pricing-card__details {
        padding-right: 14px;
        padding-left: 14px;
    }

    .pricing-card__header {
        padding-right: 12px;
        padding-left: 12px;
    }

    .pricing-card__price {
        font-size: 1.72rem;
    }

    .pricing-card__action {
        padding-right: 12px;
        padding-left: 12px;
    }

    .cta-button.cta-button--plan {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 0.78rem;
    }

    .mobile-sticky {
        right: 6px;
        left: 6px;
    }

    .mobile-sticky > div {
        flex-basis: 32%;
    }

    .cta-button--sticky {
        font-size: 0.66rem;
    }
}

/* Japanese sales copy must remain readable even inside dense cards and UI previews. */
.hero__chips span,
.hero__footer span,
.future-stage__screens span,
.output-pair span,
.output-pair b,
.supporting-tools span,
.supporting-tools strong,
.comparison-table [role="cell"],
.comparison-table [role="columnheader"],
.numbers-ribbon span,
.demo-features span,
.nav-demo small,
.nav-demo span,
.nav-demo em,
.nav-demo b,
.nav-demo legend,
.nav-demo strong,
.offer-card__inventory span,
.offer-card__top small,
.offer-plan-prices small,
.pricing-card__details strong,
.pricing-card__details span,
.checkout-note,
.checked-on,
.plan-options > span,
.plan-options em,
.content-visual figcaption,
.content-visual__label,
.demo-screenshot figcaption,
.curriculum-list small,
.curriculum-list strong,
.template-stack span,
.implemented-tools span,
.asset-columns small,
.mobile-sticky small,
.mobile-sticky strong,
.mobile-sticky [data-countdown-status] {
    font-size: 14px !important;
}

.nav-demo h3,
.nav-demo p,
.soft-callout p,
.template-stack strong,
.cost-list strong,
.cost-list span,
.plan-options strong,
.plan-options span,
.plan-options em {
    font-size: 14px !important;
}

.plan-options small,
.pricing-card__action small {
    font-size: 14px !important;
}

.soft-callout p {
    font-size: 16px !important;
}

.text-link,
.cta-button,
.cta-button.cta-button--plan,
.cta-button--sticky,
.offer-card__plan-link,
.faq-list summary {
    font-size: 16px !important;
}

.friction-grid p,
.before-after p,
.loop-diagram p,
.loop-assets p,
.service-route p,
.discovery-map p,
.asset-columns p,
.beginner-reasons p,
.small-start-grid p,
.roadmap-note p,
.curriculum-list p,
.curriculum-summary p,
.implemented-tools p,
.before-cards > article > p,
.cost-list small,
.offer-card__contents li,
.offer-card__plan-summary p,
.pricing-card__audience,
.pricing-common-note,
.faq-list details p {
    font-size: 16px !important;
}

@media (max-width: 720px) {
    .hero h1 {
        font-size: clamp(32px, 8.2vw, 42px);
        line-height: 1.3;
    }

    .letter-from-seller {
        margin-bottom: 40px;
        padding: 30px 20px 28px;
    }

    .letter-from-seller > strong {
        font-size: 18px;
    }

    .method-manifesto {
        margin-top: 36px;
        padding: 28px 20px;
    }

    .sale-countdown {
        margin-top: 34px;
        padding: 26px 12px 24px;
    }

    .sale-countdown__values {
        gap: 4px;
    }

    .sale-countdown__values > span {
        min-width: 54px;
    }

    .sale-countdown__values strong {
        font-size: clamp(34px, 10vw, 44px);
    }

    .sale-countdown__values > i {
        padding-top: 5px;
        font-size: 26px;
    }

    .pricing-card__header:has(.pricing-card__discount) {
        min-height: 0;
    }

    .mobile-sticky > div {
        flex-basis: 38%;
    }

    .mobile-sticky > div span {
        display: block;
        overflow: hidden;
        color: rgb(255 255 255 / 0.66);
        line-height: 1.35;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    body {
        color: #000;
        background: #fff;
    }

    .hero,
    .lp-shell {
        box-shadow: none;
    }

    .mobile-sticky,
    .skip-link {
        display: none !important;
    }
}

/*
 * Reading-first sales letter
 *
 * The reference letters use one narrow reading column, short heading bands,
 * ordinary paragraphs, occasional images, and only a few plain boxes. This
 * final layer removes dashboard-like cards and decorative grids.
 */

@media screen {
    body {
        background: #07111e;
        font-size: 19px;
        line-height: 1.9;
    }

    h1,
    h2,
    h3,
    h4 {
        overflow-wrap: normal;
        text-wrap: pretty !important;
        word-break: auto-phrase;
    }

    .lp-shell :is(p, li, dd, figcaption, summary) {
        text-wrap: pretty;
        word-break: auto-phrase;
    }

    .lp-shell {
        width: min(900px, 100%);
        box-shadow: none;
    }

    .lp-section {
        border-bottom-color: #d6dee2;
        background: var(--paper);
    }

    .lp-section--final {
        color: var(--paper);
        background:
            radial-gradient(circle at 50% 0, rgb(49 219 231 / 0.15), transparent 30rem),
            linear-gradient(155deg, #07111f, #0b263a);
    }

    .section-band {
        min-height: 0;
        padding: 24px 38px 26px;
        background: #0a1b2a;
    }

    .section-band h2 {
        max-width: 800px;
        margin: 0 auto;
        font-size: 32px;
        font-weight: 850;
        line-height: 1.45;
        letter-spacing: -0.025em;
        text-align: center;
    }

    :is(
        .section-body,
        .lp-section--ink .section-body,
        .lp-section--demo .section-body,
        .lp-section--roadmap .section-body,
        .lp-section--templates .section-body,
        .lp-section--before .section-body,
        .lp-section--offer .section-body,
        .lp-section--plans .section-body,
        .lp-section--faq .section-body,
        .lp-section--postscript .section-body
    ) {
        width: min(100%, 800px);
        max-width: 800px;
        margin-right: auto;
        margin-left: auto;
        padding: 52px 40px 66px;
        color: var(--ink);
        background: var(--paper);
        background-image: none;
    }

    :is(.section-body, .lp-section--ink .section-body) p {
        color: var(--ink-soft);
        font-size: 19px;
        line-height: 1.9;
    }

    :is(.section-body > p, .letter-from-seller > p) {
        margin-bottom: 1.05em;
    }

    :is(.lead-copy, .lp-section--ink .lead-copy) {
        color: var(--ink);
        font-size: 19px;
        font-weight: 750;
        line-height: 1.85;
    }

    .lead-copy.lead-copy--normal-weight {
        font-weight: 400;
    }

    .section-body h3 {
        margin: 0 0 10px;
        color: var(--ink);
        font-size: 24px;
        font-weight: 800;
        line-height: 1.5;
        letter-spacing: -0.015em;
    }

    /* Hero: keep one integrated visual, but remove the three-card dashboard. */
    .sales-hero__frame {
        min-height: clamp(540px, 47vw, 650px);
    }

    .sales-hero__frame::before,
    .sales-hero__frame::after {
        display: none;
    }

    .sales-hero__content {
        width: min(940px, calc(100% - 64px));
        padding-top: 82px;
        padding-bottom: 40px;
    }

    .sales-hero__product {
        margin-bottom: 12px;
        font-size: clamp(42px, 4vw, 56px);
        letter-spacing: 0.035em;
    }

    .sales-hero h1 {
        max-width: 930px;
        margin-bottom: 18px;
        font-size: clamp(40px, 3.8vw, 52px);
        line-height: 1.35;
        letter-spacing: -0.035em;
    }

    .sales-hero h1 em {
        display: inline;
        white-space: normal;
    }

    .sales-hero__keep {
        display: inline-block;
        white-space: nowrap;
    }

    .sales-hero__lead {
        max-width: 760px;
        font-size: 19px;
        line-height: 1.85;
    }

    .sales-hero__process {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 2px 10px;
        max-width: 760px;
        margin: 24px auto 0;
        padding: 12px 4px;
        border-top: 1px solid rgb(255 255 255 / 0.35);
        border-bottom: 1px solid rgb(255 255 255 / 0.35);
        color: #fff;
        font-size: 17px;
        font-weight: 800;
        line-height: 1.7;
    }

    .sales-hero__process span {
        white-space: nowrap;
    }

    .sales-hero__process i {
        flex: 0 0 auto;
        font-style: normal;
    }

    .sales-hero__bridge {
        min-height: 72px;
        padding: 17px 24px;
        border-top: 0;
        background: #050c16;
    }

    .sales-hero__bridge::before {
        display: none;
    }

    .sales-hero__bridge strong {
        font-size: 24px;
        line-height: 1.5;
    }

    /* Images sit directly in the reading flow instead of inside faux windows. */
    :is(
        .content-visual,
        .content-visual--art,
        .content-visual--screen,
        .demo-screenshot,
        .offer-card__proof
    ) {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .content-visual::before,
    .content-visual::after,
    .content-visual--art::before,
    .content-visual--screen::before,
    .demo-screenshot::before,
    .demo-screenshot::after {
        display: none !important;
    }

    :is(
        .content-visual img,
        .content-visual--art img,
        .content-visual--screen img,
        .demo-screenshot img
    ) {
        width: 100%;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    :is(.content-visual figcaption, .demo-screenshot figcaption) {
        padding: 11px 14px;
        color: #46565e;
        background: #f0f3f4;
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }

    /* One plain box for emphasis; no floating cards, gradients or shadows. */
    :is(
        .simple-box,
        .simple-note,
        .facts-line,
        .letter-from-seller,
        .key-idea,
        .method-manifesto,
        .soft-callout,
        .curriculum-summary,
        .fit-close,
        .roadmap-note,
        .plan-options,
        .pricing-common-note,
        .commerce-note
    ) {
        max-width: 720px;
        margin: 34px auto;
        padding: 24px 26px;
        border: 1px solid #c9d3d8;
        border-radius: 0;
        color: var(--ink);
        background: #f8fafb;
        box-shadow: none;
    }

    :is(
        .simple-box,
        .key-idea,
        .method-manifesto,
        .soft-callout,
        .curriculum-summary,
        .fit-close,
        .roadmap-note
    ) > strong {
        display: block;
        margin: 0 0 10px;
        color: var(--ink);
        font-size: 21px;
        line-height: 1.65;
    }

    :is(
        .simple-box,
        .key-idea,
        .method-manifesto,
        .soft-callout,
        .curriculum-summary,
        .roadmap-note
    ) > p {
        margin: 0;
    }

    .simple-box > p + p {
        margin-top: 8px;
    }

    :is(.simple-note, .facts-line) {
        font-size: 18px;
        line-height: 1.85;
    }

    .letter-from-seller {
        max-width: 720px;
        margin: 0 auto 34px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .letter-from-seller > .letter-from-seller__closing {
        display: block;
        margin: 0;
        padding: 0;
        border: 0;
        color: var(--ink);
        font-size: 20px;
        line-height: 1.7;
    }

    .letter-from-seller > .letter-from-seller__closing--first {
        margin-top: 28px;
    }

    .letter-from-seller > .letter-from-seller__closing + .letter-from-seller__closing {
        margin-top: 0.85em;
    }

    /* Repeated card grids become one bordered list with ordinary rows. */
    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools,
        .before-cards
    ) {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        display: block;
        border: 1px solid #c9d3d8;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools,
        .before-cards
    ) > article {
        min-height: 0;
        margin: 0;
        padding: 23px 26px;
        display: block;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools,
        .before-cards
    ) > article:last-child {
        border-bottom: 0;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools,
        .before-cards
    ) > article::before,
    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools,
        .before-cards
    ) > article::after {
        display: none !important;
    }

    :is(.friction-grid, .service-route) > article > span {
        display: none;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools
    ) p,
    .before-cards > article > p {
        margin: 0;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .roadmap-note,
        .curriculum-list,
        .curriculum-summary,
        .implemented-tools,
        .before-cards,
        .offer-card,
        .pricing-grid,
        .faq-list
    ) p {
        font-size: 18px !important;
    }

    :is(.asset-columns, .cost-list, .roadmap, .curriculum-list) small {
        display: block;
        margin-top: 8px;
        color: #52636b;
        font-size: 14px;
        line-height: 1.7;
    }

    :is(.before-after, .loop-assets) {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        display: block;
        border: 1px solid #c9d3d8;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    :is(.before-after, .loop-assets) > article {
        min-height: 0;
        margin: 0;
        padding: 24px 26px;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    :is(.before-after, .loop-assets) > article:last-child {
        border-bottom: 0;
    }

    :is(.before-after, .loop-assets) p {
        margin: 0;
    }

    :is(.before-after__switch, .loop-assets > i) {
        display: none;
    }

    /* Process sections are numbered text rows, not diagrams. */
    .loop-diagram {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        border: 1px solid #c9d3d8;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    .loop-diagram::before {
        display: none;
    }

    .loop-diagram > li {
        min-height: 0;
        margin: 0;
        padding: 23px 26px;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 0 18px;
        align-items: start;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .loop-diagram > li:last-child {
        border-bottom: 0;
    }

    .loop-diagram > li::before,
    .loop-diagram > li::after {
        display: none !important;
    }

    .loop-diagram__number {
        position: static;
        width: 54px;
        height: auto;
        display: block;
        border: 0;
        border-radius: 0;
        color: #9a6814;
        background: transparent;
        font-family: "Yu Mincho", "Hiragino Mincho ProN", ui-serif, serif;
        font-size: 44px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.08em;
        text-align: center;
        box-shadow: none;
        margin: 1px 0 0;
    }

    .loop-diagram > li > div {
        min-width: 0;
    }

    .loop-diagram strong {
        display: block;
        margin: 0 0 8px;
        color: var(--ink);
        font-size: 21px;
        line-height: 1.6;
    }

    .loop-diagram p {
        margin: 0;
    }

    .output-pair {
        margin: 10px 0 0;
        padding: 0;
        display: block;
        border: 0;
        background: transparent;
    }

    .output-pair > span {
        min-height: 0;
        margin: 7px 0 0;
        padding: 0;
        display: block;
        border: 0;
        color: var(--ink-soft);
        background: transparent;
        font-size: 17px;
        line-height: 1.75;
    }

    .output-pair b {
        color: var(--ink);
    }

    .comparison-table {
        max-width: 720px;
        margin: 34px auto 40px;
        overflow: hidden;
        border: 1px solid #c9d3d8;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    .comparison-table > div {
        border-bottom: 1px solid #d7dfe3;
        background: transparent;
    }

    .comparison-table > div:last-child {
        border-bottom: 0;
    }

    .comparison-table__head {
        color: var(--ink);
        background: #eef2f4 !important;
    }

    .roadmap {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        border: 1px solid #c9d3d8;
        background: #fff;
    }

    .roadmap::before {
        display: none;
    }

    :is(.roadmap > li, .roadmap > li.roadmap__focus) {
        margin: 0;
        padding: 22px 24px;
        display: block;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .roadmap > li:last-child {
        border-bottom: 0;
    }

    .roadmap li > span {
        position: static;
        margin: 0;
        padding: 0;
        border: 0;
        color: #31515e;
        background: transparent;
        font-size: 16px;
        line-height: 1.7;
    }

    .roadmap li > span {
        display: block;
        margin-bottom: 5px;
        text-align: left;
    }

    .roadmap li > span::after {
        display: none;
    }

    .roadmap li > div {
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .roadmap strong {
        display: block;
        margin: 2px 0 4px;
        color: var(--ink);
        font-size: 21px;
        line-height: 1.55;
    }

    .roadmap p {
        margin: 0;
    }

    :is(.curriculum-list, .template-stack) {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        display: block;
        border: 1px solid #c9d3d8;
        background: #fff;
        box-shadow: none;
    }

    :is(.curriculum-list, .template-stack) > article {
        min-height: 0;
        margin: 0;
        padding: 19px 22px;
        display: block;
        align-items: start;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    :is(.curriculum-list, .template-stack) > article:last-child {
        border-bottom: 0;
    }

    :is(.curriculum-list, .template-stack) > article > span {
        display: block;
        margin-bottom: 5px;
        color: #52636b;
        font-size: 14px;
        line-height: 1.65;
    }

    .curriculum-list article > div {
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .curriculum-list h3 {
        font-size: 20px;
    }

    .curriculum-list p {
        margin: 0;
    }

    .template-stack strong {
        font-size: 18px;
        line-height: 1.7;
    }

    .fit-list {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        border: 1px solid #c9d3d8;
        background: #fff;
    }

    .fit-list > li {
        margin: 0;
        padding: 18px 22px;
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .fit-list > li:last-child {
        border-bottom: 0;
    }

    .fit-list > li > span {
        width: 46px;
        height: auto;
        display: block;
        border: 0;
        color: #9a6814;
        background: transparent;
        font-family: "Yu Mincho", "Hiragino Mincho ProN", ui-serif, serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.08em;
        text-align: center;
    }

    .cost-list {
        margin-top: 20px;
        border-top: 1px solid #d7dfe3;
    }

    .cost-list > div {
        padding: 16px 0;
        border-bottom: 1px solid #d7dfe3;
        background: transparent;
    }

    .plan-options {
        display: block;
    }

    .plan-options > span {
        display: block;
        margin-bottom: 10px;
        color: var(--ink);
        font-size: 19px;
        font-weight: 800;
    }

    .plan-options > div {
        margin: 0;
        padding: 15px 0;
        display: block;
        border: 0;
        border-top: 1px solid #d7dfe3;
        background: transparent;
    }

    :is(.plan-options em, .plan-options small) {
        display: block;
        margin-top: 4px;
        color: #52636b;
        font-size: 14px;
        font-style: normal;
        line-height: 1.65;
    }

    /* Offer and plans remain distinct for purchase decisions, but stack as rows. */
    .offer-card {
        max-width: 720px;
        margin: 34px auto 40px;
        overflow: hidden;
        border: 1px solid #aebdc4;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    .offer-card::before {
        display: none;
    }

    :is(
        .offer-card__top,
        .offer-card__contents,
        .offer-card__inventory,
        .offer-card__plan-summary
    ) {
        margin: 0;
        padding: 24px 26px;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .offer-card__inventory {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 24px;
    }

    .offer-card__inventory > span {
        min-width: 0;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .offer-card__plan-summary {
        border-bottom: 0;
    }

    .offer-plan-prices {
        margin: 18px 0;
        padding: 0;
        display: block;
        border: 1px solid #d7dfe3;
        background: #fff;
    }

    .offer-plan-prices > span {
        min-height: 0;
        padding: 13px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        background: transparent;
    }

    .offer-plan-prices > span:last-child {
        border-bottom: 0;
    }

    .pricing-grid {
        max-width: 720px;
        margin: 34px auto 40px;
        padding: 0;
        display: block;
        border: 1px solid #aebdc4;
        background: #fff;
    }

    .pricing-card {
        min-height: 0;
        margin: 0;
        padding: 0;
        display: block;
        border: 0;
        border-bottom: 1px solid #aebdc4;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .pricing-card:last-child {
        border-bottom: 0;
    }

    .pricing-card::before {
        display: none;
    }

    :is(
        .pricing-card__header,
        .pricing-card__audience,
        .pricing-card__details,
        .pricing-card__action
    ) {
        min-height: 0;
        margin: 0;
        padding: 20px 24px;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        background: transparent;
    }

    .pricing-card__action {
        border-bottom: 0;
    }

    .pricing-card__header h3 {
        font-size: 24px;
    }

    .pricing-card__price {
        font-size: 34px;
    }

    .pricing-card__discount {
        border-radius: 0;
        box-shadow: none;
    }

    .faq-list {
        max-width: 720px;
        margin: 0 auto;
        border: 1px solid #c9d3d8;
        background: #fff;
    }

    .faq-list details {
        margin: 0;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .faq-list details:last-child {
        border-bottom: 0;
    }

    .faq-list summary {
        min-height: 56px;
        padding: 16px 50px 16px 20px;
        font-size: 18px;
        line-height: 1.65;
    }

    .faq-list details > div {
        padding: 0 20px 20px;
    }

    .faq-list summary > span,
    .final-cta__price > span,
    .site-footer > span {
        font-size: 14px;
    }

    .cta-button {
        border-radius: 0;
        background: #e8bd54;
        box-shadow: none;
    }

    .sale-countdown {
        border-radius: 0;
        background: #081522;
        box-shadow: none;
    }

    .lp-section--final .section-body {
        width: min(100%, 800px);
        max-width: 800px;
        padding-top: 68px;
        padding-bottom: 76px;
        color: #fff;
        background: transparent;
    }

    .lp-section--final h2 {
        max-width: 720px;
        margin: 0 auto 20px;
        font-size: 32px;
        line-height: 1.45;
        letter-spacing: -0.025em;
    }

    .site-footer {
        min-height: 70px;
        padding: 18px 20px;
    }
}

@media screen and (max-width: 1023px) {
    body {
        font-size: 17px;
    }

    .section-band h2 {
        font-size: 28px;
    }

    :is(
        .section-body,
        .lp-section--ink .section-body,
        .lp-section--demo .section-body,
        .lp-section--roadmap .section-body,
        .lp-section--templates .section-body,
        .lp-section--before .section-body,
        .lp-section--offer .section-body,
        .lp-section--plans .section-body,
        .lp-section--faq .section-body,
        .lp-section--postscript .section-body
    ) {
        padding: 48px 34px 60px;
    }

    :is(.section-body, .lp-section--ink .section-body) p {
        font-size: 17px;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .roadmap,
        .roadmap-note,
        .curriculum-list,

        .curriculum-summary,
        .implemented-tools,
        .before-cards,
        .offer-card,
        .pricing-grid,
        .faq-list
    ) p {
        font-size: 17px !important;
    }

    :is(.lead-copy, .lp-section--ink .lead-copy) {
        font-size: 19px;
    }

    .section-body h3 {
        font-size: 23px;
    }

    .sales-hero__frame {
        min-height: 600px;
    }

    .sales-hero__product {
        font-size: 46px;
    }

    .sales-hero h1 {
        font-size: 40px;
    }

    .sales-hero__lead {
        font-size: 18px;
    }
}

@media screen and (max-width: 599px) {
    body {
        font-size: 17px;
    }

    .sales-hero__frame {
        min-height: 560px;
    }

    .sales-hero__content {
        width: calc(100% - 32px);
        padding-top: 80px;
        padding-bottom: 32px;
    }

    .sales-hero__product {
        margin-bottom: 10px;
        font-size: 36px;
        line-height: 1.12;
    }

    .sales-hero h1 {
        margin-bottom: 16px;
        font-size: 30px;
        line-height: 1.4;
        letter-spacing: -0.025em;
    }

    .sales-hero__lead {
        font-size: 16px;
        line-height: 1.8;
    }

    .sales-hero__process {
        margin-top: 20px;
        padding: 10px 2px;
        font-size: 16px;
        line-height: 1.75;
    }

    .sales-hero__bridge {
        min-height: 68px;
        padding: 15px 18px;
    }

    .sales-hero__bridge strong {
        font-size: 20px;
    }

    .section-band {
        padding: 21px 18px 23px;
    }

    .section-band h2 {
        font-size: 26px;
        line-height: 1.5;
        letter-spacing: -0.015em;
    }

    :is(
        .section-body,
        .lp-section--ink .section-body,
        .lp-section--demo .section-body,
        .lp-section--roadmap .section-body,
        .lp-section--templates .section-body,
        .lp-section--before .section-body,
        .lp-section--offer .section-body,
        .lp-section--plans .section-body,
        .lp-section--faq .section-body,
        .lp-section--postscript .section-body
    ) {
        width: 100%;
        padding: 38px 18px 52px;
    }

    :is(.section-body, .lp-section--ink .section-body) p {
        font-size: 17px;
        line-height: 1.85;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .roadmap-note,
        .curriculum-list,
        .curriculum-summary,
        .implemented-tools,
        .before-cards,
        .offer-card,
        .pricing-grid,
        .faq-list
    ) p {
        font-size: 16px !important;
    }

    :is(.lead-copy, .lp-section--ink .lead-copy) {
        font-size: 18px;
        line-height: 1.8;
    }

    .section-body h3 {
        font-size: 22px;
        line-height: 1.5;
    }

    :is(
        .content-visual,
        .content-visual--art,
        .content-visual--screen,
        .demo-screenshot,
        .offer-card__proof
    ) {
        margin-top: 28px;
        margin-bottom: 32px;
    }

    :is(
        .simple-box,
        .simple-note,
        .facts-line,
        .letter-from-seller,
        .key-idea,
        .method-manifesto,
        .soft-callout,
        .curriculum-summary,
        .fit-close,
        .roadmap-note,
        .plan-options,
        .pricing-common-note,
        .commerce-note
    ) {
        margin-top: 28px;
        margin-bottom: 32px;
        padding: 20px 17px;
    }

    :is(
        .simple-box,
        .key-idea,
        .method-manifesto,
        .soft-callout,
        .curriculum-summary,
        .fit-close,
        .roadmap-note
    ) > strong {
        font-size: 19px;
    }

    :is(.simple-note, .facts-line) {
        font-size: 16px;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools,
        .before-cards,
        .before-after,
        .loop-assets,
        .loop-diagram,
        .comparison-table,
        .roadmap,
        .curriculum-list,
        .template-stack,
        .fit-list,
        .offer-card,
        .pricing-grid
    ) {
        margin-top: 28px;
        margin-bottom: 32px;
    }

    :is(
        .friction-grid,
        .service-route,
        .discovery-map,
        .asset-columns,
        .beginner-reasons,
        .small-start-grid,
        .implemented-tools,
        .before-cards,
        .before-after,
        .loop-assets
    ) > article {
        padding: 20px 16px;
    }

    .loop-diagram > li {
        padding: 20px 16px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 0 12px;
    }

    .loop-diagram__number {
        width: 42px;
        font-size: 36px;
    }

    .loop-diagram strong {
        font-size: 19px;
    }

    .output-pair > span {
        font-size: 16px;
    }

    .comparison-table > div {
        grid-template-columns: 1fr;
    }

    .comparison-table > div > span {
        min-height: 0;
        padding: 14px 16px;
        border: 0;
        border-bottom: 1px solid #d7dfe3;
    }

    .comparison-table > div > span:last-child {
        border-bottom: 0;
    }

    :is(.roadmap > li, .roadmap > li.roadmap__focus) {
        padding: 19px 16px;
        display: block;
    }

    .roadmap li > span {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .roadmap strong {
        font-size: 19px;
    }

    :is(.curriculum-list, .template-stack) > article {
        padding: 17px 15px;
        display: block;
    }

    :is(.curriculum-list, .template-stack) > article > span {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
    }

    :is(.curriculum-list h3, .template-stack strong) {
        font-size: 18px;
    }

    .fit-list > li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }

    .fit-list > li > span {
        width: 38px;
        font-size: 28px;
    }

    :is(
        .offer-card__top,
        .offer-card__contents,
        .offer-card__inventory,
        .offer-card__plan-summary,
        .pricing-card__header,
        .pricing-card__audience,
        .pricing-card__details,
        .pricing-card__action
    ) {
        padding: 19px 16px;
    }

    .offer-plan-prices > span {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .pricing-card__header h3 {
        font-size: 22px;
    }

    .pricing-card__price {
        font-size: 32px;
    }

    .faq-list summary {
        padding: 15px 46px 15px 15px;
        font-size: 16px;
    }

    .faq-list details > div {
        padding: 0 15px 18px;
    }

    .lp-section--final .section-body {
        padding: 58px 18px 68px;
    }

    .lp-section--final h2 {
        font-size: 26px;
        line-height: 1.5;
    }

    .mobile-sticky {
        min-height: 78px;
        border-radius: 0;
        box-shadow: none;
    }

    :is(.mobile-sticky > div small, .mobile-sticky > div span) {
        font-size: 14px;
    }

    .mobile-sticky > div strong {
        font-size: 16px;
    }

    .cta-button--sticky {
        min-height: 52px;
        font-size: 16px;
    }
}

@media screen and (max-width: 359px) {
    .sales-hero__content {
        width: calc(100% - 24px);
    }

    .sales-hero h1 {
        font-size: 27px;
    }

    .sales-hero__product {
        font-size: 34px;
    }
}

/* One sentence per paragraph; wrapping is left to the available column width. */
:is(.section-body > p, .letter-from-seller > p) {
    width: 100%;
    max-width: none;
}

p.sentence-continuation {
    margin-top: 0 !important;
}

[data-sentence-stack] > p {
    width: 100%;
    max-width: none;
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
}

[data-sentence-stack] > p + p {
    margin-top: 1.05em;
}

/* Reading landmarks for long-form sales copy. */
.text-marker {
    padding: 0 0.08em 0.04em;
    color: var(--navy-900);
    font-weight: 850;
    background-image: linear-gradient(
        to top,
        rgb(245 187 56 / 0.42) 0,
        rgb(245 187 56 / 0.42) 42%,
        transparent 42%,
        transparent 100%
    );
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.text-strong-emphasis,
.text-red-emphasis {
    font-weight: 850;
}

.text-strong-emphasis {
    color: var(--navy-900);
}

.text-red-emphasis {
    color: #b42318;
}

.section-body > p.prose-emphasis,
.letter-from-seller > p.prose-emphasis {
    width: 100%;
    max-width: none;
    margin: 1.35em 0 !important;
    padding: clamp(15px, 2.4vw, 22px) clamp(17px, 3vw, 28px);
    border: 1px solid rgb(14 157 169 / 0.26);
    border-left: 5px solid var(--cyan-deep);
    border-radius: 8px;
    color: var(--navy-900);
    font-weight: 740;
    line-height: 1.75;
    text-align: left;
    background:
        linear-gradient(100deg, rgb(49 219 231 / 0.12), transparent 58%),
        #f6fcfc;
    box-shadow: 0 12px 28px rgb(14 42 67 / 0.08);
    text-wrap: pretty;
    word-break: auto-phrase;
}

.faq-heading-card {
    margin: 34px 0 22px;
    padding: 22px 24px;
    border: 2px solid var(--gold);
    color: #fff;
    background: var(--navy-900);
    font-family: var(--font-sans);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.section-body > p.prose-emphasis.final-cta__revenue-warning {
    color: #261800;
    background:
        linear-gradient(100deg, rgb(241 199 107 / 0.24), transparent 70%),
        #fff4d6;
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 850;
}

/* Fixed, deadline-based offer timer inspired by the reference letter's glow bar. */
:root {
    --deadline-timer-height: 108px;
}

body.has-deadline-timer {
    padding-bottom: calc(var(--deadline-timer-height) + env(safe-area-inset-bottom));
}

.deadline-timer {
    position: fixed;
    z-index: 99999;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 320px;
    color: #fff;
    font-family: var(--font-sans);
    pointer-events: none;
}

.deadline-timer [hidden] {
    display: none !important;
}

.deadline-timer__frame {
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    min-height: var(--deadline-timer-height);
    padding: 15px clamp(22px, 4vw, 64px) max(15px, env(safe-area-inset-bottom));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(26px, 5vw, 72px);
    border-top: 4px solid #e44a25;
    background:
        radial-gradient(circle at 50% 0, rgb(255 179 43 / 0.15), transparent 48%),
        linear-gradient(180deg, #170106, #080002 72%);
    box-shadow:
        0 -12px 58px rgb(204 0 51 / 0.52),
        0 -4px 28px rgb(255 170 0 / 0.35),
        inset 0 1px rgb(255 255 255 / 0.1);
}

.deadline-timer__frame::before {
    position: absolute;
    z-index: -1;
    top: -4px;
    right: -50%;
    left: -50%;
    height: 7px;
    background: linear-gradient(90deg, #cc0033, #ffaa00, #770022, #ffcc44, #cc0033);
    background-size: 45% 100%;
    content: "";
    filter: blur(1px);
    animation: deadline-timer-glow 2.2s linear infinite;
}

.deadline-timer__frame::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
    background-size: 18px 18px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

@keyframes deadline-timer-glow {
    to {
        background-position: 200% 0;
    }
}

.deadline-timer__title {
    flex: 0 0 auto;
    color: #ffd572;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 950;
    letter-spacing: 0.035em;
    line-height: 1.4;
    text-shadow:
        0 0 12px rgb(255 170 0 / 0.65),
        0 2px 8px rgb(0 0 0 / 0.95);
    white-space: nowrap;
}

.deadline-timer__values {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.6vw, 24px);
}

.deadline-timer__unit {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    white-space: nowrap;
}

.deadline-timer__unit strong,
.deadline-timer__milliseconds strong {
    display: inline-block;
    color: #fff6dc;
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-weight: 950;
    line-height: 1;
    text-shadow:
        0 0 14px rgb(255 204 68 / 0.62),
        0 3px 10px rgb(0 0 0 / 0.95);
}

.deadline-timer__unit strong {
    min-width: 2ch;
    font-size: clamp(38px, 4.4vw, 54px);
    letter-spacing: -0.06em;
    text-align: right;
}

.deadline-timer__unit small {
    color: rgb(255 255 255 / 0.78);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.deadline-timer__milliseconds {
    padding: 8px 10px 7px;
    border: 1px solid rgb(255 174 43 / 0.32);
    background: rgb(72 0 16 / 0.58);
    box-shadow: inset 0 0 18px rgb(204 0 51 / 0.28);
}

.deadline-timer__milliseconds strong {
    min-width: 3ch;
    font-size: clamp(24px, 2.7vw, 34px);
    letter-spacing: 0.03em;
    text-align: center;
}

.deadline-timer__status {
    margin: 0 !important;
    color: #ffd572;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 950;
    line-height: 1.4;
    text-align: center;
    text-shadow:
        0 0 18px rgb(255 170 0 / 0.65),
        0 3px 12px rgb(0 0 0 / 0.95);
}

.deadline-timer.is-expired .deadline-timer__frame {
    gap: 0;
}

@media (min-width: 721px) and (max-width: 900px) {
    .deadline-timer__frame {
        padding: 8px clamp(22px, 4vw, 36px) max(8px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-rows: auto auto;
        gap: 4px;
        place-content: center;
        place-items: center;
    }

    .deadline-timer__values {
        gap: clamp(8px, 1.4vw, 12px);
    }

    .deadline-timer__unit strong {
        font-size: clamp(34px, 5.5vw, 42px);
    }

    .deadline-timer__milliseconds strong {
        font-size: clamp(22px, 3.2vw, 28px);
    }
}

@media (max-width: 720px) {
    :root {
        --deadline-timer-height: 98px;
    }

    body.has-deadline-timer.sticky-cta-visible {
        padding-bottom: calc(var(--deadline-timer-height) + 92px + env(safe-area-inset-bottom));
    }

    .mobile-sticky {
        bottom: calc(var(--deadline-timer-height) + env(safe-area-inset-bottom));
    }

    .deadline-timer__frame {
        padding: 9px 10px max(9px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-rows: auto auto;
        gap: 3px;
        place-content: center;
        place-items: center;
    }

    .deadline-timer__title {
        font-size: 15px;
        line-height: 1.3;
    }

    .deadline-timer__values {
        gap: 7px;
    }

    .deadline-timer__unit {
        gap: 3px;
    }

    .deadline-timer__unit strong {
        font-size: clamp(28px, 8.4vw, 35px);
    }

    .deadline-timer__unit small {
        font-size: 14px;
    }

    .deadline-timer__milliseconds {
        padding: 6px 7px 5px;
    }

    .deadline-timer__milliseconds strong {
        font-size: clamp(20px, 5.8vw, 25px);
    }

    .deadline-timer__status {
        font-size: clamp(22px, 6.8vw, 30px);
    }
}

@media print {
    body.has-deadline-timer {
        padding-bottom: 0;
    }

    .deadline-timer {
        display: none !important;
    }
}

/* Keep editorial emphasis colors above section and responsive prose defaults. */
.lp-section .section-body .text-red-emphasis,
.lp-section .letter-from-seller .text-red-emphasis {
    color: #b42318;
    font-weight: 850;
}

/* Final semantic-list pass: keep the letter readable without repeating card UI. */
.section-body > :is(.plain-list, .plain-steps),
.offer-card > .plain-list {
    width: min(760px, 100%);
    max-width: 100%;
    margin: 1.4em auto;
    padding-left: 1.55em;
    display: block;
    color: inherit;
    font-size: 19px;
    line-height: 1.8;
}

.section-body :is(.plain-list, .plain-steps) {
    list-style-position: outside;
}

.section-body .plain-list,
.offer-card .plain-list {
    list-style-type: disc !important;
}

/* Boxed key lists: reference-LP style background boxes (warm/cyan/gold/card). */
.section-body .plain-list--box {
    padding: clamp(18px, 2.6vw, 26px) clamp(18px, 3vw, 30px) clamp(18px, 2.6vw, 26px) clamp(42px, 4.6vw, 54px);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgb(14 42 67 / 0.08);
}

.section-body .plain-list--box-warm {
    border: 1px solid rgb(180 35 24 / 0.22);
    border-left: 5px solid #b42318;
    background:
        linear-gradient(100deg, rgb(180 35 24 / 0.07), transparent 60%),
        #fdf6f5;
}

.section-body .plain-list--box-cyan {
    border: 1px solid rgb(14 157 169 / 0.26);
    border-left: 5px solid var(--cyan-deep);
    background:
        linear-gradient(100deg, rgb(49 219 231 / 0.12), transparent 58%),
        #f6fcfc;
    list-style-type: "✓  " !important;
}

.section-body .plain-list--box-cyan > li::marker {
    color: var(--cyan-deep);
    font-weight: 900;
}

.section-body .plain-list--box-gold {
    border: 1px solid rgb(241 199 107 / 0.4);
    border-left: 5px solid #d9a521;
    background:
        linear-gradient(100deg, rgb(241 199 107 / 0.16), transparent 60%),
        #fffcf3;
}

/* Roadmap steps: one size larger than body text for scannability. */
.lp-section--roadmap .section-body > .plain-steps {
    font-size: 21px;
}

.lp-section--roadmap .section-body > .plain-steps > li > p {
    font-size: 20px;
}

@media (max-width: 599px) {
    .lp-section--roadmap .section-body > .plain-steps {
        font-size: 18px;
    }

    .lp-section--roadmap .section-body > .plain-steps > li > p {
        font-size: 17px;
    }
}

.section-body .plain-list--box-card {
    border: 1px solid rgb(11 36 53 / 0.14);
    background:
        repeating-linear-gradient(0deg, transparent 0 34px, rgb(11 36 53 / 0.05) 34px 35px),
        #fff;
}

/* Plain bordered list box (simple frame, no accent bar). */
.section-body .plain-list--box-plain {
    border: 1px solid rgb(11 36 53 / 0.22);
    background: #fff;
}

/* Ink-section steps: match text column to the visual width. */
.lp-section--ink .section-body > .plain-steps {
    width: min(100%, 820px);
}

/* Key term callout (larger, bold red). */
.term-emphasis {
    color: #b42318;
    font-size: 1.18em;
    font-weight: 850;
}

/* Flashy gradient-framed steps (dark navy panel with cyan-gold border glow). */
.section-body .plain-steps--flash {
    padding: clamp(20px, 3vw, 30px) clamp(22px, 3.4vw, 36px) clamp(20px, 3vw, 30px) clamp(58px, 6vw, 74px);
    border: 2px solid transparent;
    border-radius: 14px;
    background:
        linear-gradient(160deg, #0a1626, #07111f) padding-box,
        linear-gradient(100deg, var(--cyan), var(--gold)) border-box;
    box-shadow:
        0 0 0 1px rgb(49 219 231 / 0.18),
        0 18px 44px rgb(0 0 0 / 0.35),
        0 0 34px rgb(49 219 231 / 0.22);
    color: #fff;
}

.section-body .plain-steps--flash > li {
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    font-weight: 800;
    text-shadow: 0 2px 10px rgb(0 0 0 / 0.6);
}

.section-body .plain-steps--flash > li::marker {
    color: var(--gold);
    font-size: 1.15em;
    font-weight: 900;
}

.section-body .plain-steps {
    list-style-type: decimal !important;
}

.section-body :is(.plain-list, .plain-steps) > li,
.offer-card .plain-list > li {
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0.38em 0 0.38em 0.25em;
    display: list-item !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: inherit;
    background: transparent !important;
    box-shadow: none !important;
    font-size: inherit;
    line-height: inherit;
    text-align: left;
}

.section-body :is(.plain-list, .plain-steps) > li::before,
.section-body :is(.plain-list, .plain-steps) > li::after,
.offer-card .plain-list > li::before,
.offer-card .plain-list > li::after {
    display: none !important;
    content: none !important;
}

.section-body .plain-steps > li {
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    border-bottom: 1px solid rgb(14 42 67 / 0.16) !important;
}

.section-body .plain-steps > li:last-child {
    border-bottom: 0 !important;
}

.section-body :is(.plain-list, .plain-steps) > li::marker {
    color: var(--cyan-deep);
    font-weight: 900;
}

.section-body .plain-steps > li > strong {
    display: block;
    color: inherit;
    font-size: 1.08em;
    line-height: 1.55;
}

.step-visual {
    width: 100%;
    margin: 1.15em 0 0.9em;
}

.step-visual img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgb(241 199 107 / 0.46);
    border-radius: 8px;
    box-shadow: 0 24px 48px rgb(0 0 0 / 0.28);
}

.section-body .plain-steps > li > p {
    width: auto;
    max-width: none;
    margin: 0.45em 0 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.section-body .plain-steps > li > p + p {
    margin-top: 0.45em;
}

/* Product contents deliberately switch color, following the reference LP rhythm. */
.lp-section--offer .section-body {
    background:
        radial-gradient(circle at 50% 0, rgb(49 219 231 / 0.22), transparent 34rem),
        #dceff2;
}

.lp-section--offer .offer-card {
    border: 2px solid #bd8a26;
    background: #fff4d6;
    box-shadow: 0 30px 70px rgb(6 20 32 / 0.24);
}

.lp-section--offer .offer-card > h3 {
    margin: 0;
    padding: 24px 30px;
    color: #fff;
    background: var(--navy-900);
    font-size: clamp(22px, 3.2vw, 28px);
    text-align: center;
}

.lp-section--offer .offer-card > p {
    padding-right: 34px;
    padding-left: 34px;
}

.plan-package {
    margin: 0;
    padding: clamp(10px, 2.6vw, 22px);
    border-bottom: 1px solid rgb(14 42 67 / 0.16);
    background: #f8f4ec;
}

.plan-package img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 22px 46px rgb(6 20 32 / 0.2);
}

.pricing-card[data-plan-id="support_30"] .plan-package {
    background: #e2f6f8;
}

.pricing-card[data-plan-id="support_90"] .plan-package {
    background: #0b1d2d;
}

.section-body .plain-steps .plain-list,
.faq-list .plain-list {
    width: auto;
    margin: 0.65em 0;
    padding-left: 1.4em;
    font-size: inherit;
}

.roadmap.plain-steps,
.curriculum-list.plain-steps,
.fit-list.plain-list:not(.plain-list--box),
.template-list.plain-list:not(.plain-list--box) {
    grid-template-columns: none !important;
    gap: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.roadmap.plain-steps::before,
.curriculum-list.plain-steps::before,
.fit-list.plain-list::before,
.template-list.plain-list::before {
    display: none !important;
    content: none !important;
}

.sales-hero ol.sales-hero__process {
    width: min(900px, 100%);
    max-width: 100%;
    margin: 26px auto 0;
    padding: 14px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgb(255 255 255 / 0.35);
    border-bottom: 1px solid rgb(255 255 255 / 0.35);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.65;
    list-style-position: inside;
}

.sales-hero ol.sales-hero__process > li {
    min-width: 0;
    padding: 8px 14px;
    border-left: 1px solid rgb(255 255 255 / 0.2);
    text-align: left;
}

.sales-hero ol.sales-hero__process > li:first-child {
    border-left: 0;
}

.sales-hero__bridge {
    min-height: 0;
    margin: 0;
    padding: 22px 24px;
    display: block;
    border-top: 0;
    border-bottom: 1px solid rgb(241 199 107 / 0.24);
    color: #fff;
    background: #050c16;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.75;
    text-align: center;
}

.sales-hero__bridge::before {
    display: none !important;
    content: none !important;
}

.offer-card {
    width: min(780px, 100%);
    margin: 42px auto;
    padding: clamp(28px, 5vw, 46px);
    overflow: visible;
    border: 1px solid rgb(11 36 53 / 0.22);
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
}

.offer-card::before {
    display: none !important;
    content: none !important;
}

.offer-card > h3 {
    margin: 0 0 0.9em;
    color: var(--navy-900);
    font-size: 24px;
    line-height: 1.45;
    text-align: left;
}

.offer-card > .plain-list {
    width: auto;
    margin: 0 0 1.2em;
    color: var(--ink);
}

.offer-card > p {
    width: auto;
    max-width: none;
    margin: 1.2em 0 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.8;
}

.faq-list summary {
    font-size: 18px;
}

.faq-list details > div,
.faq-list details p,
.faq-list details li {
    font-size: 18px;
    line-height: 1.8;
}

.postscript-signature {
    padding-top: 1.2em;
    border-top: 1px solid var(--mist-deep);
}

@media (min-width: 600px) and (max-width: 1023px) {
    .lp-section .section-heading h2 {
        font-size: clamp(29px, 4vw, 32px);
    }

    .section-body > :is(.plain-list, .plain-steps),
    .offer-card > :is(.plain-list, p),
    .faq-list summary,
    .faq-list details > div,
    .faq-list details p,
    .faq-list details li,
    .sales-hero ol.sales-hero__process,
    .sales-hero__bridge {
        font-size: 17px;
    }

    .offer-card > h3 {
        font-size: 23px;
    }
}

@media (max-width: 599px) {
    .section-body > :is(.plain-list, .plain-steps),
    .offer-card > :is(.plain-list, p),
    .faq-list summary,
    .faq-list details > div,
    .faq-list details p,
    .faq-list details li,
    .sales-hero ol.sales-hero__process,
    .sales-hero__bridge {
        font-size: 17px;
    }

    .offer-card > h3 {
        font-size: 22px;
    }

    .sales-hero ol.sales-hero__process {
        grid-template-columns: 1fr;
        list-style-position: outside;
        padding-left: 1.55em;
    }

    .sales-hero ol.sales-hero__process > li,
    .sales-hero ol.sales-hero__process > li:first-child {
        padding: 9px 6px;
        border-left: 0;
        border-top: 1px solid rgb(255 255 255 / 0.18);
    }

    .sales-hero ol.sales-hero__process > li:first-child {
        border-top: 0;
    }

    .mobile-sticky > div {
        display: flex;
        align-items: center;
    }

    .mobile-sticky > div strong {
        font-size: 14px;
    }
}
