:root {
    --num-bg: #050505;
    --num-surface: #111010;
    --num-surface-2: #181313;
    --num-text: #f6f0ea;
    --num-muted: #b9aea7;
    --num-faint: #7d7470;
    --num-line: rgba(246, 240, 234, 0.1);
    --num-line-strong: rgba(246, 240, 234, 0.18);
    --num-wine: #8f2029;
    --num-wine-dark: #62151b;
    --num-danger: #e4464d;
    --num-danger-dark: #b91c1c;
    --num-gold: #c8a26d;
    --num-radius-xl: 28px;
    --num-radius-lg: 20px;
    --num-radius-md: 16px;
    --num-space-1: 8px;
    --num-space-2: 16px;
    --num-space-3: 24px;
    --num-space-4: 32px;
}

html,
body {
    overflow-x: hidden;
}

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

.numerology-main,
.num-page,
.num-page > *,
.result-page,
.result-hero,
.result-hero > *,
.result-hero__top > *,
.result-hero__copy,
.analysis-section,
.analysis-grid,
.analysis-card,
.analysis-card > *,
.locked-section,
.locked-grid,
.locked-card,
.locked-card > *,
.paywall,
.paywall > *,
.plan-grid,
.plan-card,
.plan-card > *,
.paywall-actions,
.sticky-pay-cta {
    max-width: 100%;
    min-width: 0;
}

.numerology-main {
    width: min(100%, 100vw);
    max-width: 430px;
    padding: calc(18px + var(--safe-top)) 14px calc(110px + var(--safe-bottom));
    overflow-x: clip;
}

.numerology-main--center {
    min-height: 100vh;
    display: grid;
    align-items: center;
}

.num-page {
    display: grid;
    gap: var(--num-space-3);
    width: 100%;
}

.num-kicker {
    color: rgba(246, 240, 234, 0.68);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.num-back {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--num-line);
    border-radius: 50%;
    color: var(--num-text);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.num-back svg {
    width: 22px;
    height: 22px;
}

.num-hero,
.num-card,
.result-hero,
.consultation-card,
.insight-card,
.locked-card,
.paywall,
.success-card,
.ritual-card,
.num-trust article {
    border: 1px solid var(--num-line);
    border-radius: var(--num-radius-xl);
    background:
        linear-gradient(180deg, rgba(20, 18, 18, 0.98), rgba(8, 8, 8, 0.98)),
        radial-gradient(circle at 86% 12%, rgba(143, 32, 41, 0.18), transparent 28%);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255,255,255,0.05);
}

.num-hero,
.num-card,
.result-hero,
.consultation-card,
.paywall,
.success-card,
.ritual-card {
    padding: var(--num-space-3);
}

.num-hero {
    min-height: 560px;
    display: grid;
    align-content: end;
    gap: var(--num-space-2);
    position: relative;
    overflow: hidden;
}

.num-hero::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(246, 240, 234, 0.06);
    transform: translate(32%, -34%);
}

.num-hero::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 26%;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 32, 41, 0.82), rgba(143, 32, 41, 0.16) 58%, transparent 72%);
    filter: blur(2px);
}

.num-hero > * {
    position: relative;
    z-index: 1;
}

