:root {
    --bg: #060606;
    --panel: #101010;
    --panel-soft: #141414;
    --panel-glow: #1b1515;
    --wine: #651519;
    --wine-strong: #8d1d24;
    --gold: #c9a16c;
    --gold-soft: rgba(201, 161, 108, 0.24);
    --text: #f3efe8;
    --text-soft: #bcb4af;
    --line: rgba(243, 239, 232, 0.1);
    --line-strong: rgba(243, 239, 232, 0.2);
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.3);
    --inset-glow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --dock-height: 90px;
    --app-width: 100vw;
    --app-height: 100vh;
    --app-stable-height: 100vh;
    --miniapp-max-width: 430px;
    --viewport-inline-gap: clamp(10px, 3.6vw, 16px);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    min-height: var(--app-stable-height);
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: var(--app-stable-height);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 16% 12%, rgba(141, 29, 36, 0.1), transparent 18%),
        radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.02), transparent 18%),
        linear-gradient(180deg, #090909 0%, #050505 100%);
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

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

svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.app-shell {
    position: relative;
    min-height: var(--app-stable-height);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
}

.app-shell__backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.app-shell__backdrop::before,
.app-shell__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
}

.app-shell__backdrop::before {
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.36) 0 0.8px, transparent 0.8px),
        radial-gradient(circle at 70% 36%, rgba(255, 255, 255, 0.2) 0 0.8px, transparent 0.8px);
    background-size: 180px 180px;
}

.app-shell__backdrop::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 98%);
}

.app-main {
    position: relative;
    z-index: 1;
    width: min(100%, var(--miniapp-max-width));
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: calc(18px + var(--safe-top)) max(14px, var(--viewport-inline-gap)) calc(var(--dock-height) + 36px + var(--safe-bottom));
}

.app-main > * {
    min-width: 0;
}

.home-main {
    padding-top: calc(12px + var(--safe-top));
}

.flash-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.flash-message {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
}

.ui-label,
.section-kicker,
.soon-modal__eyebrow,
.placeholder-page .section-label,
.cta-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(243, 239, 232, 0.72);
}

.section-head {
    margin-bottom: 14px;
}

.section-head--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.section-link {
    color: rgba(243, 239, 232, 0.54);
    font-size: 12px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    color: var(--text);
    border: 1px solid rgba(201, 161, 108, 0.18);
    background: linear-gradient(180deg, rgba(141, 29, 36, 0.95), rgba(101, 21, 25, 0.96));
    box-shadow: 0 14px 28px rgba(101, 21, 25, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn--ghost {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--inset-glow);
}

.button__ripple {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 650ms ease-out forwards;
    pointer-events: none;
}

.lux-home {
    display: grid;
    gap: 20px;
}

.hero-screen,
.home-section,
.vision-panel,
.cta-panel,
.placeholder-page .process-section {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 30%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-screen::after,
.home-section::after,
.vision-panel::after,
.cta-panel::after,
.placeholder-page .process-section::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.hero-screen {
    min-height: calc(var(--app-stable-height) - var(--dock-height) - 34px - var(--safe-top) - var(--safe-bottom));
    padding: 18px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 14px;
}

.hero-screen__brand {
    display: grid;
    gap: 10px;
}

.hero-screen__top {
    display: flex;
    align-items: center;
}

.hero-screen__title,
.vision-panel__title,
.cta-panel__title,
.placeholder-page .section-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.hero-screen__title {
    font-size: clamp(52px, 15vw, 96px);
    line-height: 0.9;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.06);
}

.hero-screen__subtitle {
    max-width: 320px;
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.38;
}

.hero-screen__art {
    position: relative;
    min-height: 300px;
    margin: 0 -18px;
}

.hero-screen__portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.85) contrast(1.04);
}

.hero-screen__rings,
.hero-screen__glow {
    position: absolute;
    pointer-events: none;
}

.hero-screen__rings {
    inset: 0;
    background:
        radial-gradient(circle at 74% 56%, rgba(255,255,255,0.05) 0 1px, transparent 1px),
        radial-gradient(circle at 76% 38%, transparent 0 23%, rgba(201,161,108,0.16) 23.2%, transparent 23.8%),
        radial-gradient(circle at 76% 38%, transparent 0 41%, rgba(255,255,255,0.08) 41.2%, transparent 41.8%),
        linear-gradient(transparent 49.5%, rgba(255,255,255,0.06) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%);
    background-size: 180px 180px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    mix-blend-mode: screen;
    opacity: 0.28;
}

.hero-screen__glow {
    right: 16%;
    bottom: 24%;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 36, 47, 0.88), rgba(203, 36, 47, 0.18) 48%, transparent 72%);
    filter: blur(4px);
}

.hero-screen__vertical {
    position: absolute;
    right: 14px;
    top: 24%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(243, 239, 232, 0.42);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-screen__actions {
    display: grid;
    gap: 10px;
}

.home-section {
    padding: 16px;
}

.status-grid,
.future-grid,
.story-cards,
.signal-metrics {
    display: grid;
    gap: 12px;
}

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

.status-card,
.future-grid-card,
.story-card,
.signal-metrics__item {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(10, 10, 10, 0.98)),
        linear-gradient(135deg, rgba(255,255,255,0.015), transparent 30%);
    box-shadow: var(--shadow-soft), var(--inset-glow);
}

.status-card {
    min-height: 118px;
    padding: 18px;
    overflow: hidden;
}

.status-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 18%, rgba(201,161,108,0.08), transparent 24%);
    pointer-events: none;
}

.status-card__label {
    display: block;
    margin-bottom: 16px;
    color: rgba(243, 239, 232, 0.58);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-card__value {
    display: block;
    max-width: 80%;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1;
}

.status-card__icon {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 50%;
    border: 1px solid rgba(201, 161, 108, 0.18);
    background: radial-gradient(circle, rgba(201,161,108,0.12), rgba(255,255,255,0.02));
    color: var(--gold);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.active-branch {
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(10, 10, 10, 0.98)),
        radial-gradient(circle at 82% 40%, rgba(141, 29, 36, 0.12), transparent 28%);
    box-shadow: var(--shadow-soft), var(--inset-glow);
}

.active-branch__number,
.future-grid-card__number,
.story-card__number {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    line-height: 1;
    color: var(--gold);
}

.active-branch__number {
    margin-bottom: 8px;
}

.active-branch__title,
.future-grid-card strong,
.story-card h3,
.timeline-step h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.active-branch__text,
.future-grid-card p,
.story-card p,
.timeline-step p,
.vision-panel__text,
.cta-panel__text,
.cta-panel__note,
.placeholder-page .hero-body {
    color: var(--text-soft);
    line-height: 1.62;
}

.active-branch__copy .btn {
    min-width: 100%;
}

.active-branch__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 18px;
}

.active-branch__tags span {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
    color: rgba(243, 239, 232, 0.78);
    font-size: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.active-branch__visual {
    position: relative;
    min-height: 240px;
    border-radius: 16px;
    overflow: hidden;
}

.active-branch__planet {
    position: absolute;
    right: -8%;
    top: 0;
    width: 78%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.96;
}

.active-branch__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 50%, rgba(255,255,255,0.06) 0 1px, transparent 1px),
        linear-gradient(transparent 49.5%, rgba(255,255,255,0.06) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%);
    background-size: 160px 160px, 100% 100%, 100% 100%;
    opacity: 0.18;
}

.future-grid-card {
    min-height: 212px;
    padding: 18px 16px 16px;
    display: grid;
    align-content: start;
    gap: 10px;
    text-align: left;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    overflow: hidden;
}

.future-grid-card:active {
    transform: scale(0.985);
}

.future-grid-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 14%, rgba(201,161,108,0.08), transparent 24%);
    pointer-events: none;
}

