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

html {
    min-width: 0;
    min-height: 100%;
    background: var(--home-canvas);
    /* Lenis owns wheel easing; native measurements and immediate jumps stay exact. */
    scroll-behavior: auto;
}

body {
    min-width: 0;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--home-canvas);
    color: var(--home-text);
    font-family: var(--home-font);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

button,
a,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 100;
    inset-block-start: 0;
    inset-inline-start: 0;
    padding: var(--home-space-3) var(--home-space-4);
    background: var(--home-text);
    color: var(--home-canvas);
    transform: translateY(-100%);
    transition: transform var(--home-duration-fast) ease;
}

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

main,
.home-page {
    min-height: 100svh;
}

.home-page {
    position: relative;
    isolation: isolate;
    overflow-x: clip;
    overflow-y: visible;
    background: var(--home-canvas);
}

.home-continuum {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-continuum__atmosphere {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 54% 9% at 74% 15%, rgba(75, 92, 132, 0.2), transparent 74%),
        radial-gradient(ellipse 46% 8% at 24% 31%, rgba(42, 55, 87, 0.16), transparent 76%),
        radial-gradient(ellipse 58% 10% at 69% 48%, rgba(64, 76, 112, 0.15), transparent 75%),
        radial-gradient(ellipse 48% 8% at 28% 66%, rgba(42, 53, 82, 0.13), transparent 76%),
        radial-gradient(ellipse 56% 9% at 72% 84%, rgba(66, 79, 113, 0.14), transparent 76%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, transparent max(34rem, calc(100svh - 11rem)), #000 max(46rem, calc(100svh + 7rem)));
    mask-image: linear-gradient(180deg, transparent 0, transparent max(34rem, calc(100svh - 11rem)), #000 max(46rem, calc(100svh + 7rem)));
}

.home-page > section {
    position: relative;
    z-index: 1;
}

.home-hero {
    position: relative;
    min-height: max(45rem, 100svh);
    isolation: isolate;
    overflow: hidden;
    background: var(--home-canvas-deep);
}

.home-hero__scene,
.home-hero__parallax,
.visual-layer,
.home-hero__vignette,
.home-hero__light {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__scene {
    z-index: auto;
    overflow: hidden;
    background: var(--home-canvas-deep);
}

.home-hero__parallax {
    will-change: transform;
}

.visual-layer {
    max-width: none;
    object-fit: cover;
    object-position: var(--home-art-position-x) var(--home-art-position-y);
    pointer-events: none;
    user-select: none;
}

.home-hero__parallax--background {
    z-index: 0;
}

.layer-background {
    transform: scale(1.045);
}

.home-hero__parallax--map {
    z-index: 1;
}

.layer-constellations {
    object-position: 50% 50%;
    transform: scale(1.035);
}

.layer-constellations {
    overflow: visible;
    opacity: 0.58;
    mix-blend-mode: screen;
}

.home-hero__parallax--smoke {
    z-index: 2;
}

.layer-smoke {
    opacity: 0.76;
    mix-blend-mode: screen;
    transform: scale(1.065);
    will-change: transform, opacity;
}

.home-hero__parallax--character {
    z-index: 3;
}

.layer-character {
    transform: scale(1.035);
    filter: drop-shadow(0 var(--home-space-6) var(--home-space-10) rgba(0, 0, 0, 0.38));
    will-change: transform, opacity;
}

.home-hero__parallax--frame {
    z-index: 8;
}

.layer-frame {
    object-fit: contain;
    object-position: var(--home-frame-position-x) 50%;
    transform: scale(0.94);
    filter: drop-shadow(0 0 var(--home-space-4) rgba(203, 214, 229, 0.1));
    will-change: transform, opacity;
}

.home-hero__light {
    z-index: 4;
    max-width: none;
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
}

.home-hero__light-fallback {
    position: absolute;
    z-index: 1;
    left: var(--home-orb-x);
    top: var(--home-orb-y);
    width: clamp(22rem, 34vw, 40rem);
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0, rgba(199, 216, 244, 0.24) 15%, rgba(111, 139, 184, 0.1) 38%, transparent 72%);
    filter: blur(var(--home-space-4));
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.home-hero__orb-anchor {
    position: absolute;
    left: var(--home-orb-x);
    top: var(--home-orb-y);
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.home-hero__vignette {
    z-index: 6;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 5, 10, 0.78) 0%, rgba(5, 5, 10, 0.28) 42%, rgba(5, 5, 10, 0.02) 72%),
        linear-gradient(180deg, rgba(6, 6, 10, 0.42) 0%, transparent 22%, transparent 74%, rgba(5, 5, 9, 0.62) 100%);
}

.home-hero::after {
    content: "";
    position: absolute;
    z-index: 7;
    right: 0;
    bottom: -1px;
    left: 0;
    height: clamp(7.5rem, 20vh, 13rem);
    background: linear-gradient(180deg, transparent 0%, rgba(9, 11, 17, 0.5) 56%, var(--home-canvas) 100%);
    pointer-events: none;
}

.home-hero__layout {
    position: relative;
    z-index: 10;
    display: flex;
    min-height: max(45rem, 100svh);
    align-items: center;
}

.home-hero__copy {
    width: min(39rem, 49vw);
    transform: translateY(calc(var(--home-space-8) * -1));
}

.home-display,
.home-lead {
    margin: 0;
}

.home-display {
    max-width: none;
    color: var(--home-text);
    font-size: var(--home-type-display);
    font-weight: 400;
    line-height: var(--home-line-display);
    letter-spacing: var(--home-track-display);
    text-wrap: balance;
    text-shadow: 0 var(--home-space-2) var(--home-space-10) rgba(0, 0, 0, 0.34);
}

.home-display > span {
    white-space: nowrap;
}

.home-display em {
    color: var(--home-text-soft);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.05em;
}

.home-lead {
    max-width: 36rem;
    margin-top: var(--home-space-8);
    color: var(--home-text-muted);
    font-size: var(--home-type-lead);
    font-weight: 400;
    line-height: var(--home-line-lead);
    letter-spacing: -0.008em;
    text-wrap: pretty;
}

.home-primary-action {
    display: inline-flex;
    min-height: var(--home-control-height);
    align-items: center;
    justify-content: center;
    gap: var(--home-space-8);
    margin-top: var(--home-space-10);
    border: 1px solid rgba(224, 230, 238, 0.52);
    border-radius: var(--home-radius-control);
    padding-inline: var(--home-space-6) var(--home-space-5);
    color: var(--home-ink);
    background: var(--home-silver);
    box-shadow: 0 var(--home-space-3) var(--home-space-8) rgba(7, 12, 20, 0.28);
    font-size: var(--home-type-label);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.home-secondary-action {
    display: inline-flex;
    min-height: calc(var(--home-control-height) - var(--home-space-2));
    align-items: center;
    justify-content: center;
    gap: var(--home-space-5);
    margin-top: var(--home-space-8);
    border: 1px solid rgba(197, 207, 219, 0.36);
    border-radius: var(--home-radius-control);
    padding-inline: var(--home-space-5) var(--home-space-4);
    color: var(--home-text-soft);
    background: transparent;
    font-size: var(--home-type-label);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.home-practice,
.home-interpretation,
.home-depth,
.home-calendar,
.home-journal,
.home-collection,
.numerology-landing__intro {
    position: relative;
    isolation: isolate;
    padding-block: 0 var(--home-section-gap);
    background: transparent;
}

.home-practice::before,
.home-interpretation::before,
.home-calendar::before,
.home-journal::before,
.home-collection::before,
.numerology-landing__intro::before {
    position: absolute;
    z-index: 0;
    inset: calc(var(--home-scene-bleed) * -1) 0;
    background: radial-gradient(
        ellipse 54% 42% at var(--home-atmosphere-x, 50%) var(--home-atmosphere-y, 50%),
        var(--home-atmosphere-color, rgba(58, 72, 108, 0.12)),
        transparent 76%
    );
    content: "";
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.home-practice {
    --home-atmosphere-x: 70%;
    --home-atmosphere-y: 46%;
    --home-atmosphere-color: rgba(65, 80, 120, 0.18);
    padding-block-start: var(--home-section-gap);
    padding-block-end: calc(var(--home-section-gap) + var(--home-space-16));
}

.home-interpretation {
    --home-atmosphere-x: 34%;
    --home-atmosphere-y: 48%;
    --home-atmosphere-color: rgba(42, 54, 86, 0.13);
}

.home-calendar {
    --home-atmosphere-x: 30%;
    --home-atmosphere-y: 45%;
    --home-atmosphere-color: rgba(43, 57, 88, 0.12);
}

.home-journal {
    --home-atmosphere-x: 70%;
    --home-atmosphere-y: 48%;
    --home-atmosphere-color: rgba(55, 68, 104, 0.13);
}

.home-collection {
    --home-atmosphere-x: 72%;
    --home-atmosphere-y: 50%;
    --home-atmosphere-color: rgba(68, 80, 122, 0.18);
}

.home-practice__geometry,
.home-interpretation__geometry,
.home-calendar__geometry,
.home-journal__geometry,
.home-collection__geometry,
.numerology-landing__geometry {
    top: calc(var(--home-scene-bleed) * -1);
    height: calc(100% + var(--home-scene-bleed) * 2);
}

.home-depth__geometry {
    inset: 0;
    height: 100%;
}

.home-practice__atmosphere {
    position: absolute;
    z-index: 0;
    inset: calc(var(--home-scene-bleed) * -1) 0;
    overflow: visible;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.home-collection__atmosphere {
    position: absolute;
    z-index: 0;
    inset: calc(var(--home-scene-bleed) * -1) 0;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.home-collection__fog {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    pointer-events: none;
    will-change: transform;
}

.home-collection__fog img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: screen;
    filter: saturate(0.82) hue-rotate(6deg);
    transform: scale(1.08);
    will-change: transform, opacity;
}

.home-practice__fog {
    position: absolute;
    inset: -8%;
    width: 116%;
    height: 116%;
    pointer-events: none;
    will-change: transform;
}

.home-practice__fog img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    opacity: 0.24;
    mix-blend-mode: screen;
    filter: saturate(0.78) hue-rotate(5deg);
    transform: scale(1.08);
    will-change: transform, opacity;
}

.home-practice__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--home-space-16);
    align-items: center;
}

.home-practice__copy {
    width: 100%;
    max-width: 28rem;
}

.home-practice__copy .home-section-title > span {
    white-space: normal;
}

.home-practice__visual {
    --home-practice-light-x: 29%;
    --home-practice-light-y: 8%;
    position: relative;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 4 / 5;
    align-self: center;
    overflow: visible;
}

.home-interpretation__media,
.home-calendar__visual,
.home-journal__visual {
    position: relative;
    isolation: isolate;
}

.home-practice__character-layer,
.home-practice__object,
.home-practice__orbit {
    position: absolute;
    display: block;
    pointer-events: none;
    will-change: transform;
}

.home-practice__character-layer {
    z-index: 5;
    inset: -7% 6% -8%;
}

.home-practice__character {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 1.4rem 2.5rem rgba(0, 0, 0, 0.32));
    pointer-events: none;
    user-select: none;
}

.home-practice__object img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.home-practice__object--calendar {
    z-index: 2;
    top: 9%;
    left: -3%;
    width: 31%;
    aspect-ratio: 3 / 2;
}

.home-practice__object--calendar img {
    rotate: -13deg;
}

.home-practice__object--journal {
    z-index: 3;
    top: 11%;
    right: -4%;
    width: 29%;
    aspect-ratio: 3 / 2;
    opacity: 0.88;
}

.home-practice__object--journal img {
    rotate: 13deg;
}

.home-practice__object--sword {
    z-index: 3;
    top: 41%;
    right: -2%;
    width: 15%;
    aspect-ratio: 20 / 35;
}

.home-practice__object--sword img {
    rotate: 24deg;
}

.home-practice__object--chalice {
    z-index: 8;
    bottom: 7%;
    left: 0;
    width: 17%;
    aspect-ratio: 2 / 3;
}

.home-practice__object--chalice img {
    rotate: -12deg;
}

.home-practice__object--pentacle {
    z-index: 3;
    right: 4%;
    bottom: 8%;
    width: 18%;
    aspect-ratio: 1;
    opacity: 0.84;
}

.home-practice__object--pentacle img {
    rotate: 10deg;
}

.home-practice__object--card {
    aspect-ratio: 2 / 3;
}

.home-practice__object--card-back-left {
    z-index: 1;
    top: 27%;
    left: 7%;
    width: 8%;
    opacity: 0.58;
}

.home-practice__object--card-back-left img {
    rotate: -31deg;
}

.home-practice__object--card-back-top {
    z-index: 1;
    top: 3%;
    left: 45%;
    width: 6.5%;
    opacity: 0.5;
}

.home-practice__object--card-back-top img {
    rotate: 9deg;
}

.home-practice__object--card-back-right {
    z-index: 1;
    top: 32%;
    right: 7%;
    width: 7.5%;
    opacity: 0.62;
}

.home-practice__object--card-back-right img {
    rotate: 29deg;
}

.home-practice__object--card-mid-left {
    z-index: 4;
    top: 51%;
    left: 7%;
    width: 9%;
    opacity: 0.8;
}

.home-practice__object--card-mid-left img {
    rotate: -17deg;
}

.home-practice__object--card-mid-right {
    z-index: 4;
    top: 55%;
    right: 7%;
    width: 8%;
    opacity: 0.78;
}

.home-practice__object--card-mid-right img {
    rotate: 18deg;
}

.home-practice__object--card-front-left {
    z-index: 7;
    bottom: 5%;
    left: 22%;
    width: 11%;
}

.home-practice__object--card-front-left img {
    rotate: -13deg;
}

.home-practice__object--card-front-right {
    z-index: 7;
    right: 22%;
    bottom: 1%;
    width: 12%;
}

.home-practice__object--card-front-right img {
    rotate: 15deg;
}

.home-practice__orbit {
    z-index: 1;
    border: 1px solid rgba(197, 207, 219, 0.2);
    border-radius: 50%;
}

.home-practice__orbit--outer {
    inset: 7% -5% 5%;
    rotate: -17deg;
}

.home-practice__orbit--inner {
    inset: 18% 8% 17%;
    rotate: 23deg;
}

.home-practice__orbit::before,
.home-practice__orbit::after {
    position: absolute;
    width: var(--home-space-2);
    aspect-ratio: 1;
    border: 1px solid rgba(224, 230, 238, 0.48);
    border-radius: 50%;
    background: var(--home-canvas);
    content: "";
}

.home-practice__orbit::before {
    top: 18%;
    left: 3%;
}

.home-practice__orbit::after {
    right: 9%;
    bottom: 13%;
}

.home-practice__light,
.home-practice__light-fallback {
    position: absolute;
    pointer-events: none;
}

.home-practice__light {
    z-index: 6;
    inset: -18%;
    width: 136%;
    height: 136%;
    max-width: none;
    opacity: 0;
    mix-blend-mode: screen;
}

.home-practice__light-fallback {
    z-index: 6;
    left: var(--home-orb-x, var(--home-practice-light-x));
    top: var(--home-orb-y, var(--home-practice-light-y));
    width: min(58%, 17rem);
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: 0.7;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.74) 0, rgba(199, 216, 244, 0.22) 18%, rgba(127, 147, 203, 0.09) 42%, transparent 72%);
    filter: blur(var(--home-space-3));
    transform: translate(-50%, -50%);
    animation: home-practice-light-pulse 5.6s ease-in-out infinite;
}

