@font-face {
    font-family: Manrope;
    src: url('/theme/site/fonts/Manrope-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Manrope;
    src: url('/theme/site/fonts/Manrope-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Manrope;
    src: url('/theme/site/fonts/Manrope-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "JetBrains Mono";
    src: url('/theme/site/fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "JetBrains Mono";
    src: url('/theme/site/fonts/JetBrainsMono-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

:root {
    --paper: #ece8df;
    --paper-2: #e2ded3;
    --ink: #171513;
    --ink-soft: #4a443c;
    --rule: #cdc6b6;
    --blue: #2a3fd1;
    --blue-deep: #1a2a9c;
    --blue-soft: #a9b3ed;
    --gold: #c9a24a;
    --gold-bright: #f0c75a;
    --gold-pale: #e9d39a
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(1200px 800px at 20% 10%, rgba(42, 63, 209, .04), transparent 60%), radial-gradient(900px 700px at 90% 80%, rgba(201, 162, 74, .06), transparent 60%), radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .015) 1px, transparent 1px);
    background-size: auto, auto, 3px 3px;
    overflow-x: hidden
}

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

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

.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px
}

.serif {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400
}

.mono {
    font-family: "JetBrains Mono", monospace;
    letter-spacing: .02em
}

.sparkle-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5
}

.sparkle {
    position: absolute;
    background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 40%, transparent 70%);
    border-radius: 50%;
    filter: drop-shadow(0 0 6px rgba(240, 199, 90, .6));
    opacity: 0
}

.sparkle:before, .sparkle:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.sparkle:before {
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, transparent, var(--gold-bright), transparent)
}

.sparkle:after {
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent)
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(.4);
        opacity: 0
    }
    15%, 50% {
        opacity: 1
    }
    100% {
        transform: translate(var(--dx, 80px), var(--dy, -160px)) rotate(180deg) scale(1);
        opacity: 0
    }
}

header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(236, 232, 223, .75);
    border-bottom: 1px solid var(--rule)
}

header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 120px;
}

.brand img {
    width: 118px;
    height: 72px;
    object-fit: contain;
    object-position: center
}

.brand .mark {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 34px;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -.01em
}

.brand .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    margin-left: 2px;
    transform: translateY(-2px)
}

.brand .tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .14em
}

nav.primary {
    display: flex;
    gap: 34px;
    align-items: center
}

nav.primary a {
    font-size: 14px;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    letter-spacing: .01em
}

nav.primary a:hover, nav.primary a.active {
    color: var(--blue)
}

nav.primary a.cta {
    border: 1px solid var(--ink);
    padding: 10px 18px;
    border-radius: 999px;
    transition: background .25s ease, color .25s ease
}

nav.primary a.cta:hover {
    background: var(--ink);
    color: var(--paper)
}

.phone {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    font-size: 18px
}

.hero {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero .wrap {
    position: relative
}

.buddha-bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-22%, -52%);
    width: min(760px, 72vw);
    aspect-ratio: 896/1200;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 45%, #000 35%, rgba(0, 0, 0, .85) 55%, rgba(0, 0, 0, .4) 75%, transparent 92%);
    mask-image: radial-gradient(ellipse 70% 75% at 50% 45%, #000 35%, rgba(0, 0, 0, .85) 55%, rgba(0, 0, 0, .4) 75%, transparent 92%);
    animation: float 12s ease-in-out infinite
}

.buddha-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .42;
    mix-blend-mode: multiply;
    filter: saturate(.85) contrast(.95)
}

.halo {
    position: absolute;
    left: 8%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: min(680px, 64vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(240, 199, 90, .28) 0%, rgba(240, 199, 90, .08) 35%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite
}

@keyframes float {
    0%, 100% {
        transform: translate(-22%, -52%) translateY(0)
    }
    50% {
        transform: translate(-22%, -52%) translateY(-10px)
    }
}

@keyframes float-m {
    0%, 100% {
        transform: translate(-50%, -52%) translateY(0)
    }
    50% {
        transform: translate(-50%, -52%) translateY(-10px)
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .9
    }
    50% {
        transform: translate(-50%, -50%) scale(1.04);
        opacity: 1
    }
}

.coin {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f8de8b, #c9a24a 60%, #8d6f2a);
    box-shadow: 0 2px 0 rgba(0, 0, 0, .15), inset -2px -2px 4px rgba(0, 0, 0, .2);
    z-index: 2;
    opacity: 0;
    animation: coinFall 4.5s linear infinite
}

.coin:after {
    content: "₽";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #7a5618;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 12px;
    font-weight: 700
}

@keyframes coinFall {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0
    }
    10%, 85% {
        opacity: 1
    }
    100% {
        transform: translateY(var(--cy, 500px)) rotate(720deg);
        opacity: 0
    }
}

