*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --e9: #1E1209;
    --e8: #3D2B1F;
    --e7: #6B4C35;
    --e6: #96714E;
    --e5: #A67C52;
    --e4: #C4A882;
    --e3: #D9C4A9;
    --e2: #EDE3D5;
    --e1: #F5F0E8;
    --e0: #FAF8F4;
    --coral: #E85D54;
    --coral-l: #FF9E94;
    --coral-d: #C43E36;
    --sage: #6B8B72;
    --sage-d: #4A6453;
    --sage-l: #B5CCBA;
    --display: 'Crimson Pro', Georgia, serif;
    --serif: 'Crimson Pro', Georgia, serif;
    --body: 'DM Sans', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
}

body {
    font-family: var(--body);
    background: var(--e0);
    color: var(--e9);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .35
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1
}

section {
    position: relative;
    z-index: 1
}

a {
    color: inherit;
    text-decoration: none
}

.rv {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.rv.v {
    opacity: 1;
    transform: translate(0) scale(1)
}

.stg .rv:nth-child(1) {
    transition-delay: 0s
}

.stg .rv:nth-child(2) {
    transition-delay: .07s
}

.stg .rv:nth-child(3) {
    transition-delay: .14s
}

.stg .rv:nth-child(4) {
    transition-delay: .21s
}

.stg .rv:nth-child(5) {
    transition-delay: .28s
}

.stg .rv:nth-child(6) {
    transition-delay: .35s
}

@media(prefers-reduced-motion:reduce) {

    .rv,
    .step {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important
    }
}

.wizard.rv {
    transform: translateY(52px) scale(0.96);
    transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1), transform .9s cubic-bezier(0.16, 1, 0.3, 1)
}

.wizard.rv.v {
    opacity: 1;
    transform: translateY(0) scale(1)
}

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    padding: 14px 0;
    transition: all .35s var(--ease)
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(250, 248, 244, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--e2);
    box-shadow: 0 4px 24px rgba(30, 18, 9, .05)
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.8px
}

.logo-a {
    color: var(--coral)
}

.nav-center {
    display: flex;
    gap: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--e6);
    transition: color .2s
}

.nav-link:hover {
    color: var(--e9)
}

.nav-right {
    display: flex;
    gap: 16px;
    align-items: center
}

.nav-cta {
    background: var(--e9);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--r-sm);
    transition: all .25s var(--ease)
}

.nav-cta:hover {
    background: var(--e8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 18, 9, .15)
}

.nav-cta:active {
    transform: scale(.98)
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--e9)
}

.nav-toggle svg {
    width: 24px;
    height: 24px
}

.nav-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--e9);
    padding: 4px
}

.nav-close svg {
    width: 24px;
    height: 24px
}

.mob-links {
    display: none
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: all .3s var(--ease);
    letter-spacing: -.2px;
    text-decoration: none
}

.btn-p {
    background: var(--e9);
    color: #fff;
    padding: 14px 28px;
    font-size: 15px;
    position: relative;
    overflow: hidden
}

.btn-p:hover {
    background: var(--e8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 18, 9, .2)
}

.btn-p:active {
    transform: scale(.98)
}

.btn-s {
    background: #fff;
    color: var(--e9);
    padding: 13px 24px;
    font-size: 14px;
    border: 1.5px solid var(--e2)
}

.btn-s:hover {
    border-color: var(--e5)
}

.btn-s:active {
    transform: scale(.98)
}

.btn svg {
    width: 16px;
    height: 16px
}

/* ── Section Headers ── */
.sh {
    text-align: center;
    /* max-width: 620px; */
    margin: 0 auto 56px
}

.sh-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px
}

.sh-title {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 14px
}

.sh-sub {
    font-size: 17px;
    color: var(--e6);
    line-height: 1.65;
    letter-spacing: -.2px
}

/* ── Hero (stacked, tight) ── */
.hero {
    padding: 40px 0 16px;
    overflow: visible
}

.hero-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--e7);
    margin-bottom: 20px;
    border: 1px solid var(--e2)
}

.hero-dot {
    width: 7px;
    height: 7px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.hero h1 {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 18px;
    letter-spacing: -2.2px
}

.hero-accent {
    color: var(--coral)
}

.hero-sub {
    font-size: 17px;
    color: var(--e7);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -.2px
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.trust-i {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--e7)
}

.trust-i svg {
    width: 14px;
    height: 14px;
    color: var(--sage)
}

/* ── Demo Section ── */
.demo-section {
    padding: 0 0 40px
}

.demo-wrapper {
    max-width: 560px;
    margin: 0 auto
}

/* ── Wizard ── */
.wizard {
    background: var(--e1);
    border: 1px solid var(--e3);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: 0 24px 64px rgba(30, 18, 9, .11), 0 6px 16px rgba(30, 18, 9, .05);
    transition: box-shadow .4s var(--ease)
}

.wizard.glow {
    box-shadow: 0 0 0 3px rgba(232, 93, 84, .16), 0 24px 64px rgba(30, 18, 9, .11)
}

.wizard.glow-fade {
    box-shadow: 0 24px 64px rgba(30, 18, 9, .11), 0 6px 16px rgba(30, 18, 9, .05)
}

.wiz-demo-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--e6);
    letter-spacing: .7px;
    text-transform: uppercase;
    margin-bottom: 22px;
    padding: 5px 12px;
    background: var(--e0);
    border: 1px solid var(--e2);
    border-radius: var(--r-sm);
    width: fit-content;
    margin-left: auto;
    margin-right: auto
}

.wiz-demo-pulse {
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: demoPulse 2s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes demoPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(232, 93, 84, .35)
    }

    50% {
        opacity: .7;
        box-shadow: 0 0 0 5px rgba(232, 93, 84, 0)
    }
}

.wiz-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px
}

.wiz-dot {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid var(--e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--e4);
    transition: all .3s var(--ease)
}