.future-grid-card__icon {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid rgba(201, 161, 108, 0.18);
    background: radial-gradient(circle, rgba(201,161,108,0.12), rgba(255,255,255,0.02));
    color: var(--gold);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.future-grid-card p {
    margin: 0;
    font-size: 13px;
}

.future-grid-card__state {
    margin-top: auto;
    color: rgba(243, 239, 232, 0.62);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.future-grid-card strong {
    max-width: 80%;
}

.story-card {
    min-height: 208px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 116px;
    overflow: hidden;
    box-shadow: var(--shadow-soft), var(--inset-glow);
}

.story-card__copy {
    padding: 18px;
}

.story-card__copy p {
    margin: 10px 0 0;
}

.story-card__art {
    position: relative;
}

.story-card__art--orbit {
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, transparent 22%, rgba(201,161,108,0.34) 22.2%, transparent 23%),
        radial-gradient(circle at 50% 50%, transparent 34%, rgba(255,255,255,0.16) 34.2%, transparent 35%),
        radial-gradient(circle at 50% 50%, transparent 46%, rgba(201,161,108,0.1) 46.2%, transparent 47%);
    background-size: 72px 72px, 100% 100%, 100% 100%, 100% 100%;
}

.story-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card__image--statue {
    object-position: center top;
}

.story-card__image--planet {
    object-position: center;
}

.timeline {
    position: relative;
    display: grid;
    gap: 16px;
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: -14px;
    width: 1px;
    background: linear-gradient(180deg, rgba(243, 239, 232, 0.22), rgba(243, 239, 232, 0.03));
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step__dot {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 161, 108, 0.28);
    background: radial-gradient(circle, rgba(141, 29, 36, 0.28), rgba(14, 14, 14, 0.96));
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    color: var(--text);
    box-shadow: 0 10px 22px rgba(101, 21, 25, 0.24), inset 0 1px 0 rgba(255,255,255,0.05);
}

.timeline-step__copy h3 {
    margin-bottom: 8px;
}

.timeline-step__copy p {
    margin: 0;
}

.vision-panel {
    padding: 20px;
    display: grid;
    gap: 18px;
}

.vision-panel__title {
    font-size: clamp(34px, 8vw, 54px);
    line-height: 1;
}

.vision-panel__text {
    max-width: 500px;
    margin: 10px 0 0;
}

.vision-panel__diagram {
    min-height: 260px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.85) 0 2px, transparent 4px),
        radial-gradient(circle at 50% 50%, transparent 18%, rgba(255,255,255,0.18) 18.2%, transparent 19%),
        radial-gradient(circle at 50% 50%, transparent 34%, rgba(201,161,108,0.18) 34.2%, transparent 35%),
        radial-gradient(circle at 50% 50%, transparent 48%, rgba(255,255,255,0.12) 48.2%, transparent 49%),
        linear-gradient(transparent 49.7%, rgba(255,255,255,0.08) 50%, transparent 50.3%),
        linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,0.08) 50%, transparent 50.3%);
    background-color: rgba(12, 12, 12, 0.94);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.vision-panel__metrics,
.signal-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vision-panel__metric,
.signal-metrics__item {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.vision-panel__metric strong,
.signal-metrics__item strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 1;
}

.vision-panel__metric span,
.signal-metrics__item span {
    display: block;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 13px;
}

.cta-panel {
    padding: 20px;
    display: grid;
    gap: 18px;
}

.cta-panel__top,
.cta-panel__bottom {
    display: grid;
    gap: 18px;
}

.cta-panel__title {
    font-size: clamp(34px, 8vw, 52px);
    line-height: 0.96;
}

.cta-panel__text,
.cta-panel__note {
    margin: 10px 0 0;
}

.cta-panel__target {
    min-height: 180px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 50%, rgba(204, 40, 51, 0.8) 0 2px, transparent 4px),
        radial-gradient(circle at 50% 50%, transparent 16%, rgba(255,255,255,0.12) 16.2%, transparent 17%),
        radial-gradient(circle at 50% 50%, transparent 34%, rgba(255,255,255,0.08) 34.2%, transparent 35%),
        linear-gradient(transparent 49.7%, rgba(255,255,255,0.08) 50%, transparent 50.3%),
        linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,0.08) 50%, transparent 50.3%);
    background-color: rgba(10, 10, 10, 0.96);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.bottom-dock {
    position: fixed;
    left: 50%;
    bottom: calc(12px + var(--safe-bottom));
    z-index: 24;
    transform: translateX(-50%);
    width: min(calc(100% - 24px), 880px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.4);
}

.bottom-dock__item {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 4px;
    min-height: 52px;
    padding: 8px 4px;
    border-radius: 14px;
    overflow: hidden;
    color: rgba(243, 239, 232, 0.62);
    font-size: 10px;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.bottom-dock__item.is-active {
    color: #ff6b60;
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.bottom-dock__icon {
    width: 20px;
    height: 20px;
}

.soon-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.soon-modal.is-open {
    display: flex;
}

.soon-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: blur(12px);
}

.soon-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98)),
        linear-gradient(135deg, rgba(255,255,255,0.02), transparent 28%);
    box-shadow: var(--shadow);
}

.soon-modal__feature {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 10px 0 12px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: rgba(243, 239, 232, 0.82);
    font-size: 12px;
}

.soon-modal__dialog h3 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    line-height: 1;
}

.soon-modal__dialog p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.soon-modal__actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

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

.is-visible {
    animation: fadeUp 680ms ease forwards;
}

.placeholder-page .process-section {
    padding: 24px;
}

.placeholder-page .hero-body {
    max-width: 560px;
    margin: 0;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(12);
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@supports (padding: max(0px)) {
    .app-main {
        padding-top: max(18px, var(--safe-top));
        padding-bottom: max(calc(var(--dock-height) + 34px), calc(var(--dock-height) + 34px + var(--safe-bottom)));
    }
}

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

@media (hover: hover) and (pointer: fine) {
    .btn:hover,
    .btn:focus-visible {
        transform: translateY(-1px);
    }

    .future-grid-card:hover {
        transform: translateY(-4px);
        border-color: var(--line-strong);
        box-shadow: 0 16px 30px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .bottom-dock__item:hover {
        color: var(--text);
    }
}

@media (min-width: 760px) {
    .app-main {
        padding-left: 24px;
        padding-right: 24px;
    }

    .active-branch {
        grid-template-columns: minmax(0, 1fr) 280px;
        align-items: center;
    }

    .vision-panel {
        grid-template-columns: minmax(0, 1fr) 280px;
        align-items: start;
    }

    .vision-panel__metrics {
        grid-column: 1 / -1;
    }

    .cta-panel__top,
    .cta-panel__bottom {
        grid-template-columns: minmax(0, 1fr) 240px;
        align-items: center;
    }
}

@media (max-width: 759px) {
    .status-grid,
    .future-grid,
    .signal-metrics,
    .vision-panel__metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .app-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-screen,
    .home-section,
    .vision-panel,
    .cta-panel,
    .soon-modal__dialog,
    .placeholder-page .process-section {
        padding: 14px;
    }

    .hero-screen__art {
        min-height: 286px;
        margin: 0 -14px;
    }

    .story-card {
        grid-template-columns: 1fr 98px;
    }

    .btn {
        width: 100%;
    }

    .status-card__icon,
    .future-grid-card__icon {
        width: 34px;
        height: 34px;
        padding: 7px;
    }

    .bottom-dock {
        gap: 2px;
        padding: 7px 6px;
    }

    .bottom-dock__item {
        min-height: 50px;
        font-size: 9px;
    }

    .next-layer-card__meta {
        grid-template-columns: 1fr;
    }

    .progression-modal__scene,
    .rhythm-modal__dialog {
        padding: 24px 20px;
        border-radius: 22px;
    }
}

@media (max-width: 390px) {
    .hero-screen__title {
        font-size: 48px;
    }

    .active-branch__title,
    .future-grid-card strong,
    .story-card h3,
    .timeline-step h3 {
        font-size: 24px;
    }
}

.mini-progress-widget {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.progress-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1;
    font-weight: 760;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.progress-pill__info {
    display: inline-flex;
    align-items: center;
    min-height: 100%;
    color: inherit;
    text-align: left;
}

.progress-rhythm-description {
    width: 100%;
    color: rgba(246, 240, 234, .58);
    font-size: 12px;
    line-height: 1.35;
}

.next-layer-card {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(16, 14, 14, .96), rgba(8, 7, 7, .98)),
        radial-gradient(circle at 86% 18%, rgba(201, 161, 108, .1), transparent 28%);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.next-layer-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.next-layer-card__meta article,
.next-layer-card__actions {
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

.next-layer-card__meta span,
.next-layer-card__actions span {
    display: block;
    margin-bottom: 7px;
    color: rgba(246, 240, 234, .58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.next-layer-card__meta strong {
    display: block;
    color: #fff8f2;
    font-size: 14px;
    line-height: 1.35;
}

.next-layer-card__actions ul,
.progression-modal__stage ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 18px;
    color: rgba(246, 240, 234, .8);
    line-height: 1.45;
}

.progress-pill b {
    color: #fff8f2;
    font-weight: 860;
}

.mini-progress-widget--compact {
    gap: 6px;
    margin: 8px 0;
}

.mini-progress-widget--compact .progress-pill {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 12px;
}

.product-home .signal-strip.signal-strip--progress {
    display: block;
    padding: 0 var(--gutter);
}

.product-home .signal-strip--progress .mini-progress-widget {
    justify-content: center;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(8, 8, 8, .66);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
}

.daily-return-modal,
.artifact-open-modal,
.progression-modal,
.rhythm-modal {
    position: fixed;
    inset: 0;
    z-index: 3100;
    display: none !important;
}

.daily-return-modal.is-open,
.artifact-open-modal.is-open,
.progression-modal.is-open,
.rhythm-modal.is-open {
    display: grid !important;
    place-items: center;
}

.daily-return-modal {
    padding: calc(12px + var(--safe-top)) 12px calc(12px + var(--safe-bottom));
}

.daily-return-modal__backdrop,
.artifact-open-modal__backdrop,
.progression-modal__backdrop,
.rhythm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, .9);
    backdrop-filter: blur(18px);
}

.daily-return-modal__dialog,
.artifact-open-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100vw - 32px), 390px);
    min-height: 520px;
    display: grid;
    align-content: end;
    gap: 16px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(10, 8, 8, .2), rgba(8, 6, 6, .98)),
        radial-gradient(circle at 50% 18%, rgba(143, 32, 41, .24), transparent 34%),
        #050505;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .64), inset 0 1px 0 rgba(255, 255, 255, .06);
    animation: artifact-rise .72s cubic-bezier(.2, .7, .2, 1) both;
}