.hero-fore {
    position: relative;
    z-index: 4
}

.mantra {
    text-align: center;
    font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(38px, 6vw, 98px);
    line-height: .98;
    color: var(--ink);
    letter-spacing: -.02em;
    margin: 0 auto 50px;
    max-width: 1100px;
    pointer-events: none
}

.mantra .it {
    color: var(--blue)
}

.mantra .row2 {
    display: block;
    margin-top: 2px
}

.mantra .amp {
    color: var(--gold);
    font-family: "DM Serif Display", Georgia, serif;
    font-style: italic;
    padding-right: 6px
}

.hero-lede {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft)
}

.hero-lede em {
    font-style: italic;
    color: var(--ink)
}

.calc {
    position: relative;
    max-width: 720px;
    margin: 0 auto
}

.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px
}

.calc-label .mono {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--ink-soft);
    letter-spacing: .18em
}

.calc-amount {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(54px, 6.5vw, 84px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px
}

.calc-amount .cur {
    color: var(--blue);
    font-style: italic;
    font-weight: 400
}

.range-wrap {
    position: relative;
    margin-top: 18px
}

.hero .slider {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 56px;
    background: transparent !important;
    outline: none;
    margin: 0
}

.hero .slider::-webkit-slider-runnable-track {
    height: 8px;
    background: rgba(23, 21, 19, .15);
    border: none;
    border-radius: 8px
}

.hero .slider::-moz-range-track {
    height: 8px;
    background: rgba(23, 21, 19, .15);
    border: none;
    border-radius: 8px
}

.hero .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 56px;
    height: 56px;
    background: url('/theme/site/img/moneybox/hamsa.svg') center/contain no-repeat;
    border: none;
    border-radius: 50%;
    margin-top: -24px;
    cursor: grab;
    filter: drop-shadow(0 0 0 6px rgba(201, 162, 74, .05)) drop-shadow(0 10px 24px rgba(201, 162, 74, .5));
    transition: transform .2s ease
}

.hero .slider::-moz-range-thumb {
    width: 56px;
    height: 56px;
    background: url('/theme/site/img/moneybox/hamsa.svg') center/contain no-repeat;
    border: none;
    border-radius: 50%;
    cursor: grab;
    filter: drop-shadow(0 10px 24px rgba(201, 162, 74, .5))
}

.hero .slider::-webkit-slider-thumb:hover {
    transform: scale(1.1) rotate(-4deg)
}

.hero .slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.05) rotate(4deg)
}

.hero .track-fill {
    position: absolute;
    left: 0;
    top: 50%;
    height: 8px;
    background: var(--blue);
    transform: translateY(-50%);
    pointer-events: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(42, 63, 209, .3)
}

.ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: .06em
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 46px;
    flex-wrap: wrap
}

.btn-primary {
    appearance: none;
    border: none;
    cursor: pointer;
    background: var(--ink);
    color: var(--paper);
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    padding: 24px 44px;
    border-radius: 999px;
    letter-spacing: .01em;
    box-shadow: 0 12px 30px rgba(23, 21, 19, .18), inset 0 0 0 1px rgba(255, 255, 255, .06);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease
}

.btn-primary:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 199, 90, .35), transparent 50%);
    opacity: 0;
    transition: opacity .3s ease
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(23, 21, 19, .25)
}

.btn-primary:hover:before {
    opacity: 1
}

.btn-primary span {
    position: relative;
    z-index: 1
}

.terms {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .14em;
    max-width: 260px;
    line-height: 1.6;
    margin: 0
}

.ticker {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 18px 0;
    position: relative;
    z-index: 4
}

.ticker .item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ticker .num {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 500
}

.ticker .blue, .blue {
    color: var(--blue);
    font-style: italic
}

.ticker .lbl {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--ink-soft)
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap
}

.section-head h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: .95;
    margin: 0;
    letter-spacing: -.02em;
    max-width: 780px
}

.section-head h2 em {
    font-style: italic;
    color: var(--blue)
}

.section-head .kicker, .kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-soft)
}

