:root {
    color-scheme: dark;
    --bg: #070808;
    --bg-soft: #0a0c0c;
    --panel: #101212;
    --panel-2: #141616;
    --text: #f3f0e8;
    --text-soft: #d2d0c8;
    --muted: #949891;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.17);
    --gold: #d4b06a;
    --gold-bright: #f0d69b;
    --gold-deep: #8f6c32;
    --green: #91b49b;
    --red: #bd8176;
    --radius: 22px;
    --radius-sm: 14px;
    --shell: 1180px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 14% 4%, rgba(212, 176, 106, 0.08), transparent 31rem),
        radial-gradient(circle at 85% 32%, rgba(212, 176, 106, 0.035), transparent 34rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
    content: "";
}

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

button,
input,
textarea {
    font: inherit;
}

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

a {
    color: inherit;
}

em {
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

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

.section {
    padding-block: 112px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--text);
    color: var(--bg);
    font-weight: 800;
}

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

.preview-bar {
    display: flex;
    position: relative;
    z-index: 20;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 34px;
    padding: 7px 18px;
    border-bottom: 1px solid rgba(212, 176, 106, 0.24);
    background: rgba(42, 33, 18, 0.92);
    color: #e8d4ab;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 0 5px rgba(240, 214, 155, 0.1);
}

.site-header {
    display: flex;
    position: relative;
    z-index: 15;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 40px), var(--shell));
    min-height: 84px;
    margin-inline: auto;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(212, 176, 106, 0.55);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.17), rgba(212, 176, 106, 0.02));
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.brand-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.brand-name b {
    color: var(--gold);
}

