:root {
    --ink: #0f0f0f;
    --ink-soft: #151513;
    --ink-raised: #1b1a18;
    --gold: #dfca9e;
    --gold-bright: #ecd9af;
    --paper: #f5efe2;
    --white: #fffdf8;
    --muted: rgba(255, 253, 248, 0.62);
    --muted-dark: rgba(15, 15, 15, 0.62);
    --line: rgba(223, 202, 158, 0.2);
    --line-light: rgba(255, 253, 248, 0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Fira Sans', sans-serif;
    --mono: 'Fira Mono', monospace;
    --shell: min(1400px, calc(100vw - 80px));
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    background: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: 20;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .veritas-cookie-settings {
    visibility: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

#experience,
#features,
#journal,
#download {
    scroll-margin-top: 92px;
}

button {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 16px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--gold);
    font: 500 12px/1 var(--mono);
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: clamp(110px, 11vw, 190px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
    color: var(--gold);
    font: 400 10px/1.3 var(--mono);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 38px;
    height: 1px;
    background: currentColor;
}

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
    border-bottom: 1px solid transparent;
    transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.site-header.is-sticky {
    position: fixed;
    background: rgba(15, 15, 15, 0.88);
    border-color: var(--line-light);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 24px;
    width: var(--shell);
    height: 88px;
    margin-inline: auto;
}

.language-switcher {
    position: relative;
    z-index: 120;
    justify-self: end;
    color: var(--gold);
    font: 500 10px/1 var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.language-switcher summary {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid rgba(223, 202, 158, 0.3);
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.76);
    cursor: pointer;
    list-style: none;
}

.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary i { font-style: normal; transition: transform 160ms ease; }
.language-switcher[open] summary i { transform: rotate(180deg); }
.language-switcher summary:focus-visible,
.language-switcher a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.language-switcher nav {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 8px;
    border: 1px solid rgba(223, 202, 158, 0.26);
    border-radius: 14px;
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.language-switcher nav a {
    padding: 10px 9px;
    border-radius: 8px;
    color: rgba(255, 253, 248, 0.74);
    text-decoration: none;
    text-transform: none;
}

.language-switcher nav a:hover,
.language-switcher nav a[aria-current='page'] { color: var(--ink); background: var(--gold); }

.wordmark {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    width: max-content;
    color: var(--white);
    font: 500 13px/1 var(--mono);
    letter-spacing: 0.24em;
    text-decoration: none;
}

.wordmark__mark {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid rgba(223, 202, 158, 0.28);
    border-radius: 9px;
    background: #111;
    box-shadow: 0 0 18px rgba(223, 202, 158, 0.1);
}

.wordmark__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.desktop-nav a,
.header-cta {
    position: relative;
    color: rgba(255, 253, 248, 0.7);
    font: 400 11px/1 var(--mono);
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: '';
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current='page'],
.header-cta:hover {
    color: var(--gold-bright);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.desktop-nav a[aria-current='page']::after {
    transform: scaleX(1);
}

.header-cta {
    justify-self: end;
    padding: 12px 0 10px;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: min(960px, 100svh);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line-light);
    background:
        radial-gradient(circle at 76% 42%, rgba(223, 202, 158, 0.08), transparent 31%),
        linear-gradient(180deg, #10100f 0%, #0f0f0f 82%);
}

.hero::after {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: '';
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.97) 0%, rgba(15, 15, 15, 0.54) 48%, rgba(15, 15, 15, 0.2) 100%);
}

.hero__atmosphere {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
}

.hero__atmosphere::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 63%;
    height: 100%;
    content: '';
    opacity: 0.72;
    background: url('/assets/images/landing/hero-moon.webp') center right / auto 61% no-repeat;
    filter: saturate(0.8);
}

.hero__orbit {
    position: absolute;
    border: 1px solid rgba(223, 202, 158, 0.1);
    border-radius: 50%;
}

.hero__orbit--one {
    top: 8%;
    right: -15%;
    width: 58vw;
    aspect-ratio: 1;
}

.hero__orbit--two {
    top: 26%;
    right: 8%;
    width: 28vw;
    aspect-ratio: 1;
}

.hero__orbit--two::before {
    position: absolute;
    top: 8%;
    left: 20%;
    width: 5px;
    height: 5px;
    content: '';
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(460px, 0.94fr) minmax(520px, 1.06fr);
    align-items: center;
    min-height: min(900px, calc(100svh - 50px));
    padding-top: 100px;
}

.hero__copy {
    position: relative;
    z-index: 3;
    padding: 70px 0 86px;
}

.hero h1 {
    max-width: 790px;
    margin: 0;
    font: 500 clamp(74px, 7.4vw, 120px) / 0.82 var(--serif);
    letter-spacing: -0.055em;
}

.hero h1 em,
.final-cta h2 em {
    color: var(--gold);
    font-weight: 400;
}

.hero__lead {
    max-width: 590px;
    margin: 42px 0 36px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 190px;
    min-height: 64px;
    padding: 11px 24px;
    color: var(--ink);
    border: 1px solid var(--gold);
    border-radius: 32px;
    background: var(--gold);
    text-decoration: none;
    transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.store-button svg,
.store-button img {
    display: block;
    width: 23px;
    height: auto;
    flex: 0 0 auto;
}

.store-button svg {
    fill: currentColor;
}

.store-button .play-icon {
    width: 22px;
}

.store-button > span {
    display: flex;
    flex-direction: column;
}

.store-button small {
    margin-bottom: 2px;
    font: 400 9px/1 var(--sans);
}

.store-button strong {
    font: 500 15px/1.15 var(--sans);
}

.store-button:hover {
    color: var(--gold-bright);
    background: transparent;
    box-shadow: 0 12px 38px rgba(223, 202, 158, 0.11);
    transform: translateY(-2px);
}

.hero__qr {
    display: grid;
    grid-template-columns: 106px 1fr;
    align-items: center;
    gap: 16px;
    width: 365px;
    max-width: 100%;
    margin-top: 20px;
    padding: 8px 18px 8px 8px;
    color: inherit;
    border: 1px solid rgba(223, 202, 158, 0.25);
    border-radius: 18px;
    background: rgba(15, 15, 15, 0.48);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero__qr:hover {
    border-color: rgba(223, 202, 158, 0.58);
    background: rgba(22, 21, 18, 0.72);
    transform: translateY(-2px);
}

.hero__qr-code {
    display: grid;
    width: 106px;
    aspect-ratio: 1;
    padding: 6px;
    place-items: center;
    border-radius: 11px;
    background: #f4efe6;
}

.hero__qr-code img {
    width: 100%;
    height: auto;
}

.hero__qr-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__qr-copy small,
.hero__qr-copy em {
    color: rgba(255, 253, 248, 0.43);
    font: 400 7px/1.4 var(--mono);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__qr-copy strong {
    margin: 6px 0 5px;
    color: var(--gold-bright);
    font: 500 19px/1.05 var(--serif);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
    color: rgba(255, 253, 248, 0.55);
    font: 400 10px/1 var(--mono);
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.text-link span {
    color: var(--gold);
    font-size: 17px;
    transition: transform 180ms ease;
}

.text-link:hover {
    color: var(--white);
}

.text-link:hover span {
    transform: translateY(4px);
}

.hero__visual {
    position: relative;
    z-index: 2;
    align-self: stretch;
    min-height: 760px;
}

.hero__moon {
    position: absolute;
    top: 18%;
    left: 0;
    width: 760px;
    height: 420px;
    opacity: 0.82;
    background: url('/assets/images/landing/hero-moon.webp') center / cover no-repeat;
    filter: drop-shadow(0 0 54px rgba(223, 202, 158, 0.08));
    will-change: transform;
}

.hero__screen-frame {
    position: absolute;
    z-index: 3;
    top: 13%;
    right: 10%;
    width: clamp(270px, 23vw, 370px);
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(223, 202, 158, 0.38);
    border-radius: 2px;
    background: rgba(15, 15, 15, 0.72);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55);
    transform: rotate(2.5deg);
    will-change: transform;
}

.hero__screen-frame::after {
    position: absolute;
    inset: 10px;
    pointer-events: none;
    content: '';
    border: 1px solid rgba(255, 253, 248, 0.08);
}

.hero__screen-label {
    position: absolute;
    z-index: 2;
    top: 26px;
    left: -1px;
    padding: 8px 14px;
    color: var(--ink);
    background: var(--gold);
    font: 500 8px/1 var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__screen-frame img {
    width: 100%;
}

.hero__note {
    position: absolute;
    z-index: 4;
    color: rgba(255, 253, 248, 0.55);
    font: 400 9px/1.55 var(--mono);
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero__note::before {
    position: absolute;
    top: 4px;
    right: calc(100% + 13px);
    width: 56px;
    height: 1px;
    content: '';
    background: rgba(223, 202, 158, 0.4);
}

.hero__note span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
}

.hero__note--top {
    top: 21%;
    right: -1%;
}

.hero__note--bottom {
    right: 1%;
    bottom: 16%;
}

.hero__index {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 253, 248, 0.34);
    font: 400 8px/1 var(--mono);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.principles {
    color: var(--ink);
    background: var(--gold);
}

.principles__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 112px;
}

.principles p {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 24px 34px;
    border-left: 1px solid rgba(15, 15, 15, 0.2);
    font-size: 13px;
}

.principles p:last-child {
    border-right: 1px solid rgba(15, 15, 15, 0.2);
}

.principles span {
    font: 400 9px/1 var(--mono);
}

.intro {
    background: var(--ink);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(560px, 1fr) minmax(300px, 0.55fr);
    column-gap: 11vw;
    align-items: end;
    margin-bottom: 100px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.section-heading h2,
.features__heading h2,
.journal__heading h2,
.process__heading h2 {
    margin: 0;
    font: 500 clamp(62px, 7vw, 104px) / 0.9 var(--serif);
    letter-spacing: -0.05em;
}

.section-heading > p:last-child {
    max-width: 490px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.showcase {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 700px;
    overflow: hidden;
    border: 1px solid var(--line-light);
    background: var(--ink-soft);
}

.showcase--tarot {
    grid-column: 1 / 9;
}

.showcase--compatibility {
    grid-column: 9 / 13;
    grid-template-columns: 1fr;
}

.showcase--portrait {
    grid-column: 3 / 13;
    grid-template-columns: 0.8fr 1.2fr;
    margin-top: 2px;
}

.showcase::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: '';
    background: radial-gradient(circle at 80% 35%, rgba(223, 202, 158, 0.13), transparent 32%);
}

.showcase--compatibility::before {
    background: radial-gradient(circle at 50% 70%, rgba(111, 82, 61, 0.35), transparent 45%);
}

.showcase__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(34px, 4.5vw, 70px);
}

.showcase__number {
    margin: 0 auto auto 0;
    color: var(--gold);
    font: 400 9px/1 var(--mono);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.showcase h3 {
    margin: 0 0 25px;
    font: 500 clamp(43px, 4.6vw, 68px) / 0.92 var(--serif);
    letter-spacing: -0.04em;
}

.showcase__copy > p:not(.showcase__number) {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.showcase__copy > a {
    width: max-content;
    margin-top: 30px;
    color: var(--gold);
    font: 400 9px/1 var(--mono);
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
}

.showcase__copy > a span {
    display: inline-block;
    margin-left: 10px;
    transition: transform 180ms ease;
}

.showcase__copy > a:hover span {
    transform: translate(3px, -3px);
}

.showcase__art {
    position: relative;
    min-height: 680px;
}

.showcase__art img {
    position: absolute;
    right: 3%;
    bottom: -15%;
    width: min(86%, 470px);
    filter: drop-shadow(0 38px 50px rgba(0, 0, 0, 0.38));
    transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.showcase:hover .showcase__art img {
    transform: translateY(-12px);
}

.showcase--compatibility .showcase__copy {
    z-index: 3;
    justify-content: flex-start;
    padding-bottom: 0;
}

.showcase--compatibility .showcase__copy > p:not(.showcase__number) {
    max-width: 330px;
}

.showcase--compatibility .showcase__art {
    position: absolute;
    inset: 34% 0 0;
    min-height: 0;
}

.showcase--compatibility .showcase__art img {
    right: 50%;
    bottom: -33%;
    width: 88%;
    transform: translateX(50%);
}

.showcase--compatibility:hover .showcase__art img {
    transform: translate(50%, -12px);
}

.showcase--portrait .showcase__art img {
    right: 12%;
    bottom: -25%;
    width: min(68%, 460px);
}

.process {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--ink);
    background: var(--paper);
}

.process::before,
.process::after {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    content: '';
    border: 1px solid rgba(154, 134, 93, 0.1);
    border-radius: 50%;
}

.process::before {
    top: -190px;
    right: -130px;
    width: 560px;
    height: 560px;
    box-shadow: 0 0 0 62px rgba(154, 134, 93, 0.025), 0 0 0 124px rgba(154, 134, 93, 0.018);
}

.process::after {
    right: 76px;
    bottom: -126px;
    width: 290px;
    height: 290px;
}

.process .eyebrow {
    color: #796744;
}

.process__heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 58px;
}

.process__heading .eyebrow {
    align-self: start;
}

.process__heading h2 {
    grid-column: 2;
}

.process__steps {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(15, 15, 15, 0.22);
}

.process__steps::before {
    position: absolute;
    top: 64px;
    bottom: 64px;
    left: 29px;
    width: 1px;
    content: '';
    background: linear-gradient(to bottom, transparent, rgba(154, 134, 93, 0.56) 12%, rgba(154, 134, 93, 0.56) 88%, transparent);
}

.process__steps li {
    display: grid;
    grid-template-columns: 112px 1fr;
    min-height: 176px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(15, 15, 15, 0.22);
    transition: background 250ms ease;
}

.process__steps li:hover {
    background: rgba(154, 134, 93, 0.035);
}

.process__number {
    position: relative;
    z-index: 1;
    align-self: center;
    width: 60px;
    padding-block: 9px;
    color: #9a865d;
    background: var(--paper);
    font: 400 47px/1 var(--serif);
    text-align: center;
}

.process__steps > li > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.66fr);
    align-items: center;
    gap: clamp(44px, 6vw, 88px);
}

.process__copy {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1fr);
    align-items: center;
    gap: clamp(30px, 4vw, 58px);
}

.process__steps h3 {
    margin: 0;
    font: 500 34px/1 var(--serif);
}

.process__steps p {
    max-width: 530px;
    margin: 0;
    color: var(--muted-dark);
    font-size: 14px;
    line-height: 1.8;
}

.process__instrument {
    position: relative;
    min-height: 116px;
    padding: 16px 18px;
    overflow: hidden;
    border: 1px solid rgba(93, 78, 49, 0.2);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.46);
    box-shadow: 0 16px 44px rgba(79, 64, 36, 0.055);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process__steps li:hover .process__instrument {
    border-color: rgba(93, 78, 49, 0.36);
    box-shadow: 0 20px 48px rgba(79, 64, 36, 0.085);
    transform: translateX(-4px);
}

.process__instrument-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #796744;
    font: 400 7px/1 var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process__instrument-head i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9a865d;
    box-shadow: 0 0 0 5px rgba(154, 134, 93, 0.1);
}

.process__birth-data {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.process__birth-data > span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 9px;
    border-right: 1px solid rgba(93, 78, 49, 0.13);
}

.process__birth-data > span:last-child {
    border-right: 0;
}

.process__birth-data small {
    color: rgba(46, 40, 28, 0.48);
    font: 400 7px/1 var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process__birth-data strong {
    color: #292318;
    font: 500 16px/1 var(--serif);
}

.process__mini-orbit {
    position: absolute;
    right: -20px;
    bottom: -42px;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(154, 134, 93, 0.17);
    border-radius: 50%;
}

.process__mini-orbit::before,
.process__mini-orbit::after {
    position: absolute;
    content: '';
    border: 1px solid rgba(154, 134, 93, 0.13);
    border-radius: 50%;
}

.process__mini-orbit::before { inset: 20%; }
.process__mini-orbit::after { inset: 39%; }

.process__mini-orbit > span {
    position: absolute;
    top: 11px;
    left: 28px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9a865d;
}

.process__lens-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 17px;
}

.process__lens-list span {
    display: grid;
    min-height: 34px;
    padding: 5px;
    place-items: center;
    color: rgba(46, 40, 28, 0.55);
    border: 1px solid rgba(93, 78, 49, 0.13);
    border-radius: 18px;
    font: 400 6px/1.2 var(--mono);
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.process__lens-list .is-active {
    color: var(--paper);
    border-color: #352f23;
    background: #352f23;
}

.process__instrument--lenses > small {
    display: block;
    margin-top: 11px;
    color: rgba(46, 40, 28, 0.42);
    font: 400 6px/1 var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process__instrument--pattern .process__instrument-head strong {
    color: #292318;
    font-weight: 400;
}

.process__week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    margin-top: 18px;
}

.process__week span {
    position: relative;
    display: grid;
    padding-top: 15px;
    place-items: center;
    color: rgba(46, 40, 28, 0.46);
    font: 400 7px/1 var(--mono);
}

.process__week span::before {
    position: absolute;
    top: 0;
    width: 7px;
    height: 7px;
    content: '';
    border: 1px solid rgba(93, 78, 49, 0.32);
    border-radius: 50%;
}

.process__week span:nth-child(2)::before,
.process__week span:nth-child(4)::before,
.process__week span:nth-child(7)::before {
    border-color: #9a865d;
    background: #9a865d;
}

.process__signals {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.process__signals span {
    padding: 5px 9px;
    color: #796744;
    border-radius: 10px;
    background: rgba(154, 134, 93, 0.09);
    font: 400 6px/1 var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.process__cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 20px;
    margin: 34px 0 0 112px;
    color: #352f23;
    font: 400 9px/1 var(--mono);
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.process__cta span {
    color: #9a865d;
    font-size: 15px;
    transition: transform 180ms ease;
}

.process__cta:hover span {
    transform: translate(4px, -4px);
}

.features__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 80px;
}

.features__heading .eyebrow {
    align-self: flex-start;
}

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

.feature-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 470px;
    padding: clamp(32px, 4vw, 60px);
    overflow: hidden;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: var(--ink-soft);
    text-decoration: none;
    transition: background 300ms ease;
}

.feature-tile:hover {
    background: #1b1b18;
}

.feature-tile__index {
    color: rgba(255, 253, 248, 0.38);
    font: 400 9px/1 var(--mono);
}

.feature-tile p {
    margin: 0 0 16px;
    color: var(--gold);
    font: 400 9px/1 var(--mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.feature-tile h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    font: 500 clamp(38px, 4.2vw, 62px) / 0.95 var(--serif);
    letter-spacing: -0.035em;
}

.feature-tile > div {
    position: relative;
    z-index: 2;
}

.feature-tile__arrow {
    position: absolute;
    top: 38px;
    right: 42px;
    color: var(--gold);
    font-size: 18px;
    transition: transform 180ms ease;
}

.feature-tile:hover .feature-tile__arrow {
    transform: translate(4px, -4px);
}

.feature-tile--daily {
    color: var(--ink);
    background: var(--gold);
}

.feature-tile--daily:hover {
    background: var(--gold-bright);
}

.feature-tile--daily p,
.feature-tile--daily .feature-tile__arrow {
    color: var(--ink);
}

.feature-tile--numerology img {
    position: absolute;
    top: -29%;
    right: -8%;
    width: 45%;
    opacity: 0.7;
    transform: rotate(8deg);
    mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
}

.feature-tile--tarot,
.feature-tile--birth-chart {
    background:
        radial-gradient(circle at 82% 22%, rgba(223, 202, 158, 0.08), transparent 36%),
        var(--ink-soft);
}

.feature-tile--tarot img,
.feature-tile--birth-chart img {
    position: absolute;
    z-index: 1;
    top: -27%;
    right: -5%;
    width: 44%;
    max-width: none;
    opacity: 0.68;
    transform: rotate(-7deg);
    filter: saturate(0.82) contrast(1.03);
    mask-image: linear-gradient(to bottom, #000 26%, rgba(0, 0, 0, 0.92) 62%, transparent 94%);
    transition: opacity 300ms ease, transform 500ms ease;
}

.feature-tile--birth-chart img {
    top: -22%;
    right: -4%;
    width: 45%;
    opacity: 0.64;
    transform: rotate(7deg);
}

.feature-tile--tarot:hover img {
    opacity: 0.82;
    transform: rotate(-5deg) translateY(-8px);
}

.feature-tile--birth-chart:hover img {
    opacity: 0.8;
    transform: rotate(5deg) translateY(-8px);
}

.calculator-portal {
    padding-top: 50px;
}

.calculator-portal__stage {
    position: relative;
    min-height: 920px;
    display: grid;
    grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
    grid-template-rows: 1fr auto auto;
    overflow: hidden;
    border: 1px solid var(--line-light);
    background:
        radial-gradient(circle at 72% 30%, rgba(223, 202, 158, 0.1), transparent 32%),
        #121210;
}

.calculator-portal__copy {
    position: relative;
    z-index: 4;
    padding: clamp(58px, 6vw, 96px);
    border-right: 1px solid var(--line-light);
}

.calculator-portal__copy h2 {
    margin: 30px 0;
    font: 500 clamp(58px, 6vw, 94px) / 0.86 var(--serif);
    letter-spacing: -0.052em;
}

.calculator-portal__copy > p:not(.eyebrow) {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.calculator-portal__all {
    display: inline-flex;
    gap: 28px;
    margin-top: 36px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold);
    color: var(--gold);
    font: 400 10px/1 var(--mono);
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.calculator-portal__art {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.calculator-portal__art::before,
.calculator-portal__art::after {
    position: absolute;
    content: '';
    border: 1px solid rgba(223, 202, 158, 0.12);
    border-radius: 50%;
}

.calculator-portal__art::before {
    inset: 10% 17%;
}

.calculator-portal__art::after {
    inset: 26% 31%;
}

.calculator-portal__art img {
    position: absolute;
    width: clamp(210px, 21vw, 330px);
    opacity: 0.78;
    object-fit: contain;
    filter: contrast(1.08);
    transition: opacity 350ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.calculator-portal__art-life { left: 3%; top: 7%; transform: rotate(-8deg); }
.calculator-portal__art-moon { right: 1%; top: 4%; transform: rotate(7deg); }
.calculator-portal__art-tarot { left: 13%; bottom: -12%; transform: rotate(7deg); }
.calculator-portal__art-astro { right: 10%; bottom: -10%; transform: rotate(-6deg); }
.calculator-portal__stage:hover .calculator-portal__art-life { transform: rotate(-5deg) translateY(-7px); }
.calculator-portal__stage:hover .calculator-portal__art-moon { transform: rotate(4deg) translateY(-8px); }
.calculator-portal__stage:hover .calculator-portal__art-tarot { transform: rotate(4deg) translateY(-12px); }
.calculator-portal__stage:hover .calculator-portal__art-astro { transform: rotate(-3deg) translateY(-12px); }

.calculator-portal__links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
}

.calculator-portal__links a {
    position: relative;
    min-width: 0;
    min-height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 30px;
    border-right: 1px solid var(--line-light);
    text-decoration: none;
    transition: background 250ms ease;
}

.calculator-portal__links a:last-child { border-right: 0; }
.calculator-portal__links a:hover { background: rgba(223, 202, 158, 0.08); }
.calculator-portal__links small,
.calculator-portal__links span {
    color: rgba(255, 253, 248, 0.46);
    font: 400 8px/1.4 var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.calculator-portal__links strong { margin: 12px 0 9px; font: 500 25px/1 var(--serif); }
.calculator-portal__links i { position: absolute; right: 25px; top: 24px; color: var(--gold); font-style: normal; }

.calculator-portal__download {
    grid-column: 1 / -1;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 30px;
    border-top: 1px solid var(--line-light);
    background: rgba(223, 202, 158, 0.045);
}

.calculator-portal__qr {
    display: grid;
    grid-template-columns: 92px auto;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.calculator-portal__qr > span { padding: 6px; border-radius: 10px; background: var(--paper); }
.calculator-portal__qr img { width: 80px; height: 80px; }
.calculator-portal__qr b { display: flex; flex-direction: column; font-weight: 400; }
.calculator-portal__qr small,
.calculator-portal__qr em {
    color: rgba(255, 253, 248, 0.44);
    font: 400 8px/1.4 var(--mono);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.calculator-portal__qr strong { margin: 5px 0; font: 500 19px/1.05 var(--serif); }
.calculator-portal__stores { display: flex; gap: 10px; }

.journal {
    padding-top: 50px;
}

.journal__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 72px;
}

.journal__heading > p {
    max-width: 410px;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

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

.journal-card {
    text-decoration: none;
}

.journal-card__image {
    aspect-ratio: 1.32;
    margin-bottom: 28px;
    overflow: hidden;
    background: var(--ink-soft);
}

.journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.05);
    transition: filter 450ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.journal-card:hover .journal-card__image img {
    filter: saturate(0.95) contrast(1.02);
    transform: scale(1.035);
}

.journal-card > p {
    margin: 0 0 12px;
    color: var(--gold);
    font: 400 9px/1 var(--mono);
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.journal-card h3 {
    max-width: 420px;
    margin: 0 0 25px;
    font: 500 clamp(28px, 2.7vw, 38px) / 1.02 var(--serif);
}

.journal-card > span {
    color: rgba(255, 253, 248, 0.55);
    font: 400 9px/1 var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.journal-card b {
    display: inline-block;
    margin-left: 9px;
    color: var(--gold);
    font-weight: 400;
    transition: transform 180ms ease;
}

.journal-card:hover b {
    transform: translate(3px, -3px);
}

.final-cta {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid var(--line-light);
    background: #121210;
}

.final-cta::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background: radial-gradient(circle at 50% 68%, rgba(223, 202, 158, 0.12), transparent 38%);
}

.final-cta__moon {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.58;
    background: url('/assets/images/landing/hero-moon.webp') center 72% / min(1100px, 80vw) auto no-repeat;
    filter: saturate(0.7);
}

.final-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 780px;
    padding-block: 110px;
    text-align: center;
}

.final-cta .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    max-width: 1080px;
    margin: 0;
    font: 500 clamp(58px, 7vw, 104px) / 0.9 var(--serif);
    letter-spacing: -0.05em;
}

.final-cta__inner > p:not(.eyebrow) {
    max-width: 610px;
    margin: 35px auto;
    color: var(--muted);
    font-size: 15px;
}

.final-cta__download {
    display: grid;
    grid-template-columns: auto 1px auto;
    align-items: center;
    gap: 28px;
    margin-top: 8px;
    padding: 14px 18px 14px 14px;
    border: 1px solid rgba(223, 202, 158, 0.18);
    border-radius: 22px;
    background: rgba(15, 15, 15, 0.72);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.final-cta__qr {
    display: grid;
    grid-template-columns: 118px auto;
    align-items: center;
    gap: 16px;
    color: var(--white);
    text-align: left;
    text-decoration: none;
}

.final-cta__qr-code {
    display: block;
    padding: 6px;
    border-radius: 12px;
    background: var(--paper);
}

.final-cta__qr-code img {
    width: 106px;
    height: 106px;
}

.final-cta__qr-copy,
.final-cta__stores {
    display: flex;
    flex-direction: column;
}

.final-cta__qr-copy small,
.final-cta__qr-copy em,
.final-cta__stores > small {
    color: rgba(255, 253, 248, 0.46);
    font: 400 8px/1.4 var(--mono);
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.final-cta__qr-copy strong {
    margin: 5px 0;
    font: 500 19px/1.1 var(--serif);
}

.final-cta__qr-copy em {
    font-style: normal;
}

.final-cta__divider {
    width: 1px;
    height: 72px;
    background: rgba(223, 202, 158, 0.16);
}

.final-cta__stores {
    gap: 9px;
    align-items: center;
}

.final-cta__stores > small {
    letter-spacing: 0.08em;
}

.store-buttons--centered {
    justify-content: center;
}

.store-button--light {
    justify-content: center;
    min-width: 175px;
    color: var(--gold);
    background: rgba(15, 15, 15, 0.74);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.store-button--light:hover {
    color: var(--ink);
    background: var(--gold);
}

.site-footer {
    border-top: 1px solid var(--line-light);
    background: #0c0c0b;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr;
    gap: 6vw;
    padding-block: 90px 100px;
}

.wordmark--footer {
    align-self: start;
}

.site-footer__top > p {
    margin: 0;
    color: var(--muted);
    font: 400 25px/1.25 var(--serif);
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.site-footer__nav div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.site-footer__nav span {
    margin-bottom: 8px;
    color: var(--gold);
    font: 400 9px/1 var(--mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__nav a {
    color: rgba(255, 253, 248, 0.58);
    font-size: 13px;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer__nav a:hover {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 76px;
    color: rgba(255, 253, 248, 0.34);
    border-top: 1px solid var(--line-light);
    font: 400 8px/1.3 var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer .veritas-cookie-settings {
    padding: 0;
    color: rgba(255, 253, 248, 0.34);
    border: 0;
    background: transparent;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    cursor: pointer;
}

.site-footer .veritas-cookie-settings:hover {
    color: var(--gold);
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 850ms cubic-bezier(.2,.7,.2,1), transform 850ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal--delay {
    transition-delay: 160ms;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    :root {
        --shell: min(100% - 48px, 1080px);
    }

    .hero__inner {
        grid-template-columns: minmax(410px, 0.9fr) minmax(430px, 1.1fr);
    }

    .hero__screen-frame {
        right: 3%;
    }

    .hero__note {
        display: none;
    }

    .showcase--tarot {
        grid-column: 1 / 8;
        grid-template-columns: 1fr;
    }

    .showcase--compatibility {
        grid-column: 8 / 13;
    }

    .showcase--tarot .showcase__copy {
        z-index: 3;
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .showcase--tarot .showcase__art {
        position: absolute;
        inset: 32% 0 0;
    }

    .showcase--tarot .showcase__art img {
        right: 50%;
        bottom: -25%;
        width: 67%;
        transform: translateX(50%);
    }

    .showcase--tarot:hover .showcase__art img {
        transform: translate(50%, -12px);
    }
}

@media (max-width: 900px) {
    :root {
        --shell: min(100% - 40px, 760px);
    }

    .site-header.is-sticky {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .site-header__inner {
        display: flex;
        justify-content: flex-end;
        height: 76px;
    }

    .wordmark { margin-inline-end: auto; }
    .language-switcher summary { min-height: 38px; }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        width: 42px;
        height: 42px;
        padding: 9px;
        color: var(--white);
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: currentColor;
        transition: transform 220ms ease;
    }

    .menu-toggle[aria-expanded='true'] span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded='true'] span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        z-index: 2;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 22px;
        visibility: hidden;
        opacity: 0;
        background: rgba(15, 15, 15, 0.98);
        overscroll-behavior: contain;
        transition: opacity 220ms ease;
    }

    .mobile-nav.is-open {
        visibility: visible;
        opacity: 1;
    }

    .mobile-nav a {
        font: 500 42px/1 var(--serif);
        text-decoration: none;
    }

    .mobile-nav a[aria-current='page'] {
        color: var(--gold);
    }

    .mobile-nav a:last-child {
        margin-top: 20px;
        padding: 15px 24px;
        color: var(--ink);
        border-radius: 30px;
        background: var(--gold);
        font: 500 11px/1 var(--mono);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .hero {
        min-height: auto;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.78) 43%, rgba(15, 15, 15, 0.38) 100%);
    }

    .hero__atmosphere::before {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 62%;
        opacity: 0.52;
        background-position: center 72%;
        background-size: 1200px auto;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding-top: 110px;
    }

    .hero__copy {
        padding: 46px 0 20px;
    }

    .hero__qr {
        display: none;
    }

    .hero h1 {
        font-size: clamp(64px, 12vw, 92px);
    }

    .hero__lead {
        max-width: 610px;
    }

    .hero__visual {
        min-height: 680px;
    }

    .hero__moon {
        top: 12%;
        left: 50%;
        width: 820px;
        transform: translateX(-50%);
    }

    .hero__screen-frame {
        top: 5%;
        right: 50%;
        width: 315px;
        transform: translateX(50%) rotate(2deg);
    }

    .hero__index {
        display: none;
    }

    .principles__inner {
        grid-template-columns: 1fr;
        padding-block: 10px;
    }

    .principles p,
    .principles p:last-child {
        min-height: 62px;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(15, 15, 15, 0.17);
        border-left: 0;
    }

    .principles p:last-child {
        border-bottom: 0;
    }

    .section-heading,
    .process__heading {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-heading .eyebrow,
    .section-heading h2,
    .section-heading > p,
    .process__heading h2 {
        grid-column: 1;
    }

    .showcase--tarot,
    .showcase--compatibility,
    .showcase--portrait {
        grid-column: 1 / 13;
        grid-template-columns: 0.9fr 1.1fr;
        min-height: 620px;
    }

    .showcase--tarot .showcase__copy,
    .showcase--compatibility .showcase__copy {
        justify-content: flex-end;
        padding-bottom: clamp(34px, 4.5vw, 70px);
    }

    .showcase--tarot .showcase__art,
    .showcase--compatibility .showcase__art {
        position: relative;
        inset: auto;
        min-height: 580px;
    }

    .showcase--tarot .showcase__art img,
    .showcase--compatibility .showcase__art img,
    .showcase--portrait .showcase__art img {
        right: 0;
        bottom: -18%;
        width: 95%;
        transform: none;
    }

    .showcase--tarot:hover .showcase__art img,
    .showcase--compatibility:hover .showcase__art img {
        transform: translateY(-12px);
    }

    .process__heading h2 {
        justify-self: end;
    }

    .process__steps li {
        grid-template-columns: 110px 1fr;
    }

    .process__steps > li > .process__content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process__instrument {
        max-width: 540px;
    }

    .process__cta {
        margin-left: 110px;
    }

    .features__heading {
        display: block;
    }

    .features__heading .eyebrow {
        margin-bottom: 35px;
    }

    .feature-tile {
        min-height: 390px;
    }

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

    .journal-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
    }

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

    .site-footer__top > p {
        display: none;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 32px);
    }

    .section {
        padding-block: 100px;
    }

    .site-header__inner {
        height: 68px;
    }

    .wordmark {
        font-size: 11px;
    }

    .wordmark__mark {
        width: 27px;
        height: 27px;
    }

    .hero__inner {
        padding-top: 90px;
    }

    .hero__copy {
        padding-top: 35px;
    }

    .hero h1 {
        font-size: clamp(57px, 17.5vw, 78px);
        line-height: 0.85;
    }

    .hero__lead {
        margin: 32px 0 28px;
        font-size: 15px;
        line-height: 1.7;
    }

    .store-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .store-button {
        min-width: 0;
        min-height: 58px;
        padding: 9px 13px;
    }

    .store-button svg,
    .store-button img {
        width: 19px;
    }

    .store-button strong {
        font-size: 13px;
    }

    .text-link {
        margin-top: 28px;
    }

    .hero__visual {
        min-height: 565px;
    }

    .hero__screen-frame {
        width: min(76vw, 292px);
    }

    .hero__moon {
        width: 670px;
        height: 360px;
    }

    .section-heading,
    .features__heading,
    .journal__heading {
        margin-bottom: 55px;
    }

    .section-heading h2,
    .features__heading h2,
    .journal__heading h2,
    .process__heading h2 {
        font-size: clamp(51px, 14vw, 68px);
    }

    .section-heading {
        gap: 25px;
    }

    .showcase-grid {
        display: flex;
        flex-direction: column;
    }

    .showcase--tarot,
    .showcase--compatibility,
    .showcase--portrait {
        display: block;
        min-height: 760px;
    }

    .showcase__copy,
    .showcase--tarot .showcase__copy,
    .showcase--compatibility .showcase__copy {
        position: relative;
        z-index: 4;
        display: block;
        padding: 30px 26px;
    }

    .showcase__number {
        margin-bottom: 110px;
    }

    .showcase h3 {
        font-size: 46px;
    }

    .showcase__art,
    .showcase--tarot .showcase__art,
    .showcase--compatibility .showcase__art {
        position: absolute;
        z-index: 1;
        inset: 47% 0 0;
        min-height: 0;
    }

    .showcase__art img,
    .showcase--tarot .showcase__art img,
    .showcase--compatibility .showcase__art img,
    .showcase--portrait .showcase__art img {
        right: 50%;
        bottom: -31%;
        width: 80%;
        transform: translateX(50%);
    }

    .showcase:hover .showcase__art img,
    .showcase--tarot:hover .showcase__art img,
    .showcase--compatibility:hover .showcase__art img {
        transform: translate(50%, 0);
    }

    .process__heading h2 {
        justify-self: start;
    }

    .process__steps li {
        grid-template-columns: 58px 1fr;
        padding: 32px 0;
    }

    .process__number {
        width: 42px;
        font-size: 43px;
    }

    .process__steps::before {
        left: 20px;
    }

    .process__copy {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .process__instrument {
        width: 100%;
        padding: 15px;
    }

    .process__birth-data strong {
        font-size: 14px;
    }

    .process__lens-list span {
        min-height: 31px;
        font-size: 5px;
    }

    .process__cta {
        margin: 28px 0 0 58px;
        font-size: 8px;
    }

    .process__steps h3 {
        font-size: 30px;
    }

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

    .feature-tile {
        min-height: 360px;
        padding: 30px;
    }

    .feature-tile__arrow {
        top: 28px;
        right: 28px;
    }

    .feature-tile--numerology img {
        top: -15%;
        width: 48%;
    }

    .journal__heading {
        display: block;
    }

    .journal__heading > p {
        margin-top: 25px;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .journal-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .journal-card h3 {
        font-size: 32px;
    }

    .final-cta,
    .final-cta__inner {
        min-height: 690px;
    }

    .final-cta h2 {
        font-size: clamp(50px, 14vw, 66px);
    }

    .final-cta__moon {
        background-size: 780px auto;
    }

    .final-cta__download {
        display: block;
        width: 100%;
        max-width: 420px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .final-cta__qr,
    .final-cta__divider {
        display: none;
    }

    .final-cta__stores {
        gap: 12px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        padding-block: 70px;
    }

    .site-footer__nav {
        margin-top: 22px;
    }

    .site-footer__bottom {
        flex-wrap: wrap;
        gap: 14px;
        padding-block: 24px;
    }

    .site-footer__bottom p:last-child {
        width: 100%;
    }
}

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

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

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

/* Full-bleed atmosphere and compact product stories. */
.hero__atmosphere {
    z-index: 0;
}

.hero__atmosphere::before {
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.76;
    background: url('/assets/images/landing/hero-moon.webp') center / cover no-repeat;
    filter: saturate(0.78) contrast(1.04);
}

.hero__atmosphere::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, rgba(15, 15, 15, 0.96) 0%, rgba(15, 15, 15, 0.82) 36%, rgba(15, 15, 15, 0.38) 68%, rgba(15, 15, 15, 0.14) 100%),
        linear-gradient(180deg, rgba(15, 15, 15, 0.12), rgba(15, 15, 15, 0.42));
}

.hero::after {
    background: none;
}

.hero__inner,
.hero__index {
    position: relative;
    z-index: 2;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.showcase,
.showcase--tarot,
.showcase--compatibility,
.showcase--portrait {
    grid-column: 1;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    width: 100%;
    height: clamp(520px, 40vw, 580px);
    min-height: 0;
    margin-top: 0;
}

.showcase__copy,
.showcase--tarot .showcase__copy,
.showcase--compatibility .showcase__copy {
    position: relative;
    z-index: 3;
    display: flex;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 5vw, 72px);
    border-right: 1px solid var(--line-light);
}

.showcase__number {
    position: absolute;
    top: clamp(34px, 4vw, 54px);
    left: clamp(42px, 5vw, 72px);
    margin: 0;
}

.showcase h3 {
    font-size: clamp(45px, 4.8vw, 70px);
}

.showcase__copy > p:not(.showcase__number),
.showcase--compatibility .showcase__copy > p:not(.showcase__number) {
    max-width: 470px;
}

.showcase__art,
.showcase--tarot .showcase__art,
.showcase--compatibility .showcase__art {
    position: relative;
    inset: auto;
    display: grid;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    place-items: end center;
    background: radial-gradient(circle at 50% 42%, rgba(223, 202, 158, 0.13), transparent 49%);
}

.showcase__art img,
.showcase--tarot .showcase__art img,
.showcase--compatibility .showcase__art img,
.showcase--portrait .showcase__art img {
    position: absolute;
    right: 50%;
    bottom: -72px;
    width: auto;
    max-width: none;
    height: calc(100% + 86px);
    transform: translateX(50%);
    filter: drop-shadow(0 32px 46px rgba(0, 0, 0, 0.4));
}

.showcase:hover .showcase__art img,
.showcase--tarot:hover .showcase__art img,
.showcase--compatibility:hover .showcase__art img {
    transform: translate(50%, -10px);
}

.showcase--compatibility .showcase__copy {
    grid-column: 2;
    justify-content: center;
    padding-bottom: clamp(42px, 5vw, 72px);
    border-right: 0;
    border-left: 1px solid var(--line-light);
}

.showcase--compatibility .showcase__art {
    grid-column: 1;
}

.showcase--compatibility .showcase__number {
    left: clamp(42px, 5vw, 72px);
}

.final-cta__moon {
    z-index: 0;
    opacity: 0.7;
    background-position: center;
    background-size: cover;
    filter: saturate(0.7) contrast(1.04);
}

.final-cta::after {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 15, 15, 0.34), rgba(15, 15, 15, 0.62)),
        radial-gradient(circle at 50% 55%, rgba(223, 202, 158, 0.06), transparent 45%);
}

.final-cta__inner {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero__atmosphere::before {
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0.62;
        background-position: 62% center;
        background-size: cover;
    }

    .hero__atmosphere::after {
        background: linear-gradient(180deg, rgba(15, 15, 15, 0.96) 0%, rgba(15, 15, 15, 0.78) 46%, rgba(15, 15, 15, 0.42) 100%);
    }

    .showcase,
    .showcase--tarot,
    .showcase--compatibility,
    .showcase--portrait {
        grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
        height: 520px;
        min-height: 0;
    }

    .showcase__copy,
    .showcase--tarot .showcase__copy,
    .showcase--compatibility .showcase__copy {
        padding: 38px;
    }

    .showcase__number,
    .showcase--compatibility .showcase__number {
        top: 34px;
        left: 38px;
    }

    .showcase h3 {
        font-size: clamp(40px, 6vw, 56px);
    }
}

@media (max-width: 620px) {
    .showcase-grid {
        display: grid;
        gap: 16px;
    }

    .showcase,
    .showcase--tarot,
    .showcase--compatibility,
    .showcase--portrait {
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .showcase__copy,
    .showcase--tarot .showcase__copy,
    .showcase--compatibility .showcase__copy {
        grid-column: 1;
        grid-row: 1;
        min-height: 350px;
        padding: 78px 26px 34px;
        border: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .showcase__number,
    .showcase--compatibility .showcase__number {
        top: 28px;
        left: 26px;
        margin: 0;
    }

    .showcase h3 {
        margin-bottom: 18px;
        font-size: 43px;
    }

    .showcase__copy > a {
        margin-top: 22px;
    }

    .showcase__art,
    .showcase--tarot .showcase__art,
    .showcase--compatibility .showcase__art {
        position: relative;
        inset: auto;
        grid-column: 1;
        grid-row: 2;
        min-height: 410px;
    }

    .showcase__art img,
    .showcase--tarot .showcase__art img,
    .showcase--compatibility .showcase__art img,
    .showcase--portrait .showcase__art img {
        right: 50%;
        bottom: -70px;
        width: auto;
        height: 470px;
        transform: translateX(50%);
    }

    .showcase:hover .showcase__art img,
    .showcase--tarot:hover .showcase__art img,
    .showcase--compatibility:hover .showcase__art img {
        transform: translateX(50%);
    }

    .final-cta__moon {
        background-position: 58% center;
        background-size: cover;
    }
}

/* Live product preview used in the hero instead of a marketing screenshot. */
.hero__chart-seal {
    position: absolute;
    z-index: 1;
    top: 10%;
    right: -8%;
    width: min(590px, 42vw);
    aspect-ratio: 1;
    border: 1px solid rgba(223, 202, 158, 0.13);
    border-radius: 50%;
    animation: hero-seal-drift 18s linear infinite;
}

.hero__chart-seal::before,
.hero__chart-seal::after,
.hero__chart-seal span {
    position: absolute;
    border: 1px solid rgba(223, 202, 158, 0.1);
    border-radius: 50%;
    content: '';
}

.hero__chart-seal::before {
    inset: 13%;
}

.hero__chart-seal::after {
    inset: 28%;
}

.hero__chart-seal span:nth-child(1) {
    top: 8%;
    left: 48%;
    width: 7px;
    height: 7px;
    border: 0;
    background: var(--gold);
    box-shadow: 0 0 20px rgba(223, 202, 158, 0.65);
}

.hero__chart-seal span:nth-child(2) {
    inset: 3% 49%;
    border: 0;
    border-radius: 0;
    background: rgba(223, 202, 158, 0.08);
}

.hero__chart-seal span:nth-child(3) {
    inset: 49% 3%;
    border: 0;
    border-radius: 0;
    background: rgba(223, 202, 158, 0.08);
}

.hero__insight-panel {
    position: absolute;
    z-index: 3;
    top: 12%;
    right: 8%;
    width: clamp(400px, 31vw, 476px);
    min-height: 610px;
    padding: 30px 32px 28px;
    overflow: hidden;
    border: 1px solid rgba(223, 202, 158, 0.36);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(34, 33, 29, 0.92), rgba(14, 14, 13, 0.94) 58%),
        rgba(15, 15, 15, 0.88);
    box-shadow: 0 46px 110px rgba(0, 0, 0, 0.56), inset 0 1px rgba(255, 253, 248, 0.05);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    will-change: transform;
}

.hero__insight-panel::before {
    position: absolute;
    top: -40%;
    left: -65%;
    width: 85%;
    height: 180%;
    pointer-events: none;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.035), transparent);
    transform: rotate(18deg);
    animation: insight-glint 9s ease-in-out infinite;
}

.hero__insight-panel::after {
    position: absolute;
    pointer-events: none;
    inset: 8px;
    content: '';
    border: 1px solid rgba(255, 253, 248, 0.045);
    border-radius: 27px;
}

.insight-panel__header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.insight-panel__moon {
    position: relative;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 1px solid rgba(223, 202, 158, 0.32);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 36%, #f3e4bd 0 12%, #c4ab73 34%, #4c402d 62%, #171611 74%);
    box-shadow: 0 0 24px rgba(223, 202, 158, 0.09);
}

.insight-panel__moon::after {
    position: absolute;
    top: -5px;
    left: 17px;
    width: 44px;
    height: 44px;
    content: '';
    border-radius: 50%;
    background: #161613;
}

.insight-panel__header div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.insight-panel__header strong {
    color: var(--white);
    font: 400 17px/1 var(--serif);
}

.insight-panel__header small {
    color: rgba(255, 253, 248, 0.42);
    font: 400 8px/1.2 var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.insight-panel__infinity {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(223, 202, 158, 0.15);
    border-radius: 13px;
    background: rgba(255, 253, 248, 0.025);
    font: 400 25px/1 var(--serif);
}

.insight-panel__date {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 42px 0 34px;
    color: rgba(255, 253, 248, 0.36);
    font: 400 8px/1 var(--mono);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.insight-panel__date span {
    flex: 1;
    height: 1px;
    background: rgba(223, 202, 158, 0.15);
}

.insight-panel__kicker {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--gold);
    font: 400 8px/1 var(--mono);
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
}

.insight-panel__message {
    position: relative;
    z-index: 2;
    margin: 0;
    font: 400 clamp(38px, 3.25vw, 50px) / 0.96 var(--serif);
    letter-spacing: -0.035em;
    text-align: center;
}

.insight-panel__message span {
    display: block;
}

.insight-panel__message em {
    color: var(--gold);
    font-weight: 400;
}

.insight-panel__signal {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin: 27px 0;
}

.insight-panel__signal span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 202, 158, 0.24));
}

.insight-panel__signal span:last-child {
    background: linear-gradient(90deg, rgba(223, 202, 158, 0.24), transparent);
}

.insight-panel__signal i {
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.insight-panel__choices {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.insight-panel__choices > div {
    min-height: 114px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 253, 248, 0.07);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.025);
}

.insight-panel__choices small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 253, 248, 0.35);
    font: 400 8px/1 var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-panel__choices strong {
    display: block;
    color: rgba(255, 253, 248, 0.78);
    font: 400 19px/1.18 var(--serif);
}

.insight-panel__choice-values span {
    display: block;
    overflow-wrap: anywhere;
}

.insight-panel__choice-values span + span {
    margin-top: 3px;
}

.hero__insight-panel > a {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px 18px;
    color: var(--gold);
    border: 1px solid rgba(223, 202, 158, 0.22);
    border-radius: 25px;
    background: rgba(223, 202, 158, 0.035);
    font: 400 8px/1 var(--mono);
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease;
}

.hero__insight-panel > a:hover {
    color: var(--ink);
    background: var(--gold);
}

.hero__companion-card {
    position: absolute;
    z-index: 5;
    right: calc(8% + clamp(438px, 32vw, 512px));
    bottom: 6%;
    display: flex;
    flex-direction: column;
    width: 184px;
    min-height: 0;
    padding: 9px 9px 13px;
    border: 1px solid rgba(223, 202, 158, 0.28);
    border-radius: 22px;
    background: rgba(18, 18, 16, 0.9);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    will-change: transform;
}

.hero__companion-card span,
.hero__companion-card small {
    color: rgba(255, 253, 248, 0.38);
    font: 400 7px/1.35 var(--mono);
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero__companion-card > span {
    padding: 7px 7px 11px;
}

.hero__companion-art {
    position: relative;
    aspect-ratio: 0.61;
    overflow: hidden;
    border: 1px solid rgba(223, 202, 158, 0.2);
    border-radius: 15px;
    background: #090a0b;
}

.hero__companion-art::after {
    position: absolute;
    pointer-events: none;
    inset: 0;
    content: '';
    border-radius: inherit;
    box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.2);
}

.hero__companion-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__companion-card > small {
    padding: 11px 7px 1px;
    color: rgba(223, 202, 158, 0.66);
}

@keyframes insight-glint {
    0%, 24% { transform: translateX(0) rotate(18deg); }
    58%, 100% { transform: translateX(245%) rotate(18deg); }
}

@keyframes hero-seal-drift {
    to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
    .hero__insight-panel {
        right: 0;
        width: 410px;
    }

    .hero__companion-card {
        display: none;
    }
}

@media (max-width: 900px) {
    .calculator-portal__stage {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto 520px auto auto;
    }

    .calculator-portal__copy {
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .calculator-portal__art img {
        width: min(42vw, 300px);
    }

    .calculator-portal__links {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-portal__links a:nth-child(2) { border-right: 0; }
    .calculator-portal__links a:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }

    .calculator-portal__download {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .calculator-portal { padding-top: 20px; }
    .calculator-portal__stage { grid-template-rows: auto 360px auto auto; }
    .calculator-portal__copy { padding: 52px 22px; }
    .calculator-portal__copy h2 { font-size: 56px; }
    .calculator-portal__art img { width: 205px; }
    .calculator-portal__art-life { left: -10%; top: 0; }
    .calculator-portal__art-moon { right: -9%; top: -2%; }
    .calculator-portal__art-tarot { left: -4%; bottom: -17%; }
    .calculator-portal__art-astro { right: -4%; bottom: -17%; }
    .calculator-portal__links { grid-template-columns: 1fr; }
    .calculator-portal__links a { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .calculator-portal__links a:last-child { border-bottom: 0; }
    .calculator-portal__download { padding: 24px 20px; }
    .calculator-portal__qr { display: none; }
    .calculator-portal__stores { width: 100%; flex-direction: column; }
    .calculator-portal__stores .store-button { width: 100%; }
}

@media (max-width: 900px) {
    .hero__visual {
        min-height: 700px;
    }

    .hero__chart-seal {
        top: 2%;
        right: 50%;
        width: 620px;
        transform: translateX(50%);
        animation: none;
    }

    .hero__insight-panel {
        top: 3%;
        right: 50%;
        width: min(430px, 82vw);
        transform: translateX(50%);
    }

}

@media (max-width: 620px) {
    .hero__visual {
        min-height: 640px;
    }

    .hero__chart-seal {
        top: 6%;
        width: 520px;
    }

    .hero__insight-panel {
        top: 16px;
        width: 100%;
        min-height: 570px;
        padding: 23px 20px 21px;
        border-radius: 28px;
    }

    .insight-panel__moon {
        width: 42px;
        height: 42px;
    }

    .insight-panel__header strong {
        font-size: 16px;
    }

    .insight-panel__date {
        margin: 34px 0 28px;
    }

    .insight-panel__message {
        font-size: 37px;
    }

    .insight-panel__choices > div {
        min-height: 108px;
        padding: 15px;
    }

    .insight-panel__choices strong {
        font-size: 17px;
    }

    .hero__companion-card {
        display: none;
    }
}