.kicker .num {
    color: var(--gold)
}

.why {
    padding: 140px 0 120px;
    position: relative
}

.tarot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 560px;
    perspective: 1800px
}

.card {
    position: absolute;
    width: 300px;
    height: 480px;
    background: linear-gradient(180deg, #f4efe2 0%, #e7e0cc 100%);
    border: 1.5px solid var(--ink);
    border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(23, 21, 19, .35), 0 10px 20px -10px rgba(23, 21, 19, .25);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), box-shadow .4s ease, z-index 0s;
    transform-origin: center bottom;
    will-change: transform
}

.card:before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(23, 21, 19, .35);
    border-radius: 9px;
    pointer-events: none
}

.card .arcanum {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--ink-soft);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.card .roman {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 22px;
    color: var(--blue);
    letter-spacing: 0
}

.card .glyph {
    flex: 1;
    display: grid;
    place-items: center;
    margin: 8px 0
}

.card .glyph img {
    width: 140px;
    height: 140px
}

.card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 8px;
    letter-spacing: -.01em
}

.card h3 em {
    font-style: italic;
    color: var(--blue)
}

.card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0
}

.card .footer-rune {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    font-size: 18px;
    margin-top: 10px
}

.card.c1 {
    transform: translateX(-360px) rotate(-14deg) translateY(20px);
    z-index: 1
}

.card.c2 {
    transform: translateX(-110px) rotate(-5deg);
    z-index: 2
}

.card.c3 {
    transform: translateX(140px) rotate(5deg);
    z-index: 3
}

.card.c4 {
    transform: translateX(380px) rotate(14deg) translateY(20px);
    z-index: 4
}

.card:hover {
    transform: translateX(var(--tx, 0)) rotate(0deg) translateY(-30px) scale(1.05);
    z-index: 10;
    box-shadow: 0 40px 80px -20px rgba(23, 21, 19, .5)
}

.card.c1:hover {
    --tx: -360px
}

.card.c2:hover {
    --tx: -110px
}

.card.c3:hover {
    --tx: 140px
}

.card.c4:hover {
    --tx: 380px
}

.how {
    padding: 40px 0 120px
}

.steps {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule)
}

.step {
    padding: 36px 28px;
    border-left: 1px solid var(--rule);
    position: relative
}

.step:first-child {
    border-left: none
}

.step .n {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 18px
}

.step h4 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 10px;
    letter-spacing: -.01em
}

.step p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0
}

.reqs {
    padding: 0 0 120px;
    position: relative;
    overflow: hidden
}

.reqs-grid {
    display: grid;
    grid-template-columns:1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2
}

.reqs-buddha {
    position: relative;
    aspect-ratio: 1;
    width: 100%
}

.halo-sm {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(240, 199, 90, .25) 0%, rgba(240, 199, 90, .08) 35%, transparent 70%);
    animation: pulse 7s ease-in-out infinite;
    top: 30%;
}

@keyframes float-sm {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

.reqs h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 4.5vw, 68px);
    line-height: 1;
    margin: 14px 0 0;
    font-weight: 400
}

.reqs h2 em {
    font-style: italic;
    color: var(--blue)
}

.reqs ul {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    counter-reset: req
}

.reqs li {
    padding: 18px 0;
    border-bottom: 1px dashed var(--rule);
    display: flex;
    align-items: baseline;
    gap: 18px;
    font-size: 18px
}

.reqs li:before {
    content: counter(req, decimal-leading-zero);
    counter-increment: req;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .1em
}

.reqs ul li:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.page-hero {
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden
}

.page-hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(64px, 8vw, 140px);
    line-height: .9;
    margin: 0;
    letter-spacing: -.025em;
    max-width: 1100px
}

.page-hero h1 em {
    font-style: italic;
    color: var(--blue)
}

.page-hero p.lede {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 32px 0 0
}