.home-practice__light-anchor {
    position: absolute;
    left: var(--home-orb-x, var(--home-practice-light-x));
    top: var(--home-orb-y, var(--home-practice-light-y));
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.home-page.is-practice-webgl-ready .home-practice__light {
    opacity: 1;
}

.home-page.is-practice-webgl-ready .home-practice__light-fallback {
    display: none;
}

@keyframes home-practice-light-pulse {
    0%,
    100% {
        opacity: 0.58;
        transform: translate(-50%, -50%) scale(0.96);
    }

    50% {
        opacity: 0.76;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

.home-practice__details {
    display: grid;
    width: 100%;
    max-width: 27rem;
    gap: var(--home-space-8);
    justify-self: end;
}

.home-practice__details article,
.home-practice__details h3,
.home-practice__details p {
    margin: 0;
}

.home-practice__details h3 {
    color: var(--home-text);
    font-size: var(--home-type-lead);
    font-weight: 400;
    line-height: 1.25;
}

.home-practice__details p {
    margin-top: var(--home-space-2);
    color: var(--home-text-muted);
    font-size: var(--home-type-label);
    line-height: 1.5;
    text-wrap: pretty;
}

.home-interpretation__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: var(--home-space-16);
    align-items: center;
}

.home-interpretation__copy {
    width: 100%;
    max-width: 34rem;
}

.home-feature-list,
.home-feature-list h3,
.home-feature-list p,
.home-calendar__kicker,
.home-journal__kicker,
.home-section-note {
    margin: 0;
}

.home-feature-list {
    display: grid;
    margin-top: var(--home-space-8);
    padding: 0;
    list-style: none;
}

.home-feature-list li {
    display: grid;
    grid-template-columns: var(--home-space-8) minmax(0, 1fr);
    gap: var(--home-space-4);
    padding-block: var(--home-space-4);
    border-top: 1px solid rgba(197, 207, 219, 0.18);
}

.home-feature-list li:last-child {
    border-bottom: 1px solid rgba(197, 207, 219, 0.18);
}

.home-feature-list > li > span {
    padding-top: 0.2em;
    color: var(--home-text-faint);
    font-size: var(--home-type-caption);
    line-height: 1;
    letter-spacing: var(--home-track-label);
}

.home-feature-list h3 {
    color: var(--home-text);
    font-size: var(--home-type-lead);
    font-weight: 400;
    line-height: 1.25;
}

.home-feature-list p {
    margin-top: var(--home-space-2);
    color: var(--home-text-muted);
    font-size: var(--home-type-label);
    line-height: 1.5;
}

.home-interpretation__media {
    width: 100%;
    justify-self: end;
}

.home-interpretation__media video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    background: var(--home-canvas-deep);
}

.home-depth {
    width: 100%;
}

.home-depth__stage {
    position: relative;
    z-index: 2;
    min-height: 100svh;
}

.home-depth__stage::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: radial-gradient(ellipse 58% 54% at 64% 50%, rgba(60, 72, 108, 0.14), transparent 76%);
    content: "";
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.home-depth__track {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--home-space-32);
    width: 100%;
    padding-inline: var(--home-layout-gutter);
}