.wiz-dot.active {
    background: var(--e9);
    border-color: var(--e9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(30, 18, 9, .2)
}

.wiz-dot.done {
    background: var(--sage-d);
    border-color: var(--sage-d);
    color: #fff
}

.wiz-line {
    width: 28px;
    height: 1.5px;
    background: var(--e2)
}

.wiz-line.done {
    background: var(--sage)
}

.wiz-title {
    text-align: center;
    font-family: var(--display);
    font-size: 21px;
    font-weight: 600;
    color: var(--e9);
    margin-bottom: 4px;
    letter-spacing: -.2px
}

.wiz-sub {
    text-align: center;
    font-size: 13px;
    color: var(--e5);
    margin-bottom: 22px
}

.wiz-step {
    display: none
}

.wiz-step.active {
    display: block
}

.wiz-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px
}

.wiz-method {
    background: #fff;
    border: 1px solid var(--e2);
    border-radius: var(--r-lg);
    padding: 16px 18px;
    text-align: left;
    cursor: pointer;
    transition: all .22s var(--ease);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--body);
    box-shadow: 0 1px 4px rgba(30, 18, 9, .05)
}

.wiz-method:hover:not(.locked) {
    border-color: var(--e4);
    box-shadow: 0 8px 24px rgba(30, 18, 9, .10);
    transform: translateY(-2px)
}

.wiz-method:active:not(.locked) {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(30, 18, 9, .05)
}

.wiz-method.locked {
    opacity: .45;
    cursor: not-allowed
}

.wiz-method-icon {
    width: 38px;
    height: 38px;
    background: var(--e2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px
}

.wiz-method-text {
    flex: 1
}

.wiz-method-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--e9)
}

.wiz-method-desc {
    font-size: 12px;
    color: var(--e5)
}

.wiz-badge {
    padding: 2px 7px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    flex-shrink: 0
}

.wiz-badge.free {
    background: rgba(107, 139, 114, .12);
    color: var(--sage-d)
}

.wiz-badge.paid {
    background: rgba(30, 18, 9, .06);
    color: var(--e8);
    border: 1px solid var(--e3)
}

.wiz-hint {
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--e5);
    padding-top: 12px;
    border-top: 1px solid var(--e2);
    margin-top: 6px
}

.wiz-locked-msg {
    text-align: center;
    font-size: 13px;
    color: var(--e7);
    background: var(--e0);
    border: 1px solid var(--e3);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    margin-top: 12px;
    display: none;
    line-height: 1.5
}

.wiz-locked-msg.visible {
    display: block
}

.wiz-locked-msg a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px
}

.wiz-textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid var(--e2);
    border-radius: var(--r-md);
    font-size: 14px;
    font-family: var(--body);
    line-height: 1.6;
    resize: vertical;
    min-height: 140px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s
}

.wiz-textarea:focus {
    outline: none;
    border-color: var(--e7);
    box-shadow: 0 0 0 3px rgba(30, 18, 9, .06)
}

.wiz-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--e2);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-family: var(--body);
    background: #fff;
    transition: border-color .2s, box-shadow .2s
}

.wiz-input:focus {
    outline: none;
    border-color: var(--e7);
    box-shadow: 0 0 0 3px rgba(30, 18, 9, .06)
}

.wiz-select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--e2);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-family: var(--body);
    background: #fff;
    transition: border-color .2s, box-shadow .2s
}

.wiz-select:focus {
    outline: none;
    border-color: var(--e7)
}

.wiz-counter {
    text-align: right;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--e4);
    margin-top: 4px
}

.wiz-field {
    margin-bottom: 14px
}

.wiz-field-label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--e7);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px
}

.wiz-field-hint {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--e5);
    margin-top: 3px
}

.wiz-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.wiz-actions {
    display: flex;
    gap: 8px;
    margin: 16px 0 12px
}

.wiz-actions>* {
    flex: 1
}

.wiz-actions .btn-p {
    font-size: 14px;
    padding: 11px 20px
}

.btn-back {
    background: #fff;
    color: var(--e7);
    padding: 11px;
    border: 1px solid var(--e2);
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--body);
    transition: all .2s
}

.btn-back:hover {
    border-color: var(--e4);
    background: var(--e0);
    color: var(--e9)
}

.wiz-angles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.wiz-angle {
    background: #fff;
    border: 1px solid var(--e2);
    border-radius: var(--r-md);
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    font-family: var(--body);
    font-size: 13px;
    color: var(--e7);
    line-height: 1.5;
    transition: all .2s var(--ease);
    box-shadow: 0 1px 3px rgba(30, 18, 9, .04)
}

.wiz-angle:hover {
    border-color: var(--e4);
    background: var(--e0);
    box-shadow: 0 4px 14px rgba(30, 18, 9, .07)
}

.wiz-angle.selected {
    border-color: var(--e9);
    border-width: 1.5px;
    background: rgba(30, 18, 9, .03);
    color: var(--e9);
    font-weight: 500
}

.wiz-loading {
    text-align: center;
    padding: 32px 0
}

.wiz-spinner {
    width: 28px;
    height: 28px;
    border: 2.5px solid var(--e2);
    border-top-color: var(--e9);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    margin: 0 auto 12px
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.wiz-loading-text {
    font-size: 13px;
    color: var(--e6)
}

.wiz-preview-box {
    background: #fff;
    border: 1px solid var(--e2);
    border-radius: var(--r-md);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(30, 18, 9, .06)
}

.wiz-preview-box h4 {
    font-family: var(--display);
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--e9)
}

.wiz-preview-box p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--e7)
}

.wiz-preview-meta {
    font-size: 12px;
    color: var(--e5);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--e2)
}

.wiz-voice-params {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--e7);
    margin-top: 10px;
    padding: 8px 10px;
    background: rgba(107, 139, 114, .07);
    border-radius: var(--r-sm)
}

.wiz-signup-prompt {
    background: rgba(107, 139, 114, .06);
    border: 1px solid rgba(107, 139, 114, .12);
    border-radius: var(--r-md);
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: start
}