.mantra-bg {
    position: absolute;
    right: -2vw;
    top: 30%;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(120px, 18vw, 260px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(42, 63, 209, .12);
    line-height: 1;
    letter-spacing: -.03em;
    pointer-events: none;
    user-select: none;
    transform: rotate(-4deg)
}

.cats {
    display: flex;
    gap: 14px;
    margin: 60px 0 30px;
    flex-wrap: wrap
}

.cat {
    border: 1px solid var(--ink);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    background: transparent;
    transition: all .2s ease;
    font-family: Manrope, sans-serif
}

.cat:hover, .cat.active {
    background: var(--ink);
    color: var(--paper)
}

.qa {
    padding: 20px 0 80px
}

details.q {
    border-top: 1px solid var(--rule);
    padding: 0
}

details.q:last-of-type {
    border-bottom: 1px solid var(--rule)
}

details.q summary {
    cursor: pointer;
    list-style: none;
    display: grid;
    grid-template-columns:60px 1fr 40px;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    transition: color .2s ease
}

details.q summary::-webkit-details-marker {
    display: none
}

details.q summary .num {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .1em
}

details.q summary .chev {
    width: 32px;
    height: 32px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform .3s ease, background .3s ease;
    font-size: 14px
}

details.q[open] summary {
    color: var(--blue)
}

details.q[open] summary .chev {
    transform: rotate(45deg);
    background: var(--blue);
    color: var(--paper);
    border-color: var(--blue)
}

details.q .body {
    padding: 0 0 36px 92px;
    max-width: 920px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft)
}

details.q .body p {
    margin: 0 0 14px
}

details.q .body strong {
    color: var(--ink);
    font-weight: 600
}

details.q summary:hover {
    color: var(--blue)
}

.closer {
    padding: 120px 0;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--rule)
}

.closer h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(56px, 7vw, 120px);
    line-height: .95;
    margin: 0;
    letter-spacing: -.02em;
    color: var(--ink)
}

.closer .btn {
    display: inline-block;
    margin-top: 48px;
    background: var(--ink);
    color: var(--paper);
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    padding: 24px 48px;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 30px rgba(23, 21, 19, .18)
}

.closer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(23, 21, 19, .25)
}

.lp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(23, 21, 19, .45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000
}

.lp-modal-overlay.is-open {
    display: flex
}

.lp-modal {
    width: min(520px, 100%);
    background: #f4efe2;
    border: 1px solid var(--ink);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(23, 21, 19, .35);
    position: relative
}

.lp-modal__close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    cursor: pointer
}

.lp-modal__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 8px
}

.lp-modal__subtitle {
    margin: 0 0 24px;
    color: var(--ink-soft)
}

.lp-modal__amount-badge {
    display: inline-block;
    color: var(--blue);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    margin-bottom: 18px
}

.lp-modal__field label {
    display: block;
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 8px
}

.lp-modal__field input {
    width: 100%;
    border: 1px solid var(--rule);
    background: var(--paper);
    border-radius: 8px;
    padding: 16px;
    font-size: 18px;
    color: var(--ink)
}

.lp-modal__error, .lp-modal__field-error {
    display: none;
    margin-top: 10px;
    color: #9b1c1c;
    font-size: 13px
}

.lp-modal__agreement {
    margin: 20px 0;
    color: var(--ink-soft);
    font-size: 13px
}

.lp-modal__agreement label {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.lp-modal__agreement input[type="checkbox"] + label:before {
    flex: 0 0 30px
}

.lp-modal__docs {
    max-height: 150px;
    overflow: auto;
    margin-top: 12px;
    padding: 12px;
    border: 1px dashed var(--rule)
}

.lp-modal__submit {
    width: 100%;
    background: var(--ink);
    color: var(--paper);
    border: 0;
    border-radius: 999px;
    padding: 18px 28px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-style: italic;
    cursor: pointer
}

.hide {
    display: none !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.text-center {
    text-align: center !important
}

.d-flex {
    display: flex !important
}

.align-items-center {
    align-items: center !important
}

.justify-content-center {
    justify-content: center !important
}

.container {
    width: 100%;
    padding: 3rem 15px 0;
    margin-right: auto;
    margin-left: auto
}

.documents {
    margin-bottom: 100px
}

.documents-title {
    margin: 0 0 30px;
    color: var(--ink);
    font-size: 40px;
    font-weight: 500;
    line-height: 49px
}

.documents__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.documents__list-item {
    min-height: 98px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease
}

.documents__list-item:hover {
    border-color: var(--blue-soft);
    box-shadow: 0 12px 28px rgba(42, 63, 209, .12);
    transform: translateY(-2px)
}

.documents__list-item p {
    margin: 0;
    color: var(--ink);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    display: flex;
    align-items: center
}

.documents__list-item img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto
}

footer.site {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 40px;
}

footer.site .wrap {
    display: grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap: 60px
}

footer.site h5 {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--gold);
    margin: 0 0 18px
}