.num-hero h1,
.result-hero h1,
.success-card h1,
.ritual-card h1,
.num-card h2,
.num-section-head h2,
.paywall h2 {
    margin: 0;
    color: var(--num-text);
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.num-hero h1 {
    max-width: 7.6em;
    font-size: 54px;
    line-height: 0.9;
}

.num-hero p,
.result-hero p,
.success-card p,
.ritual-card p,
.paywall p {
    max-width: 34ch;
    margin: 0;
    color: var(--num-muted);
    font-size: 15px;
    line-height: 1.56;
}

.num-proof {
    display: grid;
    gap: 4px;
    padding: 13px 14px;
    border: 1px solid var(--num-line);
    border-left-color: rgba(200, 162, 109, 0.62);
    border-radius: var(--num-radius-md);
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(12px);
}

.num-proof span {
    color: var(--num-faint);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.num-proof strong {
    color: var(--num-text);
    font-size: 14px;
    line-height: 1.25;
}

.num-card {
    display: grid;
    gap: var(--num-space-2);
}

.num-card__head {
    display: grid;
    gap: 8px;
}

.num-card h2,
.num-section-head h2,
.paywall h2 {
    font-size: 38px;
    line-height: 0.96;
}

.num-form {
    display: grid;
    gap: var(--num-space-2);
}

.num-field {
    display: grid;
    gap: 8px;
}

.num-field span {
    color: rgba(246, 240, 234, 0.82);
    font-size: 13px;
    font-weight: 700;
}

.num-field input,
.num-field textarea {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid var(--num-line);
    border-radius: 16px;
    outline: none;
    color: var(--num-text);
    background: rgba(255,255,255,0.035);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.num-field textarea {
    min-height: 112px;
    padding-top: 14px;
    resize: vertical;
}

.num-field input::placeholder,
.num-field textarea::placeholder {
    color: rgba(246, 240, 234, 0.34);
}

.num-field input:focus,
.num-field textarea:focus {
    border-color: rgba(200, 162, 109, 0.46);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 4px rgba(200, 162, 109, 0.08);
}

.num-field small,
.form-errors {
    color: #ff8d8d;
    font-size: 12px;
    line-height: 1.35;
}

.num-field.has-error input,
.num-field.has-error textarea {
    border-color: rgba(255, 120, 120, 0.52);
}

.num-question-examples {
    display: grid;
    gap: 10px;
    margin-top: -4px;
    padding: 13px;
    border: 1px solid rgba(200, 162, 109, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(200, 162, 109, 0.07), rgba(143, 32, 41, 0.055)),
        rgba(255, 255, 255, 0.025);
}

.num-question-examples > span {
    color: rgba(200, 162, 109, 0.78);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.num-question-examples__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.num-question-examples__list button {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    max-width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(246, 240, 234, 0.1);
    border-radius: 999px;
    color: rgba(246, 240, 234, 0.84);
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
    -webkit-tap-highlight-color: transparent;
}

.num-question-examples__list button:active {
    border-color: rgba(200, 162, 109, 0.42);
    background: rgba(200, 162, 109, 0.1);
    color: var(--num-text);
}

.form-errors:empty {
    display: none;
}

.num-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    gap: 10px;
    margin: 0;
    min-height: 58px;
    padding: 14px 20px;
    border-radius: 16px;
    color: var(--num-text);
    border: 1px solid rgba(200, 162, 109, 0.18);
    background: linear-gradient(180deg, #a62b34, #761820);
    box-shadow: 0 18px 36px rgba(118, 24, 32, 0.34), inset 0 1px 0 rgba(255,255,255,0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.num-btn svg {
    width: 18px;
    height: 18px;
}

.num-btn--ghost {
    border-color: var(--num-line);
    background: rgba(255,255,255,0.035);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.num-btn--danger {
    min-height: 62px;
    border-color: rgba(228, 70, 77, 0.46);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), transparent 42%),
        linear-gradient(180deg, #d33b44, #7d151d);
    box-shadow: 0 22px 48px rgba(185, 28, 28, 0.5), 0 0 24px rgba(228, 70, 77, 0.16), inset 0 1px 0 rgba(255,255,255,0.2);
}

.num-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--num-space-1);
}

.num-trust article {
    padding: var(--num-space-2);
    border-radius: var(--num-radius-lg);
}

.num-trust span,
.locked-card span {
    color: var(--num-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1;
}

.num-trust strong,
.locked-card h3,
.paywall-columns strong,
.plan-card span {
    display: block;
    color: var(--num-text);
    font-size: 15px;
    line-height: 1.25;
}

.num-trust p,
.locked-card p,
.paywall-columns span,
.plan-card p {
    margin: 8px 0 0;
    color: var(--num-muted);
    font-size: 13px;
    line-height: 1.48;
}

.ritual-card,
.success-card {
    min-height: 560px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: var(--num-space-2);
    overflow: hidden;
}

.ritual-orbit {
    position: relative;
    width: 180px;
    height: 180px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(246, 240, 234, 0.12);
    background:
        radial-gradient(circle, rgba(143,32,41,0.22), transparent 58%),
        linear-gradient(transparent 49.5%, rgba(246,240,234,0.08) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(246,240,234,0.08) 50%, transparent 50.5%);
    animation: rotate-slow 9s linear infinite;
}

.ritual-orbit span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--num-gold);
    box-shadow: 0 0 34px rgba(200, 162, 109, 0.72);
}

.ritual-media {
    width: min(100%, 240px);
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(246, 240, 234, 0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34), 0 0 42px rgba(143, 32, 41, 0.26);
}

.ritual-card h1,
.success-card h1 {
    font-size: 48px;
    line-height: 0.92;
}

.ritual-progress {
    width: 100%;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
}

.ritual-progress span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--num-wine), var(--num-gold));
    transition: width 520ms ease;
}