.wiz-signup-icon {
    width: 32px;
    height: 32px;
    background: var(--sage-d);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 14px
}

.wiz-signup-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--e9);
    margin-bottom: 2px
}

.wiz-signup-text p {
    font-size: 12px;
    color: var(--e7);
    line-height: 1.5
}

.wiz-intro {
    text-align: center;
    font-size: 14px;
    color: var(--e7);
    margin-bottom: 18px;
    line-height: 1.6
}

.trust-stmt {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--e6);
    margin-top: 12px;
    line-height: 1.5
}

.trust-stmt-icon {
    flex-shrink: 0;
    margin-top: 1px
}

.trust-stmt-more {
    background: none;
    border: none;
    color: var(--e7);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: var(--body)
}

.trust-stmt-more:hover {
    color: var(--e9)
}

.trust-stmt-detail {
    display: none;
    font-size: 12px;
    color: var(--e6);
    line-height: 1.6;
    margin-top: 8px;
    padding-left: 22px;
    max-width: 420px
}

.trust-stmt-detail.visible {
    display: block
}

.trust-stmt-detail p {
    margin-bottom: 4px
}

/* ── Demo float ── */
.demo-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--e9);
    color: #fff;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(30, 18, 9, .22);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    text-decoration: none
}

.demo-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all
}

.demo-float:hover {
    background: var(--e8);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 18, 9, .25)
}

.demo-float .fp {
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: demoPulse 2s ease-in-out infinite;
    flex-shrink: 0
}

@media(max-width:600px) {
    .demo-float {
        bottom: 16px;
        right: 16px;
        font-size: 12px;
        padding: 9px 14px
    }
}

/* ── Problem ── */
.problem {
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--e2)
}

.problem-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

.problem-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--e9);
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 24px
}

.problem-items {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.problem-item {
    text-align: center;
    max-width: 200px
}

.problem-num {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -1px
}

.problem-desc {
    font-size: 13px;
    color: var(--e6);
    line-height: 1.5
}

.problem-resolve {
    font-size: 16px;
    color: var(--e9);
    font-weight: 600;
    letter-spacing: -.2px
}

/* ── How It Works ── */
.how {
    background: var(--e1);
    padding: 0 0 96px
}

/* ── Centered editorial heading (compact) ── */
.hiw-hd {
    text-align: center;
    padding: 56px 0 44px
}

.hiw-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.hiw-title {
    font-family: var(--display);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-bottom: 16px
}

.hiw-sub {
    font-size: 15px;
    color: var(--e6);
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto
}

/* ── Editorial showcase (3 columns: annot / preview / book) ── */
.hiw-showcase {
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    gap: 32px;
    align-items: start;
    margin: 0 0 60px;
    min-height: 360px
}

/* Left annotation column */
.hiw-annot {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 48px
}

.hiw-annot-item {
    position: relative;
    padding-top: 18px
}

.hiw-annot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 1px;
    background: var(--e3)
}

.hiw-annot-num {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--coral);
    letter-spacing: .12em;
    margin-bottom: 10px;
    text-transform: uppercase
}

.hiw-annot-title {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 600;
    color: var(--e9);
    letter-spacing: -.3px;
    line-height: 1.2;
    margin-bottom: 8px
}

.hiw-annot-text {
    font-size: 13px;
    color: var(--e6);
    line-height: 1.6;
    max-width: 180px
}

/* Center: two overlapping preview panels */
.hiw-preview {
    position: relative;
    height: 360px
}

.hiw-prev-panel {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--e2);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 18, 9, .09), 0 4px 12px rgba(30, 18, 9, .04)
}

.hiw-prev-back {
    top: 0;
    right: 0;
    width: 76%;
    height: 74%;
    z-index: 1
}

.hiw-prev-front {
    bottom: 0;
    left: 0;
    width: 82%;
    height: 74%;
    z-index: 2;
    box-shadow: 0 28px 64px rgba(30, 18, 9, .13), 0 8px 18px rgba(30, 18, 9, .06)
}

/* Preview panel header (clean, no traffic lights) */
.hiw-prev-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--e2);
    background: #fff
}

.hiw-prev-step {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--e5);
    letter-spacing: .08em
}

.hiw-prev-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--sage-d);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .04em
}

.hiw-prev-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0
}

/* Back panel content — topic + angles */
.hpv-back-body {
    padding: 18px 20px
}

.hpv-back-label {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--e5);
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase
}

.hpv-back-topic {
    font-family: var(--display);
    font-size: 15px;
    color: var(--e9);
    font-weight: 600;
    margin-bottom: 18px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--e2);
    border-radius: 8px;
    border-left: 2px solid var(--coral);
    line-height: 1.3
}

.hpv-back-angles-label {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--e5);
    letter-spacing: .08em;
    margin-bottom: 10px;
    text-transform: uppercase
}

.hpv-back-angle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--e7);
    margin-bottom: 4px;
    border: 1px solid transparent;
    line-height: 1.35
}

.hpv-back-angle.active {
    background: #fff;
    border-color: var(--sage);
    color: var(--e9);
    box-shadow: 0 1px 3px rgba(107, 139, 114, .08)
}

.hpv-back-angle-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--e4);
    flex-shrink: 0
}

.hpv-back-angle.active .hpv-back-angle-bullet {
    background: var(--sage)
}

/* Front panel content — voice preview */
.hpv-front-body {
    padding: 20px 22px
}

.hpv-front-chapter {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--e4);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.hpv-front-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -.3px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--e2)
}

.hpv-front-text {
    font-family: var(--display);
    font-size: 14px;
    color: var(--e8);
    line-height: 1.75;
    font-style: italic;
    padding-left: 14px;
    border-left: 2px solid var(--e2);
    margin-bottom: 16px
}

.hpv-front-sep {
    border: none;
    border-top: 1px solid var(--e2);
    margin: 0 0 12px
}