.header-note {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero {
    padding-top: 90px;
    padding-bottom: 74px;
}

.hero-copy {
    max-width: 970px;
    margin-bottom: 56px;
}

.hero-copy--centered {
    max-width: 1060px;
    margin-inline: auto;
    text-align: center;
}

.hero-copy--centered h1,
.hero-copy--centered .hero-lead {
    margin-inline: auto;
}

.hero-copy--centered h1 {
    font-size: clamp(48px, 6.6vw, 84px);
}

.hero-copy--centered .trust-row {
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow i {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow--quiet {
    color: var(--muted);
}

.hero h1,
.member-hero h1,
.access-message h1 {
    max-width: 1050px;
    margin: 18px 0 24px;
    font-size: clamp(50px, 7.3vw, 92px);
    font-weight: 580;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.hero h1 em,
.member-hero h1 em,
.access-message h1 em {
    white-space: nowrap;
}

.hero-lead {
    max-width: 750px;
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 34px;
    margin-top: 34px;
}

.trust-row span {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-row b {
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.hero-grid--stacked {
    grid-template-columns: minmax(0, 960px);
    justify-content: center;
    gap: 18px;
}

.hero-grid--stacked .hero-video {
    min-width: 0;
}

.hero-video--centered {
    width: 100%;
    margin-inline: auto;
}

.video-stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 42%, rgba(212, 176, 106, 0.16), transparent 33%),
        linear-gradient(150deg, #151716, #090a0a 68%);
    box-shadow: var(--shadow);
}

.video-stage::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
    pointer-events: none;
    content: "";
}

.video-stage video,
.video-stage iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.video-stage--vsl {
    background: #050606;
}

.video-stage--vsl:fullscreen,
.video-stage--vsl:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    background: #000;
}

.vsl-activate {
    display: flex;
    position: absolute;
    z-index: 4;
    inset: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(5, 6, 6, 0.3), transparent 35%),
        linear-gradient(to top, rgba(5, 6, 6, 0.6), transparent 42%);
    color: var(--text);
    cursor: pointer;
    transition: opacity 220ms ease, background 220ms ease;
}

.vsl-activate:hover {
    background:
        radial-gradient(circle at 50% 50%, rgba(5, 6, 6, 0.16), transparent 37%),
        linear-gradient(to top, rgba(5, 6, 6, 0.54), transparent 42%);
}

.vsl-activate:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: -5px;
}

.vsl-activate.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.vsl-activate:disabled {
    cursor: wait;
}

.vsl-sound {
    display: grid;
    position: relative;
    width: 78px;
    height: 78px;
    margin-bottom: 17px;
    place-items: center;
    border: 1px solid rgba(240, 214, 155, 0.62);
    border-radius: 50%;
    background: rgba(7, 8, 8, 0.62);
    box-shadow: 0 0 0 13px rgba(212, 176, 106, 0.06), 0 10px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.vsl-sound i {
    width: 14px;
    height: 18px;
    transform: translateX(-4px);
    background: var(--gold-bright);
    clip-path: polygon(0 33%, 35% 33%, 100% 0, 100% 100%, 35% 67%, 0 67%);
}

.vsl-sound b,
.vsl-sound b::after {
    position: absolute;
    width: 13px;
    height: 22px;
    border: 1px solid var(--gold-bright);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    content: "";
}

.vsl-sound b {
    transform: translateX(10px);
}

.vsl-sound b::after {
    top: -5px;
    left: 5px;
    width: 17px;
    height: 30px;
    opacity: 0.55;
}

.vsl-activate strong {
    font-size: clamp(17px, 2vw, 23px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85);
}

.vsl-activate small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.vsl-status {
    position: absolute;
    z-index: 5;
    bottom: 17px;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    color: var(--text);
    font-size: 10px;
    text-shadow: 0 2px 12px #000;
    white-space: nowrap;
}

.video-stage--vsl.is-activating .vsl-sound {
    animation: vsl-pulse 900ms ease-in-out infinite alternate;
}

.video-placeholder {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    background:
        linear-gradient(125deg, transparent 42%, rgba(212, 176, 106, 0.04) 42%, rgba(212, 176, 106, 0.04) 43%, transparent 43%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025), transparent 50%);
    text-align: center;
}

.video-kicker {
    position: absolute;
    top: 22px;
    left: 24px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.play-orbit {
    display: grid;
    position: relative;
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
    place-items: center;
    border: 1px solid rgba(212, 176, 106, 0.48);
    border-radius: 50%;
    box-shadow: 0 0 0 14px rgba(212, 176, 106, 0.04), 0 0 60px rgba(212, 176, 106, 0.12);
}

.play-orbit::after {
    position: absolute;
    inset: -10px;
    border: 1px dashed rgba(212, 176, 106, 0.17);
    border-radius: 50%;
    animation: orbit 18s linear infinite;
    content: "";
}

.play-orbit i {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--gold-bright);
}

.video-placeholder strong {
    max-width: 410px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.15;
}

.video-placeholder small {
    margin-top: 9px;
    color: var(--muted);
    font-size: 12px;
}

.video-duration {
    position: absolute;
    z-index: 3;
    right: 17px;
    bottom: 16px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    backdrop-filter: blur(12px);
}

.video-caption {
    display: flex;
    gap: 11px;
    margin: 15px 5px 0;
    color: var(--muted);
    font-size: 12px;
}

.video-caption span {
    color: var(--gold);
}

.signup-card {
    position: sticky;
    top: 20px;
    padding: 32px;
    border: 1px solid rgba(212, 176, 106, 0.25);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(212, 176, 106, 0.07), transparent 45%),
        rgba(16, 18, 18, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.signup-card--below {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    justify-self: center;
}

.offer-card--below {
    max-width: 680px;
}

.card-step {
    color: var(--gold);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.2em;
}

.signup-card h2 {
    margin: 10px 0 9px;
    font-size: 28px;
    font-weight: 620;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.signup-card > p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 13px;
}

.lead-form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

.field > span {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 750;
}

.field input,
.worksheet-meta input,
.worksheet-note textarea,
.action-plan textarea,
.action-meta input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: none;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input {
    min-height: 51px;
    padding: 0 15px;
}

.field input::placeholder {
    color: #686c67;
}

.field input:focus,
.worksheet-meta input:focus,
.worksheet-note textarea:focus,
.action-plan textarea:focus,
.action-meta input:focus {
    border-color: rgba(212, 176, 106, 0.7);
    background: rgba(212, 176, 106, 0.045);
    box-shadow: 0 0 0 4px rgba(212, 176, 106, 0.08);
}

.field input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.trap-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.check-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 9px;
    align-items: start;
    color: #b9bbb5;
    font-size: 12px;
    line-height: 1.45;
    cursor: pointer;
}

.check-row input {
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    accent-color: var(--gold);
}

.check-row a {
    color: var(--gold-bright);
    text-underline-offset: 2px;
}

.check-row small {
    color: var(--muted);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 24px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: linear-gradient(135deg, #e5c681, #b88e45);
    box-shadow: 0 12px 36px rgba(180, 137, 65, 0.2);
    color: #15120c;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.025em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 17px 44px rgba(180, 137, 65, 0.28);
    filter: brightness(1.05);
}

.button:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 4px;
}

.button b {
    font-size: 18px;
    font-weight: 500;
}

.button--wide {
    width: 100%;
    margin-top: 4px;
}

.button--ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    color: var(--text);
}