footer.site .brand .mark {
    color: var(--gold-pale)
}

footer.site p, footer.site a, footer.site li {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(236, 232, 223, .7)
}

footer.site a:hover {
    color: var(--gold-pale)
}

footer.site ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

footer.site .legal {
    grid-column: 1/-1;
    border-top: 1px solid rgba(236, 232, 223, .15);
    padding-top: 24px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(236, 232, 223, .4);
    flex-wrap: wrap
}

@media (max-width: 1100px) {
    .mantra {
        font-size: clamp(40px, 10vw, 90px)
    }

    .tarot {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        min-height: auto
    }

    .card {
        position: relative;
        width: min(320px, 90vw);
        height: auto
    }

    .card.c1, .card.c2, .card.c3, .card.c4, .card:hover {
        transform: none
    }

    .card:hover {
        transform: translateY(-4px) scale(1.02)
    }

    .steps {
        grid-template-columns:1fr 1fr
    }

    .step {
        border-left: none;
        border-top: 1px solid var(--rule)
    }

    .step:first-child, .step:nth-child(2) {
        border-top: none
    }

    .reqs-grid {
        grid-template-columns:1fr
    }

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

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

@media (max-width: 991px) {
    .documents__list {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 767px) {
    .documents__list {
        grid-template-columns: 1fr
    }
}

@media (max-width: 900px) {
    .buddha-bg {
        left: 50%;
        animation-name: float-m
    }

    details.q summary {
        grid-template-columns:40px 1fr 32px;
        gap: 18px;
        padding: 24px 0
    }

    details.q .body {
        padding-left: 58px
    }
}

@media (max-width: 700px) {
    header.site .wrap {
        padding: 14px 18px
    }

    .brand .tag {
        display: none
    }

    nav.primary {
        gap: 14px
    }

    nav.primary a:not(.cta):not(.phone):not(.active) {
        display: none
    }

    .phone {
        font-size: 16px
    }

    .wrap {
        padding: 0 18px
    }

    .ticker {
        flex-wrap: wrap;
        gap: 18px;
        flex-direction: column;
    }

    .ticker .num, .ticker .lbl {
        text-align: center;
    }

    .why {
        padding: 40px 0 120px;
    }

    .reqs-buddha {
        display: none;
    }

    footer .brand {
        max-width: 100%;
        justify-content: center;
    }

    footer.site .wrap {
        gap: 20px;
    }

    .steps {
        grid-template-columns:1fr
    }

    .step:nth-child(2) {
        border-top: 1px solid var(--rule)
    }

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

    .calc-label {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column
    }

    .hero {
        padding-top: 40px
    }

    .cats {
        margin-top: 36px
    }
}

.coin.c1 {
    left: 18%;
    top: 10%;
    --cy: 520px;
    animation-delay: 0s
}

.coin.c2 {
    left: 32%;
    top: 6%;
    --cy: 480px;
    animation-delay: 1.2s
}

.coin.c3 {
    left: 48%;
    top: 12%;
    --cy: 540px;
    animation-delay: .6s
}

.coin.c4 {
    left: 62%;
    top: 8%;
    --cy: 500px;
    animation-delay: 2.1s
}

.coin.c5 {
    left: 78%;
    top: 14%;
    --cy: 460px;
    animation-delay: 1.6s
}

.coin.c6 {
    left: 28%;
    top: 2%;
    --cy: 520px;
    animation-delay: 3s
}

.coin.c7 {
    left: 72%;
    top: 4%;
    --cy: 520px;
    animation-delay: 2.6s
}

.buddha-bg {
    display: none
}

footer.site .footer-company {
    grid-column: span 1
}

footer.site .footer-company p {
    margin: 0 0 12px
}

footer.site .footer-bottom {
    grid-column: 1/-1;
    border-top: 1px solid rgba(236, 232, 223, .15);
    padding-top: 24px;
    margin-top: 30px
}

footer.site .footer-legal-text p {
    margin: 0 0 12px;
    color: rgba(236, 232, 223, .62);
    font-size: 12px;
    line-height: 1.6
}

footer.site .footer-legal-link {
    color: rgba(236, 232, 223, .78);
    text-decoration: underline;
    text-underline-offset: 3px
}

footer.site .footer-copyright {
    border-top: 1px solid rgba(236, 232, 223, .12);
    margin-top: 22px;
    padding-top: 20px
}

footer.site .footer-copyright p {
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(236, 232, 223, .42)
}