.hpv-front-analysis-label {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--e4);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.hpv-front-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap
}

.hpv-front-tag {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--sage-d);
    background: rgba(107, 139, 114, .1);
    padding: 3px 8px;
    border-radius: 100px;
    border: 1px solid rgba(107, 139, 114, .18)
}

/* Right column — annotation + real ebook cover */
.hiw-right-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 36px
}

.hiw-book-stage {
    width: 100%;
    display: flex;
    justify-content: center
}

.hiw-book-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 34px rgba(30, 18, 9, .22)) drop-shadow(0 5px 10px rgba(30, 18, 9, .1));
    transition: transform .5s var(--ease)
}

.hiw-book-img:hover {
    transform: translateY(-6px) scale(1.02)
}

/* ── Three step cards ── */
.hiw-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.hiw-card {
    border-radius: 20px;
    padding: 34px 28px 32px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.hiw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(30, 18, 9, .14), 0 4px 10px rgba(30, 18, 9, .06)
}

.hiw-card.s1 {
    background: var(--e9)
}

.hiw-card.s2 {
    background: var(--coral)
}

.hiw-card.s3 {
    background: var(--sage-d)
}

/* Ghost element inside card */
.hiw-card-ghost {
    position: absolute;
    bottom: -24px;
    right: -12px;
    font-family: var(--display);
    font-size: 156px;
    font-weight: 700;
    opacity: .05;
    color: #fff;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.08em
}

/* Step pill — centered at top */
.hiw-card-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 100px;
    padding: 5px 14px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .06em;
    width: fit-content;
    margin-bottom: 30px
}

.hiw-card-pill::before {
    content: '—';
    color: rgba(255, 255, 255, .4);
    font-size: 10px
}

/* Card title */
.hiw-card-name {
    font-family: var(--display);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 14px;
    flex: 1
}

/* Card description */
.hiw-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    margin-bottom: 22px
}

/* Bottom badge */
.hiw-card-badge {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .48);
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 6px
}

.hiw-card-badge::before {
    content: '';
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    display: block
}

@media(max-width:960px) {
    .hiw-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: 0
    }

    .hiw-annot {
        padding-top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px
    }

    .hiw-annot-item {
        flex: 1 1 220px;
        min-width: 200px
    }

    .hiw-annot-text {
        max-width: none
    }

    .hiw-preview {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .hiw-prev-panel {
        position: static;
        width: 100%;
        height: auto;
        transform: none !important
    }

    .hiw-right-col {
        padding-top: 0;
        flex-direction: column;
        align-items: center;
        max-width: 320px;
        margin: 0 auto
    }

    .hiw-book-img {
        max-width: 220px
    }

    .hiw-cards {
        grid-template-columns: 1fr
    }

    .hiw-title {
        font-size: clamp(32px, 7vw, 44px)
    }
}

/* ══════════ Capabilities (Editorial) ══════════ */
.caps {
    background: var(--e0);
    padding: 112px 0
}

.caps-hd {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px
}

.caps-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 20px
}

.caps-title {
    font-family: var(--display);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -.03em;
    line-height: 1.05
}

.caps-intro {
    font-size: 16px;
    color: var(--e6);
    line-height: 1.6;
    margin: 22px auto 0;
    max-width: 540px
}

/* Text grid — 4 columns by journey phase */
.caps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
    margin-bottom: 72px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto
}

.caps-col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.caps-col-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: .14em;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--e3)
}

.caps-item h4 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -.015em;
    line-height: 1.2;
    margin: 0 0 6px
}

.caps-item-tier {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block;
    margin-bottom: 10px
}

.caps-item p {
    font-size: 13px;
    color: var(--e7);
    line-height: 1.6;
    margin: 0
}

/* Paired hero — ebook cover + PDF page, side by side on dark */
/* ── Capabilities header: centered title, then one strong open-book visual ── */
.caps-hd {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px
}

.caps-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 20px
}

.caps-intro {
    font-size: 16px;
    color: var(--e6);
    line-height: 1.6;
    margin: 22px auto 0;
    max-width: 540px
}

/* Open-book hero: large, centered, editorial — one strong visual */
.caps-bookshow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 0 auto 88px;
    padding: 0 20px
}

.caps-bookshow-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    display: flex;
    filter: drop-shadow(0 24px 48px rgba(30, 18, 9, .16)) drop-shadow(0 8px 16px rgba(30, 18, 9, .06));
    transition: transform .5s var(--ease)
}

.caps-bookshow:hover .caps-bookshow-wrap {
    transform: translateY(-3px)
}

.caps-bookshow-page {
    flex: 1;
    background: #fff;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1.414
}

.caps-bookshow-page.left {
    border-radius: 3px 0 0 3px
}

.caps-bookshow-page.right {
    border-radius: 0 3px 3px 0
}

.caps-bookshow-page img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center
}

/* --- live-typeset book spread internals (template-level only) ---- */
.caps-bookshow-page {
    background: #FDFBF6;
    color: var(--e8)
}

.caps-bookshow-page .bp-inner {
    position: absolute;
    inset: 0;
    padding: 7.5% 8.5% 6%;
    display: flex;
    flex-direction: column;
    font-family: var(--serif);
    font-feature-settings: "kern", "liga"
}

.caps-bookshow-page.left .bp-inner {
    padding-right: 10.5%
}

.caps-bookshow-page.right .bp-inner {
    padding-left: 10.5%
}

.bp-body-area {
    flex: 1;
    display: flex;
    flex-direction: column
}

/* running header — tracked meta, hairline below */
.bp-running {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--mono);
    font-size: .5rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(30, 18, 9, .42);
    padding-bottom: .5rem;
    border-bottom: .5px solid rgba(30, 18, 9, .16);
    margin-bottom: 1.6rem;
    font-weight: 500
}

.bp-running span:last-child {
    font-feature-settings: "tnum"
}