.home-depth-card {
    display: grid;
    grid-template-columns: minmax(20rem, 0.9fr) minmax(22rem, 1.1fr);
    align-items: center;
    gap: var(--home-space-16);
    width: min(100%, var(--home-layout-max));
    min-height: min(44rem, 82svh);
    margin-inline: auto;
}

.home-depth-card--overview {
    grid-template-columns: minmax(0, 1fr);
}

.home-depth-card--overview .home-depth-card__copy {
    max-width: 36rem;
}

.home-depth-card__visual {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: clamp(28rem, 64svh, 39rem);
    overflow: visible;
    will-change: transform;
}

.home-depth-card__visual::before,
.home-depth-card__visual::after,
.home-depth-card__orbit,
.home-depth-card__orbit::before,
.home-depth-card__orbit::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.home-depth-card__visual::before {
    z-index: -2;
    top: 50%;
    left: 50%;
    width: min(82%, 29rem);
    aspect-ratio: 1;
    border: 1px solid rgba(197, 207, 219, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.home-depth-card__visual::after {
    z-index: -2;
    top: 50%;
    left: 8%;
    width: 84%;
    height: 1px;
    background: rgba(197, 207, 219, 0.14);
}

.home-depth-card__orbit {
    z-index: -1;
    top: 50%;
    left: 50%;
    width: min(64%, 23rem);
    aspect-ratio: 1;
    border: 1px solid rgba(197, 207, 219, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
}

.home-depth-card__orbit::before {
    top: -0.1875rem;
    left: 50%;
    width: 0.375rem;
    height: 0.375rem;
    border: 1px solid rgba(224, 230, 238, 0.72);
    border-radius: 50%;
    background: var(--home-canvas);
    transform: translateX(-50%);
}

.home-depth-card__orbit::after {
    right: -0.1875rem;
    bottom: 31%;
    width: 0.375rem;
    height: 0.375rem;
    border: 1px solid rgba(224, 230, 238, 0.52);
    border-radius: 50%;
    background: var(--home-canvas);
}

.home-depth-card__cards {
    position: absolute;
    inset: 0;
}

.home-depth-card__cards img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: none;
    object-fit: cover;
    transform-origin: 50% 58%;
}

.home-depth-card--three .home-depth-card__cards img,
.home-depth-card--ten .home-depth-card__cards img {
    height: min(70%, 31rem);
}

.home-depth-card--three .home-depth-card__cards img:nth-child(1) {
    z-index: 1;
    transform: translate(-88%, -48%) rotate(-11deg) scale(0.88);
}

.home-depth-card--three .home-depth-card__cards img:nth-child(2) {
    z-index: 3;
    transform: translate(-50%, -52%);
}

.home-depth-card--three .home-depth-card__cards img:nth-child(3) {
    z-index: 2;
    transform: translate(-12%, -48%) rotate(11deg) scale(0.88);
}

.home-depth-card--one .home-depth-card__cards img {
    height: min(78%, 34rem);
    transform: translate(-50%, -50%);
}

.home-depth-card--ten .home-depth-card__cards img {
    transform-origin: 50% 65%;
    transform: translate(-50%, -50%) rotate(calc((var(--card-index) - 4.5) * 3deg));
}

.home-depth-card--ten .home-depth-card__cards img:nth-child(1) { --card-index: 0; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(2) { --card-index: 1; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(3) { --card-index: 2; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(4) { --card-index: 3; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(5) { --card-index: 4; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(6) { --card-index: 5; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(7) { --card-index: 6; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(8) { --card-index: 7; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(9) { --card-index: 8; }
.home-depth-card--ten .home-depth-card__cards img:nth-child(10) { --card-index: 9; }

.home-depth-card__copy {
    width: 100%;
    max-width: 34rem;
    will-change: transform;
}

.home-depth-card__title,
.home-depth-card__text,
.home-depth-card__note {
    margin: 0;
}

.home-depth-card__title {
    color: var(--home-text);
    font-size: var(--home-type-section);
    font-weight: 400;
    line-height: var(--home-line-section);
    letter-spacing: var(--home-track-display);
    text-wrap: balance;
}

.home-depth-card__text {
    max-width: 34rem;
    margin-top: var(--home-space-8);
    color: var(--home-text-muted);
    font-size: var(--home-type-lead);
    line-height: var(--home-line-lead);
    text-wrap: pretty;
}

.home-depth-card__note {
    max-width: 32rem;
    margin-top: var(--home-space-5);
    padding-top: var(--home-space-5);
    border-top: 1px solid rgba(197, 207, 219, 0.18);
    color: var(--home-text-faint);
    font-size: var(--home-type-label);
    line-height: 1.5;
    text-wrap: pretty;
}

.home-depth-card__scroll-cue {
    display: flex;
    align-items: center;
    gap: var(--home-space-4);
    margin-top: var(--home-space-10);
    color: var(--home-text-faint);
    font-size: var(--home-type-caption);
    line-height: 1;
    letter-spacing: var(--home-track-label);
    text-transform: uppercase;
}

.home-depth-card__scroll-cue i {
    position: relative;
    width: var(--home-space-16);
    height: 1px;
    overflow: hidden;
    background: rgba(197, 207, 219, 0.2);
}

.home-depth-card__scroll-cue i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--home-silver-strong);
    transform: translateX(-100%);
    animation: home-depth-scroll-cue 2.1s ease-in-out infinite;
}

@keyframes home-depth-scroll-cue {
    0% {
        transform: translateX(-100%);
    }

    48%,
    58% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.home-depth__progress {
    display: none;
}

@media (min-width: 64rem) {
    .home-depth.is-horizontal .home-depth__stage {
        height: 100svh;
        min-height: 0;
        overflow: hidden;
    }

    .home-depth.is-horizontal .home-depth__track {
        display: flex;
        align-items: center;
        gap: max(15.625rem, 30vw);
        width: max-content;
        height: 100%;
        padding: 0 max(15.625rem, 30vw) 0 clamp(10rem, 12vw, 15rem);
        will-change: transform;
    }

    .home-depth.is-horizontal .home-depth-card {
        flex: 0 0 clamp(60rem, 76vw, 78rem);
        width: clamp(60rem, 76vw, 78rem);
        min-height: min(42rem, 82svh);
        margin: 0;
    }

    .home-depth.is-horizontal .home-depth-card--overview {
        flex-basis: clamp(48rem, 64vw, 64rem);
        width: clamp(48rem, 64vw, 64rem);
        padding-inline-start: clamp(3rem, 5vw, 6rem);
    }

    .home-depth.is-horizontal .home-depth__progress {
        position: absolute;
        z-index: 3;
        bottom: clamp(var(--home-space-6), 4svh, var(--home-space-10));
        left: 50%;
        display: block;
        width: min(calc(100% - (var(--home-layout-gutter) + var(--home-layout-gutter))), var(--home-layout-max));
        height: 1px;
        overflow: hidden;
        background: rgba(197, 207, 219, 0.18);
        transform: translateX(-50%);
    }

    .home-depth.is-horizontal .home-depth__progress > span {
        display: block;
        width: 100%;
        height: 100%;
        background: var(--home-silver-strong);
        transform: scaleX(0);
        transform-origin: 0 50%;
        will-change: transform;
    }
}

.home-calendar__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(32rem, 1.18fr) minmax(20rem, 0.82fr);
    gap: var(--home-space-16);
    align-items: center;
}

.home-calendar__visual {
    width: 100%;
    max-width: 48.75rem;
}

.home-calendar__copy {
    width: 100%;
    max-width: 31.25rem;
    justify-self: end;
}

.home-calendar__kicker,
.home-journal__kicker {
    display: flex;
    justify-content: space-between;
    gap: var(--home-space-4);
    padding-inline: 0.125rem;
    color: var(--home-text-faint);
    font-size: var(--home-type-micro);
    line-height: 1.2;
    letter-spacing: var(--home-track-label);
    text-transform: uppercase;
}


.home-calendar__visual > .practice-calendar {
    margin-top: var(--home-space-3);
}

.home-section-note {
    margin-top: var(--home-space-6);
    color: var(--home-text-faint);
    font-size: var(--home-type-caption);
    line-height: 1.5;
}

.home-journal__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(20rem, 0.76fr) minmax(34rem, 1.24fr);
    gap: var(--home-space-16);
    align-items: center;
}

.home-journal__copy {
    width: 100%;
    max-width: 32rem;
}

.home-journal__visual {
    width: 100%;
    max-width: 51.25rem;
    justify-self: end;
}

.home-collection__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(19rem, 0.76fr) minmax(36rem, 1.24fr);
    gap: var(--home-space-16);
    align-items: center;
}

.home-collection__copy {
    width: 100%;
    max-width: 32rem;
}

.home-collection__visual {
    position: relative;
    width: 100%;
    max-width: 54rem;
    min-height: clamp(42rem, 46vw, 50rem);
    justify-self: end;
    isolation: isolate;
}

.home-collection__light,
.home-collection__light-fallback {
    position: absolute;
    z-index: 1;
    inset: -7%;
    width: 114%;
    height: 114%;
    max-width: none;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 74% 72% at 54% 48%, #000 0, #000 58%, transparent 100%);
    mask-image: radial-gradient(ellipse 74% 72% at 54% 48%, #000 0, #000 58%, transparent 100%);
}

.home-collection__light {
    opacity: 0;
    mix-blend-mode: screen;
}

.home-collection__light-fallback {
    inset: auto;
    left: var(--home-orb-x, 51%);
    top: var(--home-orb-y, 40%);
    width: 52%;
    height: 46%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 240, 255, 0.38), rgba(128, 148, 210, 0.16) 30%, transparent 72%);
    filter: blur(var(--home-space-3));
    opacity: 0.72;
    transform: translate(-50%, -50%);
    animation: home-practice-light-pulse 5.8s ease-in-out infinite;
}

.home-collection__light-anchor {
    position: absolute;
    z-index: 2;
    left: var(--home-orb-x, 51%);
    top: var(--home-orb-y, 40%);
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.home-page.is-collection-webgl-ready .home-collection__light {
    opacity: 1;
}

.home-page.is-collection-webgl-ready .home-collection__light-fallback {
    display: none;
}

.home-collection__deck,
.home-collection__card,
.home-collection__float,
.home-collection__progress {
    position: absolute;
    will-change: transform;
}

.home-collection__deck {
    z-index: 4;
    right: 3%;
    bottom: 1%;
    width: 82%;
}

.home-collection__deck img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 var(--home-space-6) var(--home-space-8) rgba(0, 0, 0, 0.54));
}

.home-collection__cards {
    position: absolute;
    z-index: 6;
    inset: 0;
    pointer-events: none;
}

.home-collection__card {
    top: 10%;
    width: 28%;
    transform-origin: 50% 88%;
}

.home-collection__card img {
    width: 100%;
    height: auto;
    aspect-ratio: 573 / 768;
    object-fit: contain;
    filter: drop-shadow(0 var(--home-space-5) var(--home-space-6) rgba(0, 0, 0, 0.52));
}

.home-collection__card--left {
    z-index: 1;
    left: 24%;
    top: 16%;
    transform: rotate(-10deg);
}

.home-collection__card--closed {
    z-index: 3;
    left: 39%;
    top: 7%;
    transform: rotate(-1.5deg);
}

.home-collection__card--closed img {
    aspect-ratio: auto;
}

.home-collection__card--closed i {
    position: absolute;
    left: 50%;
    top: 49%;
    color: rgba(245, 244, 250, 0.9);
    font-size: clamp(2.5rem, 4.4vw, 4.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    text-shadow: 0 0 var(--home-space-6) rgba(209, 218, 255, 0.76);
    transform: translate(-50%, -50%);
}

.home-collection__card--right {
    z-index: 2;
    left: 56%;
    top: 16%;
    transform: rotate(10deg);
}

.home-collection__float {
    z-index: 2;
    width: 7.6%;
    opacity: 0.78;
    pointer-events: none;
}

.home-collection__float img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 var(--home-space-2) var(--home-space-4) rgba(0, 0, 0, 0.5));
    animation: home-collection-card-drift var(--home-collection-drift, 6.8s) ease-in-out var(--home-collection-delay, 0s) infinite alternate;
}

.home-collection__float--a {
    left: 5%;
    top: 16%;
    width: 6.8%;
    transform: rotate(-24deg);
    --home-collection-drift: 7.4s;
}

.home-collection__float--b {
    right: 6%;
    top: 5%;
    width: 8.2%;
    transform: rotate(13deg);
    --home-collection-drift: 6.2s;
    --home-collection-delay: -2.1s;
}

.home-collection__float--c {
    left: 13%;
    top: 43%;
    width: 5.8%;
    transform: rotate(18deg);
    --home-collection-drift: 8.1s;
    --home-collection-delay: -3.4s;
}

.home-collection__float--d {
    right: 1%;
    top: 39%;
    width: 6.3%;
    transform: rotate(-18deg);
    --home-collection-drift: 6.9s;
    --home-collection-delay: -1.2s;
}

.home-collection__float--e {
    left: 20%;
    top: 69%;
    width: 8.4%;
    transform: rotate(-9deg);
    --home-collection-drift: 7.7s;
    --home-collection-delay: -4.1s;
}

.home-collection__float--f {
    right: 9%;
    top: 67%;
    width: 5.4%;
    transform: rotate(24deg);
    --home-collection-drift: 5.8s;
    --home-collection-delay: -2.8s;
}

.home-collection__float--g {
    left: 46%;
    top: 1%;
    width: 5.2%;
    transform: rotate(8deg);
    --home-collection-drift: 8.4s;
    --home-collection-delay: -5.3s;
}

.home-collection__float--h {
    right: 25%;
    top: 54%;
    width: 4.8%;
    transform: rotate(-28deg);
    --home-collection-drift: 6.5s;
    --home-collection-delay: -3.7s;
}

@keyframes home-collection-card-drift {
    0% {
        translate: 0 -0.3rem;
    }

    100% {
        translate: 0 0.45rem;
    }
}

.home-collection__progress {
    z-index: 10;
    left: 1%;
    bottom: 9%;
    display: grid;
    width: min(46%, 23rem);
    gap: var(--home-space-3);
    overflow: hidden;
    padding: var(--home-space-5) var(--home-space-6);
    transform: rotate(-4deg);
}

.home-collection__progress::before {
    animation: home-collection-progress-shimmer 7s ease-in-out infinite alternate;
}

@keyframes home-collection-progress-shimmer {
    to {
        background-position: 0 0, 100% 0;
    }
}

.home-collection__progress-label,
.home-collection__progress strong,
.home-collection__progress-track {
    position: relative;
    z-index: 1;
}

.home-collection__progress-label {
    color: var(--home-text-muted);
    font-size: var(--home-type-caption);
    line-height: 1.2;
    letter-spacing: var(--home-track-label);
    text-transform: uppercase;
}

.home-collection__progress strong {
    color: var(--home-text);
    font-size: clamp(1.25rem, 1.7vw, 1.625rem);
    font-weight: 400;
    line-height: 1;
}

.home-chapter,
.home-hero__scroll-cue {
    position: absolute;
    z-index: 10;
    bottom: clamp(var(--home-space-6), 5vh, var(--home-space-16));
    color: var(--home-text-faint);
    font-size: var(--home-type-caption);
    line-height: 1;
    letter-spacing: var(--home-track-label);
    text-transform: uppercase;
}

.home-chapter {
    left: var(--home-chapter-inset);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--home-space-3);
    writing-mode: vertical-rl;
}

.home-chapter i {
    width: 1px;
    height: var(--home-space-10);
    background: rgba(197, 207, 219, 0.34);
}

.home-hero__scroll-cue {
    right: clamp(var(--home-space-6), 4.4vw, var(--home-space-20));
    display: flex;
    align-items: center;
    gap: var(--home-space-4);
}

.home-hero__scroll-cue i {
    width: var(--home-space-12);
    height: 1px;
    background: rgba(197, 207, 219, 0.4);
}

.home-faq {
    position: relative;
    padding-block: var(--home-section-gap);
}

.home-faq__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: var(--home-space-16);
}

.home-faq__head .home-section-title {
    margin-top: var(--home-space-6);
}

.home-page.is-webgl-ready .home-hero__light-fallback {
    display: none;
}

.home-page:not(.is-webgl-ready) .home-hero__light-fallback {
    opacity: 0.72;
    animation: home-orb-pulse 4.8s ease-in-out infinite;
}

@keyframes home-orb-pulse {
    0%,
    100% {
        opacity: 0.58;
        transform: translate(-50%, -50%) scale(0.96);
    }

    50% {
        opacity: 0.78;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

@media (max-aspect-ratio: 16 / 9) {
    .layer-frame {
        object-fit: cover;
        object-position: var(--home-art-position-x) 50%;
    }
}

@media (max-width: 74.9375rem) {
    .home-interpretation__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--home-space-16);
    }

    .home-interpretation__copy {
        max-width: 56rem;
    }

    .home-section-lead {
        max-width: 48rem;
    }

    .home-interpretation__media {
        width: min(100%, 62.5rem);
    }

    .home-journal__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--home-space-16);
    }

    .home-journal__copy {
        max-width: 56rem;
    }

    .home-journal__visual {
        width: min(100%, 62.5rem);
        justify-self: start;
    }
}