.button--small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 10px;
}

.button:disabled {
    opacity: 0.46;
    box-shadow: none;
    cursor: not-allowed;
}

.form-status {
    min-height: 34px;
    margin: 0;
    color: #858982;
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

.form-status.is-error {
    color: #e0a69b;
}

.form-status.is-success {
    color: #a9ceb0;
}

.section-heading {
    display: grid;
    grid-template-columns: 70px minmax(0, 790px);
    gap: 25px;
    align-items: start;
    margin-bottom: 55px;
}

.section-no {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
}

.section-no::after {
    width: 27px;
    height: 1px;
    background: rgba(212, 176, 106, 0.35);
    content: "";
}

.section-heading h2,
.reframe-copy h2,
.ethics-card h2,
.author-copy h2,
.outcomes-title h2,
.reflection-card h2,
.legal-header h1,
.worksheet-header h1 {
    margin: 12px 0 0;
    font-size: clamp(38px, 5vw, 63px);
    font-weight: 580;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.section-intro {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.pain-section {
    border-top: 1px solid var(--line);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.pain-card {
    min-height: 285px;
    padding: 28px 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.008);
    transition: background 180ms ease, transform 180ms ease;
}

.pain-card:hover {
    background: rgba(212, 176, 106, 0.035);
    transform: translateY(-3px);
}

.pain-card > span,
.outcome > span,
.process-step > span {
    color: var(--gold-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
}

.pain-card h3 {
    margin: 80px 0 12px;
    font-size: 20px;
    font-weight: 620;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.pain-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.reframe-section {
    background:
        linear-gradient(100deg, rgba(212, 176, 106, 0.035), transparent 47%),
        var(--bg-soft);
    border-block: 1px solid var(--line);
}

.reframe-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 92px;
    align-items: center;
}

.reframe-copy p {
    max-width: 600px;
    margin: 27px 0 0 95px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.quote-card {
    position: relative;
    padding: 64px 50px 48px;
    border: 1px solid rgba(212, 176, 106, 0.22);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 80% 0, rgba(212, 176, 106, 0.08), transparent 50%),
        rgba(255, 255, 255, 0.018);
}

.quote-mark {
    position: absolute;
    top: -25px;
    left: 35px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 95px;
    line-height: 1;
}

.quote-card blockquote {
    margin: 0 0 30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3.2vw, 37px);
    line-height: 1.25;
}

.signature {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.system-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.skill-card {
    position: relative;
    min-height: 225px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.027), transparent 60%),
        var(--panel);
    transition: border-color 180ms ease, transform 180ms ease;
}

.skill-card::after {
    position: absolute;
    right: -30px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(212, 176, 106, 0.08);
    border-radius: 50%;
    content: "";
}

.skill-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 176, 106, 0.38);
}