.bp-running--right span:first-child {
    font-feature-settings: "tnum"
}

/* chapter opener */
.bp-chapter-mark {
    font-family: var(--mono);
    font-size: .52rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: .8rem;
    font-weight: 600
}

.bp-chapter-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(16px, 1.7vw, 22px);
    line-height: 1.12;
    letter-spacing: -.015em;
    color: var(--e9);
    margin: 0 0 1.1rem;
    font-style: normal
}

.bp-chapter-title+.bp-section-title {
    margin-top: .3rem
}

/* section heads — small coral rule above, serif display weight */
.bp-section-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: .82rem;
    line-height: 1.22;
    color: var(--e9);
    margin: .6rem 0 .6rem;
    letter-spacing: -.005em;
    position: relative
}

.bp-section-title::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background: var(--coral);
    margin-bottom: .45rem
}

/* sub-section head — smaller, no rule */
.bp-sub-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: .66rem;
    line-height: 1.3;
    color: var(--e9);
    margin: .7rem 0 .35rem;
    letter-spacing: -.003em
}

/* body */
.bp-body {
    font-family: var(--serif);
    font-size: .6rem;
    line-height: 1.62;
    color: rgba(30, 18, 9, .84);
    text-align: justify
}

.bp-body p {
    margin: 0 0 .5rem
}

.bp-body em {
    font-style: italic
}

/* drop cap — template-level CSS, renders in DomPDF */
.bp-dropcap {
    float: left;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.95rem;
    line-height: .85;
    padding: .1rem .15rem 0 0;
    color: var(--e9);
    margin-top: .02rem
}

/* bulleted list with bold lead-in — matches current product output */
.bp-list {
    font-family: var(--serif);
    font-size: .6rem;
    line-height: 1.55;
    color: rgba(30, 18, 9, .84);
    margin: .45rem 0;
    padding: 0;
    list-style: none
}

.bp-list li {
    position: relative;
    padding-left: .85rem;
    margin-bottom: .42rem;
    text-align: justify
}

.bp-list li::before {
    content: "";
    position: absolute;
    left: .05rem;
    top: .52rem;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--coral)
}

.bp-list strong {
    font-weight: 700;
    color: var(--e9)
}

/* warmer paper tint on right page suggests real stock + light from spine */
.caps-bookshow-page.right {
    background: #FCF9F3
}

@media (max-width:640px) {

    .bp-body,
    .bp-list {
        font-size: .5rem;
        line-height: 1.52
    }

    .bp-body p,
    .bp-list li {
        margin-bottom: .38rem
    }

    .bp-running,
    .bp-chapter-mark,
    .bp-footer {
        font-size: .44rem
    }

    .bp-chapter-title {
        font-size: 13px
    }

    .bp-section-title {
        font-size: .7rem
    }

    .bp-sub-title {
        font-size: .56rem
    }

    .bp-dropcap {
        font-size: 1.55rem
    }

    .caps-bookshow-page .bp-inner {
        padding: 6.5% 6.5% 5%
    }
         .cta-final {
             padding: 48px 0 0
         }
    
         .cta-box {
             padding: 48px 24px;
             border-radius: var(--r-lg)
         }
    
         .cta-box h2 {
             font-size: 28px
         }
    
         .sh {
             margin-bottom: 40px
         }
    
         .sh-title {
             font-size: 28px;
             letter-spacing: -1px
         }
    
         .sh-sub {
             font-size: 15px
         }
    
         .footer {
             padding: 48px 0 24px
         }
    
         .footer-links-row {
             display: grid;
             grid-template-columns: 1fr 1fr 1fr;
             gap: 20px
         }
    
         .tpl-grid {
             grid-template-columns: repeat(2, 1fr)
         }
    
         .em-btns {
             flex-direction: column
         }
    
         .ebook-mockup {
             flex-direction: column;
             align-items: center
         }
    
         .ebook-cover,
         .ebook-interior {
             transform: none
         }
    
         .problem-items {
             flex-direction: column;
             align-items: center;
             gap: 20px
         }
    
         .bento-title {
             font-size: 22px
         }
    
         /* FAQ mobile — tighter padding, smaller question text */
         .faq-q {
             padding: 20px 4px;
             gap: 16px
         }
    
         .faq-q-text {
             font-size: 16px
         }
    
         .faq-num {
             min-width: 24px
         }
    
         .faq-a-inner {
             padding: 0 4px 22px 30px;
             font-size: 14.5px
         }
    
         .faq-head {
             margin-bottom: 36px
         }
}

/* Soft gutter shadow between pages */
.caps-bookshow-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 32px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgba(30, 18, 9, 0) 0%, rgba(30, 18, 9, .10) 48%, rgba(30, 18, 9, .14) 50%, rgba(30, 18, 9, .10) 52%, rgba(30, 18, 9, 0) 100%);
    pointer-events: none;
    z-index: 2
}

/* Subtle outer page edge */
.caps-bookshow-page.left::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background: linear-gradient(to right, rgba(30, 18, 9, .05), transparent);
    pointer-events: none
}

.caps-bookshow-page.right::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 8px;
    background: linear-gradient(to left, rgba(30, 18, 9, .05), transparent);
    pointer-events: none
}

/* Open the example PDF link — small, monospace, restrained */
.caps-pdf-link {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: .12em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease)
}

.caps-pdf-link:hover {
    border-bottom-color: var(--coral)
}

.caps-pdf-link svg {
    width: 11px;
    height: 11px
}

@media(max-width:1024px) {
    .caps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px
    }
}

@media(max-width:900px) {
    .caps {
        padding: 72px 0
    }

    .caps-hd {
        margin-bottom: 52px
    }

    .caps-grid {
        margin-bottom: 56px
    }

    .caps-hd {
        margin-bottom: 44px
    }

    .caps-bookshow {
        margin-bottom: 64px
    }

    .caps-bookshow-wrap {
        max-width: 560px
    }

    .caps-title {
        font-size: clamp(32px, 7vw, 44px)
    }
}

