:root {
  --ink: #111017;
  --ink-soft: #24212d;
  --night: #0e0b18;
  --night-2: #171126;
  --night-3: #211730;
  --plum: #7f5aaa;
  --lilac: #bda5d8;
  --rose: #d9a5ad;
  --gold: #d9bd85;
  --cream: #f8f4ec;
  --paper: #f2ede4;
  --paper-deep: #e9e1d5;
  --white: #fffdfa;
  --muted: #837e89;
  --line-light: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(17, 16, 23, 0.13);
  --serif: "Gowun Batang", "Nanum Myeongjo", Georgia, serif;
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --latin: "Manrope", "Pretendard Variable", sans-serif;
  --shell: min(1240px, calc(100vw - 96px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
textarea,
input {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

::selection {
  color: var(--night);
  background: #e6cf9f;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #68477d;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--night);
  background: var(--white);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding: clamp(108px, 10vw, 172px) 0;
}

#reading,
#pricing,
#experience,
#guide,
#faq {
  scroll-margin-top: 92px;
}

.site-noise {
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.cursor-glow {
  position: fixed;
  z-index: 4;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(169, 124, 211, 0.09), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 400ms ease;
}

@media (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
}

.brand-mark svg circle {
  fill: currentColor;
  stroke: none;
}

.brand-name {
  font-family: var(--latin);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(13, 10, 23, 0.83);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.header-inner {
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin-left: 70px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  font-weight: 520;
  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);
  transition: transform 240ms var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--white);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-button {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  color: inherit;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.15;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 16px;
}

.button-light {
  color: var(--night);
  background: rgba(255, 253, 250, 0.96);
}

.button-light:hover {
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.button-primary {
  color: #20192b;
  background: linear-gradient(135deg, #f2ddb3 0%, #d6b97f 100%);
  box-shadow: 0 12px 35px rgba(203, 169, 100, 0.16), inset 0 1px rgba(255, 255, 255, 0.5);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f6e7c7 0%, #dabe88 100%);
  box-shadow: 0 18px 46px rgba(203, 169, 100, 0.24), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(33, 25, 43, 0.28);
  border-radius: 50%;
  font-size: 13px;
  transition: transform 220ms var(--ease-out);
}

.button:hover .button-icon {
  transform: rotate(45deg);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  min-height: 56px;
  padding-inline: 28px;
  color: var(--white);
  background: var(--night);
}

.button-dark:hover {
  background: #2b1e3a;
  box-shadow: 0 14px 35px rgba(31, 22, 43, 0.18);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: white;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: 0;
  display: none;
  padding: 118px 24px 40px;
  color: var(--white);
  background: rgba(13, 10, 23, 0.98);
}

.mobile-menu[hidden] {
  display: none !important;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 46%, rgba(100, 64, 136, 0.24), transparent 31%),
    radial-gradient(circle at 12% 14%, rgba(86, 57, 121, 0.15), transparent 26%),
    linear-gradient(145deg, #0d0a16 0%, #13101e 48%, #0c0914 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.25;
}

.hero-aurora-one {
  top: 18%;
  right: 12%;
  width: 380px;
  height: 380px;
  background: #7651a5;
  animation: aurora-drift 12s ease-in-out infinite alternate;
}

.hero-aurora-two {
  bottom: -6%;
  left: 18%;
  width: 290px;
  height: 290px;
  background: #9f5d6c;
  animation: aurora-drift 15s ease-in-out -5s infinite alternate-reverse;
}

@keyframes aurora-drift {
  to { transform: translate3d(38px, -28px, 0) scale(1.16); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 144px);
  grid-template-columns: minmax(0, 1.12fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 4.5vw, 66px);
  padding-top: 108px;
  padding-bottom: 66px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 34px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

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

.eyebrow-dark {
  color: #8d6d42;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.15vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.19;
  text-wrap: balance;
}

.hero h1 em,
.experience-copy h2 em,
.final-content h2 em {
  position: relative;
  color: #e3c79a;
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 9px;
  content: "";
  border-bottom: 1px solid rgba(226, 196, 146, 0.7);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 600px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.hero-price strong {
  color: rgba(255, 255, 255, 0.73);
  font-weight: 600;
}

.hero-price span {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.hero-visual {
  position: relative;
  width: min(100%, 570px);
  height: min(66vw, 690px);
  max-height: 690px;
  min-height: 570px;
  justify-self: end;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(236, 211, 173, 0.17);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-22deg);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: #e5c78f;
  box-shadow: 0 0 18px #d6b377;
}

.orbit::before { top: 13%; left: 16%; }
.orbit::after { right: 13%; bottom: 15%; }

.orbit-one {
  width: 520px;
  height: 520px;
  animation: orbit-spin 28s linear infinite;
}

.orbit-two {
  width: 410px;
  height: 620px;
  border-color: rgba(178, 135, 203, 0.14);
  transform: translate(-50%, -50%) rotate(33deg);
  animation: orbit-spin-reverse 34s linear infinite;
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(338deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-327deg); }
}

.spark {
  position: absolute;
  z-index: 4;
  color: #edd5a7;
  text-shadow: 0 0 20px rgba(229, 196, 137, 0.7);
  animation: sparkle 3.4s ease-in-out infinite;
}

.spark-one { top: 12%; left: 15%; font-size: 18px; }
.spark-two { top: 37%; right: 7%; font-size: 23px; animation-delay: -1.3s; }
.spark-three { right: 19%; bottom: 10%; font-size: 13px; animation-delay: -2.1s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.25; transform: scale(0.78) rotate(0); }
  50% { opacity: 1; transform: scale(1.14) rotate(18deg); }
}

.tarot-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 236px;
  height: 408px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: #ded0b9;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42), 0 8px 24px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  will-change: transform;
}

.card-main {
  z-index: 3;
  transform: translate(-50%, -50%) rotate(4deg) rotateY(-3deg);
  animation: card-float 6.5s var(--ease-soft) infinite;
}

.card-left {
  z-index: 1;
  opacity: 0.8;
  transform: translate(-92%, -45%) rotate(-17deg) rotateY(9deg) scale(0.91);
  filter: saturate(0.7) brightness(0.78);
}

.card-right {
  z-index: 2;
  opacity: 0.9;
  transform: translate(-10%, -47%) rotate(18deg) rotateY(-8deg) scale(0.93);
  filter: saturate(0.82) brightness(0.84);
}

@keyframes card-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(4deg) rotateY(-3deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(2deg) rotateY(2deg) translateY(-14px); }
}

.card-face {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #21172c;
  border: 1px solid rgba(35, 22, 51, 0.28);
  border-radius: 11px;
  background: #f1e6d3;
}

.card-index,
.card-name {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  text-align: center;
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.card-index { top: 11px; }
.card-name { bottom: 10px; }

.star-card-art {
  position: absolute;
  top: 38px;
  right: 9px;
  bottom: 37px;
  left: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 75px);
  border-radius: 90px;
}

.card-back-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(231, 206, 163, 0.5);
  border-radius: 11px;
  background:
    radial-gradient(circle at center, transparent 0 18%, rgba(225, 197, 148, 0.15) 18.5% 19%, transparent 19.5% 28%, rgba(225, 197, 148, 0.12) 28.5% 29%, transparent 29.5%),
    linear-gradient(145deg, #211632, #4a2e63 56%, #1d142a);
}

.card-back-pattern::before,
.card-back-pattern::after {
  position: absolute;
  inset: 17px;
  content: "";
  border: 1px solid rgba(231, 206, 163, 0.36);
  border-radius: 8px;
}

.card-back-pattern::after {
  inset: 24px;
  border-radius: 50%;
  transform: rotate(45deg);
}

.mini-moon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(229, 203, 157, 0.88);
  box-shadow: 0 0 36px rgba(221, 188, 128, 0.23);
  transform: translate(-50%, -50%);
}

.mini-moon::after {
  position: absolute;
  top: -4px;
  left: 20px;
  width: 75px;
  height: 75px;
  content: "";
  border-radius: 50%;
  background: #312044;
}

.card-back-pattern i {
  position: absolute;
  z-index: 3;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e6c98e;
}

.card-back-pattern i:nth-of-type(1) { top: 22%; left: 26%; }
.card-back-pattern i:nth-of-type(2) { top: 31%; right: 21%; }
.card-back-pattern i:nth-of-type(3) { right: 26%; bottom: 23%; }
.card-back-pattern i:nth-of-type(4) { bottom: 30%; left: 19%; }

.floating-label {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(22, 15, 34, 0.52);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-label span {
  color: #e9cf9f;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.label-top { top: 18%; right: -3%; }
.label-bottom { bottom: 16%; left: 2%; }

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-proof > div {
  display: grid;
  min-height: 144px;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 22px 42px;
  border-right: 1px solid var(--line-light);
}

.hero-proof > div:first-child { padding-left: 0; }
.hero-proof > div:last-child { border-right: 0; }

.proof-icon {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 21px;
}

.hero-proof strong {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.hero-proof small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.section-heading {
  margin-bottom: clamp(56px, 6vw, 82px);
}

.section-heading h2,
.faq-heading h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.28;
  text-wrap: balance;
}

.split-heading h2 br,
.experience-copy h2 br,
.faq-heading h2 br,
.final-content h2 br,
.journal-content h3 br {
  display: none;
}

.section-heading > p,
.section-heading > div > p {
  color: #746f78;
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 17px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.8;
}

.mobile-swipe-hint {
  display: none;
}

.concern-section {
  z-index: 3;
  background: var(--cream);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.concern-card {
  position: relative;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 32px;
  overflow: hidden;
  color: var(--ink);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 300ms ease, background 300ms ease, transform 300ms var(--ease-out);
}

.concern-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at 85% 15%, rgba(211, 178, 128, 0.16), transparent 38%);
  transition: opacity 300ms ease;
}

.concern-card:hover,
.concern-card.is-selected {
  z-index: 1;
  color: var(--white);
  background: var(--night-2);
  box-shadow: 0 20px 50px rgba(29, 22, 38, 0.1);
  transform: translateY(-3px);
}

.concern-card:hover::before,
.concern-card.is-selected::before {
  opacity: 1;
}

.concern-number {
  margin-bottom: 28px;
  color: #726c76;
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.concern-card.is-selected .concern-number,
.concern-card:hover .concern-number {
  color: var(--gold);
}

.concern-symbol {
  position: absolute;
  top: 24px;
  right: 30px;
  color: #a78c67;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.concern-card strong {
  position: relative;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.concern-card small {
  position: relative;
  max-width: 230px;
  color: #625d66;
  font-size: 13px;
  line-height: 1.5;
}

.concern-card:hover small,
.concern-card.is-selected small {
  color: rgba(255, 255, 255, 0.72);
}

.concern-arrow {
  position: absolute;
  right: 30px;
  bottom: 26px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 12px;
  transition: transform 250ms var(--ease-out);
}

.concern-card:hover .concern-arrow,
.concern-card.is-selected .concern-arrow {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.23);
  transform: rotate(45deg);
}

.selection-dock {
  display: flex;
  min-height: 105px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 20px 22px 20px 30px;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.38);
}

.selection-dock > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.selection-dock span {
  color: #625d66;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.selection-dock strong {
  font-family: var(--serif);
  font-size: 21px;
}

.plans-section {
  background: #ece6dc;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 16, 23, 0.1);
  border-radius: 8px;
  background: #f8f4ed;
}

.plan-featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, #241932, #100c19 70%);
  box-shadow: 0 30px 70px rgba(25, 17, 35, 0.17);
  transform: translateY(-18px);
}

.plan-deep {
  background: #dfd4c4;
}

.plan-badge {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 50%;
  padding: 7px 12px;
  color: #241a2e;
  border-radius: 999px;
  background: #e3c690;
  font-family: var(--latin);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  transform: translateX(-50%);
}

.plan-topline {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(17, 16, 23, 0.42);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.plan-featured .plan-topline {
  color: rgba(255, 255, 255, 0.38);
}

.plan-art {
  position: relative;
  display: flex;
  height: 310px;
  flex: 0 0 310px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 16, 23, 0.1);
}

.plan-art::before {
  position: absolute;
  width: 245px;
  height: 245px;
  content: "";
  border: 1px solid rgba(97, 72, 117, 0.2);
  border-radius: 50%;
}

.plan-art::after {
  position: absolute;
  width: 165px;
  height: 165px;
  content: "";
  border: 1px solid rgba(97, 72, 117, 0.13);
  border-radius: 50%;
}

.plan-featured .plan-art {
  border-bottom-color: rgba(255, 255, 255, 0.11);
  background: radial-gradient(circle at center, rgba(135, 87, 172, 0.3), transparent 56%);
}

.plan-featured .plan-art::before,
.plan-featured .plan-art::after {
  border-color: rgba(228, 199, 146, 0.18);
}

.mini-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 178px;
  padding: 6px;
  place-items: center;
  color: #dabb85;
  border: 1px solid rgba(226, 194, 139, 0.6);
  border-radius: 8px;
  background: linear-gradient(145deg, #241735, #54366b);
  box-shadow: 0 24px 45px rgba(30, 21, 39, 0.25);
}

.mini-card::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(226, 194, 139, 0.34);
  border-radius: 5px;
}

.mini-card span {
  font-family: var(--serif);
  font-size: 32px;
}

.plan-art-three .mini-card:nth-child(1) { transform: translate(34px, 9px) rotate(-16deg) scale(0.91); }
.plan-art-three .mini-card:nth-child(2) { z-index: 3; transform: translateY(-8px) scale(1.05); }
.plan-art-three .mini-card:nth-child(3) { transform: translate(-34px, 9px) rotate(16deg) scale(0.91); }

.plan-art-seven .mini-card {
  width: 102px;
  height: 164px;
}

.plan-art-seven .mini-card:nth-child(1) { transform: translate(38px, 10px) rotate(-14deg); }
.plan-art-seven .mini-card:nth-child(2) { z-index: 3; transform: translateY(-5px); }
.plan-art-seven .mini-card:nth-child(3) { transform: translate(-38px, 10px) rotate(14deg); }

.plan-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 34px 32px;
}

.plan-kicker {
  margin-bottom: 11px;
  color: #8a6a3f;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.plan-featured .plan-kicker {
  color: #d8bd8b;
}

.plan-content h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.plan-content > p {
  margin-bottom: 23px;
  color: #77717a;
  font-size: 14px;
  line-height: 1.7;
}

.plan-featured .plan-content > p {
  color: rgba(255, 255, 255, 0.7);
}

.plan-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-content li {
  color: #5f5a62;
  font-size: 13px;
}

.plan-content li::before {
  margin-right: 9px;
  color: #997340;
  content: "✦";
  font-size: 8px;
}

.plan-featured .plan-content li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  margin-bottom: 20px;
}