.daily-return-modal__dialog {
    width: min(100%, 470px);
    min-height: min(760px, calc(100vh - var(--safe-top) - var(--safe-bottom) - 24px));
    max-height: calc(100vh - var(--safe-top) - var(--safe-bottom) - 24px);
    align-content: start;
    overflow-y: auto;
    gap: 14px;
    padding: 24px 18px 18px;
}

.progression-modal {
    z-index: 3300;
    padding: calc(18px + var(--safe-top)) 14px calc(18px + var(--safe-bottom));
}

.progression-modal__scene,
.rhythm-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    max-height: calc(100vh - var(--safe-top) - var(--safe-bottom) - 28px);
    overflow-y: auto;
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(10, 8, 8, .26), rgba(7, 6, 6, .98)),
        radial-gradient(circle at 50% 12%, rgba(143, 32, 41, .28), transparent 36%),
        #050505;
    box-shadow: 0 28px 92px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .06);
    animation: artifact-rise .72s cubic-bezier(.2, .7, .2, 1) both;
}

.progression-modal__scene {
    min-height: min(680px, calc(100vh - var(--safe-top) - var(--safe-bottom) - 28px));
    align-content: end;
}

.progression-modal__scene::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 58px;
    width: 190px;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border: 1px solid rgba(246, 240, 234, .18);
    border-radius: 50%;
    box-shadow: 0 0 62px rgba(143, 32, 41, .24);
    opacity: .9;
}