@media(max-width:540px) {
    .caps-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .caps-hd {
        margin-bottom: 36px
    }

    .caps-bookshow {
        margin-bottom: 52px;
        gap: 14px
    }

    .caps-bookshow-wrap {
        max-width: 100%
    }
}


/* ── Audience ── */
.audience {
    padding: 100px 0
}

.aud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px
}

.aud-card {
    background: #fff;
    border: 1.5px solid var(--e2);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: all .3s var(--ease)
}

.aud-card:hover {
    border-color: rgba(30, 18, 9, .12);
    box-shadow: 0 8px 28px rgba(30, 18, 9, .06);
    transform: translateY(-3px)
}

.aud-icon {
    width: 44px;
    height: 44px;
    background: var(--e1);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px
}

.aud-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--e9);
    margin-bottom: 6px;
    letter-spacing: -.2px
}

.aud-desc {
    font-size: 13px;
    color: var(--e6);
    line-height: 1.6
}

.aud-use {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--e5);
    margin-top: 12px
}

/* ── Pricing (original style) ── */
.pricing {
    padding: 100px 0;
    background: #fff
}

.billing-toggle {
    display: inline-flex;
    background: var(--e1);
    border-radius: var(--r-sm);
    padding: 3px;
    margin: 24px auto 0;
    border: 1px solid var(--e2)
}

.bill-opt {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: var(--body);
    color: var(--e7);
    transition: all .25s var(--ease)
}

.bill-opt.active {
    background: var(--e9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(30, 18, 9, .15)
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    align-items: stretch
}

.price-card {
    background: var(--e0);
    border: 1.5px solid var(--e2);
    border-radius: var(--r-lg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    transition: all .3s var(--ease);
    position: relative
}

.price-card:hover {
    box-shadow: 0 8px 24px rgba(30, 18, 9, .06);
    transform: translateY(-3px)
}

.pc-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--e9);
    margin-bottom: 4px;
    letter-spacing: -.2px
}

.pc-tag {
    font-size: 12px;
    color: var(--e6);
    margin-bottom: 16px;
    min-height: 16px
}

.pc-price {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -1.5px;
    margin-bottom: 2px
}

.pc-price small {
    font-family: var(--body);
    font-size: 15px;
    color: var(--e6);
    font-weight: 400;
    letter-spacing: 0
}

.pc-period {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--e4);
    margin-bottom: 20px
}

.pc-features {
    list-style: none;
    margin-bottom: 22px;
    flex: 1
}

.pc-features li {
    font-size: 13px;
    color: var(--e7);
    margin-bottom: 9px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5
}

.pc-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B8B72' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain
}

.pc-btn {
    width: 100%;
    padding: 11px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--body);
    transition: all .25s var(--ease);
    display: block;
    text-align: center;
    margin-top: auto;
    text-decoration: none
}

.pc-btn.primary {
    background: var(--e9);
    color: #fff
}

.pc-btn.primary:hover {
    background: var(--e8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 18, 9, .15)
}

.pc-btn.primary:active {
    transform: scale(.98)
}

/* Comparison (original style) */
.compare-toggle {
    text-align: center;
    margin-top: 36px
}

.compare-btn {
    background: var(--e9);
    border: none;
    cursor: pointer;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--r-sm);
    transition: all .25s var(--ease)
}

.compare-btn:hover {
    background: var(--e8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 18, 9, .15)
}

.compare-btn:active {
    transform: scale(.98)
}

.compare-btn svg {
    transition: transform .3s var(--ease)
}

.compare-table-wrap {
    margin-top: 32px;
    overflow: hidden;
    transition: max-height .5s var(--ease)
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1.5px solid var(--e2)
}

.compare-table thead tr {
    background: var(--e9)
}

.compare-table th {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .85);
    padding: 18px 20px;
    text-align: center
}

.compare-table th:first-child {
    text-align: left;
    color: rgba(255, 255, 255, .5)
}

.compare-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--e2);
    text-align: center;
    color: var(--e7);
    font-size: 14px
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--e9);
    font-size: 14px
}

.compare-table tbody tr:last-child td {
    border-bottom: none
}

.compare-table tbody tr:nth-child(even) {
    background: rgba(245, 240, 232, .4)
}

.ct-y {
    color: var(--sage);
    font-weight: 600
}

.ct-n {
    color: var(--e3)
}

.ct-h {
    color: var(--coral);
    font-weight: 600
}

.compare-note {
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--e4);
    margin-top: 20px
}


/* ── CTA (original style) ── */
.cta-final {
    padding: 80px 0 100px;
    text-align: center;
    background: #fff
}

.cta-box {
    background: var(--e9);
    border-radius: var(--r-xl);
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 93, 84, .12) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(107, 139, 114, .1) 0%, transparent 60%);
    pointer-events: none
}

.cta-box h2 {
    font-family: var(--display);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    position: relative
}

.cta-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative
}



/* ══ EBOOK SHOWCASE ══ */
.showcase {
    padding: 100px 0;
    background: var(--e9);
    position: relative
}

.showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(107, 139, 114, .08), transparent 60%);
    pointer-events: none
}

.showcase .sh-label {
    color: var(--coral-l)
}

.showcase .sh-title {
    color: #fff
}

.showcase .sh-sub {
    color: rgba(255, 255, 255, .5)
}

.sc-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.sc-desc {
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    text-align: center;
    max-width: 480px;
    line-height: 1.65
}

.sc-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center
}

.sc-thumb-wrap {
    text-align: center
}

.sc-thumb {
    width: 52px;
    height: 72px;
    border-radius: 3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s
}

.sc-thumb.active {
    border-color: var(--coral)
}

.sc-thumb:hover:not(.active) {
    border-color: rgba(255, 255, 255, .3)
}

.sc-thumb-label {
    font-family: var(--mono);
    font-size: 8px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px
}