.plan-price strong {
  font-size: 25px;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.plan-price small {
  color: #8b858e;
  font-size: 11px;
}

.plan-featured .plan-price small {
  color: rgba(255, 255, 255, 0.68);
}

.button-plan {
  width: 100%;
  min-height: 56px;
  justify-content: space-between;
  color: var(--white);
  border-radius: 6px;
  background: var(--night);
}

.button-plan:hover {
  background: #2d203c;
}

.button-plan-light {
  color: var(--night);
  background: #e5c990;
}

.button-plan-light:hover {
  background: #efd9ad;
}

.experience-section {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #0d0a16 0%, #171022 60%, #100b18 100%);
}

.experience-glow {
  position: absolute;
  top: 15%;
  left: 4%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(101, 64, 132, 0.24);
  filter: blur(110px);
}

.experience-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(64px, 8vw, 130px);
}

.report-preview {
  position: relative;
  padding: 30px 0 0 30px;
}

.report-preview::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 71%;
  height: 72%;
  content: "";
  border: 1px solid rgba(221, 190, 139, 0.2);
}

.report-window {
  position: relative;
  z-index: 2;
  padding: 28px 30px 30px;
  color: #2b2530;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 12px;
  background: #eee7db;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
  transform: rotate(-1.2deg);
}