.ritual-progress span.has-error {
    background: linear-gradient(90deg, #7f1d1d, #ff8d8d);
}

.ritual-steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.ritual-steps span {
    padding: 8px 4px;
    border: 1px solid var(--num-line);
    border-radius: 999px;
    color: var(--num-faint);
    font-size: 10px;
    text-transform: uppercase;
}

.ritual-steps span.is-active {
    color: var(--num-text);
    border-color: rgba(200, 162, 109, 0.36);
    background: rgba(200, 162, 109, 0.08);
}

.result-hero {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding-bottom: 20px;
}

.result-hero h1 {
    font-size: 36px;
    line-height: 1;
}

.result-page {
    padding-bottom: 112px;
}

.result-hero--conversion {
    position: relative;
    gap: 20px;
    min-height: 520px;
    align-content: space-between;
    overflow: hidden;
    border-color: rgba(228, 70, 77, 0.24);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(23, 17, 17, 0.99), rgba(7, 7, 7, 0.99)),
        radial-gradient(circle at 82% 8%, rgba(228, 70, 77, 0.24), transparent 30%),
        radial-gradient(circle at 12% 72%, rgba(200, 162, 109, 0.12), transparent 36%);
}

.result-hero--conversion::after {
    content: "";
    position: absolute;
    right: -34px;
    top: 112px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(228, 70, 77, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 72px rgba(228, 70, 77, 0.12);
}

.result-hero__top,
.num-section-head--split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.result-hero__top,
.result-hero__copy,
.risk-strip,
.result-hero__cta {
    position: relative;
    z-index: 1;
}

.result-badge,
.section-percent {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(228, 70, 77, 0.24);
    border-radius: 999px;
    color: #ffd6d8;
    background: rgba(228, 70, 77, 0.1);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
}

.result-hero__copy {
    display: grid;
    gap: 12px;
}

.result-hero--conversion h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 0.94;
    overflow-wrap: anywhere;
}

.result-hero--conversion p {
    max-width: 29ch;
    font-size: 16px;
    line-height: 1.5;
}

.hero-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(100%, 320px);
    padding: 12px 14px;
    border: 1px solid rgba(228, 70, 77, 0.28);
    border-radius: 16px;
    background: rgba(185, 28, 28, 0.11);
}

.hero-match span {
    color: rgba(246, 240, 234, 0.7);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    min-width: 0;
}

.hero-match strong {
    color: #ffd6d8;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    flex: 0 0 auto;
}

.danger {
    color: #ffb4b8;
    font-weight: 900;
    font-size: inherit;
    line-height: inherit;
}