/* Small book in page */
.book-3d {
    position: relative;
    width: 200px;
    height: 280px;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin: 0 auto;
    cursor: pointer
}

.book-3d * {
    transform-style: preserve-3d
}

.hc-front,
.hc-back,
.bk-spine,
.hc-front li,
.hc-back li,
.bk-spine li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.hc-front,
.hc-back {
    transform-origin: 0% 100%;
    list-style: none
}

.hc-front {
    transform: rotateY(-34deg) translateZ(8px);
    z-index: 100;
    transition: all .8s ease, z-index .6s
}

.hc-front li:first-child {
    background-color: var(--e8);
    backface-visibility: hidden;
    user-select: none;
    transform: translateZ(2px);
    border-radius: 0 3px 3px 0;
    overflow: hidden
}

.hc-front li:last-child {
    background: var(--e1);
    transform: rotateY(180deg) translateZ(2px);
    border-radius: 3px 0 0 3px
}

.cover-design {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 20px
}

.cover-design::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-135deg, rgba(255, 255, 255, .35) 0%, transparent 100%)
}

.cover-design h1 {
    color: #fff;
    font-family: var(--display);
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, .1);
    position: relative;
    z-index: 1
}

.cover-design p {
    color: rgba(255, 255, 255, .6);
    font-size: .85em;
    position: relative;
    z-index: 1
}

.cover-open-cta {
    display: inline-block;
    font-family: var(--mono);
    font-size: 9px;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 4px;
    padding: 4px 8px;
    margin-top: 5px;
    letter-spacing: .4px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    animation: ctaPulse 2.5s ease-in-out infinite
}

@keyframes ctaPulse {

    0%,
    100% {
        opacity: .75;
        border-color: rgba(255, 255, 255, .25)
    }

    50% {
        opacity: 1;
        border-color: rgba(255, 255, 255, .6)
    }
}

.hc-front li:first-child::after,
.hc-front li:first-child::before {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--e7)
}

.hc-front li:first-child::after {
    width: 4px;
    height: 100%;
    transform: rotateY(90deg) translateZ(-2px) translateX(2px)
}

.hc-front li:first-child::before {
    width: 4px;
    height: 100%;
    transform: rotateY(90deg) translateZ(198px) translateX(2px)
}

.hc-front li:last-child::after,
.hc-front li:last-child::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 200px;
    background: var(--e7)
}

.hc-front li:last-child::after {
    transform: rotateX(90deg) rotateZ(90deg) translateZ(100px) translateX(-2px) translateY(-98px)
}

.hc-front li:last-child::before {
    box-shadow: 0 0 30px 5px rgba(30, 18, 9, .4);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(-180px) translateX(-2px) translateY(-98px)
}

.hc-back {
    transform: rotateY(-15deg) translateZ(-8px)
}

.hc-back li:first-child {
    background: var(--e1);
    transform: translateZ(2px);
    border-radius: 0 3px 3px 0
}

.hc-back li:last-child {
    background: var(--e1);
    transform: translateZ(-2px)
}

.hc-back li:first-child::after,
.hc-back li:first-child::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--e7)
}

.hc-back li:first-child::after {
    transform: rotateY(90deg) translateZ(-2px) translateX(2px)
}

.hc-back li:first-child::before {
    transform: rotateY(90deg) translateZ(198px) translateX(2px)
}

.hc-back li:last-child::after,
.hc-back li:last-child::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 200px;
    background: var(--e7)
}

.hc-back li:last-child::after {
    transform: rotateX(90deg) rotateZ(90deg) translateZ(100px) translateX(2px) translateY(-98px)
}

.hc-back li:last-child::before {
    box-shadow: 10px -1px 80px 20px rgba(30, 18, 9, .3);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(-180px) translateX(2px) translateY(-98px)
}

.bk-spine {
    transform: rotateY(60deg) translateX(-5px) translateZ(-14px);
    width: 16px;
    z-index: 0
}

.bk-spine li:first-child {
    background: var(--e8);
    transform: translateZ(2px)
}

.bk-spine li:last-child {
    background: var(--e9);
    transform: translateZ(-2px)
}

.bk-spine li:first-child::after,
.bk-spine li:first-child::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--e7)
}

.bk-spine li:first-child::after {
    transform: rotateY(90deg) translateZ(-2px) translateX(2px)
}

.bk-spine li:first-child::before {
    transform: rotateY(-90deg) translateZ(-12px)
}

.bk-spine li:last-child::after,
.bk-spine li:last-child::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 16px;
    background: var(--e7)
}

.bk-spine li:last-child::after {
    transform: rotateX(90deg) rotateZ(90deg) translateZ(8px) translateX(2px) translateY(-6px)
}

.bk-spine li:last-child::before {
    box-shadow: 5px -1px 100px 40px rgba(0, 0, 0, .2);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(-270px) translateX(2px) translateY(-6px)
}

.bk-page,
.bk-page>li {
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d
}

.bk-page {
    width: 100%;
    height: 98%;
    top: 1%;
    left: 3%;
    z-index: 10;
    list-style: none
}

.bk-page>li {
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transition-property: transform;
    transition-timing-function: ease;
    background: linear-gradient(to right, #e8e4df 0%, #fffbf6 100%);
    box-shadow: inset 0 -1px 2px rgba(50, 50, 50, .1), inset -1px 0 1px rgba(150, 150, 150, .2);
    border-radius: 0 5px 5px 0;
    overflow: hidden
}

.bk-page>li:nth-child(1) {
    transform: rotateY(-28deg);
    transition-duration: .6s
}

.bk-page>li:nth-child(2) {
    transform: rotateY(-30deg);
    transition-duration: .6s
}

.bk-page>li:nth-child(3) {
    transform: rotateY(-32deg);
    transition-duration: .4s
}

.bk-page>li:nth-child(4) {
    transform: rotateY(-34deg);
    transition-duration: .5s
}

.bk-page>li:nth-child(5) {
    transform: rotateY(-36deg);
    transition-duration: .6s
}

.pg-content {
    position: absolute;
    inset: 0;
    padding: 20px 16px;
    backface-visibility: hidden;
    font-size: 10px;
    color: var(--e7);
    line-height: 1.7;
    overflow: hidden
}

.pg-content .pg-ch {
    font-family: var(--mono);
    font-size: 8px;
    color: var(--e5);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px
}

.pg-content .pg-title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--e9);
    margin-bottom: 8px
}