@media (max-width: 63.9375rem) {
    .home-faq__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--home-space-10);
    }



    .home-hero__copy {
        width: min(36rem, 58vw);
        transform: translateY(calc(var(--home-space-4) * -1));
    }

    .home-hero__vignette {
        background:
            linear-gradient(90deg, rgba(5, 5, 10, 0.86) 0%, rgba(5, 5, 10, 0.48) 47%, rgba(5, 5, 10, 0.05) 82%),
            linear-gradient(180deg, rgba(6, 6, 10, 0.5) 0%, transparent 24%, transparent 72%, rgba(5, 5, 9, 0.68) 100%);
    }

    .home-practice__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .home-practice__copy,
    .home-practice__details {
        max-width: 30rem;
    }

    .home-practice__details {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    .home-depth__track {
        gap: var(--home-space-32);
    }

    .home-depth-card {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--home-space-12);
        min-height: 0;
    }

    .home-depth-card__visual {
        width: min(100%, 42rem);
        justify-self: center;
    }

    .home-depth-card__copy {
        max-width: 56rem;
    }

    .home-calendar__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--home-space-16);
    }

    .home-calendar__copy {
        order: 1;
        max-width: 56rem;
        justify-self: start;
    }

    .home-calendar__visual {
        order: 2;
        width: min(100%, 62.5rem);
    }

    .home-collection__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--home-space-16);
    }

    .home-collection__copy {
        max-width: 56rem;
    }

    .home-collection__visual {
        width: min(100%, 54rem);
        justify-self: center;
    }

}