.skill-card > span {
    color: var(--gold-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
}

.skill-card h3 {
    margin: 64px 0 8px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.skill-card p {
    max-width: 195px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.outcomes-section {
    background:
        radial-gradient(circle at 0 50%, rgba(212, 176, 106, 0.06), transparent 31rem),
        var(--bg-soft);
    border-block: 1px solid var(--line);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 90px;
}

.outcomes-title {
    position: sticky;
    top: 40px;
    align-self: start;
}

.outcomes-title .section-no,
.author-copy .section-no,
.reframe-copy .section-no {
    margin-bottom: 28px;
}

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

.outcome {
    display: grid;
    grid-template-columns: 65px 1fr;
    align-items: center;
    min-height: 105px;
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
}

.outcome p {
    margin: 0;
    font-size: clamp(18px, 2.2vw, 27px);
    letter-spacing: -0.025em;
}

.ethics-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 75px;
    padding: 64px;
    border: 1px solid rgba(212, 176, 106, 0.28);
    border-radius: calc(var(--radius) + 8px);
    background:
        radial-gradient(circle at 100% 0, rgba(212, 176, 106, 0.1), transparent 34rem),
        linear-gradient(135deg, rgba(212, 176, 106, 0.045), transparent 50%),
        var(--panel);
    box-shadow: var(--shadow);
}

.ethics-card h2 {
    max-width: 620px;
    font-size: clamp(36px, 4.3vw, 56px);
}

.ethics-card p {
    max-width: 610px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.is-isnt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-content: center;
}

.is-isnt > div {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.018);
}

.list-label {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.list-label--yes {
    background: rgba(145, 180, 155, 0.1);
    color: #abd0b4;
}

.list-label--no {
    background: rgba(189, 129, 118, 0.1);
    color: #dba398;
}

.is-isnt ul,
.offer-list,
.compare-card ul {
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.is-isnt li {
    position: relative;
    margin-top: 10px;
    padding-left: 14px;
    color: var(--text-soft);
    font-size: 12px;
}

.is-isnt li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
}

.author-section {
    padding-top: 50px;
}

.author-section--compact {
    padding-top: 35px;
}

.author-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    min-height: 600px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 8px);
    background: var(--panel);
}

.author-card--compact {
    grid-template-columns: 0.62fr 1.38fr;
    min-height: 455px;
}

.author-card--compact .author-visual,
.author-card--compact .author-visual img {
    min-height: 455px;
}

.author-card--compact .author-copy {
    padding-block: 55px;
}

.author-visual {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(212, 176, 106, 0.18), transparent 45%),
        #0c0e0e;
}

.author-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 8, 0.84), transparent 45%);
    content: "";
}

.author-visual img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(1) contrast(1.06);
}

.author-badge {
    display: flex;
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(212, 176, 106, 0.3);
    border-radius: 999px;
    background: rgba(7, 8, 8, 0.76);
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    backdrop-filter: blur(15px);
}

.author-badge b {
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

.author-copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 70px 8vw;
}

.author-copy h2 {
    font-size: clamp(44px, 5vw, 68px);
}

.author-copy p {
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.78;
}

.author-copy .author-lead {
    color: var(--text-soft);
    font-size: 18px;
}

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

.faq-list {
    max-width: 930px;
    margin-left: auto;
}

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

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

.faq-item summary {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 2px;
    color: var(--text-soft);
    font-size: 18px;
    font-weight: 610;
    letter-spacing: -0.02em;
    list-style: none;
    cursor: pointer;
}

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

.faq-item summary::after {
    display: grid;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
    font-size: 19px;
    font-weight: 300;
    content: "+";
    transition: transform 180ms ease;
}

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