.report-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  color: #817985;
  border-bottom: 1px solid rgba(32, 25, 38, 0.13);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.report-logo {
  color: #1d1724;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.report-question {
  padding: 24px 0 18px;
}

.report-question small,
.report-insight small {
  color: #8b6c42;
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.report-question p {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.report-cards {
  display: flex;
  height: 200px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: radial-gradient(circle, #51386a, #191125 66%);
}

.report-cards div {
  position: relative;
  display: flex;
  width: 104px;
  height: 158px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 13px 5px 10px;
  color: #e4c68e;
  border: 4px solid #ded0b9;
  border-radius: 6px;
  background: linear-gradient(160deg, #2a1b3c, #81588d);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
  font-family: var(--latin);
}

.report-cards div::after {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  content: "✦";
  border: 1px solid rgba(231, 202, 148, 0.45);
  border-radius: 50%;
  font-size: 23px;
}

.report-cards div:nth-child(1) { transform: translateX(10px) rotate(-8deg) scale(0.94); }
.report-cards div:nth-child(2) { z-index: 2; transform: translateY(-3px); }
.report-cards div:nth-child(3) { transform: translateX(-10px) rotate(8deg) scale(0.94); }
.report-cards span { font-size: 8px; }
.report-cards strong { order: 3; font-size: 8px; letter-spacing: 0.06em; }

.report-insight {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(32, 25, 38, 0.13);
}

.insight-index {
  font-family: var(--serif);
  font-size: 22px;
}

.report-insight p {
  margin: 6px 0 0;
  color: #615a64;
  font-size: 12px;
  line-height: 1.75;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0 46px;
}

.report-tags span {
  padding: 5px 8px;
  color: #74677d;
  border: 1px solid rgba(64, 48, 76, 0.13);
  border-radius: 999px;
  font-size: 10px;
}

.preview-note {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 23px 0 0 52px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.preview-note span { color: var(--gold); }

.experience-copy h2 {
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: clamp(39px, 4.4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 1.32;
  text-wrap: balance;
}

.experience-copy > p {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.85;
}

.feature-list {
  border-top: 1px solid var(--line-light);
}

.feature-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 11px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.feature-list > div > span {
  padding-top: 2px;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.feature-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 0 0 8px;
  color: #e2c493;
  border-bottom: 1px solid rgba(226, 196, 147, 0.45);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.process-section {
  background: var(--cream);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 390px;
  padding: 32px 40px 42px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}

.process-list li:last-child { border-right: 0; }

.process-number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: #9b949d;
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.process-icon {
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  margin: 32px auto 28px;
  place-items: center;
  color: #8f6e42;
  border: 1px solid rgba(85, 64, 95, 0.15);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 32px;
}

.process-icon::before {
  position: absolute;
  width: 88px;
  height: 88px;
  content: "";
  border: 1px solid rgba(85, 64, 95, 0.1);
  border-radius: 50%;
}

.cards-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-icon i {
  position: absolute;
  width: 35px;
  height: 55px;
  border: 1px solid #8b6b96;
  border-radius: 4px;
  background: #eee7dc;
}

.cards-icon i:nth-child(1) { transform: translateX(-17px) rotate(-17deg); }
.cards-icon i:nth-child(2) { z-index: 2; }
.cards-icon i:nth-child(3) { transform: translateX(17px) rotate(17deg); }

.process-list h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
}

.process-list p {
  max-width: 250px;
  margin: 0 auto;
  color: #7b757e;
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  padding: 25px 0;
  color: var(--white);
  border-radius: 8px;
  background: var(--night-2);
}

.trust-strip p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  border-right: 1px solid var(--line-light);
  font-size: 12px;
}

.trust-strip p:last-child { border-right: 0; }

.trust-strip p > span {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 14px;
}

.trust-strip strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}

.guide-section {
  background: #e8e0d4;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 16px;
}

.journal-card {
  position: relative;
  display: flex;
  min-height: 505px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 16, 25, 0.11);
  background: #f5f0e8;
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.journal-card:hover {
  z-index: 2;
  box-shadow: 0 26px 60px rgba(31, 22, 36, 0.13);
  transform: translateY(-6px);
}

.journal-featured {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  color: var(--white);
  background: var(--night-2);
}

.journal-visual {
  position: relative;
  display: grid;
  min-height: 505px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #66447e, #20162e 64%);
}

.journal-visual::before,
.journal-visual::after {
  position: absolute;
  width: 260px;
  height: 400px;
  content: "";
  border: 1px solid rgba(231, 201, 150, 0.2);
  border-radius: 50%;
  transform: rotate(30deg);
}

.journal-visual::after {
  transform: rotate(-30deg);
}

.moon-disc {
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2dba9, #b89767);
  box-shadow: 0 0 60px rgba(226, 194, 136, 0.18);
}

.journal-visual > span {
  position: relative;
  z-index: 2;
  color: #2e2138;
  font-family: var(--serif);
  font-size: 74px;
}

.journal-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 32px;
}

.journal-featured .journal-content {
  justify-content: center;
  padding: 46px 38px;
}

.journal-content > span {
  margin-bottom: 18px;
  color: #8b6a3f;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.journal-featured .journal-content > span {
  color: #d9bd89;
}

.journal-content h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.52;
  text-wrap: balance;
}

.journal-featured h3 {
  font-size: 29px;
}

.journal-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.journal-content strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 17, 28, 0.11);
  font-size: 12px;
  font-weight: 600;
}

.journal-featured .journal-content strong {
  border-color: rgba(255, 255, 255, 0.13);
}

.journal-content strong span {
  transition: transform 220ms ease;
}

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

.journal-thumb {
  position: relative;
  display: grid;
  height: 270px;
  flex: 0 0 270px;
  place-items: center;
  overflow: hidden;
  color: #e4c993;
  background: #23172f;
}