.pg-content .pg-text {
    font-size: 9px;
    color: var(--e7);
    line-height: 1.7
}

.pg-content .pg-num {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-family: var(--mono);
    font-size: 7px;
    color: var(--e4)
}

/* Book open state */
.book-3d.open>.hc-front {
    transform: rotateY(-145deg) translateZ(0);
    z-index: 0
}

.book-3d.open>.bk-page li:nth-child(1) {
    transform: rotateY(-30deg);
    transition-duration: 1.5s
}

.book-3d.open>.bk-page li:nth-child(2) {
    transform: rotateY(-35deg);
    transition-duration: 1.8s
}

.book-3d.open>.bk-page li:nth-child(3) {
    transform: rotateY(-118deg);
    transition-duration: 1.6s
}

.book-3d.open>.bk-page li:nth-child(4) {
    transform: rotateY(-130deg);
    transition-duration: 1.4s
}

.book-3d.open>.bk-page li:nth-child(5) {
    transform: rotateY(-140deg);
    transition-duration: 1.2s
}

/* Click cue below small book */
.book-click-cue {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px;
    transition: opacity .3s
}

.book-cue-icon {
    font-size: 15px;
    animation: cueBounce 1.8s ease-in-out infinite
}

@keyframes cueBounce {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(4px)
    }
}

/* Standalone download button */
.sc-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .72);
    border: 1.5px solid rgba(255, 255, 255, .28);
    padding: 10px 22px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--body);
    transition: all .25s var(--ease)
}

.sc-dl-btn:hover {
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    transform: translateY(-1px)
}

.sc-dl-btn svg {
    width: 14px;
    height: 14px
}

/* Full-screen book modal */
.book-modal {
    position: fixed;
    inset: 0;
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center
}

.book-modal.open {
    opacity: 1;
    pointer-events: all
}

.book-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(30, 18, 9, .88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer
}

.book-modal-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

/* Scale the book up 2x so page text is readable */
.book-modal-scaler {
    transform: scale(2.0);
    transform-style: preserve-3d;
    transform-origin: center center
}

.book-modal-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

.book-modal-hint {
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    text-align: center
}

.book-modal-dl {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--e9);
    padding: 12px 26px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--body);
    transition: all .25s var(--ease)
}

.book-modal-dl:hover {
    background: var(--e1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 18, 9, .2)
}

.book-modal-dl svg {
    width: 16px;
    height: 16px
}

@media(max-height:720px) {
    .book-modal-scaler {
        transform: scale(1.5)
    }
}

@media(max-width:480px) {
    .book-modal-scaler {
        transform: scale(1.3)
    }
}



/* ── Responsive ── */
@media(max-width:968px) {
    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px
    }

    .sh-title {
        font-size: 36px;
        letter-spacing: -1.2px
    }

    .bento {
        grid-template-columns: 1fr
    }

    .bento-card.wide {
        grid-column: span 1
    }

    .bento-card.wide>div {
        grid-template-columns: 1fr !important
    }

    .aud-grid {
        grid-template-columns: 1fr 1fr
    }

    .price-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-links-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 28px
    }

    .nav-center {
        position: static;
        transform: none
    }

    .tpl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-layout {
        grid-template-columns: 1fr
    }

    .faq-aside {
        position: static
    }

    .ebook-mockup {
        gap: 12px
    }

    .ebook-cover {
        width: 110px;
        height: 154px;
        padding: 14px 12px
    }

    .ebook-cover-title {
        font-size: 12px
    }

    .ebook-interior {
        width: 130px;
        height: 154px;
        padding: 12px 10px
    }

    .cta-box {
        padding: 56px 32px
    }

    .cta-box h2 {
        font-size: 34px
    }
}

@media(max-width:640px) {
    .container {
        padding: 0 20px
    }

    .hero {
        padding: 36px 0 16px
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1.2px
    }

    .hero-sub {
        font-size: 15px
    }

    .demo-section {
        padding: 0 0 24px
    }

    .hero-btns,
    .cta-btns {
        flex-direction: column
    }

    .hero-btns .btn,
    .cta-btns .btn {
        text-align: center;
        justify-content: center
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px
    }

    .wizard {
        padding: 26px 22px
    }

    .wiz-row {
        grid-template-columns: 1fr
    }

    .aud-grid,
    .price-grid {
        grid-template-columns: 1fr
    }

    .how,
    .caps,
    .audience,
    .showcase,
    .pricing,
    .faq-section {
        padding: 64px 0
    }

    .cta-final {
        padding: 48px 0 64px
    }

    .cta-box {
        padding: 48px 24px;
        border-radius: var(--r-lg)
    }

    .cta-box h2 {
        font-size: 28px
    }

    .sh {
        margin-bottom: 40px
    }

    .sh-title {
        font-size: 28px;
        letter-spacing: -1px
    }

    .sh-sub {
        font-size: 15px
    }

    .footer {
        padding: 48px 0 24px
    }

    .footer-links-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px
    }

    .tpl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .compare-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .compare-table {
        min-width: 520px;
        font-size: 12px
    }

    .compare-table th,
    .compare-table td {
        padding: 8px 10px
    }

    .em-btns {
        flex-direction: column
    }

    .ebook-mockup {
        flex-direction: column;
        align-items: center
    }

    .ebook-cover,
    .ebook-interior {
        transform: none
    }

    .problem-items {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .bento-title {
        font-size: 22px
    }
}