.progression-modal__eyebrow {
    position: relative;
    color: rgba(246, 240, 234, .62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.progression-modal__scene h2,
.rhythm-modal__dialog h2 {
    position: relative;
    margin: 0;
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 10vw, 58px);
    font-weight: 600;
    line-height: .92;
}

.progression-modal__depth {
    position: relative;
    display: inline-grid;
    grid-auto-flow: column;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
}

.progression-modal__depth span {
    color: rgba(246, 240, 234, .62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.progression-modal__depth strong {
    display: block;
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
}

.progression-modal__scene p,
.rhythm-modal__dialog p {
    position: relative;
    margin: 0;
    color: rgba(246, 240, 234, .74);
    font-size: 15px;
    line-height: 1.56;
}

.progression-modal__stage {
    position: relative;
    display: grid;
    gap: 11px;
    padding: 15px;
    border: 1px solid rgba(201, 161, 108, .18);
    border-radius: 16px;
    background: rgba(201, 161, 108, .055);
}

.progression-modal__stage[hidden] {
    display: none;
}

.progression-modal__stage span {
    color: rgba(246, 240, 234, .62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.progression-modal__stage h3 {
    margin: 0;
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 600;
    line-height: .95;
}

.rhythm-modal {
    z-index: 3310;
    padding: calc(18px + var(--safe-top)) 14px calc(18px + var(--safe-bottom));
}

.daily-return-modal__dialog::before,
.artifact-open-modal__dialog::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 74px;
    width: 170px;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border: 1px solid rgba(246, 240, 234, .2);
    border-radius: 50%;
    box-shadow: 0 0 58px rgba(143, 32, 41, .2);
    opacity: .86;
}

.daily-return-modal__halo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .65;
    background:
        radial-gradient(circle at 18% 22%, rgba(143, 32, 41, .22), transparent 22%),
        radial-gradient(circle at 82% 68%, rgba(201, 161, 108, .12), transparent 24%);
    animation: daily-drift 9s ease-in-out infinite alternate;
}

.daily-return-modal__header {
    position: relative;
    display: grid;
    gap: 10px;
}

.daily-return-modal__dialog h2,
.artifact-open-modal__dialog h2 {
    position: relative;
    margin: 0;
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: .95;
}

.daily-return-modal__dialog h2 {
    font-size: clamp(36px, 9vw, 52px);
}

.daily-return-modal__dialog p,
.artifact-open-modal__dialog p {
    position: relative;
    margin: 0;
    color: rgba(246, 240, 234, .74);
    font-size: 15px;
    line-height: 1.55;
}

.daily-return-modal__line {
    position: relative;
    display: grid;
    gap: 5px;
    padding: 12px 13px;
    border: 1px solid rgba(143, 32, 41, .3);
    border-radius: 16px;
    background: rgba(143, 32, 41, .075);
}

.daily-return-modal__line span {
    color: rgba(246, 240, 234, .62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.daily-return-modal__line strong {
    color: rgba(246, 240, 234, .84);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.daily-return-modal__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.daily-signal-card {
    position: relative;
    min-height: 86px;
    display: grid;
    align-content: space-between;
    gap: 7px;
    padding: 11px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .028);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.daily-signal-card::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -35%;
    width: 86px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(143, 32, 41, .18);
    filter: blur(22px);
    opacity: .35;
}

.daily-signal-card__day,
.daily-signal-card em {
    position: relative;
    color: rgba(246, 240, 234, .54);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.daily-signal-card strong {
    position: relative;
    color: rgba(255, 248, 242, .86);
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.daily-signal-card i {
    position: absolute;
    right: 9px;
    top: 9px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff8f2;
    font-size: 11px;
    font-style: normal;
    background: rgba(143, 32, 41, .45);
}

.daily-signal-card.is-claimed {
    opacity: .58;
    border-color: rgba(143, 32, 41, .28);
    box-shadow: 0 0 22px rgba(143, 32, 41, .12), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.daily-signal-card.is-current {
    border-color: rgba(223, 75, 82, .66);
    background: rgba(143, 32, 41, .12);
    box-shadow: 0 0 34px rgba(143, 32, 41, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
    animation: daily-current-pulse 3.8s ease-in-out infinite;
}

.daily-signal-card.is-locked {
    opacity: .44;
    filter: saturate(.65);
}

.daily-signal-card.is-locked strong,
.daily-signal-card.is-locked em {
    filter: blur(.2px);
}

.daily-signal-card.is-special {
    border-color: rgba(201, 161, 108, .32);
}

.daily-signal-card.is-special::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(201, 161, 108, .08), transparent);
    transform: translateX(-100%);
    animation: daily-rare-sweep 6s ease-in-out infinite;
}

.daily-return-modal__reward {
    position: relative;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
}

.daily-return-modal__reward span {
    color: rgba(246, 240, 234, .62);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.daily-return-modal__reward strong {
    color: #fff8f2;
    font-size: 18px;
}

@keyframes daily-current-pulse {
    0%, 100% { box-shadow: 0 0 26px rgba(143, 32, 41, .22), inset 0 1px 0 rgba(255, 255, 255, .06); }
    50% { box-shadow: 0 0 44px rgba(185, 48, 58, .36), inset 0 1px 0 rgba(255, 255, 255, .08); }
}

@keyframes daily-rare-sweep {
    0%, 55% { transform: translateX(-110%); opacity: 0; }
    70% { opacity: 1; }
    100% { transform: translateX(110%); opacity: 0; }
}

@keyframes daily-drift {
    from { transform: translate3d(-2%, -1%, 0) scale(1); }
    to { transform: translate3d(2%, 1%, 0) scale(1.04); }
}

@keyframes artifact-rise {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mini-toast {
    display: none !important;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 3200;
    max-width: 420px;
    margin: 0 auto;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(12, 10, 10, .94);
    color: #fff8f2;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 760;
    text-align: center;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .42);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.mini-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.subscription-main {
    width: min(100%, 720px);
}

.subscription-screen {
    min-height: calc(100vh - var(--safe-top) - var(--safe-bottom) - 48px);
    display: grid;
    align-items: center;
    padding: 20px 0;
}

.subscription-back {
    position: fixed;
    left: 18px;
    top: calc(14px + var(--safe-top));
    z-index: 4;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    color: #fff8f2;
    font-size: 32px;
    line-height: 1;
}

.subscription-panel {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(16, 14, 14, .96), rgba(7, 6, 6, .98)),
        radial-gradient(circle at 74% 14%, rgba(201, 161, 108, .12), transparent 30%);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.subscription-kicker {
    margin: 0;
    color: rgba(246, 240, 234, .62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.subscription-panel h1 {
    margin: 0;
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 12vw, 72px);
    font-weight: 600;
    line-height: .92;
}

.subscription-panel p {
    margin: 0;
    color: rgba(246, 240, 234, .74);
    font-size: 15px;
    line-height: 1.56;
}

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

.subscription-features span {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 248, 242, .86);
    font-size: 13px;
    line-height: 1.25;
}

.subscription-discount {
    padding: 12px 13px;
    border: 1px solid rgba(201, 161, 108, .24);
    border-radius: 14px;
    background: rgba(201, 161, 108, .06);
}

.subscription-offers {
    display: grid;
    gap: 10px;
}

.subscription-offer {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .025));
}

.subscription-offer h2 {
    margin: 0 0 5px;
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.subscription-panel .subscription-offer__type {
    margin-bottom: 6px;
    color: rgba(201, 161, 108, .9);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.subscription-pay-button {
    width: 100%;
}

.subscription-panel.is-checking-payment {
    pointer-events: none;
    user-select: none;
}

.subscription-note {
    min-height: 22px;
    text-align: center;
}

.payment-check-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(5, 4, 4, .76);
    backdrop-filter: blur(16px);
}

.payment-check-overlay[hidden] {
    display: none;
}

.payment-check-overlay__panel {
    width: min(100%, 360px);
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(12, 10, 10, .92);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .58);
    text-align: center;
}

.payment-check-overlay__panel p {
    margin: 0;
    color: rgba(255, 248, 242, .88);
    font-size: 15px;
    line-height: 1.45;
}

.payment-check-overlay__spinner {
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, .16);
    border-top-color: rgba(201, 161, 108, .95);
    border-radius: 50%;
    animation: paymentSpin .9s linear infinite;
}

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

.level-lock-panel {
    overflow: hidden;
}

.level-lock-feature {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(201, 161, 108, .22);
    border-radius: 16px;
    background: rgba(201, 161, 108, .06);
}

.level-lock-feature span,
.level-lock-grid span {
    color: rgba(201, 161, 108, .9);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.level-lock-feature strong {
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.level-lock-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.level-lock-grid article {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

.level-lock-grid strong {
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.level-lock-actions {
    display: grid;
    gap: 10px;
}

@media (max-width: 520px) {
    .subscription-panel {
        padding: 20px;
    }

    .subscription-features {
        grid-template-columns: 1fr;
    }
}

body[data-page="feature-paywall"] .subscription-main {
    width: min(100%, 1280px);
}

body[data-page="feature-paywall"] .subscription-screen {
    position: relative;
    padding: 40px 0 28px;
}

body[data-page="feature-paywall"] .subscription-screen::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 16%, rgba(102, 20, 28, .18), transparent 24%),
        radial-gradient(circle at 78% 18%, rgba(139, 33, 48, .18), transparent 28%),
        radial-gradient(circle at 50% 60%, rgba(205, 160, 93, .06), transparent 34%);
}

body[data-page="feature-paywall"] .subscription-back {
    border-color: rgba(211, 124, 75, .2);
    background: rgba(15, 10, 10, .78);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
    transition: border-color .24s ease, background-color .24s ease, transform .24s ease;
}

body[data-page="feature-paywall"] .subscription-back:hover {
    transform: translateY(-1px);
    border-color: rgba(223, 150, 104, .34);
    background: rgba(24, 14, 14, .9);
}

body[data-page="feature-paywall"] .subscription-panel--offer {
    overflow: hidden;
    gap: 28px;
    padding: 34px;
    border-color: rgba(211, 124, 75, .18);
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 18%, rgba(155, 29, 43, .2), transparent 24%),
        radial-gradient(circle at 76% 72%, rgba(216, 167, 95, .06), transparent 30%),
        linear-gradient(180deg, rgba(13, 10, 10, .98), rgba(6, 5, 5, .99));
    box-shadow:
        0 34px 110px rgba(0, 0, 0, .58),
        inset 0 1px 0 rgba(255, 255, 255, .05),
        inset 0 -30px 70px rgba(74, 12, 18, .14);
}

body[data-page="feature-paywall"] .subscription-panel--offer::before,
body[data-page="feature-paywall"] .subscription-panel--offer::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

body[data-page="feature-paywall"] .subscription-panel--offer::before {
    inset: 1px;
    border-radius: 33px;
    border: 1px solid rgba(255, 255, 255, .03);
}

body[data-page="feature-paywall"] .subscription-panel--offer::after {
    inset: auto -10% -28% auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 23, 37, .22), transparent 64%);
    filter: blur(24px);
    opacity: .68;
}

body[data-page="feature-paywall"] .offer-hero {
    position: relative;
    z-index: 1;
    max-width: 760px;
    display: grid;
    gap: 14px;
}

body[data-page="feature-paywall"] .subscription-panel--offer .subscription-kicker {
    color: rgba(244, 238, 230, .58);
    letter-spacing: .2em;
}

body[data-page="feature-paywall"] .subscription-panel--offer h1 {
    max-width: 420px;
    font-size: clamp(54px, 8vw, 82px);
    line-height: .9;
    letter-spacing: 0;
    text-wrap: balance;
}

body[data-page="feature-paywall"] .offer-hero__lead {
    max-width: 650px;
    color: rgba(244, 238, 230, .74);
    font-size: 16px;
    line-height: 1.68;
}

body[data-page="feature-paywall"] .offer-hero__signal {
    max-width: 620px;
    padding-left: 16px;
    border-left: 1px solid rgba(216, 167, 95, .24);
    color: rgba(244, 238, 230, .58);
    font-size: 14px;
    line-height: 1.62;
}

body[data-page="feature-paywall"] .offer-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .92fr) minmax(0, 1.24fr);
    gap: 28px;
    align-items: start;
}

body[data-page="feature-paywall"] .offer-side {
    display: grid;
    gap: 18px;
}

body[data-page="feature-paywall"] .offer-visual {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid rgba(211, 124, 75, .12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 48%, rgba(178, 44, 56, .18), transparent 26%),
        radial-gradient(circle at 26% 24%, rgba(216, 167, 95, .08), transparent 20%),
        radial-gradient(circle at 78% 76%, rgba(145, 24, 38, .16), transparent 28%),
        linear-gradient(180deg, rgba(14, 10, 10, .92), rgba(8, 6, 6, .98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        inset 0 -24px 44px rgba(75, 14, 21, .18);
}

body[data-page="feature-paywall"] .offer-visual::before,
body[data-page="feature-paywall"] .offer-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body[data-page="feature-paywall"] .offer-visual::before {
    background:
        radial-gradient(circle at center, transparent 0 21%, rgba(255, 255, 255, .04) 21.3% 21.7%, transparent 22% 34%, rgba(255, 255, 255, .025) 34.3% 34.7%, transparent 35%),
        linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, .018) 14.2% 14.4%, transparent 14.6% 85%, rgba(255, 255, 255, .018) 85.2% 85.4%, transparent 85.6%);
    opacity: .8;
}

body[data-page="feature-paywall"] .offer-visual::after {
    background: radial-gradient(circle at center, rgba(6, 4, 4, 0) 38%, rgba(6, 4, 4, .62) 100%);
}

body[data-page="feature-paywall"] .offer-visual__core {
    position: absolute;
    inset: 0;
}

body[data-page="feature-paywall"] .offer-visual__pulse,
body[data-page="feature-paywall"] .offer-visual__node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

body[data-page="feature-paywall"] .offer-visual__pulse {
    border: 1px solid rgba(216, 167, 95, .14);
    animation: offerVisualPulse 10s ease-in-out infinite;
}

body[data-page="feature-paywall"] .offer-visual__pulse--one {
    width: 108px;
    height: 108px;
}

body[data-page="feature-paywall"] .offer-visual__pulse--two {
    width: 172px;
    height: 172px;
    border-color: rgba(183, 67, 55, .12);
    animation-delay: -4.2s;
}

body[data-page="feature-paywall"] .offer-visual__node {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 236, 209, .92), rgba(216, 167, 95, .55) 48%, rgba(183, 67, 55, .16) 70%);
    box-shadow: 0 0 16px rgba(216, 167, 95, .32);
    animation: offerNodeBlink 6.8s ease-in-out infinite;
}

body[data-page="feature-paywall"] .offer-visual__node--center {
    width: 12px;
    height: 12px;
}

body[data-page="feature-paywall"] .offer-visual__node--top {
    top: 25%;
    left: 49%;
    animation-delay: -.8s;
}

body[data-page="feature-paywall"] .offer-visual__node--right {
    top: 43%;
    left: 77%;
    animation-delay: -1.6s;
}

body[data-page="feature-paywall"] .offer-visual__node--bottom {
    top: 76%;
    left: 54%;
    animation-delay: -2.4s;
}

body[data-page="feature-paywall"] .offer-visual__node--left {
    top: 55%;
    left: 20%;
    animation-delay: -3.2s;
}

body[data-page="feature-paywall"] .offer-visual__mesh {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body[data-page="feature-paywall"] .offer-visual__mesh path {
    fill: none;
    stroke: rgba(214, 150, 94, .26);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(160, 43, 47, .14));
    stroke-dasharray: 4 7;
    animation: offerMeshDrift 16s linear infinite;
}

body[data-page="feature-paywall"] .offer-visual__mesh path:nth-child(2) {
    stroke: rgba(183, 67, 55, .22);
    animation-duration: 19s;
    animation-direction: reverse;
}

body[data-page="feature-paywall"] .offer-visual__mesh path:nth-child(3) {
    stroke: rgba(216, 167, 95, .16);
    animation-duration: 22s;
}

body[data-page="feature-paywall"] .offer-visual__mesh path:nth-child(4) {
    stroke: rgba(196, 96, 73, .24);
    animation-duration: 18s;
}

body[data-page="feature-paywall"] .offer-visual__mesh circle {
    fill: rgba(233, 194, 136, .72);
    opacity: .84;
    filter: drop-shadow(0 0 12px rgba(233, 194, 136, .3));
    transform-box: fill-box;
    transform-origin: center;
    animation: offerCircleBlink 7s ease-in-out infinite;
}

body[data-page="feature-paywall"] .offer-visual__dust {
    position: absolute;
    inset: 0;
}

body[data-page="feature-paywall"] .offer-visual__dust span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(244, 238, 230, .3);
    box-shadow: 0 0 12px rgba(216, 167, 95, .12);
    animation: offerDustFloat 11s ease-in-out infinite;
}