@media (max-width: 47.9375rem) {

    .home-hero__layout {
        min-height: max(45rem, 100svh);
        align-items: flex-start;
        padding: var(--home-space-32) var(--home-layout-gutter) var(--home-space-24);
    }

    .home-hero__copy {
        width: min(100%, 34rem);
        margin-left: 0;
        transform: none;
    }

    .home-overline {
        max-width: 25ch;
    }

    .home-lead {
        max-width: 30ch;
        margin-top: var(--home-space-6);
    }

    .home-primary-action {
        margin-top: var(--home-space-8);
    }

    .layer-background {
        transform: scale(1.09);
    }

    .layer-constellations,
    .layer-character {
        transform: scale(1.075);
    }

    .layer-frame {
        transform: scale(0.94);
    }

    .layer-constellations {
        opacity: 0.46;
    }

    .layer-smoke {
        opacity: 0.64;
        transform: scale(1.11);
    }

    .home-hero__vignette {
        background:
            linear-gradient(180deg, rgba(5, 5, 10, 0.9) 0%, rgba(5, 5, 10, 0.7) 45%, rgba(5, 5, 10, 0.08) 75%, rgba(5, 5, 9, 0.72) 100%),
            linear-gradient(90deg, rgba(5, 5, 10, 0.72) 0%, rgba(5, 5, 10, 0.22) 76%, transparent 100%);
    }

    .home-page { --home-chapter-inset: var(--home-layout-gutter); }

    .home-hero__scroll-cue {
        display: none;
    }

    .home-practice__layout,
    .home-interpretation__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--home-space-12);
    }

    .home-depth-card__visual {
        min-height: clamp(23rem, 122vw, 34rem);
    }

    .home-depth-card--three .home-depth-card__cards img,
    .home-depth-card--ten .home-depth-card__cards img {
        height: min(66%, 25rem);
    }

    .home-depth-card--one .home-depth-card__cards img {
        height: min(74%, 27rem);
    }

    .home-practice__copy,
    .home-practice__details {
        max-width: 36rem;
        justify-self: start;
    }

    .home-practice__details {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-practice__visual {
        width: min(100%, 28rem);
        justify-self: center;
    }

    .home-feature-list li {
        grid-template-columns: var(--home-space-6) minmax(0, 1fr);
        gap: var(--home-space-3);
    }

    .home-calendar__layout {
        gap: var(--home-space-12);
    }

    .home-journal__layout {
        gap: var(--home-space-12);
    }

    .home-collection__layout {
        gap: var(--home-space-12);
    }

    .home-collection__visual {
        width: min(100%, 35rem);
        min-height: clamp(28rem, 116vw, 38rem);
    }

    .home-collection__deck {
        right: 1%;
        width: 88%;
    }

    .home-collection__card {
        width: 29%;
    }

    .home-collection__card--left {
        left: 20%;
    }

    .home-collection__card--closed {
        left: 37%;
    }

    .home-collection__card--right {
        left: 55%;
    }

    .home-collection__progress {
        left: 0;
        bottom: 7%;
        width: min(70%, 20rem);
        gap: var(--home-space-2);
        padding: var(--home-space-4);
    }

    .home-collection__float--a,
    .home-collection__float--d,
    .home-collection__float--h {
        display: none;
    }

    .home-section-title > span {
        white-space: normal;
    }
}