.faq-item p {
    max-width: 780px;
    margin: -5px 0 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.final-cta {
    padding-top: 15px;
    padding-bottom: 125px;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 90px 45px;
    border: 1px solid rgba(212, 176, 106, 0.28);
    border-radius: calc(var(--radius) + 8px);
    background:
        radial-gradient(circle at 50% -20%, rgba(212, 176, 106, 0.16), transparent 56%),
        linear-gradient(145deg, #121514, #090a0a);
    box-shadow: var(--shadow);
    text-align: center;
}

.final-cta-inner h2 {
    max-width: 870px;
    margin: 21px 0 35px;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 560;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.final-cta-inner > p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
    padding: 54px 0 42px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-mark--small {
    width: 34px;
    height: 34px;
    font-size: 12px;
}

.footer-brand div {
    display: grid;
}

.footer-brand strong {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand span {
    color: var(--muted);
    font-size: 10px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-links a {
    color: var(--muted);
    font-size: 10px;
    text-underline-offset: 3px;
}

.legal-note {
    grid-column: 1 / -1;
    max-width: 930px;
    margin: 5px 0 0;
    color: #666a65;
    font-size: 9.5px;
    line-height: 1.7;
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    color: #585c57;
    font-size: 9px;
}

.cookie-panel {
    display: flex;
    position: fixed;
    z-index: 100;
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(calc(100% - 36px), 820px);
    margin-left: auto;
    padding: 18px 20px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: rgba(16, 18, 18, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.cookie-panel[hidden] {
    display: none;
}

.cookie-panel strong {
    font-size: 12px;
}

.cookie-panel p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

/* Paid landing */
.paid-page {
    --gold: #cea85f;
    --gold-bright: #f1d89e;
}

.paid-hero .hero-copy {
    max-width: 1080px;
}

.offer-card .price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 13px 0 10px;
}

.price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 1;
}

.price > span {
    color: var(--gold-bright);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.price small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.08em;
}

.offer-list {
    display: grid;
    gap: 9px;
    margin-bottom: 23px;
}

.offer-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
    font-size: 12px;
}

.offer-list li::before {
    position: absolute;
    top: 7px;
    left: 2px;
    width: 7px;
    height: 4px;
    transform: rotate(-45deg);
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    content: "";
}

.payment-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 9px;
}

.payment-note b {
    margin-left: auto;
    color: #777b76;
    font-size: 8px;
    letter-spacing: 0.1em;
}

.lock-icon {
    color: var(--gold-deep);
    font-size: 7px;
}

.value-section {
    border-top: 1px solid var(--line);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.value-card {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 20px;
    min-height: 210px;
    align-items: center;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.value-card--large {
    grid-column: 1 / -1;
    min-height: 240px;
}

.value-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 1px solid rgba(212, 176, 106, 0.3);
    border-radius: 50%;
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

.value-card h3 {
    max-width: 690px;
    margin: 9px 0 8px;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 590;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.value-card p {
    max-width: 630px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.comparison-section {
    background: var(--bg-soft);
    border-block: 1px solid var(--line);
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 900px;
    margin-left: auto;
}

.compare-card {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.018);
}

.compare-card--featured {
    border-color: rgba(212, 176, 106, 0.36);
    background:
        linear-gradient(140deg, rgba(212, 176, 106, 0.07), transparent 48%),
        var(--panel);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.compare-label {
    color: var(--gold);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.compare-card h3 {
    margin: 10px 0 6px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.compare-price {
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 43px;
}

.compare-card ul {
    display: grid;
    gap: 12px;
    margin-block: 25px;
}

.compare-card li {
    position: relative;
    padding-left: 20px;
    color: var(--text-soft);
    font-size: 12px;
}

.compare-card li::before {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--gold);
    content: "✓";
}

.compare-card li.muted {
    color: #626661;
}

.compare-card li.muted::before {
    color: #626661;
    content: "—";
}

.text-link {
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
}

.text-link span {
    margin-left: 8px;
}

.comparison-note {
    max-width: 660px;
    margin: 24px 0 0 auto;
    color: #70746f;
    font-size: 10px;
    text-align: center;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.process-step {
    min-height: 230px;
    padding: 34px;
    border-right: 1px solid var(--line);
}

.process-step:first-child {
    border-left: 1px solid var(--line);
}

.process-step h3 {
    margin: 65px 0 8px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.process-step p {
    max-width: 240px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.assurance-list {
    display: grid;
    gap: 13px;
    align-content: center;
}

.assurance-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-soft);
    font-size: 13px;
}

.assurance-list i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid rgba(212, 176, 106, 0.28);
    border-radius: 50%;
    color: var(--gold);
    font-size: 10px;
    font-style: normal;
}

.final-cta-inner--paid {
    background:
        radial-gradient(circle at 50% -20%, rgba(212, 176, 106, 0.19), transparent 56%),
        linear-gradient(145deg, #151715, #090a0a);
}

/* Member and training views */
.member-main {
    min-height: 70vh;
}

.member-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding-top: 72px;
    padding-bottom: 44px;
}

.member-hero h1 {
    max-width: 850px;
    font-size: clamp(46px, 6.5vw, 78px);
}

.member-hero p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
}

.access-chip {
    display: grid;
    flex: 0 0 auto;
    gap: 2px;
    min-width: 165px;
    padding: 13px 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}

.access-chip span {
    color: var(--gold);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.17em;
}

.access-chip strong {
    font-size: 11px;
    font-weight: 650;
}

.member-content {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
    gap: 20px;
    align-items: start;
}

.video-stage--training {
    aspect-ratio: 16 / 9;
}

.training-activate {
    background:
        radial-gradient(circle at 50% 50%, rgba(5, 6, 6, 0.22), transparent 36%),
        linear-gradient(to top, rgba(5, 6, 6, 0.52), transparent 44%);
}

.training-cta {
    margin-top: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 176, 106, 0.34);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 92% 8%, rgba(212, 176, 106, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(212, 176, 106, 0.07), transparent 52%),
        var(--panel);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.training-cta h2 {
    max-width: 760px;
    margin: 12px 0 14px;
    font-size: clamp(29px, 3.4vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.training-cta > p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.training-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    margin-top: 24px;
}

.training-cta__actions small {
    max-width: 260px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.training-cta > .training-cta__note {
    margin-top: 13px;
    color: var(--muted);
    font-size: 10px;
}

.chapter-panel {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.chapter-panel h2 {
    margin: 8px 0 18px;
    font-size: 25px;
    letter-spacing: -0.035em;
}

.chapter-note {
    margin: -9px 0 17px;
    color: var(--muted);
    font-size: 10px;
}

.chapter-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.chapter-list li > div,
.chapter-list button {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 9px;
    width: 100%;
    align-items: center;
    min-height: 56px;
    padding: 8px 0;
}

.chapter-list button {
    border: 0;
    background: none;
    color: inherit;
    text-align: left;
}

.chapter-list span {
    color: var(--gold-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
}

.chapter-list div {
    display: grid;
}

.chapter-list b {
    font-size: 11px;
}

.chapter-list small {
    color: var(--muted);
    font-size: 9px;
}

.reflection {
    padding-block: 70px 105px;
}

.reflection-card {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(130deg, rgba(212, 176, 106, 0.055), transparent 45%),
        var(--panel);
}

.reflection-card h2 {
    max-width: 680px;
    font-size: clamp(32px, 4vw, 49px);
}

.reflection-card ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 32px 0 0;
    padding: 0;
    counter-reset: reflection;
    list-style: none;
}

.reflection-card li {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text-soft);
    font-size: 13px;
    counter-increment: reflection;
}

.reflection-card li::before {
    display: block;
    margin-bottom: 25px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    content: "0" counter(reflection);
}

.reflection-card--action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.reflection-card--action p {
    max-width: 670px;
    margin: 20px 0 0;
    color: var(--muted);
}

.access-message {
    min-height: 70vh;
    padding-top: 110px;
}

.access-message h1 {
    max-width: 900px;
    font-size: clamp(45px, 7vw, 82px);
}

.access-message p {
    max-width: 650px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 17px;
}

/* Legal pages */
.legal-main {
    max-width: 980px;
    padding-top: 85px;
    padding-bottom: 115px;
}

.legal-header {
    padding-bottom: 45px;
    border-bottom: 1px solid var(--line);
}

.legal-header h1 {
    margin-top: 20px;
}

.legal-header > p {
    color: var(--muted);
    font-size: 18px;
}

.legal-draft {
    margin-top: 25px;
    padding: 15px 18px;
    border: 1px solid rgba(212, 176, 106, 0.26);
    border-radius: 12px;
    background: rgba(212, 176, 106, 0.06);
    color: #d9c39a;
    font-size: 11px;
}

.legal-content {
    max-width: 780px;
    margin: 65px auto 0;
}

.legal-content section {
    margin-top: 45px;
}

.legal-content h2 {
    margin: 0 0 13px;
    font-size: 24px;
    font-weight: 610;
    letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.78;
}

.legal-content a {
    color: var(--gold-bright);
}

/* Worksheet */
.worksheet-main {
    padding-top: 70px;
    padding-bottom: 110px;
}

.worksheet-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    padding-bottom: 42px;
    border-bottom: 1px solid var(--line);
}

.worksheet-header h1 {
    margin-top: 18px;
    font-size: clamp(48px, 7vw, 78px);
}

.worksheet-header p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
}

.worksheet-meta {
    display: grid;
    grid-template-columns: 0.8fr 0.55fr 1.5fr;
    gap: 15px;
    padding-block: 32px;
}

.worksheet-meta label,
.worksheet-note,
.action-meta label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.worksheet-meta input,
.action-meta input {
    min-height: 44px;
    padding-inline: 12px;
}

.audit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.audit-card {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--panel);
}

.audit-title {
    display: flex;
    align-items: baseline;
    gap: 13px;
}

.audit-title span {
    color: var(--gold-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
}

.audit-title h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.audit-card > p {
    min-height: 42px;
    margin: 8px 0 18px;
    color: var(--muted);
    font-size: 11px;
}

.score-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
}

.score-row label {
    cursor: pointer;
}

.score-row input {
    position: absolute;
    opacity: 0;
}

.score-row span {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--muted);
    font-size: 9px;
}

.score-row input:checked + span {
    border-color: var(--gold);
    background: var(--gold);
    color: #17130c;
    font-weight: 850;
}

.score-row input:focus-visible + span {
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
}

.worksheet-note {
    margin-top: 20px;
}

.worksheet-note textarea,
.action-plan textarea {
    padding: 10px 12px;
    resize: vertical;
}

.action-plan {
    margin-top: 16px;
    padding: 40px;
    border: 1px solid rgba(212, 176, 106, 0.33);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(212, 176, 106, 0.065), transparent 42%),
        var(--panel);
}

.action-plan h2 {
    margin: 8px 0 24px;
    font-size: 34px;
    letter-spacing: -0.04em;
}

.action-meta {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 15px;
    margin-top: 14px;
}

/* Motion */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-pending {
    opacity: 0;
    transform: translateY(16px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes vsl-pulse {
    to {
        transform: scale(1.06);
        box-shadow: 0 0 0 18px rgba(212, 176, 106, 0.03), 0 10px 50px rgba(0, 0, 0, 0.45);
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .section {
        padding-block: 86px;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-grid,
    .member-content {
        grid-template-columns: 1fr;
    }

    .signup-card {
        position: relative;
        top: auto;
        max-width: 620px;
        margin-inline: auto;
    }

    .pain-grid,
    .system-map {
        grid-template-columns: repeat(2, 1fr);
    }

    .reframe-grid,
    .outcomes-grid,
    .ethics-card,
    .author-card {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reframe-copy p {
        margin-left: 0;
    }

    .outcomes-title {
        position: relative;
        top: auto;
    }

    .ethics-card {
        padding: 48px;
    }

    .author-visual,
    .author-visual img {
        min-height: 500px;
    }

    .author-copy {
        padding: 20px 48px 60px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card--large {
        grid-column: auto;
    }

    .compare-grid {
        margin-inline: auto;
    }

    .member-hero {
        align-items: start;
        flex-direction: column;
    }

    .chapter-panel {
        max-width: 650px;
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .shell,
    .site-header,
    .site-footer {
        width: min(calc(100% - 28px), var(--shell));
    }

    .site-header {
        min-height: 70px;
    }

    .header-note {
        display: none;
    }

    .brand-mark {
        width: 37px;
        height: 37px;
    }

    .hero {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .hero-copy {
        margin-bottom: 38px;
    }

    .hero h1,
    .member-hero h1,
    .access-message h1 {
        font-size: clamp(43px, 13.5vw, 65px);
        line-height: 0.98;
    }

    .hero h1 em,
    .member-hero h1 em,
    .access-message h1 em {
        white-space: normal;
    }

    .hero-lead {
        font-size: 17px;
    }

    .trust-row {
        gap: 10px 19px;
    }

    .trust-row span {
        font-size: 9px;
    }

    .trust-row b {
        font-size: 19px;
    }

    .video-stage {
        border-radius: 15px;
    }

    .vsl-sound {
        width: 62px;
        height: 62px;
        margin-bottom: 12px;
    }

    .vsl-activate strong {
        font-size: 16px;
    }

    .vsl-activate small {
        font-size: 8px;
    }

    .play-orbit {
        width: 68px;
        height: 68px;
        margin-bottom: 14px;
    }

    .video-placeholder strong {
        font-size: 19px;
    }

    .video-placeholder small {
        font-size: 9px;
    }

    .video-kicker {
        top: 13px;
        left: 15px;
        font-size: 7px;
    }

    .signup-card {
        padding: 25px 20px;
        border-radius: 17px;
    }

    .section {
        padding-block: 72px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-bottom: 38px;
    }

    .section-heading h2,
    .reframe-copy h2,
    .ethics-card h2,
    .author-copy h2,
    .outcomes-title h2,
    .reflection-card h2,
    .legal-header h1,
    .worksheet-header h1 {
        font-size: clamp(36px, 11vw, 52px);
    }

    .pain-grid,
    .system-map,
    .is-isnt,
    .compare-grid,
    .process-line,
    .reflection-card ol,
    .audit-grid {
        grid-template-columns: 1fr;
    }

    .pain-card {
        min-height: 215px;
    }

    .pain-card h3 {
        margin-top: 48px;
    }

    .reframe-grid,
    .outcomes-grid,
    .ethics-card,
    .author-card {
        gap: 37px;
    }

    .quote-card {
        padding: 55px 28px 33px;
    }

    .skill-card {
        min-height: 190px;
    }

    .skill-card h3 {
        margin-top: 44px;
    }

    .outcome {
        grid-template-columns: 45px 1fr;
    }

    .ethics-card {
        padding: 32px 24px;
    }

    .author-visual,
    .author-visual img {
        min-height: 390px;
    }

    .author-card--compact .author-visual,
    .author-card--compact .author-visual img {
        min-height: 390px;
    }

    .author-copy {
        padding: 5px 27px 42px;
    }

    .faq-item summary {
        min-height: 75px;
        font-size: 15px;
    }

    .final-cta {
        padding-top: 0;
        padding-bottom: 85px;
    }

    .final-cta-inner {
        padding: 64px 22px;
    }

    .final-cta-inner h2 {
        font-size: clamp(38px, 12vw, 55px);
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .check-row {
        font-size: 12.5px;
    }

    .legal-note {
        font-size: 10.5px;
    }

    .legal-note,
    .copyright {
        grid-column: auto;
    }

    .cookie-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .price strong {
        font-size: 63px;
    }

    .value-card {
        grid-template-columns: 55px 1fr;
        min-height: 185px;
        padding: 25px 20px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 15px;
    }

    .compare-card {
        padding: 30px 24px;
    }

    .process-line {
        border: 0;
        gap: 10px;
    }

    .process-step,
    .process-step:first-child {
        min-height: 200px;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
    }

    .reflection-card {
        padding: 32px 23px;
    }

    .reflection-card--action {
        align-items: start;
        flex-direction: column;
    }

    .training-cta {
        padding: 26px 22px;
    }

    .training-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .training-cta__actions .button {
        width: 100%;
    }

    .training-cta__actions small {
        max-width: none;
        text-align: center;
    }

    .worksheet-header {
        align-items: start;
        flex-direction: column;
    }

    .worksheet-meta,
    .action-meta {
        grid-template-columns: 1fr;
    }

    .audit-card {
        padding: 22px 18px;
    }

    .action-plan {
        padding: 28px 21px;
    }
}

@media print {
    :root {
        color-scheme: light;
    }

    body {
        background: white;
        color: #111;
    }

    body::before,
    .preview-bar,
    .site-header,
    .site-footer,
    .cookie-panel,
    .print-hide {
        display: none !important;
    }

    .worksheet-main {
        width: 100%;
        padding: 0;
    }

    .worksheet-header {
        padding-bottom: 15px;
    }

    .worksheet-header h1 {
        font-size: 40px;
    }

    .worksheet-header p,
    .audit-card > p {
        color: #444;
    }

    .worksheet-meta {
        padding-block: 14px;
    }

    .audit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .audit-card,
    .action-plan {
        break-inside: avoid;
        padding: 12px;
        border: 1px solid #bbb;
        background: white;
    }

    .audit-title h2 {
        font-size: 16px;
    }

    .score-row span {
        border-color: #bbb;
        color: #333;
    }

    .worksheet-meta input,
    .worksheet-note textarea,
    .action-plan textarea,
    .action-meta input {
        border-color: #bbb;
        background: white;
        color: #111;
    }

    .action-plan {
        margin-top: 7px;
    }

    .action-plan h2 {
        font-size: 22px;
    }
}