body[data-page="feature-paywall"] .offer-visual__dust span:nth-child(1) { left: 18%; top: 22%; animation-delay: -.8s; }
body[data-page="feature-paywall"] .offer-visual__dust span:nth-child(2) { left: 78%; top: 18%; width: 2px; height: 2px; animation-delay: -2.4s; }
body[data-page="feature-paywall"] .offer-visual__dust span:nth-child(3) { left: 68%; top: 36%; animation-delay: -4s; }
body[data-page="feature-paywall"] .offer-visual__dust span:nth-child(4) { left: 26%; top: 74%; width: 2px; height: 2px; animation-delay: -5.2s; }
body[data-page="feature-paywall"] .offer-visual__dust span:nth-child(5) { left: 86%; top: 66%; animation-delay: -6.4s; }
body[data-page="feature-paywall"] .offer-visual__dust span:nth-child(6) { left: 42%; top: 16%; width: 2px; height: 2px; animation-delay: -7.6s; }

body[data-page="feature-paywall"] .offer-analysis {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(211, 124, 75, .14);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .012)),
        rgba(13, 10, 10, .78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 16px 38px rgba(0, 0, 0, .18);
}

body[data-page="feature-paywall"] .offer-analysis::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(216, 167, 95, .05), transparent 34%, transparent 72%, rgba(155, 29, 43, .1));
    pointer-events: none;
}

body[data-page="feature-paywall"] .offer-analysis__head {
    position: relative;
    display: grid;
    gap: 5px;
}

body[data-page="feature-paywall"] .offer-analysis__head span {
    color: rgba(216, 167, 95, .8);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

body[data-page="feature-paywall"] .offer-analysis__head strong {
    color: #f8f1e8;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: .98;
}

body[data-page="feature-paywall"] .offer-analysis__grid {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body[data-page="feature-paywall"] .offer-analysis__grid span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    color: rgba(244, 238, 230, .7);
    font-size: 12px;
    line-height: 1.2;
}

body[data-page="feature-paywall"] .offer-timeline {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 18px 0 18px 28px;
}

body[data-page="feature-paywall"] .offer-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, rgba(222, 170, 101, .42), rgba(181, 56, 63, .12) 58%, rgba(255, 255, 255, .06));
}

body[data-page="feature-paywall"] .offer-stage {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid rgba(211, 124, 75, .12);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .012)),
        rgba(14, 10, 10, .76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
    opacity: 0;
    transform: translateY(12px);
    animation: offerStageReveal .7s cubic-bezier(.2, .7, .2, 1) forwards;
}

body[data-page="feature-paywall"] .offer-stage:nth-child(2) { animation-delay: .08s; }
body[data-page="feature-paywall"] .offer-stage:nth-child(3) { animation-delay: .16s; }
body[data-page="feature-paywall"] .offer-stage:nth-child(4) { animation-delay: .24s; }

body[data-page="feature-paywall"] .offer-stage::before {
    content: "";
    position: absolute;
    left: -23px;
    top: 22px;
    width: 11px;
    height: 11px;
    border: 1px solid rgba(223, 172, 108, .46);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 167, 95, .9), rgba(178, 58, 59, .18) 60%, transparent 72%);
    box-shadow: 0 0 18px rgba(216, 167, 95, .18);
}

body[data-page="feature-paywall"] .offer-stage__index {
    min-width: 34px;
    color: rgba(216, 167, 95, .78);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
}

body[data-page="feature-paywall"] .offer-stage__copy {
    display: grid;
    gap: 8px;
}

body[data-page="feature-paywall"] .offer-stage__copy h2 {
    margin: 0;
    color: #f8f1e8;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    line-height: .98;
}

body[data-page="feature-paywall"] .offer-stage__copy p {
    color: rgba(244, 238, 230, .66);
    font-size: 14px;
    line-height: 1.58;
}

body[data-page="feature-paywall"] .offer-pricing {
    display: grid;
    gap: 16px;
}

body[data-page="feature-paywall"] .subscription-offer--cinematic {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: stretch;
    padding: 22px;
    overflow: hidden;
    border-color: rgba(211, 124, 75, .16);
    border-radius: 26px;
    background:
        radial-gradient(circle at 86% 18%, rgba(216, 167, 95, .08), transparent 20%),
        radial-gradient(circle at 92% 14%, rgba(146, 26, 36, .18), transparent 34%),
        linear-gradient(180deg, rgba(20, 14, 14, .92), rgba(10, 8, 8, .98));
    box-shadow:
        0 20px 54px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .04);
    opacity: 0;
    transform: translateY(18px);
    animation: offerCardReveal .8s cubic-bezier(.2, .7, .2, 1) forwards;
}

body[data-page="feature-paywall"] .subscription-offer--cinematic:hover {
    transform: translateY(-3px);
    border-color: rgba(223, 165, 113, .26);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

body[data-page="feature-paywall"] .subscription-offer--cinematic:nth-child(2) { animation-delay: .08s; }
body[data-page="feature-paywall"] .subscription-offer--cinematic:nth-child(3) { animation-delay: .16s; }

body[data-page="feature-paywall"] .subscription-offer--cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, .04), transparent 32%, transparent 74%, rgba(186, 49, 61, .08));
    pointer-events: none;
}

body[data-page="feature-paywall"] .subscription-offer__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 8px 12px;
    border: 1px solid rgba(238, 192, 121, .22);
    border-radius: 999px;
    background: rgba(216, 167, 95, .08);
    color: rgba(248, 241, 232, .88);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

body[data-page="feature-paywall"] .subscription-offer__body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