@media (max-height: 43.75rem) and (min-width: 48rem) {

    .home-hero,
    .home-hero__layout {
        min-height: 36rem;
    }

    .home-hero__copy {
        transform: translateY(calc(var(--home-space-3) * -1));
    }

    .home-lead {
        margin-top: var(--home-space-5);
    }

    .home-primary-action {
        margin-top: var(--home-space-6);
    }
}

/* Touch scenes use a static composition; controls keep their normal feedback. */
@media (hover: none), (pointer: coarse) {
    .home-header::before {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-page .brand-glass {
        background-color: var(--color-surface);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-hero__parallax,
    .layer-smoke,
    .layer-character,
    .layer-frame,
    .home-practice__fog,
    .home-practice__fog img,
    .home-practice__character-layer,
    .home-practice__object,
    .home-practice__orbit,
    .home-collection__fog,
    .home-collection__fog img,
    .home-collection__deck,
    .home-collection__card,
    .home-collection__float,
    .home-collection__progress,
    .home-depth-card__visual,
    .home-depth-card__copy {
        will-change: auto;
    }

    .home-page:not(.is-webgl-ready) .home-hero__light-fallback,
    .home-practice__light-fallback,
    .home-collection__light-fallback,
    .home-collection__float img,
    .home-collection__progress::before,
    .home-depth-card__scroll-cue i::after,
    .home-page .journal-entry__note-field i {
        animation: none;
    }
}

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

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

    .home-hero__parallax,
    [data-practice-parallax],
    [data-collection-parallax],
    [data-home-depth-visual],
    [data-home-depth-copy] {
        transform: none !important;
    }

    .journal-entry__card {
        transform: none !important;
    }
}

@media (forced-colors: active) {
    .home-primary-action {
        border: 1px solid ButtonText;
    }

    .home-hero__scene {
        opacity: 0.35;
    }
}