.thumb-star::before {
  position: absolute;
  width: 170px;
  height: 220px;
  content: "";
  border: 1px solid rgba(231, 200, 146, 0.35);
  border-radius: 80px 80px 15px 15px;
  background: radial-gradient(circle at 50% 34%, #8e659a, #352144 65%);
}

.thumb-star span {
  position: absolute;
  z-index: 2;
  top: 43px;
  font-family: var(--latin);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.thumb-star i {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 56px;
  font-style: normal;
}

.thumb-orbit {
  background: radial-gradient(circle at center, #66517c, #1d1527 64%);
}

.thumb-orbit i,
.thumb-orbit::before,
.thumb-orbit::after {
  position: absolute;
  width: 220px;
  height: 120px;
  content: "";
  border: 1px solid rgba(231, 200, 146, 0.24);
  border-radius: 50%;
}

.thumb-orbit::before { transform: rotate(60deg); }
.thumb-orbit::after { transform: rotate(-60deg); }

.thumb-orbit span {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 57px;
}

.faq-section {
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.faq-section::before {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 660px;
  height: 660px;
  content: "";
  border-radius: 50%;
  background: rgba(102, 65, 137, 0.15);
  filter: blur(100px);
}

.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(80px, 11vw, 160px);
}

.faq-heading {
  position: sticky;
  top: 128px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 4vw, 57px);
}

.faq-heading p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.faq-heading a {
  color: #dec28f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  display: grid;
  min-height: 92px;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary > span {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.faq-list summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: transform 240ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 630px;
  margin: -5px 28px 30px 56px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, rgba(103, 67, 132, 0.48), transparent 33%),
    linear-gradient(180deg, #171020, #0e0b17);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(240, 215, 170, 0.65) 0.6px, transparent 0.7px);
  background-size: 45px 45px;
  opacity: 0.17;
  mask-image: radial-gradient(circle, black, transparent 70%);
}

.final-orbit {
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(229, 199, 145, 0.14);
  border-radius: 50%;
}

.final-orbit::before,
.final-orbit::after {
  position: absolute;
  inset: 52px -70px;
  content: "";
  border: 1px solid rgba(229, 199, 145, 0.11);
  border-radius: 50%;
  transform: rotate(45deg);
}

.final-orbit::after {
  transform: rotate(-45deg);
}

.final-stars {
  position: absolute;
  top: 19%;
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(229, 198, 141, 0.45);
  font-size: 12px;
}

.final-stars span { font-size: 25px; }

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

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

.final-content h2 {
  margin-bottom: 23px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 70px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.28;
  text-wrap: balance;
}

.final-content > p {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.final-content > small {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #09070e;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  padding-top: 76px;
  padding-bottom: 76px;
}

.footer-brand {
  color: var(--white);
}

.footer-top > div > p {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-top nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-top nav strong {
  margin-bottom: 10px;
  color: #b99c6d;
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.footer-top nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-top nav a:hover { color: var(--white); }

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding-top: 22px;
  padding-bottom: 25px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { text-align: center; }
.footer-bottom a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
}
.footer-bottom a span { margin-left: 5px; }

.mobile-quickbar {
  display: none;
}

.checkout-dialog {
  width: min(620px, calc(100vw - 28px));
  max-width: none;
  max-height: min(880px, calc(100dvh - 28px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  border: 0;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.checkout-dialog::backdrop {
  background: rgba(7, 5, 12, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.checkout-dialog[open] {
  animation: dialog-in 380ms var(--ease-out);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
}

.dialog-shell {
  max-height: min(880px, calc(100dvh - 28px));
  overflow: auto;
  overscroll-behavior: contain;
}

.dialog-header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 11, 24, 0.96);
}

.dialog-header .brand-mark { width: 24px; height: 24px; }
.dialog-header .brand-name { font-size: 13px; }

.dialog-privacy-note {
  position: absolute;
  left: 50%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
  transform: translateX(-50%);
}

.dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 23px;
  font-weight: 300;
}

.dialog-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  padding: 22px 34px;
  color: #aaa4ac;
  border-bottom: 1px solid rgba(20, 16, 25, 0.1);
  font-family: var(--latin);
  font-size: 10px;
}

.dialog-progress span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.dialog-progress em {
  font-family: var(--sans);
  font-style: normal;
}

.dialog-progress span.is-active,
.dialog-progress span.is-complete {
  color: #6f4c91;
  font-weight: 700;
}

.dialog-progress > i {
  height: 1px;
  margin: 0 11px;
  background: #d9d2c8;
}

.dialog-step {
  display: none;
  padding: 34px;
}

.dialog-step.is-active {
  display: block;
  animation: step-in 320ms var(--ease-out);
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(12px); }
}

.dialog-title {
  margin-bottom: 26px;
}

.dialog-title > small {
  color: #8b6a3f;
  font-family: var(--latin);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.dialog-title h2 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.dialog-title p {
  margin: 0;
  color: #7c7680;
  font-size: 13px;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 16px;
  border: 1px solid rgba(25, 19, 31, 0.11);
  border-radius: 10px;
  background: #efe8dd;
}

.checkout-card-art {
  display: grid;
  width: 56px;
  height: 78px;
  place-items: center;
  color: #dbbd84;
  border: 3px solid #d9c9b3;
  border-radius: 5px;
  background: linear-gradient(145deg, #281a39, #694982);
}

.checkout-summary > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.checkout-summary small {
  color: #958e97;
  font-size: 9px;
}

.checkout-summary strong {
  font-size: 16px;
  font-weight: 700;
}

.checkout-summary > div span {
  overflow: hidden;
  color: #77717a;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-summary > strong {
  font-size: 17px;
  letter-spacing: -0.03em;
}

.dialog-field {
  margin-top: 24px;
  min-inline-size: 0;
  margin-inline: 0;
  padding: 0;
  border: 0;
}

.dialog-field > label,
.dialog-field > legend,
.question-suggestions > span {
  display: block;
  margin-bottom: 10px;
  color: #5c5660;
  font-size: 11px;
  font-weight: 650;
}

.dialog-title h2[tabindex="-1"]:focus-visible,
.result-intro h2[tabindex="-1"]:focus-visible {
  outline: 0;
  box-shadow: none;
}

.dialog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.dialog-chips button {
  min-height: 44px;
  padding: 9px 13px;
  color: #6e6871;
  border: 1px solid rgba(23, 17, 28, 0.12);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.dialog-chips button.is-selected {
  color: var(--white);
  border-color: var(--night-2);
  background: var(--night-2);
}

.dialog-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin: 24px 0 16px;
  color: #69636d;
  font-size: 11px;
}

.button-full {
  width: 100%;
}

.question-suggestions {
  margin-bottom: 14px;
}

.question-suggestions button {
  margin: 0 5px 6px 0;
  min-height: 40px;
  padding: 8px 11px;
  color: #776b7d;
  border: 1px solid rgba(73, 50, 89, 0.13);
  border-radius: 5px;
  background: rgba(120, 85, 143, 0.05);
  cursor: pointer;
  font-size: 11px;
}

.question-box {
  position: relative;
  display: block;
}

.question-box textarea {
  width: 100%;
  min-height: 172px;
  resize: vertical;
  padding: 17px 18px 35px;
  color: var(--ink);
  border: 1px solid rgba(22, 17, 27, 0.15);
  border-radius: 10px;
  outline: none;
  background: #fffdfa;
  font-size: 14px;
  line-height: 1.7;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.question-box textarea:focus {
  border-color: #8a679e;
  box-shadow: 0 0 0 3px rgba(126, 90, 148, 0.1);
}

.question-box textarea::placeholder {
  color: #aaa4ac;
}

.question-box > small {
  position: absolute;
  right: 13px;
  bottom: 10px;
  color: #aaa3ac;
  font-size: 9px;
}

.field-hint {
  min-height: 18px;
  margin: 8px 2px 20px;
  color: #6d6770;
  font-size: 11px;
}

.field-hint.is-error {
  color: #a34e58;
}

.dialog-buttons {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 8px;
  margin-top: 20px;
}

.button-ghost-dialog {
  color: #615a64;
  border: 1px solid rgba(25, 19, 30, 0.14);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.toast {
  position: fixed;
  z-index: 1000;
  bottom: 28px;
  left: 50%;
  max-width: min(440px, calc(100vw - 28px));
  padding: 13px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(18, 13, 27, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  font-size: 12px;
  transform: translate(-50%, 15px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(12px);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms var(--ease-soft), transform 850ms var(--ease-soft);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .concern-card[data-reveal]:nth-child(2),
.reveal-ready .plan-card[data-reveal]:nth-child(2) { transition-delay: 70ms; }
.reveal-ready .concern-card[data-reveal]:nth-child(3),
.reveal-ready .plan-card[data-reveal]:nth-child(3) { transition-delay: 140ms; }
.reveal-ready .concern-card[data-reveal]:nth-child(4) { transition-delay: 70ms; }
.reveal-ready .concern-card[data-reveal]:nth-child(5) { transition-delay: 140ms; }
.reveal-ready .concern-card[data-reveal]:nth-child(6) { transition-delay: 210ms; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1100px); }
  .desktop-nav { gap: 22px; margin-left: 28px; }
  .hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.78fr); }
  .hero h1 { font-size: clamp(48px, 5.45vw, 60px); }
  .hero-visual { min-height: 540px; }
  .tarot-card { width: 205px; height: 356px; }
  .orbit-one { width: 450px; height: 450px; }
  .orbit-two { width: 350px; height: 530px; }
  .plan-content { padding: 30px 26px 27px; }
  .plan-card { min-height: 750px; }
  .experience-grid { gap: 65px; }
  .journal-grid { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
  .journal-featured { grid-template-columns: 0.85fr 1.15fr; }
  .journal-content { padding: 28px 24px; }
  .journal-featured .journal-content { padding: 34px 28px; }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .desktop-only { display: none; }
  .menu-button { display: grid; }
  .hero-grid { grid-template-columns: 1fr 370px; gap: 10px; }
  .hero h1 { font-size: 54px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 330px; }
  .hero-visual { height: 570px; }
  .hero-proof > div { padding-inline: 22px; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; gap: 20px; }
  .plan-card { min-height: 0; display: grid; grid-template-columns: 0.85fr 1.15fr; }
  .plan-art { height: auto; min-height: 410px; border-right: 1px solid rgba(17,16,23,.1); border-bottom: 0; }
  .plan-featured { transform: none; }
  .plan-topline { right: auto; width: calc(85% - 56px); }
  .plan-content { padding: 58px 40px 35px; }
  .experience-grid { grid-template-columns: 1fr; }
  .report-preview { max-width: 630px; }
  .experience-copy { max-width: 680px; }
  .process-list li { padding-inline: 22px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .trust-strip p:nth-child(2) { border-right: 0; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-featured { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-heading { position: static; }
}

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

  html { scroll-padding-top: 72px; }

  #reading,
  #pricing,
  #experience,
  #guide,
  #faq { scroll-margin-top: 72px; }

  body { font-size: 16px; padding-bottom: env(safe-area-inset-bottom); }

  .site-noise { opacity: 0.025; }
  .cursor-glow { display: none; }
  .desktop-only { display: none !important; }
  .section { padding: 60px 0; }

  .header-inner { height: 68px; }
  .menu-button { width: 44px; height: 44px; }
  .brand { gap: 8px; }
  .brand-mark { width: 25px; height: 25px; }
  .brand-name { font-size: 14px; letter-spacing: 0.18em; }
  .header-actions { gap: 6px; }
  .header-actions .button-light {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 14px;
    border-radius: 999px;
    font-size: 12px;
  }

  .header-actions .button-light > span { display: none; }

  /* The persistent action lives in the header so reading content is never covered. */
  .mobile-quickbar { display: none !important; }

  .mobile-menu {
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { display: grid; grid-template-columns: 38px 1fr; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.11); font-family: var(--serif); font-size: 24px; }
  .mobile-menu nav a span { padding-top: 7px; color: var(--gold); font-family: var(--latin); font-size: 8px; }
  .mobile-menu > p { margin: 0; color: rgba(255,255,255,.38); font-family: var(--serif); font-size: 15px; }

  .hero { min-height: auto; }
  .hero::before { background-size: 56px 56px; }
  .hero-grid {
    min-height: calc(100svh - 76px);
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 88px;
    padding-bottom: 16px;
  }

  .hero-copy { padding-top: 0; text-align: center; }
  .eyebrow { justify-content: center; margin-bottom: 19px; font-size: 9px; }
  .eyebrow > span { width: 24px; }
  .hero h1 { margin-bottom: 17px; font-size: clamp(35px, 10.3vw, 42px); line-height: 1.23; letter-spacing: -0.052em; }
  .hero h1 em::after { bottom: -4px; }
  .hero-description { max-width: 355px; margin: 0 auto 21px; font-size: 15px; line-height: 1.65; }
  .hero-actions { width: 100%; max-width: 360px; margin: 0 auto; }
  .button-large { min-height: 56px; font-size: 15px; }
  .hero-price { justify-content: center; margin: 13px 0 0; font-size: 12px; }
  .hero-visual { width: 100%; height: 232px; min-height: 232px; margin-top: 6px; justify-self: center; }
  .tarot-card { width: 126px; height: 216px; padding: 5px; border-radius: 11px; }
  .card-face, .card-back-pattern { border-radius: 7px; }
  .card-index { top: 5px; font-size: 5px; }
  .card-name { bottom: 5px; font-size: 5px; }
  .star-card-art { top: 21px; right: 5px; bottom: 20px; left: 5px; width: calc(100% - 10px); height: calc(100% - 41px); }
  .card-left { transform: translate(-103%, -44%) rotate(-18deg) scale(.9); }
  .card-right { transform: translate(3%, -44%) rotate(18deg) scale(.9); }
  .card-main { animation-name: card-float-mobile; }
  @keyframes card-float-mobile {
    0%,100% { transform: translate(-50%,-50%) rotate(4deg) translateY(0); }
    50% { transform: translate(-50%,-50%) rotate(2deg) translateY(-8px); }
  }
  .orbit-one { width: 268px; height: 268px; }
  .orbit-two { width: 198px; height: 302px; }
  .floating-label { padding: 7px 10px; font-size: 6px; }
  .floating-label span { font-size: 11px; }
  .label-top { top: 9%; right: 3%; }
  .label-bottom { bottom: 10%; left: 4%; }
  .spark-one { top: 5%; left: 13%; }
  .spark-two { top: 30%; right: 4%; }
  .spark-three { bottom: 5%; }
  .hero-proof { grid-template-columns: 1fr; width: 100%; border-bottom: 1px solid var(--line-light); }
  .hero-proof > div { display: none; min-height: 84px; padding: 17px 18px; border-right: 0; }
  .hero-proof > div:first-child { display: grid; padding-left: 18px; }

  .section-heading { margin-bottom: 27px; }
  .section-heading h2, .faq-heading h2 { margin-bottom: 12px; font-size: clamp(31px, 8.5vw, 38px); line-height: 1.29; }
  .centered p { font-size: 15px; line-height: 1.7; }
  .split-heading { grid-template-columns: 1fr; gap: 16px; }
  .split-heading .eyebrow { justify-content: flex-start; }
  .split-heading > p { margin: 0; font-size: 15px; line-height: 1.7; }

  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .concern-card { min-height: 132px; padding: 15px; }
  .concern-number { margin-bottom: 12px; font-size: 10px; }
  .concern-symbol { top: 14px; right: 15px; font-size: 19px; }
  .concern-card strong { max-width: 116px; margin-bottom: 5px; font-size: 18px; line-height: 1.3; }
  .concern-card small { max-width: 122px; font-size: 12px; line-height: 1.45; }
  .concern-arrow { right: 12px; bottom: 11px; width: 30px; height: 30px; font-size: 10px; }
  .selection-dock { min-height: 76px; margin-top: 12px; padding: 10px 10px 10px 15px; }
  .selection-dock strong { font-size: 17px; }
  .selection-dock .button { min-height: 50px; padding-inline: 17px; font-size: 12px; }

  .plans-section { padding-bottom: 64px; }
  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin: -14px 0 13px;
    color: #625d66;
    font-size: 12px;
  }
  .mobile-swipe-hint span { color: #9a7545; }
  .plan-grid {
    display: flex;
    width: calc(100% + 18px);
    gap: 12px;
    margin-right: -18px;
    padding: 0 18px 9px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .plan-grid::-webkit-scrollbar { display: none; }
  .plan-card { display: flex; min-height: 0; flex: 0 0 clamp(280px, calc(100vw - 72px), 336px); border-radius: 9px; scroll-snap-align: start; }
  .plan-art { height: 176px; min-height: 176px; flex-basis: 176px; border-right: 0; border-bottom: 1px solid rgba(17,16,23,.1); }
  .plan-art::before { width: 170px; height: 170px; }
  .plan-art::after { width: 112px; height: 112px; }
  .mini-card { width: 72px; height: 114px; }
  .mini-card span { font-size: 23px; }
  .plan-art-seven .mini-card { width: 69px; height: 110px; }
  .plan-art-three .mini-card:nth-child(1), .plan-art-seven .mini-card:nth-child(1) { transform: translate(25px,7px) rotate(-15deg) scale(.93); }
  .plan-art-three .mini-card:nth-child(3), .plan-art-seven .mini-card:nth-child(3) { transform: translate(-25px,7px) rotate(15deg) scale(.93); }
  .plan-topline { top: 18px; right: 18px; left: 18px; width: auto; }
  .plan-badge { top: 15px; }
  .plan-content { padding: 21px 20px 20px; }
  .plan-kicker { margin-bottom: 7px; }
  .plan-content h3 { font-size: 23px; }
  .plan-content > p { margin-bottom: 14px; font-size: 14px; }
  .plan-content ul { margin-bottom: 17px; }
  .plan-content li { font-size: 13px; }
  .plan-price strong { font-size: 22px; }

  .experience-grid { gap: 28px; }
  .experience-copy { order: -1; }
  .report-preview { padding: 16px 0 0 10px; }
  .report-window { padding: 18px 17px 20px; }
  .report-topbar { padding-bottom: 12px; font-size: 9px; }
  .report-question { padding: 12px 0 8px; }
  .report-question p { font-size: 14px; }
  .report-cards { height: 116px; }
  .report-cards div { width: 64px; height: 98px; border-width: 3px; }
  .report-cards div::after { width: 40px; height: 40px; font-size: 17px; }
  .report-insight { margin-top: 10px; padding-top: 10px; }
  .report-insight p { font-size: 12px; line-height: 1.62; }
  .report-tags { display: none; }
  .preview-note { margin: 16px 0 0 22px; }
  .experience-copy .eyebrow { justify-content: flex-start; }
  .experience-copy h2 { margin-bottom: 17px; font-size: clamp(32px, 8.7vw, 37px); line-height: 1.28; }
  .experience-copy > p { margin-bottom: 18px; font-size: 15px; line-height: 1.68; }
  .feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .feature-list > div { display: block; min-width: 0; padding: 11px 7px; text-align: center; border: 1px solid rgba(255,255,255,.11); border-radius: 8px; }
  .feature-list > div > span,
  .feature-list p { display: none; }
  .feature-list strong { font-size: 13px; line-height: 1.4; }
  .text-link { min-height: 44px; margin-top: 15px; padding-bottom: 5px; }

  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; padding: 24px 20px 24px 102px; border-right: 0; border-bottom: 1px solid var(--line-dark); text-align: left; }
  .process-list li:last-child { border-bottom: 0; }
  .process-number { top: 16px; left: 17px; }
  .process-icon { position: absolute; top: 50%; left: 19px; width: 62px; height: 62px; margin: 0; font-size: 20px; transform: translateY(-50%); }
  .process-icon::before { width: 42px; height: 42px; }
  .cards-icon i { width: 18px; height: 30px; }
  .cards-icon i:nth-child(1) { transform: translateX(-9px) rotate(-16deg); }
  .cards-icon i:nth-child(3) { transform: translateX(9px) rotate(16deg); }
  .process-list h3 { margin-bottom: 4px; font-size: 20px; }
  .process-list p { max-width: none; font-size: 14px; line-height: 1.58; }
  .trust-strip { grid-template-columns: repeat(2,1fr); margin-top: 25px; padding: 14px 0; row-gap: 12px; }
  .trust-strip p { padding-inline: 5px; }
  .trust-strip p:nth-child(2) { border-right: 0; }

  .journal-grid {
    display: flex;
    width: calc(100% + 18px);
    gap: 12px;
    margin-right: -18px;
    padding: 0 18px 9px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .journal-grid::-webkit-scrollbar { display: none; }
  .journal-featured { display: flex; grid-column: auto; }
  .journal-card,
  .journal-card:not(.journal-featured) { display: flex; min-height: 0; flex: 0 0 clamp(280px, calc(100vw - 72px), 336px); flex-direction: column; scroll-snap-align: start; }
  .journal-visual { min-height: 188px; }
  .journal-visual::before, .journal-visual::after { width: 210px; height: 280px; }
  .moon-disc { width: 105px; height: 105px; }
  .journal-visual > span { font-size: 53px; }
  .journal-featured .journal-content, .journal-content { padding: 21px 20px; }
  .journal-featured h3, .journal-content h3 { font-size: 22px; line-height: 1.48; }
  .journal-thumb { height: 210px; flex-basis: 210px; }
  .journal-card:not(.journal-featured) .journal-thumb { height: 220px; min-height: 220px; }
  .journal-card:not(.journal-featured) .journal-content h3 { font-size: 19px; }

  .faq-grid { gap: 30px; }
  .faq-heading .eyebrow { justify-content: flex-start; }
  .faq-heading p { font-size: 14px; }
  .faq-list summary { min-height: 70px; grid-template-columns: 32px 1fr 22px; gap: 8px; font-size: 16px; line-height: 1.42; }
  .faq-list details > p { margin: -2px 16px 22px 40px; font-size: 14px; line-height: 1.7; }

  .final-cta { min-height: 540px; padding: 72px 0; }
  .final-orbit { width: 430px; height: 430px; }
  .final-stars { top: 16%; }
  .final-content h2 { font-size: clamp(33px, 8.8vw, 41px); line-height: 1.28; }
  .final-content > p { max-width: 340px; margin-inline: auto; font-size: 15px; line-height: 1.7; }

  .footer-top { grid-template-columns: 1fr; gap: 38px; padding-top: 52px; padding-bottom: 42px; }
  .footer-top nav { gap: 16px; }
  .footer-top nav a { min-height: 44px; font-size: 14px; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 14px; padding-bottom: 22px; }
  .footer-bottom p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; text-align: left; line-height: 1.5; }
  .footer-bottom a { min-height: 44px; }

  .mobile-quickbar {
    position: fixed;
    z-index: 90;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    display: flex;
    height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 7px 7px 7px 17px;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(31, 24, 43, 0.88), rgba(12, 10, 20, 0.94));
    box-shadow: 0 20px 55px rgba(4, 3, 9, 0.42), 0 3px 12px rgba(4, 3, 9, 0.24), inset 0 1px rgba(255, 255, 255, 0.09);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    backdrop-filter: blur(16px) saturate(145%);
    opacity: 0;
    transform: translate3d(0, calc(100% + 24px), 0) scale(0.97);
    transform-origin: 50% 100%;
    transition: opacity 240ms ease, transform 420ms var(--ease-out);
    will-change: transform, opacity;
    pointer-events: none;
  }

  .mobile-quickbar::before {
    position: absolute;
    z-index: -1;
    top: -54px;
    right: 52px;
    width: 180px;
    height: 92px;
    border-radius: 50%;
    background: rgba(217, 189, 133, 0.13);
    filter: blur(32px);
    content: "";
    pointer-events: none;
  }

  .mobile-quickbar.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
  }

  body.menu-open .mobile-quickbar,
  body.dialog-open .mobile-quickbar {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, calc(100% + 24px), 0) scale(0.97);
  }

  .mobile-quickbar > * { position: relative; z-index: 1; }

  .mobile-quickbar .quickbar-offer {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
    line-height: 1.1;
  }

  .mobile-quickbar small {
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 550;
    letter-spacing: 0.015em;
  }

  .mobile-quickbar strong {
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -0.035em;
  }

  .mobile-quickbar .button {
    position: relative;
    min-width: 146px;
    min-height: 52px;
    flex: 0 0 146px;
    padding-inline: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 17px;
    background: linear-gradient(180deg, #f7e8c8 0%, #e1c38c 100%);
    box-shadow: 0 10px 24px rgba(205, 169, 99, 0.2), inset 0 1px rgba(255, 255, 255, 0.72), inset 0 -1px rgba(79, 56, 23, 0.12);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -0.025em;
  }

  .mobile-quickbar .button:hover { transform: none; }
  .mobile-quickbar .button:active { transform: scale(0.975); }
  .mobile-quickbar .quickbar-label { display: block; }
  .mobile-quickbar .quickbar-arrow {
    position: absolute;
    top: 50%;
    inset-inline-end: 11px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(34, 25, 44, 0.12);
    border-radius: 50%;
    background: rgba(34, 25, 44, 0.07);
    font-family: var(--latin);
    font-size: 14px;
    line-height: 1;
    transform: translateY(-50%);
  }

  @media (max-width: 359px) {
    .mobile-quickbar {
      right: max(8px, env(safe-area-inset-right));
      left: max(8px, env(safe-area-inset-left));
      padding-left: 14px;
    }
    .mobile-quickbar strong { font-size: 15px; }
    .mobile-quickbar .button { min-width: 134px; flex-basis: 134px; }
    .hero h1 br { display: none; }
    .selection-dock { align-items: stretch; flex-direction: column; gap: 10px; }
    .selection-dock .button { width: 100%; }
  }

  .checkout-dialog { width: 100%; max-height: calc(100dvh - 8px); margin: auto 0 0; border-radius: 18px 18px 0 0; }
  .dialog-shell { max-height: calc(100dvh - 8px); }
  .dialog-header { height: 56px; padding-inline: 16px; }
  .dialog-privacy-note { display: none; }
  .dialog-progress { padding: 12px 18px; }
  .dialog-progress em { display: none; }
  .dialog-step { padding: 18px 18px calc(18px + env(safe-area-inset-bottom)); }
  .dialog-title { margin-bottom: 18px; }
  .dialog-title h2 { margin-block: 6px; font-size: 22px; line-height: 1.3; text-wrap: balance; }
  .dialog-title p { font-size: 14px; line-height: 1.55; }
  .checkout-summary { grid-template-columns: 58px 1fr; }
  .checkout-summary > strong { grid-column: 2; margin-top: -12px; }
  .dialog-field { margin-top: 16px; }
  .dialog-chips { gap: 6px; }
  .dialog-chips button { min-height: 42px; padding: 8px 11px; font-size: 13px; }
  .dialog-assurance { gap: 9px; margin: 17px 0 13px; font-size: 12px; }
  .question-suggestions { overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .question-suggestions::-webkit-scrollbar { display: none; }
  .dialog-buttons { margin-top: 14px; }
  .dialog-buttons .button { min-height: 52px; padding-inline: 11px; font-size: 13px; }
  .question-box textarea { min-height: 132px; resize: none; font-size: 16px; }
  .toast { bottom: 92px; font-size: 11px; }
}

@media (max-width: 390px) {
  .hero-grid { padding-top: 84px; }
  .hero h1 { font-size: clamp(35px, 9.8vw, 38px); }
  .hero-description { font-size: 14px; }
  .hero-visual { height: 224px; min-height: 224px; }
  .footer-top nav { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}

@media (max-width: 430px) {
  .experience-section.section { padding-block: 60px; }
  .experience-grid { gap: 30px; }
  .feature-list > div { padding-block: 13px; }
  .feature-list p { display: none; }
  .report-window { padding: 15px 14px 16px; }
  .report-cards { height: 126px; }
  .report-insight { grid-template-columns: 27px 1fr; gap: 9px; }
  .report-insight p { font-size: 11.5px; line-height: 1.55; }
  .report-tags { display: none; }
}

/* Tablet is a deliberate layout, not an abrupt desktop fallback. */
@media (min-width: 768px) and (max-width: 920px) {
  :root { --shell: calc(100% - 56px); }

  .section { padding: 70px 0; }

  .hero-grid {
    min-height: calc(100svh - 118px);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 28px;
    padding-top: 102px;
    padding-bottom: 46px;
  }

  .hero-copy { padding-top: 16px; }
  .hero h1 { font-size: clamp(42px, 5.25vw, 48px); line-height: 1.2; }
  .hero-description { font-size: 16px; line-height: 1.72; }
  .hero-actions { width: 100%; max-width: 340px; }
  .hero-visual { width: 310px; height: 440px; min-height: 440px; }
  .tarot-card { width: 174px; height: 302px; }
  .orbit-one { width: 365px; height: 365px; }
  .orbit-two { width: 285px; height: 430px; }
  .hero-proof > div { min-height: 112px; padding-inline: 24px; }

  .section-heading { margin-bottom: 48px; }
  .section-heading h2,
  .faq-heading h2 { font-size: clamp(42px, 5.7vw, 50px); line-height: 1.25; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .split-heading > p { max-width: 660px; margin: 0; }

  .concern-card { min-height: 150px; padding: 20px 22px; }
  .concern-number { margin-bottom: 14px; }
  .concern-symbol { top: 18px; right: 22px; font-size: 22px; }
  .concern-card strong { margin-bottom: 5px; font-size: 21px; }
  .concern-arrow { right: 20px; bottom: 18px; }
  .selection-dock { min-height: 88px; margin-top: 18px; padding: 14px 16px 14px 22px; }

  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: -22px 0 16px;
    color: #625d66;
    font-size: 12px;
  }

  .plan-grid,
  .journal-grid {
    display: flex;
    gap: 16px;
    padding: 0 28px 12px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .plan-grid::-webkit-scrollbar,
  .journal-grid::-webkit-scrollbar { display: none; }

  .plan-card {
    display: grid;
    min-height: 0;
    flex: 0 0 min(620px, calc(100vw - 112px));
    grid-template-columns: 0.86fr 1.14fr;
    scroll-snap-align: start;
  }

  .plan-art { min-height: 380px; }
  .plan-content { padding: 50px 34px 30px; }

  .experience-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 34px;
  }

  .experience-copy { order: -1; }
  .experience-copy h2 { font-size: clamp(39px, 5.25vw, 46px); line-height: 1.28; }
  .experience-copy > p { margin-bottom: 28px; font-size: 15px; }
  .feature-list > div { padding: 16px 0; }
  .feature-list p { font-size: 12px; line-height: 1.5; }
  .report-preview { padding: 18px 0 0 14px; }
  .report-window { padding: 20px; }
  .report-cards { height: 168px; }
  .report-cards div { width: 82px; height: 128px; border-width: 3px; }
  .report-cards div::after { width: 43px; height: 43px; }
  .report-insight { margin-top: 15px; padding-top: 15px; }
  .report-insight p { font-size: 11px; line-height: 1.6; }
  .report-tags { margin: 13px 0 0 46px; }

  .process-list li { min-height: 292px; padding: 26px 22px 30px; }
  .process-icon { width: 90px; height: 90px; margin: 25px auto 20px; }
  .process-icon::before { width: 60px; height: 60px; }
  .process-list p { font-size: 13px; }
  .trust-strip { margin-top: 34px; padding-block: 22px; }

  .journal-card,
  .journal-card:not(.journal-featured) {
    min-height: 410px;
    flex: 0 0 min(560px, calc(100vw - 112px));
    scroll-snap-align: start;
  }

  .journal-featured { display: grid; grid-template-columns: 0.9fr 1.1fr; }
  .journal-visual { min-height: 410px; }

  .faq-grid { grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr); gap: 30px; }
  .faq-heading h2 { font-size: clamp(35px, 4.8vw, 39px); }
  .faq-list summary { min-height: 82px; font-size: 17px; }
  .faq-list details > p { margin-left: 56px; }

  .final-cta { min-height: 590px; }
}

@media (max-width: 767px) {
  .site-header.is-scrolled,
  .site-header.menu-active {
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
  }

  .hero-aurora {
    filter: blur(54px);
    animation: none;
  }

  .hero-aurora-one { width: 270px; height: 270px; }
  .hero-aurora-two { width: 220px; height: 220px; }
  .orbit-one { animation-duration: 44s; }
  .orbit-two { animation-duration: 52s; }
  .sparkle { animation-duration: 5s; }
  .mobile-quickbar:not(.is-visible) { will-change: auto; }
}

/* Free beta reading: card selection and result presentation. */
.card-pick-panel,
.reading-result {
  min-width: 0;
}

.tarot-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
  padding: 16px;
  border: 1px solid rgba(40, 29, 51, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(132, 88, 160, 0.23), transparent 42%),
    linear-gradient(145deg, #1c1428, #0f0b18 72%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 18px 45px rgba(30, 20, 40, 0.12);
}

.picker-card {
  position: relative;
  display: grid;
  min-width: 0;
  aspect-ratio: 0.66;
  place-items: center;
  overflow: hidden;
  color: #dfc18a;
  border: 1px solid rgba(226, 196, 143, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(153, 105, 177, 0.48), transparent 36%),
    linear-gradient(155deg, #54356a, #21152f 66%);
  box-shadow: 0 10px 24px rgba(5, 3, 9, 0.23), inset 0 0 22px rgba(226, 196, 143, 0.05);
  cursor: pointer;
  transition: transform 260ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.picker-card::before {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid rgba(231, 205, 157, 0.26);
  border-radius: 5px;
  pointer-events: none;
}

.picker-card::after {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "";
  color: #24192e;
  border-radius: 50%;
  background-color: #ead09d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2 4.8 9 10 3' fill='none' stroke='%2324192e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  box-shadow: 0 4px 12px rgba(5, 3, 9, 0.2);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 240ms var(--ease-out);
}

@media (hover: hover) {
  .picker-card:hover {
    border-color: rgba(238, 211, 160, 0.8);
    box-shadow: 0 16px 30px rgba(5, 3, 9, 0.32), 0 0 0 1px rgba(229, 199, 145, 0.15);
    transform: translateY(-5px) rotate(-0.6deg);
  }
}

.picker-card span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 31px);
  text-shadow: 0 0 22px rgba(235, 204, 148, 0.32);
}

.picker-card.is-selected {
  border-color: #efd39e;
  background:
    radial-gradient(circle at 50% 42%, rgba(214, 170, 218, 0.48), transparent 40%),
    linear-gradient(155deg, #6f4a82, #2b193c 68%);
  box-shadow: 0 18px 32px rgba(21, 12, 30, 0.34), 0 0 0 2px rgba(223, 190, 132, 0.28);
  transform: translateY(-4px);
}

.picker-card.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

.selection-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #66556f;
  text-align: center;
  font-size: 12px;
  font-weight: 650;
}

.reading-result {
  animation: result-arrive 520ms var(--ease-out);
}

@keyframes result-arrive {
  from { opacity: 0; transform: translateY(14px); }
}

.result-intro {
  margin-bottom: 22px;
  text-align: center;
}

.result-intro > small,
.result-message > small,
.result-action small {
  color: #89683d;
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.result-intro h2 {
  margin: 8px 0 9px;
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: -0.04em;
  line-height: 1.3;
  text-wrap: balance;
}

.result-intro p {
  max-width: 480px;
  margin: 0 auto;
  color: #69626c;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.65;
}

.result-card-grid {
  display: grid;
  gap: 10px;
}

.beta-reading-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: stretch;
  gap: 17px;
  padding: 14px;
  border: 1px solid rgba(29, 22, 35, 0.1);
  border-radius: 12px;
  background: rgba(255, 253, 250, 0.76);
  box-shadow: 0 12px 34px rgba(30, 20, 37, 0.06);
}

.beta-card-visual {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  overflow: hidden;
  color: #e2c58f;
  border: 3px solid #dfcfb8;
  border-radius: 7px;
  background:
    radial-gradient(circle at center, rgba(154, 105, 179, 0.58), transparent 40%),
    linear-gradient(155deg, #56366d, #21142f 68%);
  box-shadow: 0 12px 22px rgba(28, 18, 38, 0.2);
}

.beta-card-visual::before {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid rgba(231, 204, 153, 0.35);
  border-radius: 4px;
}

.beta-card-visual > span,
.beta-card-visual > small {
  position: absolute;
  z-index: 1;
  color: rgba(239, 216, 173, 0.82);
  font-family: var(--latin);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.beta-card-visual > span { top: 12px; }
.beta-card-visual > small { right: 8px; bottom: 10px; left: 8px; text-align: center; }

.beta-card-visual i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(234, 204, 151, 0.48);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
}

.beta-reading-card.is-reversed .beta-card-visual i {
  transform: rotate(180deg);
}

.beta-card-copy {
  min-width: 0;
  align-self: center;
}

.beta-card-copy > small {
  color: #8b6a40;
  font-family: var(--latin);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.beta-card-copy h3 {
  margin: 5px 0 4px;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.beta-card-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #684b78;
  font-size: 13px;
  font-weight: 700;
}

.beta-card-copy p {
  margin: 0;
  color: #68616a;
  font-size: 13px;
  line-height: 1.62;
}

.result-message,
.result-action {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 12px;
}

.result-message {
  border: 1px solid rgba(90, 62, 108, 0.13);
  background: linear-gradient(145deg, #eee7f0, #f4eee8);
}

.result-message p,
.result-action p {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.72;
}

.result-message p { color: #514959; }

.result-action {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(145deg, #251831, #110c1a);
  box-shadow: 0 15px 36px rgba(24, 15, 33, 0.15);
}

.result-action > span {
  padding-top: 2px;
  color: var(--gold);
  font-size: 20px;
}

.result-action small { color: #dbbd87; }
.result-action p { color: rgba(255, 255, 255, 0.74); }

.result-disclaimer {
  margin: 14px 3px 0;
  color: #6d6670;
  font-size: 11px;
  line-height: 1.62;
}

.result-buttons { margin-top: 16px; }

@media (max-width: 767px) {
  .tarot-picker { gap: 6px; padding: 10px; border-radius: 13px; }
  .picker-card { min-height: 72px; border-radius: 6px; }
  .picker-card::before { inset: 4px; border-radius: 4px; }
  .picker-card::after { top: 4px; right: 4px; width: 18px; height: 18px; background-size: 9px 9px; }
  .picker-card span { font-size: 20px; }
  .selection-status { margin-top: 9px; font-size: 11px; }

  .result-intro { margin-bottom: 17px; }
  .result-intro h2 { margin-block: 6px; font-size: 24px; }
  .result-intro p { font-size: 14px; line-height: 1.58; }

  .beta-reading-card { grid-template-columns: 76px minmax(0, 1fr); gap: 12px; padding: 11px; }
  .beta-card-visual { min-height: 112px; }
  .beta-card-visual i { width: 40px; height: 40px; font-size: 17px; }
  .beta-card-copy h3 { font-size: 19px; }
  .beta-card-copy strong { font-size: 13px; }
  .beta-card-copy p { font-size: 13px; line-height: 1.58; }

  .result-message,
  .result-action { margin-top: 11px; padding: 15px 16px; }
  .result-message p,
  .result-action p { font-size: 14px; line-height: 1.65; }
  .result-disclaimer { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --line-light: rgba(255,255,255,.32); --line-dark: rgba(17,16,23,.35); }
  .hero-description, .experience-copy > p, .faq-list details > p { color: rgba(255,255,255,.78); }
}