body[data-page="feature-paywall"] .subscription-offer__tier {
    margin: 0;
    color: rgba(216, 167, 95, .8);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

body[data-page="feature-paywall"] .subscription-offer__orb {
    position: relative;
    z-index: 1;
    width: 108px;
    min-width: 108px;
    aspect-ratio: 1;
    align-self: center;
    display: grid;
    place-items: center;
    border: 1px solid rgba(211, 124, 75, .24);
    border-radius: 50%;
    color: rgba(248, 241, 232, .92);
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
    background:
        radial-gradient(circle at 34% 32%, rgba(255, 255, 255, .16), transparent 22%),
        radial-gradient(circle at 52% 48%, rgba(180, 40, 54, .2), transparent 50%),
        radial-gradient(circle at 50% 58%, rgba(11, 8, 8, .98), rgba(23, 15, 15, .9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        inset 0 0 28px rgba(180, 40, 54, .18),
        0 0 40px rgba(180, 40, 54, .14);
    animation: offerOrbBreath 7.6s ease-in-out infinite;
}

body[data-page="feature-paywall"] .subscription-offer__orb::before,
body[data-page="feature-paywall"] .subscription-offer__orb::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

body[data-page="feature-paywall"] .subscription-offer__orb::before {
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, .06);
}

body[data-page="feature-paywall"] .subscription-offer__orb::after {
    inset: -12px;
    border: 1px solid rgba(211, 124, 75, .08);
}

body[data-page="feature-paywall"] .subscription-offer__orb span {
    transform: translateY(-2px);
}

body[data-page="feature-paywall"] .subscription-offer--premium_all .subscription-offer__orb,
body[data-page="feature-paywall"] .subscription-offer--premium .subscription-offer__orb {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        inset 0 0 34px rgba(216, 167, 95, .16),
        0 0 44px rgba(216, 167, 95, .12);
}

body[data-page="feature-paywall"] .subscription-offer--numerologist_once {
    background:
        radial-gradient(circle at 88% 22%, rgba(156, 35, 48, .16), transparent 24%),
        linear-gradient(180deg, rgba(18, 12, 12, .92), rgba(9, 7, 7, .98));
}

body[data-page="feature-paywall"] .subscription-offer--numerologist_month {
    background:
        radial-gradient(circle at 84% 18%, rgba(180, 83, 63, .14), transparent 24%),
        linear-gradient(180deg, rgba(20, 14, 14, .94), rgba(10, 8, 8, .98));
}

body[data-page="feature-paywall"] .subscription-offer--premium_all,
body[data-page="feature-paywall"] .subscription-offer--premium {
    margin: 8px 0;
    padding: 26px 24px;
    border-color: rgba(216, 167, 95, .22);
    background:
        radial-gradient(circle at 84% 14%, rgba(216, 167, 95, .14), transparent 20%),
        radial-gradient(circle at 72% 32%, rgba(156, 35, 48, .2), transparent 34%),
        linear-gradient(180deg, rgba(26, 18, 16, .96), rgba(11, 8, 8, .99));
    box-shadow:
        0 30px 72px rgba(0, 0, 0, .46),
        inset 0 1px 0 rgba(255, 255, 255, .06),
        inset 0 0 48px rgba(216, 167, 95, .06);
}

body[data-page="feature-paywall"] .subscription-offer--premium_all::after,
body[data-page="feature-paywall"] .subscription-offer--premium::after {
    content: "";
    position: absolute;
    inset: auto -10% -34% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 167, 95, .14), transparent 64%);
    filter: blur(24px);
    pointer-events: none;
}

body[data-page="feature-paywall"] .subscription-offer--premium_all:hover,
body[data-page="feature-paywall"] .subscription-offer--premium:hover {
    transform: translateY(-4px) scale(1.012);
}

body[data-page="feature-paywall"] .subscription-offer__lead {
    max-width: 560px;
    color: rgba(244, 238, 230, .68);
    font-size: 15px;
    line-height: 1.58;
}

body[data-page="feature-paywall"] .subscription-offer__bundle {
    display: grid;
    gap: 10px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    background: rgba(255, 255, 255, .02);
}

body[data-page="feature-paywall"] .subscription-offer__bundle > span {
    color: rgba(216, 167, 95, .8);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body[data-page="feature-paywall"] .subscription-offer__bundle ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

body[data-page="feature-paywall"] .subscription-offer__bundle li {
    position: relative;
    padding-left: 18px;
    color: rgba(244, 238, 230, .78);
    font-size: 14px;
    line-height: 1.5;
}

body[data-page="feature-paywall"] .subscription-offer__bundle li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 167, 95, .92), rgba(183, 67, 55, .52));
    box-shadow: 0 0 14px rgba(216, 167, 95, .16);
}

body[data-page="feature-paywall"] .subscription-panel--offer .subscription-discount {
    padding: 10px 12px;
    border-color: rgba(216, 167, 95, .2);
    background: rgba(216, 167, 95, .05);
    color: rgba(244, 238, 230, .72);
    font-size: 13px;
}

body[data-page="feature-paywall"] .subscription-pay-button {
    position: relative;
    overflow: hidden;
    min-height: 60px;
    margin-top: 2px;
    border: 1px solid rgba(238, 192, 121, .18);
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% -20%, rgba(255, 255, 255, .2), transparent 40%),
        linear-gradient(180deg, rgba(205, 66, 80, .98), rgba(138, 28, 41, .98) 58%, rgba(104, 18, 29, .98)),
        linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
    box-shadow:
        0 22px 42px rgba(82, 8, 18, .42),
        inset 0 1px 0 rgba(255, 255, 255, .12),
        inset 0 -14px 20px rgba(59, 7, 15, .28),
        inset 0 0 26px rgba(255, 255, 255, .05);
    color: #fff5ec;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: none;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, filter .24s ease;
    will-change: transform;
}

body[data-page="feature-paywall"] .subscription-pay-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 19px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 28%);
    pointer-events: none;
}

body[data-page="feature-paywall"] .subscription-pay-button::after {
    content: "";
    position: absolute;
    inset: -10% auto -10% -26%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
    transform: skewX(-18deg) translateX(-180%);
    animation: offerButtonSweep 7.4s ease-in-out infinite;
    pointer-events: none;
}

body[data-page="feature-paywall"] .subscription-pay-button:hover,
body[data-page="feature-paywall"] .subscription-pay-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(240, 196, 125, .34);
    box-shadow:
        0 28px 48px rgba(97, 10, 21, .5),
        inset 0 1px 0 rgba(255, 255, 255, .14),
        inset 0 -14px 20px rgba(59, 7, 15, .28),
        0 0 26px rgba(189, 56, 67, .24);
    filter: saturate(1.08);
}

body[data-page="feature-paywall"] .subscription-pay-button:active {
    transform: translateY(0) scale(.988);
}

body[data-page="feature-paywall"] .subscription-offer--premium_all .subscription-pay-button,
body[data-page="feature-paywall"] .subscription-offer--premium .subscription-pay-button {
    border-color: rgba(238, 192, 121, .24);
    background:
        radial-gradient(circle at 50% -20%, rgba(255, 255, 255, .24), transparent 40%),
        linear-gradient(180deg, rgba(196, 72, 74, .98), rgba(132, 29, 37, .98) 52%, rgba(92, 18, 27, .98)),
        linear-gradient(90deg, rgba(216, 167, 95, .1), rgba(255, 255, 255, 0));
    box-shadow:
        0 26px 54px rgba(74, 6, 15, .54),
        inset 0 1px 0 rgba(255, 255, 255, .14),
        inset 0 -14px 20px rgba(59, 7, 15, .28),
        inset 0 0 32px rgba(216, 167, 95, .08);
}

body[data-page="feature-paywall"] .offer-assurance {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(211, 124, 75, .16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 16% 40%, rgba(216, 167, 95, .08), transparent 18%),
        radial-gradient(circle at 82% 36%, rgba(155, 29, 43, .18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015)),
        rgba(13, 10, 10, .78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 18px 44px rgba(0, 0, 0, .2);
}

body[data-page="feature-paywall"] .offer-assurance__icon,
body[data-page="feature-paywall"] .offer-assurance__lock {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216, 167, 95, .18);
    border-radius: 14px;
    background: rgba(216, 167, 95, .06);
    color: rgba(244, 238, 230, .8);
    box-shadow: 0 0 22px rgba(216, 167, 95, .08), inset 0 1px 0 rgba(255, 255, 255, .05);
    animation: offerShieldPulse 6.6s ease-in-out infinite;
}

body[data-page="feature-paywall"] .offer-assurance__icon svg,
body[data-page="feature-paywall"] .offer-assurance__lock svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body[data-page="feature-paywall"] .offer-assurance__copy {
    display: grid;
    gap: 4px;
}

body[data-page="feature-paywall"] .offer-assurance__copy h3 {
    margin: 0;
    color: #f8f1e8;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: .96;
}

body[data-page="feature-paywall"] .offer-assurance__copy p {
    color: rgba(244, 238, 230, .66);
    font-size: 14px;
}

body[data-page="feature-paywall"] .subscription-note {
    position: relative;
    z-index: 1;
    min-height: 22px;
    color: rgba(244, 238, 230, .72);
    font-size: 13px;
}

body[data-page="feature-paywall"] .offer-legal {
    position: relative;
    z-index: 1;
    max-width: 980px;
    color: rgba(244, 238, 230, .5);
    font-size: 12px;
    line-height: 1.6;
}

body[data-page="feature-paywall"] .offer-legal a {
    color: rgba(216, 167, 95, .92);
    text-decoration: none;
    border-bottom: 1px solid rgba(216, 167, 95, .26);
    transition: color .22s ease, border-color .22s ease;
}