.result-signal-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.result-signal-row article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    min-height: 58px;
    padding: 12px;
    border: 1px solid rgba(246, 240, 234, 0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.result-signal-row span {
    color: rgba(246, 240, 234, 0.46);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-signal-row strong {
    color: var(--num-text);
    font-size: 17px;
    line-height: 1;
    min-width: 0;
    text-align: right;
}

.risk-strip {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(228, 70, 77, 0.24);
    border-left-color: rgba(228, 70, 77, 0.72);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(228, 70, 77, 0.09), rgba(228, 70, 77, 0.035)),
        rgba(255,255,255,0.025);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.risk-strip span,
.paywall-value span,
.plan-card em {
    color: rgba(246, 240, 234, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.risk-strip strong {
    color: var(--num-text);
    font-size: 15px;
    line-height: 1.48;
}

.risk-strip em {
    color: #ffb4b8;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.35;
}

.analysis-section {
    display: grid;
    gap: 16px;
}

.analysis-grid {
    display: grid;
    gap: 12px;
}

.analysis-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(246, 240, 234, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(18, 17, 17, 0.97), rgba(9, 9, 9, 0.99)),
        radial-gradient(circle at 92% 0%, rgba(255,255,255,0.04), transparent 34%);
    box-shadow: 0 16px 34px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.04);
}

.analysis-card--lead {
    border-color: rgba(200, 162, 109, 0.2);
    background:
        linear-gradient(180deg, rgba(22, 18, 15, 0.98), rgba(10, 10, 10, 0.98)),
        linear-gradient(90deg, rgba(200, 162, 109, 0.08), transparent);
}

.analysis-card--risk {
    border-color: rgba(185, 28, 28, 0.42);
    background:
        linear-gradient(180deg, rgba(24, 12, 13, 0.98), rgba(9, 9, 9, 0.99)),
        radial-gradient(circle at 94% 0%, rgba(185, 28, 28, 0.2), transparent 34%);
}

.analysis-card--action {
    border-color: rgba(200, 162, 109, 0.24);
}

.analysis-card span {
    color: var(--num-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.analysis-card h3 {
    margin: 0;
    color: var(--num-text);
    font-size: 18px;
    line-height: 1.24;
    overflow-wrap: anywhere;
}

.analysis-card p {
    margin: 0;
    color: var(--num-muted);
    font-size: 15px;
    line-height: 1.58;
}

.analysis-card p strong,
.analysis-card p b,
.analysis-card p .danger,
.consultation-text p strong,
.consultation-text p b,
.consultation-text p .danger,
.risk-strip strong,
.risk-strip em,
.paywall__head p strong,
.paywall-warning strong,
.locked-card--clickable p b {
    font-size: inherit;
    line-height: inherit;
}

.analysis-punch {
    padding-left: 12px;
    border-left: 2px solid rgba(185, 28, 28, 0.72);
    color: var(--num-text) !important;
    font-weight: 800;
}

.analysis-hit {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-top: 2px;
    padding: 7px 10px;
    border: 1px solid rgba(200, 162, 109, 0.2);
    border-radius: 999px;
    color: var(--num-text);
    background: rgba(200, 162, 109, 0.07);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.analysis-hit--danger {
    border-color: rgba(185, 28, 28, 0.36);
    color: #ffd6d8;
    background: rgba(185, 28, 28, 0.12);
}

.consultation-text--compact {
    gap: 10px;
    font-size: 14px;
    line-height: 1.58;
}

.consultation-card {
    display: grid;
    gap: 18px;
    border-color: rgba(200, 162, 109, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(18, 16, 15, 0.99), rgba(8, 8, 8, 0.99)),
        linear-gradient(90deg, rgba(200, 162, 109, 0.08), transparent 36%);
}

.consultation-card__head {
    display: grid;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(246, 240, 234, 0.08);
}

.consultation-card h2 {
    margin: 0;
    color: var(--num-text);
    font-family: inherit;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
}

.consultation-text {
    display: grid;
    gap: 16px;
    color: var(--num-muted);
    font-size: 16px;
    line-height: 1.7;
}

.consultation-text p,
.consultation-text ul {
    margin: 0;
}

.consultation-text strong {
    color: var(--num-text);
    font-weight: 800;
}

.consultation-text em {
    color: rgba(246, 240, 234, 0.88);
    font-style: italic;
}

.consultation-text ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.consultation-text li::marker {
    color: var(--num-gold);
}

.insight-grid,
.locked-grid,
.plan-grid,
.paywall-columns,
.paywall-actions,
.success-actions {
    display: grid;
    gap: var(--num-space-1);
}

.insight-card,
.locked-card {
    padding: var(--num-space-2);
    border-radius: var(--num-radius-lg);
}

.insight-card__label {
    color: var(--num-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-card h2 {
    margin: 10px 0 0;
    color: var(--num-text);
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 0.98;
}

.insight-card p {
    margin: 10px 0 0;
    color: var(--num-muted);
    font-size: 14px;
    line-height: 1.58;
}

.insight-card--risk {
    border-color: rgba(255, 126, 126, 0.16);
}

.insight-card--action {
    border-color: rgba(200, 162, 109, 0.18);
}

.locked-section {
    display: grid;
    gap: 16px;
}

.num-section-head {
    display: grid;
    gap: 6px;
    padding: 0 2px;
}

.num-section-head.num-section-head--split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.locked-section .num-section-head h2 {
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.14;
}

.locked-grid--conversion {
    gap: 12px;
}

.locked-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
    overflow: hidden;
    min-height: 108px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.locked-card--clickable {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: start;
    gap: 16px 12px;
    padding: 16px;
    border-color: rgba(246, 240, 234, 0.12);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(18, 17, 17, 0.98), rgba(8, 8, 8, 0.98)),
        radial-gradient(circle at 88% 0%, rgba(185, 28, 28, 0.22), transparent 36%);
    box-shadow: 0 18px 36px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, filter 180ms ease;
    cursor: pointer;
}

.locked-card--clickable::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 54%;
    background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.8));
    pointer-events: none;
}

.locked-card span {
    grid-row: 1 / span 3;
    width: 34px;
    font-size: 24px;
}

.locked-card--clickable span {
    grid-row: auto;
    width: auto;
    color: rgba(200, 162, 109, 0.86);
    font-size: 26px;
}

.locked-card h3 {
    padding-right: 72px;
}

.locked-card--clickable h3 {
    padding-right: 0;
    font-size: 18px;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.locked-card p {
    margin-top: 0;
}

.locked-card--clickable p {
    max-width: 100%;
    margin-top: 8px;
    color: rgba(246, 240, 234, 0.68);
}

.locked-card--clickable b {
    color: #ffb4b8;
    font-weight: 900;
}

.locked-card:not(.is-unlocked)::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
    background: linear-gradient(180deg, rgba(5,5,5,0.2), rgba(5,5,5,0.72));
    pointer-events: none;
}

.locked-card--clickable:not(.is-unlocked)::after {
    backdrop-filter: blur(1.8px);
    background:
        linear-gradient(90deg, rgba(5,5,5,0.04), rgba(5,5,5,0.42)),
        linear-gradient(180deg, transparent 54%, rgba(5,5,5,0.72));
}

.locked-card > * {
    position: relative;
    z-index: 1;
}

.locked-card strong {
    position: static;
    align-self: start;
    justify-self: start;
    display: inline-flex;
    margin-top: 0;
    padding: 6px 10px;
    border: 1px solid rgba(200, 162, 109, 0.24);
    border-radius: 999px;
    color: var(--num-gold);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.locked-card--clickable strong {
    position: static;
    justify-self: start;
    align-self: start;
    border-color: rgba(228, 70, 77, 0.38);
    color: #ffd6d8;
    background: rgba(185, 28, 28, 0.18);
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
}

.locked-card__action {
    grid-column: 2 / -1;
    display: grid;
    gap: 6px;
    justify-items: start;
}

.locked-card__action em {
    color: rgba(246, 240, 234, 0.5);
    font-size: 11px;
    font-style: normal;
    line-height: 1.35;
}

.locked-card__copy,
.locked-card__lock {
    position: relative;
    z-index: 1;
}

.locked-card__copy {
    min-width: 0;
}

.locked-card__lock {
    width: 34px;
    min-width: 34px;
    justify-self: end;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(200, 162, 109, 0.18);
    border-radius: 50%;
    color: var(--num-gold);
    background: rgba(255,255,255,0.035);
}

.locked-card__lock svg {
    width: 17px;
    height: 17px;
}

.paywall {
    display: grid;
    gap: 24px;
    border-color: rgba(246, 240, 234, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(14, 13, 13, 0.98), rgba(7, 7, 7, 0.98));
}

.paywall--conversion {
    gap: 24px;
    padding: 24px;
    border-color: rgba(228, 70, 77, 0.26);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(18, 13, 14, 0.99), rgba(7, 7, 7, 0.99)),
        radial-gradient(circle at 84% 12%, rgba(185, 28, 28, 0.24), transparent 34%);
}

.paywall__head {
    display: grid;
    gap: 16px;
}

.paywall h2 {
    font-family: inherit;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.14;
}

.paywall--conversion h2 {
    max-width: 10em;
    font-size: 36px;
    line-height: 0.96;
    overflow-wrap: anywhere;
}

.paywall__head p strong {
    color: #ffd6d8;
    font-weight: 900;
}

.paywall-value {
    display: grid;
    gap: 12px;
}

.paywall-value article {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(246, 240, 234, 0.1);
    border-left-color: rgba(185, 28, 28, 0.52);
    border-radius: 16px;
    background: rgba(255,255,255,0.032);
}

.paywall-value strong {
    color: var(--num-text);
    font-size: 15px;
    line-height: 1.38;
}

.paywall-warning {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(185, 28, 28, 0.28);
    border-radius: 18px;
    background: rgba(185, 28, 28, 0.1);
}

.paywall-warning span {
    color: #ffb4b8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.paywall-warning strong {
    color: var(--num-text);
    font-size: 14px;
    line-height: 1.42;
}

.paywall-columns article,
.plan-card {
    padding: 16px;
    border: 1px solid var(--num-line);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
}

.paywall-columns article {
    border-color: rgba(246, 240, 234, 0.08);
    background: transparent;
}

.plan-card {
    display: grid;
    gap: 12px;
    min-height: 144px;
    align-content: start;
    transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.plan-grid--conversion {
    gap: 12px;
}

.plan-card--primary {
    border-color: rgba(200, 162, 109, 0.34);
    background:
        linear-gradient(180deg, rgba(35, 25, 19, 0.86), rgba(13, 12, 12, 0.98)),
        radial-gradient(circle at 90% 8%, rgba(200, 162, 109, 0.16), transparent 34%);
}

.plan-card strong {
    color: var(--num-text);
    font-family: inherit;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    overflow-wrap: anywhere;
}

.plan-card p {
    font-size: 13px;
    line-height: 1.5;
}

.paywall-actions {
    gap: 16px;
}

.paywall-actions .num-btn {
    width: 100%;
}

.sticky-pay-cta {
    position: fixed;
    left: max(14px, env(safe-area-inset-left, 0px));
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: calc(12px + var(--safe-bottom));
    z-index: 30;
    width: auto;
    max-width: 402px;
    margin: 0 auto;
    transform: translateY(calc(100% + 28px));
    opacity: 0;
    pointer-events: none;
    padding: 8px;
    border: 1px solid rgba(246, 240, 234, 0.1);
    border-radius: 22px;
    background: rgba(6, 6, 6, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.48);
    transition: opacity 220ms ease, transform 220ms ease;
}

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

.sticky-pay-cta .num-btn {
    min-height: 54px;
    border-radius: 15px;
}

.analysis-card--echo {
    border-color: rgba(200, 162, 109, 0.18);
    background:
        linear-gradient(180deg, rgba(19, 17, 16, 0.98), rgba(8, 8, 8, 0.99)),
        radial-gradient(circle at 90% 0%, rgba(200, 162, 109, 0.08), transparent 36%);
}

.analysis-echo {
    color: var(--num-text) !important;
    font-size: 17px !important;
    line-height: 1.52 !important;
    font-weight: 700;
}

.locked-card--clickable {
    appearance: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.locked-card__tease {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    padding-bottom: 18px;
}

.locked-card__tease::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42px;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0), rgba(7, 7, 7, 0.9) 72%);
    pointer-events: none;
}

.locked-card__tease p {
    max-height: 4.5em;
    filter: blur(0.5px);
}

.result-next {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(211, 124, 75, 0.2);
    border-radius: 26px;
    background:
        radial-gradient(circle at 84% 16%, rgba(173, 37, 37, 0.18), transparent 34%),
        radial-gradient(circle at 18% 120%, rgba(134, 72, 33, 0.16), transparent 44%),
        linear-gradient(180deg, rgba(22, 16, 16, 0.98), rgba(8, 7, 7, 0.99));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.05), inset 0 0 42px rgba(138, 24, 24, 0.08);
}

.result-next::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 78% 14%, rgba(230, 74, 74, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
    pointer-events: none;
}

.result-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)),
        radial-gradient(circle at 100% 50%, rgba(185, 28, 28, 0.14), transparent 38%);
    pointer-events: none;
}

.result-next__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.result-next h2 {
    margin: 0;
    max-width: 10ch;
    color: var(--num-text);
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.result-next p {
    max-width: 36ch;
    margin: 0;
    color: var(--num-muted);
    font-size: 15px;
    line-height: 1.68;
}

.result-next__actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.result-next__actions .num-btn--danger {
    min-height: 64px;
    border-color: rgba(255, 214, 180, 0.12);
    background:
        linear-gradient(180deg, rgba(172, 38, 45, 0.96), rgba(103, 16, 21, 0.98)),
        radial-gradient(circle at 50% 0%, rgba(255, 190, 150, 0.16), transparent 46%);
    box-shadow: 0 18px 36px rgba(94, 7, 12, 0.36), inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -10px 18px rgba(40, 0, 0, 0.22);
}

.result-next__actions .num-btn--danger svg {
    transition: transform 180ms ease;
}

.result-next__secondary {
    min-height: 54px;
    background: rgba(255,255,255,0.035);
    border-color: rgba(211, 124, 75, 0.14);
}

.soft-paywall-open {
    overflow: hidden;
}

.soft-paywall-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    align-items: end;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.soft-paywall-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.soft-paywall-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(12px);
}

.soft-paywall-modal__dialog {
    position: relative;
    display: grid;
    gap: 18px;
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 24px;
    border: 1px solid rgba(200, 162, 109, 0.16);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(18, 14, 14, 0.99), rgba(7, 7, 7, 0.99)),
        radial-gradient(circle at 82% 8%, rgba(185, 28, 28, 0.18), transparent 30%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(22px);
    transition: transform 260ms ease;
}