body[data-page="feature-paywall"] .offer-legal a:hover,
body[data-page="feature-paywall"] .offer-legal a:focus-visible {
    color: rgba(238, 192, 121, .98);
    border-color: rgba(238, 192, 121, .58);
}

body[data-page="feature-paywall"] .payment-check-overlay {
    background: rgba(4, 3, 3, .8);
}

body[data-page="feature-paywall"] .payment-check-overlay__panel {
    border-color: rgba(211, 124, 75, .18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 8%, rgba(139, 33, 48, .2), transparent 36%),
        rgba(12, 10, 10, .94);
}

@keyframes offerStageReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes offerCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes offerOrbBreath {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .06),
            inset 0 0 28px rgba(180, 40, 54, .18),
            0 0 40px rgba(180, 40, 54, .14);
    }
    50% {
        transform: scale(1.028);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .08),
            inset 0 0 34px rgba(180, 40, 54, .24),
            0 0 52px rgba(180, 40, 54, .18);
    }
}

@keyframes offerVisualPulse {
    0%, 100% {
        opacity: .38;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: .72;
        transform: translate(-50%, -50%) scale(1.045);
    }
}

@keyframes offerMeshDrift {
    to {
        stroke-dashoffset: -64;
    }
}

@keyframes offerNodeBlink {
    0%, 100% {
        opacity: .42;
        transform: translate(-50%, -50%) scale(.92);
    }
    40% {
        opacity: .96;
        transform: translate(-50%, -50%) scale(1.12);
    }
}

@keyframes offerCircleBlink {
    0%, 100% {
        opacity: .42;
        transform: scale(.92);
    }
    40% {
        opacity: .96;
        transform: scale(1.12);
    }
}