.soft-paywall-modal.is-open .soft-paywall-modal__dialog {
    transform: translateY(0);
}

.soft-paywall-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(246, 240, 234, 0.1);
    border-radius: 50%;
    color: var(--num-text);
    background: rgba(255,255,255,0.03);
}

.soft-paywall-modal__close svg {
    width: 18px;
    height: 18px;
}

.soft-paywall-modal__dialog h2 {
    margin: 0;
    max-width: 10ch;
    color: var(--num-text);
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.soft-paywall-modal__dialog > p {
    margin: 0;
    color: var(--num-muted);
    font-size: 15px;
    line-height: 1.58;
}

.soft-paywall-offers {
    display: grid;
    gap: 12px;
}

.soft-paywall-offer {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(246, 240, 234, 0.1);
    border-radius: 18px;
    background: rgba(255,255,255,0.028);
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.soft-paywall-offer--primary {
    border-color: rgba(228, 70, 77, 0.32);
    background:
        linear-gradient(180deg, rgba(34, 18, 19, 0.92), rgba(10, 9, 9, 0.98)),
        radial-gradient(circle at 88% 6%, rgba(228, 70, 77, 0.16), transparent 30%);
}

.soft-paywall-offer span {
    color: rgba(246, 240, 234, 0.58);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.soft-paywall-offer strong {
    color: var(--num-text);
    font-size: 18px;
    line-height: 1.28;
}

.soft-paywall-offer p,
.soft-paywall-offer ul {
    margin: 0;
    color: var(--num-muted);
    font-size: 14px;
    line-height: 1.52;
}

.soft-paywall-offer ul {
    display: grid;
    gap: 6px;
    padding-left: 18px;
}

.soft-paywall-offer li::marker {
    color: var(--num-gold);
}

.success-mark {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(200, 162, 109, 0.34);
    border-radius: 50%;
    color: var(--num-gold);
    background: radial-gradient(circle, rgba(200,162,109,0.14), rgba(255,255,255,0.02));
    box-shadow: 0 0 48px rgba(200, 162, 109, 0.16);
}

.success-mark svg {
    width: 42px;
    height: 42px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.is-visible {
    animation: num-fade-up 620ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes num-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (hover: hover) and (pointer: fine) {
    .num-btn:hover,
    .plan-card:hover,
    .soft-paywall-offer:hover,
    .locked-card--clickable:hover,
    .num-back:hover {
        transform: translateY(-2px);
    }

    .num-btn--danger:hover {
        filter: brightness(1.08);
        box-shadow: 0 24px 54px rgba(185, 28, 28, 0.58), 0 0 30px rgba(228, 70, 77, 0.2), inset 0 1px 0 rgba(255,255,255,0.22);
    }

    .result-next__actions .num-btn--danger:hover svg {
        transform: translateX(4px);
    }

    .plan-card:hover,
    .soft-paywall-offer:hover,
    .locked-card--clickable:hover,
    .result-next__secondary:hover {
        border-color: var(--num-line-strong);
        filter: brightness(1.04);
    }

    .locked-card--clickable:hover {
        box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(228, 70, 77, 0.08), inset 0 1px 0 rgba(255,255,255,0.06);
    }

    .locked-card--clickable:hover .locked-card__action strong {
        border-color: rgba(255, 150, 156, 0.42);
        background: rgba(185, 28, 28, 0.24);
    }
}

@media (min-width: 640px) {
    .numerology-main {
        max-width: var(--miniapp-max-width, 430px);
        margin: 0 auto;
    }

    .insight-grid,
    .locked-grid,
    .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .paywall-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .analysis-grid,
    .paywall-value {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .analysis-card--lead {
        grid-column: 1 / -1;
    }

    .analysis-card--echo,
    .result-next {
        grid-column: 1 / -1;
    }
}

@media (max-width: 390px) {
    .numerology-main {
        padding-left: 12px;
        padding-right: 12px;
    }

    .num-hero,
    .num-card,
    .result-hero,
    .consultation-card,
    .paywall,
    .success-card,
    .ritual-card {
        padding: var(--num-space-2);
    }

    .num-hero {
        min-height: 520px;
    }

    .num-hero h1,
    .ritual-card h1,
    .success-card h1 {
        font-size: 44px;
    }

    .result-hero h1 {
        font-size: 36px;
    }

    .result-hero--conversion h1 {
        font-size: 38px;
    }

    .result-hero--conversion {
        min-height: 500px;
    }

    .section-percent {
        display: none;
    }

    .result-next,
    .paywall--conversion {
        padding: 20px;
    }

    .soft-paywall-modal {
        padding: 10px;
    }

    .soft-paywall-modal__dialog {
        padding: 22px 18px 18px;
    }

    .soft-paywall-modal__dialog h2 {
        font-size: 34px;
    }
}

@media (max-width: 340px) {
    .num-trust {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (min-width: 431px) {
    .numerology-main {
        width: 100% !important;
        max-width: var(--miniapp-max-width, 430px) !important;
        margin: 0 auto !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .insight-grid,
    .locked-grid,
    .plan-grid,
    .paywall-columns,
    .analysis-grid,
    .paywall-value,
    .num-trust {
        grid-template-columns: 1fr !important;
    }

    .analysis-card--lead,
    .analysis-card--echo,
    .result-next {
        grid-column: auto !important;
    }
}

/* Mobile-native numerology */
body[data-page="numerology-form"] .num-page,
body[data-page="numerology-result"] .num-page,
body[data-page="numerology-full"] .num-page,
body[data-page="numerology-success"] .num-page,
body[data-page="numerology"] .num-page {
    display: grid;
    gap: 18px;
}

body[data-page="numerology-form"] .num-hero,
body[data-page="numerology-result"] .result-hero,
body[data-page="numerology-full"] .result-hero,
body[data-page="numerology-form"] .num-card,
body[data-page="numerology-result"] .analysis-section,
body[data-page="numerology-result"] .locked-section,
body[data-page="numerology-result"] .result-next,
body[data-page="numerology-full"] .analysis-section,
body[data-page="numerology-full"] .locked-section,
body[data-page="numerology-full"] .paywall,
body[data-page="numerology-form"] .num-trust article {
    border-radius: 28px !important;
}

body[data-page="numerology-form"] .num-hero,
body[data-page="numerology-result"] .result-hero,
body[data-page="numerology-full"] .result-hero {
    min-height: 0 !important;
    padding: 18px !important;
}

body[data-page="numerology-form"] .num-hero h1,
body[data-page="numerology-result"] .result-hero h1,
body[data-page="numerology-full"] .result-hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 0.98 !important;
}

body[data-page="numerology-form"] .num-hero p,
body[data-page="numerology-result"] .result-hero p,
body[data-page="numerology-full"] .result-hero p {
    font-size: 15px !important;
    line-height: 1.58 !important;
}

body[data-page="numerology-form"] .num-card,
body[data-page="numerology-result"] .analysis-section,
body[data-page="numerology-result"] .locked-section,
body[data-page="numerology-result"] .result-next,
body[data-page="numerology-full"] .analysis-section,
body[data-page="numerology-full"] .locked-section,
body[data-page="numerology-full"] .paywall {
    padding: 18px !important;
}

body[data-page="numerology-form"] .num-form,
body[data-page="numerology-result"] .analysis-grid,
body[data-page="numerology-result"] .locked-grid,
body[data-page="numerology-result"] .soft-paywall-offers,
body[data-page="numerology-full"] .analysis-grid,
body[data-page="numerology-full"] .locked-grid,
body[data-page="numerology-form"] .num-trust {
    grid-template-columns: 1fr !important;
}

body[data-page="numerology-result"] .result-signal-row,
body[data-page="numerology-full"] .result-signal-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
}

body[data-page="numerology-result"] .hero-match,
body[data-page="numerology-full"] .hero-match {
    width: 100%;
}

body[data-page="numerology-result"] .analysis-card,
body[data-page="numerology-full"] .analysis-card,
body[data-page="numerology-result"] .locked-card,
body[data-page="numerology-full"] .locked-card {
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 22px !important;
}

body[data-page="numerology-result"] .result-next__actions,
body[data-page="numerology-full"] .paywall-actions {
    display: grid;
    gap: 10px;
}

/* ── VERDICT RESULT PAGE — match home-ref-main width exactly ── */
body[data-page="numerology-result"] .app-main.numerology-main {
    width: 100% !important;
    max-width: var(--miniapp-max-width, 430px) !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove old sections not used in the new verdict design */
body[data-page="numerology-result"] .analysis-section,
body[data-page="numerology-result"] .locked-section,
body[data-page="numerology-result"] .result-next {
    display: none !important;
}