@keyframes offerDustFloat {
    0%, 100% {
        opacity: .12;
        transform: translate3d(0, 0, 0);
    }
    50% {
        opacity: .48;
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes offerShieldPulse {
    0%, 100% {
        box-shadow: 0 0 22px rgba(216, 167, 95, .08), inset 0 1px 0 rgba(255, 255, 255, .05);
    }
    50% {
        box-shadow: 0 0 32px rgba(216, 167, 95, .16), inset 0 1px 0 rgba(255, 255, 255, .06);
    }
}

@keyframes offerButtonSweep {
    0%, 62% {
        transform: skewX(-18deg) translateX(-180%);
        opacity: 0;
    }
    72% {
        opacity: .85;
    }
    100% {
        transform: skewX(-18deg) translateX(320%);
        opacity: 0;
    }
}

@media (max-width: 1080px) {
    body[data-page="feature-paywall"] .subscription-main {
        width: min(100%, 1040px);
    }

    body[data-page="feature-paywall"] .offer-layout {
        grid-template-columns: minmax(260px, .94fr) minmax(0, 1.08fr);
    }

    body[data-page="feature-paywall"] .subscription-offer--cinematic {
        grid-template-columns: minmax(0, 1fr);
    }

    body[data-page="feature-paywall"] .subscription-offer__orb {
        width: 92px;
        min-width: 92px;
        justify-self: start;
        order: -1;
    }
}

@media (max-width: 820px) {
    body[data-page="feature-paywall"] .subscription-screen {
        padding-top: 72px;
    }

    body[data-page="feature-paywall"] .subscription-panel--offer {
        gap: 24px;
        padding: 24px 20px 20px;
        border-radius: 28px;
    }

    body[data-page="feature-paywall"] .subscription-panel--offer::before {
        border-radius: 27px;
    }

    body[data-page="feature-paywall"] .subscription-panel--offer h1 {
        max-width: 320px;
        font-size: clamp(44px, 13vw, 64px);
    }

    body[data-page="feature-paywall"] .offer-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body[data-page="feature-paywall"] .offer-pricing {
        order: 1;
    }

    body[data-page="feature-paywall"] .offer-side {
        order: 2;
    }

    body[data-page="feature-paywall"] .offer-timeline {
        padding: 6px 0 0 24px;
    }
}

@media (max-width: 560px) {
    body[data-page="feature-paywall"] .subscription-back {
        left: 14px;
        top: calc(12px + var(--safe-top));
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    body[data-page="feature-paywall"] .subscription-screen {
        padding: 68px 0 16px;
    }

    body[data-page="feature-paywall"] .subscription-panel--offer {
        gap: 20px;
        padding: 22px 16px 16px;
        border-radius: 24px;
    }

    body[data-page="feature-paywall"] .subscription-panel--offer::before {
        border-radius: 23px;
    }

    body[data-page="feature-paywall"] .offer-hero {
        gap: 12px;
    }

    body[data-page="feature-paywall"] .subscription-panel--offer h1 {
        max-width: 260px;
        font-size: clamp(40px, 14vw, 56px);
    }

    body[data-page="feature-paywall"] .offer-hero__lead {
        font-size: 15px;
        line-height: 1.62;
    }

    body[data-page="feature-paywall"] .offer-hero__signal {
        padding-left: 12px;
        font-size: 13px;
    }

    body[data-page="feature-paywall"] .offer-visual {
        min-height: 240px;
        border-radius: 22px;
    }

    body[data-page="feature-paywall"] .offer-analysis {
        padding: 16px;
        border-radius: 20px;
    }

    body[data-page="feature-paywall"] .offer-analysis__head strong {
        font-size: 26px;
    }

    body[data-page="feature-paywall"] .offer-timeline {
        gap: 12px;
        padding-left: 20px;
    }

    body[data-page="feature-paywall"] .offer-timeline::before {
        left: 7px;
    }

    body[data-page="feature-paywall"] .offer-stage {
        padding: 14px;
        border-radius: 18px;
    }

    body[data-page="feature-paywall"] .offer-stage::before {
        left: -16px;
        width: 9px;
        height: 9px;
    }

    body[data-page="feature-paywall"] .offer-stage {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    body[data-page="feature-paywall"] .offer-stage__copy h2 {
        font-size: 24px;
    }

    body[data-page="feature-paywall"] .subscription-offer--cinematic {
        padding: 18px 16px;
        gap: 14px;
        border-radius: 20px;
    }

    body[data-page="feature-paywall"] .subscription-offer__badge {
        top: 12px;
        right: 12px;
        font-size: 10px;
        letter-spacing: .08em;
    }

    body[data-page="feature-paywall"] .subscription-offer__orb {
        width: 82px;
        min-width: 82px;
        font-size: 30px;
    }

    body[data-page="feature-paywall"] .subscription-offer h2 {
        font-size: 26px;
    }

    body[data-page="feature-paywall"] .subscription-offer__bundle {
        padding: 12px 13px;
        border-radius: 16px;
    }

    body[data-page="feature-paywall"] .subscription-pay-button {
        min-height: 56px;
        font-size: 13px;
        letter-spacing: .03em;
    }

    body[data-page="feature-paywall"] .offer-assurance {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 16px;
    }

    body[data-page="feature-paywall"] .offer-assurance__lock {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body[data-page="feature-paywall"] .offer-stage,
    body[data-page="feature-paywall"] .subscription-offer--cinematic,
    body[data-page="feature-paywall"] .subscription-offer__orb,
    body[data-page="feature-paywall"] .subscription-pay-button::after,
    body[data-page="feature-paywall"] .offer-visual__pulse,
    body[data-page="feature-paywall"] .offer-visual__mesh path,
    body[data-page="feature-paywall"] .offer-visual__mesh circle,
    body[data-page="feature-paywall"] .offer-visual__dust span,
    body[data-page="feature-paywall"] .offer-assurance__icon,
    body[data-page="feature-paywall"] .offer-assurance__lock,
    body[data-page="feature-paywall"] .offer-visual__node {
        animation: none;
    }

    body[data-page="feature-paywall"] .subscription-back,
    body[data-page="feature-paywall"] .subscription-pay-button {
        transition: none;
    }
}
.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(10px + var(--safe-bottom, env(safe-area-inset-bottom, 0px)));
    z-index: 28;
    width: min(calc(100% - 18px), calc(var(--miniapp-max-width) + 6px));
    max-width: calc(100% - 18px);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.86);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.bottom-nav__item {
    position: relative;
    overflow: hidden;
    min-height: 58px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    min-width: 0;
    padding: 8px 4px 7px;
    border-radius: 18px;
    color: rgba(246, 240, 234, 0.74);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.bottom-nav__icon {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    opacity: 0.94;
    filter: saturate(0.98) brightness(0.98);
    transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.bottom-nav__label {
    display: block;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: 10px;
    line-height: 1.05;
    font-weight: 600;
    color: inherit;
}

.bottom-nav__item.is-active {
    color: #fff1e8;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 22px rgba(156, 37, 46, 0.16);
}

.bottom-nav__item.is-active .bottom-nav__icon {
    width: 24px;
    height: 24px;
    opacity: 1;
    filter: saturate(1.05) brightness(1.06) drop-shadow(0 0 12px rgba(178, 58, 66, 0.2));
    transform: translateY(-1px);
}

.bottom-nav__item.is-active .bottom-nav__label {
    color: #fff1e8;
}

@media (hover: hover) and (pointer: fine) {
    .bottom-nav__item:hover {
        transform: translateY(-1px);
        color: rgba(255, 245, 239, 0.88);
    }

    .bottom-nav__item:hover .bottom-nav__icon {
        opacity: 0.96;
        filter: saturate(1) brightness(1);
    }
}

@media (max-width: 380px) {
    .bottom-nav {
        width: calc(100% - 6px);
        max-width: calc(100% - 6px);
    }

    .bottom-nav__label {
        font-size: 9px;
    }
}

@media (max-width: 560px) {
    .app-main {
        width: 100%;
        padding: calc(14px + var(--safe-top)) 10px calc(var(--dock-height) + 24px + var(--safe-bottom));
    }
}

@media (min-width: 431px) {
    .app-main,
    .subscription-main,
    .period-main,
    .mentor-main,
    .numerology-main,
    .full-mirror-main,
    .history-main,
    .influence-analysis-main,
    .weekly-report-main,
    .profile-reference-main,
    .system-admin-main {
        width: min(100%, var(--miniapp-max-width)) !important;
        max-width: var(--miniapp-max-width) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .status-grid,
    .future-grid,
    .signal-metrics,
    .vision-panel__metrics,
    .active-branch,
    .vision-panel,
    .cta-panel__top,
    .cta-panel__bottom,
    .offer-layout,
    .offer-assurance {
        grid-template-columns: 1fr !important;
    }

    .story-card,
    .hero-screen {
        min-height: auto;
    }

    .story-card {
        grid-template-columns: 1fr 98px !important;
    }

    .story-card__art {
        min-height: 160px;
    }
}

/* Telegram Mini App mobile shell overhaul */
:root {
    --miniapp-max-width: 390px;
    --page-pad: 16px;
    --section-gap: 18px;
    --section-gap-lg: 24px;
    --surface-radius: 26px;
    --surface-radius-sm: 20px;
    --surface-border: rgba(255, 255, 255, 0.08);
    --surface-fill:
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98)),
        radial-gradient(circle at top right, rgba(144, 31, 37, 0.14), transparent 30%);
}

html,
body {
    overscroll-behavior-x: none;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.app-shell {
    display: flex;
    justify-content: center;
}

.app-main {
    width: min(100%, var(--miniapp-max-width)) !important;
    max-width: var(--miniapp-max-width) !important;
    padding:
        calc(12px + var(--safe-top))
        var(--page-pad)
        calc(92px + var(--safe-bottom))
        var(--page-pad) !important;
}

.app-main > * {
    min-width: 0;
}

.flash-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.flash-message {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    line-height: 1.45;
}

.btn,
.forecast-submit-btn,
.mentor-action,
.period-action,
.num-btn {
    min-height: 56px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
}

.btn,
.num-btn {
    width: 100%;
}

.progression-modal__orb {
    position: absolute;
    left: 50%;
    top: 58px;
    width: 190px;
    height: 190px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.progression-modal__orb-svg {
    width: 96px;
    height: 96px;
    opacity: .82;
    animation: orb-pulse 4s ease-in-out infinite alternate;
}

@keyframes orb-pulse {
    from { opacity: .55; transform: scale(.96); }
    to   { opacity: .9;  transform: scale(1.04); }
}

/* ── Depth-reward modal: gained counter, stats, progress bar ──────────────── */
.progression-modal__gained {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.progression-modal__gained[hidden] {
    display: none;
}

.progression-modal__gained strong {
    color: #fff8f2;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 15vw, 82px);
    font-weight: 600;
    line-height: .88;
    letter-spacing: -.015em;
}

.progression-modal__gained-unit {
    color: rgba(201, 161, 108, .85);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: lowercase;
    padding-bottom: 6px;
}

.progression-modal__stats {
    display: grid;
    gap: 14px;
}

.progression-modal__progress-wrap {
    display: grid;
    gap: 8px;
}

.progression-modal__progress-wrap[hidden] {
    display: none;
}

.progression-modal__progress-bar {
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .07);
    overflow: hidden;
}

.progression-modal__progress-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(143, 32, 41, .75), rgba(201, 161, 108, .65));
    transition: width .75s cubic-bezier(.4, 0, .2, 1);
}

.progression-modal__progress-label {
    color: rgba(246, 240, 234, .48);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .03em;
    line-height: 1.4;
}

.progression-modal__progress-label em {
    font-style: normal;
    color: rgba(246, 240, 234, .7);
}

/* ── Shared intensive promo ─────────────────────────────────────────────── */
.choice-intensive-promo {
    position: relative;
    display: grid;
    gap: 16px;
    width: 100%;
    padding: 22px 20px;
    overflow: hidden;
    border: 1px solid rgba(216, 173, 101, .28);
    border-radius: 22px;
    background:
        radial-gradient(ellipse at 86% 0%, rgba(216, 173, 101, .18), transparent 42%),
        radial-gradient(ellipse at 8% 12%, rgba(173, 39, 50, .32), transparent 44%),
        linear-gradient(180deg, rgba(31, 14, 16, .98), rgba(8, 6, 6, .99));
    box-shadow:
        0 24px 64px rgba(0, 0, 0, .44),
        0 0 0 1px rgba(216, 173, 101, .06),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

.choice-intensive-promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 11%;
    right: 11%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(173, 39, 50, .72), rgba(216, 173, 101, .76), transparent);
}

.choice-intensive-promo::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 173, 101, .12), transparent 68%);
    pointer-events: none;
}

.choice-intensive-promo > * {
    position: relative;
    z-index: 1;
}

.choice-intensive-promo__eyebrow {
    width: fit-content;
    max-width: 100%;
    padding: 6px 10px;
    border: 1px solid rgba(216, 173, 101, .3);
    border-radius: 999px;
    background: rgba(216, 173, 101, .08);
    color: #f3d6a2;
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.choice-intensive-promo__head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 14px;
}

.choice-intensive-promo h2 {
    margin: 0;
    color: #fff7ef;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 12vw, 56px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: 0;
}

.choice-intensive-promo__date {
    display: grid;
    gap: 3px;
    min-width: 92px;
    padding: 10px 11px;
    border: 1px solid rgba(216, 173, 101, .26);
    border-radius: 14px;
    background: rgba(216, 173, 101, .08);
    text-align: center;
}

.choice-intensive-promo__date span {
    color: rgba(247, 238, 232, .52);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .15em;
    line-height: 1;
    text-transform: uppercase;
}

.choice-intensive-promo__date strong {
    color: #f3d6a2;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.1;
}

.choice-intensive-promo__lead {
    margin: 0;
    color: rgba(247, 238, 232, .82);
    font-size: 15px;
    font-weight: 560;
    line-height: 1.5;
}

.choice-intensive-promo__program {
    display: grid;
    gap: 10px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
}

.choice-intensive-promo__program span {
    color: #f3d6a2;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.choice-intensive-promo__program ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.choice-intensive-promo__program li {
    position: relative;
    margin: 0;
    padding-left: 16px;
    color: rgba(247, 238, 232, .72);
    font-size: 13px;
    line-height: 1.44;
}

.choice-intensive-promo__program li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b42b45;
    box-shadow: 0 0 10px rgba(180, 43, 69, .64);
}

.choice-intensive-promo__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid rgba(216, 173, 101, .4);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(220, 178, 103, .98), rgba(151, 96, 39, .98)),
        linear-gradient(90deg, #8f2029, #d8ad65);
    box-shadow: 0 18px 42px rgba(118, 33, 25, .44), inset 0 1px 0 rgba(255, 255, 255, .28);
    color: #180b0b;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 160ms ease, filter 160ms ease;
}

.choice-intensive-promo__button:active {
    transform: scale(.985);
}

body[data-page="mentor"] .choice-intensive-promo,
body[data-page="mentor"] .choice-intensive-promo__program,
body[data-page="mentor"] .choice-intensive-promo__button {
    border-radius: var(--mentor-radius, 8px);
}

body[data-page="numerology-result"] .choice-intensive-promo {
    border-radius: 24px;
}

@media (max-width: 370px) {
    .choice-intensive-promo {
        padding: 20px 16px;
    }

    .choice-intensive-promo__head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .choice-intensive-promo__date {
        width: fit-content;
        min-width: 104px;
        text-align: left;
    }
}
