: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;
  scrollbar-gutter: stable;
  background: var(--night);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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 {
  display: none;
}

.cursor-glow {
  display: none;
}

.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);
  background: #0d0a17;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 32px rgba(14, 10, 24, 0.14);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: #0d0a17;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.13);
}

.header-inner {
  position: relative;
  z-index: 2;
  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: grid;
  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;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--white);
  background: #0d0a17;
}

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

.mobile-menu-inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 2.38fr);
  gap: clamp(42px, 6vw, 92px);
  padding-top: 44px;
  padding-bottom: 48px;
}

.mobile-menu-intro { padding-top: 7px; }
.mobile-menu-intro > p { margin: 24px 0 0; color: rgba(255,255,255,.62); font-family: var(--serif); font-size: 16px; line-height: 1.7; }
.mobile-menu-directory { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.mobile-menu-directory > div { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 6px; }
.mobile-menu-directory strong { margin-bottom: 13px; color: #c4a571; font-family: var(--latin); font-size: 9px; letter-spacing: .16em; }
.mobile-menu-directory a { display: inline-flex; min-height: 36px; align-items: center; color: rgba(255,255,255,.7); font-size: 13px; transition: color 160ms ease; }
.mobile-menu-directory a:hover,
.mobile-menu-directory a:focus-visible { color: var(--white); }

.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 {
  display: none;
}

.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 h2 {
  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 h2 em,
.experience-copy h2 em,
.final-content h2 em {
  position: relative;
  color: #e3c79a;
  font-style: normal;
}

.hero h2 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;
  isolation: isolate;
  width: min(100%, 570px);
  height: min(66vw, 690px);
  max-height: 690px;
  min-height: 570px;
  justify-self: end;
  transform-style: flat;
}

.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: none;
}

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

@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: none;
}

.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: 4px;
  overflow: hidden;
  border: 1px solid rgba(225, 197, 148, 0.46);
  border-radius: 18px;
  background: linear-gradient(145deg, #947b54, #49374f 60%, #78623f);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42), 0 8px 24px rgba(0, 0, 0, 0.28);
  transform-style: flat;
}

.card-main {
  z-index: 3;
  transform: translate(-50%, -50%) rotate(2deg);
  animation: none;
}

.card-left {
  z-index: 1;
  transform: translate(-67%, -46%) rotate(-10deg) scale(0.94);
  filter: saturate(0.7) brightness(0.78);
}

.card-right {
  z-index: 2;
  transform: translate(-33%, -46%) rotate(10deg) scale(0.94);
  filter: saturate(0.82) brightness(0.84);
}

@keyframes card-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(2deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(1deg) translateY(-8px); }
}

.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%; }

.card-back-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12% 8%;
  background: radial-gradient(ellipse at center, #493459, #281d35 60%, #191320);
}

.card-back-signature::before { inset: 10px; }
.card-back-signature::after { inset: 16px; border-radius: 5px; transform: none; opacity: 0.45; }
.card-back-signature > span { position: relative; z-index: 1; flex-shrink: 0; }

.brand-card-wordmark {
  color: #e9d3ad;
  font-family: var(--latin);
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
}

.brand-card-symbol {
  display: grid;
  width: 54%;
  aspect-ratio: 1;
  place-items: center;
  color: #e4c78f;
  border: 1px solid rgba(231, 205, 157, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(225, 197, 148, 0.12);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.brand-card-caption {
  color: rgba(233, 211, 173, 0.76);
  font-family: var(--latin);
  font-size: clamp(5px, 0.65vw, 8px);
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.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,
.concern-first .section-heading h1,
.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-first {
  display: flex;
  min-height: calc(100svh - 82px);
  align-items: center;
  padding: 34px 0 28px;
}

.concern-first .section-heading { margin-bottom: 22px; }
.concern-first .section-heading h1 { margin-bottom: 9px; font-size: clamp(34px, 3.55vw, 48px); }
.concern-first .centered p { font-size: 15px; }
.concern-first .concern-card { min-height: 170px; padding: 22px 27px; }
.concern-first .concern-number { margin-bottom: 18px; }
.concern-first .selection-dock { min-height: 82px; margin-top: 16px; padding-block: 13px; }

.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-number {
  margin-bottom: 28px;
  color: #726c76;
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.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-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);
}

@media (hover: hover) and (pointer: fine) {
  .concern-card:hover {
    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 { opacity: 1; }
  .concern-card:hover .concern-number { color: var(--gold); }
  .concern-card:hover small { color: rgba(255, 255, 255, 0.72); }

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

@media (hover: none), (pointer: coarse) {
  .concern-card.is-selected {
    z-index: 1;
    color: var(--white);
    background: var(--night-2);
    box-shadow: 0 16px 36px rgba(29, 22, 38, 0.12);
  }

  .concern-card.is-selected::before { opacity: 1; }
  .concern-card.is-selected .concern-number { color: var(--gold); }
  .concern-card.is-selected small { color: rgba(255, 255, 255, 0.72); }

  .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 > div > 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(4, minmax(0, 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-insight {
  background: linear-gradient(155deg, #eee5d7, #d9c8b4);
}

.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-art-ten .mini-card {
  position: absolute;
  width: 88px;
  height: 144px;
}

.plan-art-ten .mini-card:nth-child(1) { transform: translateX(-63px) rotate(-15deg); }
.plan-art-ten .mini-card:nth-child(2) { z-index: 3; transform: translate(-21px, -7px) rotate(-5deg); }
.plan-art-ten .mini-card:nth-child(3) { z-index: 3; transform: translate(21px, -7px) rotate(5deg); }
.plan-art-ten .mini-card:nth-child(4) { transform: translateX(63px) rotate(15deg); }

.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;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
}

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

.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: none;
}

.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;
}

.card-face.card-face-art {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #f4efdf;
}

.card-face-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.report-cards div {
  position: relative;
  flex: 0 0 auto;
  width: 104px;
  aspect-ratio: 15 / 26;
  overflow: hidden;
  border: 2px solid #ded0b9;
  border-radius: 6px;
  background: #f4efdf;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

.report-cards img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.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;
  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-intro {
  display: grid;
  gap: 13px;
  margin-bottom: 38px;
}

.experience-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.85;
  text-wrap: pretty;
}

.experience-intro p:first-child {
  color: rgba(255, 255, 255, 0.88);
}

.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);
}

.relationship-discovery {
  position: relative;
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  margin-top: 18px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(20, 16, 25, 0.12);
  border-radius: 2px;
  background:
    radial-gradient(circle at 9% 18%, rgba(128, 84, 151, 0.32), transparent 31%),
    linear-gradient(135deg, #130d1e 0%, #1d1229 55%, #0e0b16 100%);
  box-shadow: 0 28px 80px rgba(31, 22, 36, 0.1);
}

.relationship-discovery::before,
.relationship-discovery::after {
  position: absolute;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(226, 193, 135, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.relationship-discovery::before { top: -265px; left: -80px; }
.relationship-discovery::after { right: -245px; bottom: -245px; }

.relationship-discovery-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.relationship-discovery-copy > span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #d7b979;
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.relationship-discovery-copy > span::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.relationship-discovery-copy h3 {
  max-width: 10.5em;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.relationship-discovery-copy p {
  max-width: 37em;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.78;
  text-wrap: pretty;
}

.relationship-discovery-copy > a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  color: #e2c78f;
  border-bottom: 1px solid rgba(226, 199, 143, 0.45);
  font-size: 13px;
  font-weight: 650;
}

.relationship-discovery-copy > a span { transition: transform 220ms ease; }
.relationship-discovery-copy > a:hover span { transform: translate(3px, -3px); }

.relationship-discovery-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.relationship-discovery-links a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 205px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.018);
  transition: background 220ms ease, color 220ms ease;
}

.relationship-discovery-links a:nth-child(2n) { border-right: 0; }
.relationship-discovery-links a:nth-last-child(-n + 2) { border-bottom: 0; }

.relationship-discovery-links a:hover,
.relationship-discovery-links a:focus-visible { background: rgba(255, 255, 255, 0.07); }

.relationship-discovery-links small {
  margin-bottom: 18px;
  color: #bd9d67;
  font-family: var(--latin);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.relationship-discovery-links strong {
  max-width: calc(100% - 28px);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.45;
  word-break: keep-all;
}

.relationship-discovery-links a > span {
  position: absolute;
  right: 26px;
  bottom: 29px;
  color: #d7b979;
  font-size: 15px;
  transition: transform 220ms ease;
}

.relationship-discovery-links a:hover > span,
.relationship-discovery-links a:focus-visible > 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-deck {
  background: radial-gradient(circle at 50% 42%, #704f82, #1d1527 66%);
}

.thumb-deck i {
  position: absolute;
  width: 92px;
  height: 152px;
  border: 2px solid rgba(236, 209, 159, 0.62);
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(89, 57, 111, 0.94), rgba(31, 20, 43, 0.96));
  box-shadow: 0 18px 34px rgba(7, 4, 11, 0.26);
}

.thumb-deck i::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(236, 209, 159, 0.28);
  border-radius: 6px;
}

.thumb-deck i:nth-child(1) { transform: translateX(-48px) rotate(-13deg); }
.thumb-deck i:nth-child(2) { z-index: 1; transform: translateY(-8px); }
.thumb-deck i:nth-child(3) { transform: translateX(48px) rotate(13deg); }

.thumb-deck span {
  position: relative;
  z-index: 2;
  color: #f1d69f;
  font-family: var(--serif);
  font-size: 42px;
  text-shadow: 0 7px 18px rgba(16, 9, 22, 0.45);
}

.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-compact {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-compact nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 28px; }
.footer-compact nav a { color: rgba(255,255,255,.56); font-size: 11px; transition: color 160ms ease; }
.footer-compact nav a:hover,
.footer-compact nav a:focus-visible { color: var(--white); }

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.28fr);
  gap: 64px;
  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(4, minmax(0, 1fr));
  gap: 24px;
}

.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-business {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-style: normal;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.footer-business strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer-business a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 3px;
}

.footer-business-status {
  color: #c9aa78;
}

.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: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.dialog-chips button {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  grid-column: auto;
  padding: 9px 7px;
  color: #6e6871;
  border: 1px solid rgba(23, 17, 28, 0.12);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  white-space: nowrap;
}

.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 h2 { 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-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-content { padding: 30px 26px 27px; }
  .plan-card { min-height: 680px; }
  .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; }
  .relationship-discovery { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); }
  .relationship-discovery-copy { padding: 44px 36px; }
  .relationship-discovery-links a { padding: 25px 22px; }
  .footer-top { grid-template-columns: minmax(190px, 0.6fr) minmax(0, 2.4fr); gap: 44px; }
  .footer-top nav { gap: 18px; }
}

@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 h2 { 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; }
  .relationship-discovery { grid-template-columns: 1fr; }
  .relationship-discovery-copy { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .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; }

  .site-header {
    background: #0d0a17;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 32px rgba(14, 10, 24, 0.14);
  }

  .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 {
    top: 68px;
  }

  .mobile-menu-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 24px; padding-bottom: 36px; }
  .mobile-menu-intro { display: none; }
  .mobile-menu-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 18px; }
  .mobile-menu-directory strong { margin-bottom: 9px; }
  .mobile-menu-directory a { min-height: 40px; font-size: 13px; }

  .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 h2 {
    width: max-content;
    max-width: calc(100vw - 28px);
    margin: 0 auto 17px;
    font-size: clamp(24px, 7.8vw, 32px);
    line-height: 1.38;
    letter-spacing: -0.045em;
    text-wrap: initial;
  }
  .hero h2 > span {
    display: block;
    white-space: nowrap;
  }
  .hero h2 > em {
    display: inline-block;
    white-space: nowrap;
  }
  .hero h2 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: 3px; 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(-67%, -46%) rotate(-10deg) scale(.94); }
  .card-right { transform: translate(-33%, -46%) rotate(10deg) scale(.94); }
  .card-main { animation: none; }
  @keyframes card-float-mobile {
    0%,100% { transform: translate(-50%,-50%) rotate(2deg) translateY(0); }
    50% { transform: translate(-50%,-50%) rotate(1deg) translateY(-6px); }
  }
  .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, .concern-first .section-heading h1, .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-first { min-height: 100svh; padding: 86px 0 20px; }
  .concern-first .section-heading { margin-bottom: 18px; }
  .concern-first .section-heading h1 { margin-bottom: 8px; }
  .concern-first .centered p { font-size: 14px; line-height: 1.55; }
  .concern-first .concern-card { min-height: 112px; padding: 12px 13px; }
  .concern-first .concern-number { margin-bottom: 9px; }
  .concern-first .concern-card small { line-height: 1.35; }
  .concern-first .selection-dock { min-height: 72px; margin-top: 10px; }
  .concern-number { margin-bottom: 12px; font-size: 10px; }
  .concern-symbol { top: 14px; right: 15px; font-size: 19px; }
  .concern-card strong { width: 100%; max-width: none; margin-bottom: 5px; font-size: clamp(15px, 4.25vw, 18px); line-height: 1.25; white-space: nowrap; }
  .concern-card small { max-width: none; padding-right: 0; font-size: 12px; line-height: 1.4; }
  .concern-arrow { display: none; }
  .selection-dock { min-height: 76px; margin-top: 12px; padding: 10px 10px 10px 15px; }
  .selection-dock > div { min-width: 0; flex: 1 1 auto; }
  .selection-dock strong { font-size: 17px; }
  .selection-dock .button { min-width: 168px; min-height: 50px; flex: 0 0 auto; justify-content: center; gap: 0; padding-inline: 17px; text-align: center; font-size: 12px; white-space: nowrap; }

  .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(264px, calc(100vw - 72px), 336px); align-self: stretch; 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-ten .mini-card { width: 64px; height: 104px; }
  .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-art-ten .mini-card:nth-child(1) { transform: translateX(-48px) rotate(-15deg); }
  .plan-art-ten .mini-card:nth-child(2) { transform: translate(-16px,-5px) rotate(-5deg); }
  .plan-art-ten .mini-card:nth-child(3) { transform: translate(16px,-5px) rotate(5deg); }
  .plan-art-ten .mini-card:nth-child(4) { transform: translateX(48px) rotate(15deg); }
  .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; }
  .reveal-ready .plan-card[data-reveal] {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .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: 148px; }
  .report-cards div { width: 64px; height: auto; border-width: 2px; }
  .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; }
  .experience-copy .eyebrow { justify-content: flex-start; }
  .experience-copy h2 { margin-bottom: 19px; font-size: clamp(32px, 8.7vw, 37px); line-height: 1.28; }
  .experience-copy h2 > span,
  .experience-copy h2 > em { display: block; }
  .experience-intro { gap: 10px; margin-bottom: 22px; }
  .experience-intro p { max-width: 37ch; font-size: 15px; line-height: 1.68; }
  .feature-list { display: grid; grid-template-columns: 1fr; gap: 8px; border-top: 0; }
  .feature-list > div {
    display: grid;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
    text-align: left;
  }
  .feature-list > div > span { display: block; padding-top: 0; }
  .feature-list strong { margin: 0; font-size: 14px; line-height: 1.4; white-space: nowrap; }
  .feature-list p { display: none; }
  .text-link { min-height: 44px; margin-top: 17px; padding-bottom: 5px; }

  .process-section .section-heading { max-width: 620px; margin-inline: auto; margin-bottom: 24px; padding-inline: 4px; }
  .process-section .section-heading h2 { font-size: clamp(30px, 8vw, 34px); line-height: 1.3; }
  .process-section .section-heading h2 span,
  .process-section .section-heading > p span { display: block; }
  .process-section .section-heading > p { width: 100%; max-width: 32ch; font-size: 14px; line-height: 1.62; text-wrap: pretty; }

  .process-list { max-width: 620px; grid-template-columns: 1fr; gap: 10px; margin-inline: auto; border: 0; }
  .process-list li {
    display: grid;
    min-height: 125px;
    grid-template-columns: minmax(0, 1fr) 52px;
    grid-template-areas:
      "number icon"
      "title icon"
      "body icon";
    align-items: center;
    column-gap: 14px;
    padding: 16px 17px;
    border: 1px solid rgba(17, 16, 23, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 10px 30px rgba(43, 34, 51, 0.035);
    text-align: left;
  }
  .process-list li:last-child { border: 1px solid rgba(17, 16, 23, 0.12); }
  .process-number { position: static; grid-area: number; align-self: end; margin-bottom: 4px; font-size: 9px; }
  .process-icon {
    position: relative;
    top: auto;
    left: auto;
    width: 52px;
    height: 52px;
    grid-area: icon;
    justify-self: end;
    margin: 0;
    font-size: 19px;
    transform: none;
  }
  .process-icon::before { width: 36px; height: 36px; }
  .cards-icon i { width: 16px; height: 25px; }
  .cards-icon i:nth-child(1) { transform: translateX(-7px) rotate(-15deg); }
  .cards-icon i:nth-child(3) { transform: translateX(7px) rotate(15deg); }
  .process-list h3 { grid-area: title; margin: 0 0 3px; font-size: 19px; line-height: 1.35; }
  .process-list p { max-width: none; grid-area: body; margin: 0; color: #706a74; font-size: 14px; line-height: 1.55; text-wrap: pretty; }
  .trust-strip { grid-template-columns: repeat(2,1fr); margin-top: 20px; 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; }

  .relationship-discovery { min-height: 0; margin-top: 14px; border-radius: 10px; }
  .relationship-discovery-copy { padding: 32px 24px 30px; }
  .relationship-discovery-copy > span { margin-bottom: 18px; }
  .relationship-discovery-copy h3 { margin-bottom: 15px; font-size: clamp(29px, 8vw, 35px); line-height: 1.32; }
  .relationship-discovery-copy p { margin-bottom: 20px; font-size: 14px; line-height: 1.7; }
  .relationship-discovery-links { grid-template-columns: 1fr; }
  .relationship-discovery-links a {
    min-height: 84px;
    justify-content: center;
    padding: 17px 54px 17px 21px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .relationship-discovery-links a:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .relationship-discovery-links a:last-child { border-bottom: 0; }
  .relationship-discovery-links small { margin-bottom: 5px; }
  .relationship-discovery-links strong { max-width: 100%; font-size: 17px; white-space: nowrap; }
  .relationship-discovery-links a > span { right: 22px; bottom: 50%; transform: translateY(50%); }
  .relationship-discovery-links a:hover > span,
  .relationship-discovery-links a:focus-visible > span { transform: translate(3px, calc(50% - 3px)); }

  .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 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 18px; }
  .footer-top nav a { min-height: 44px; font-size: 14px; }
  .footer-compact { min-height: 118px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 18px; padding-block: 24px; }
  .footer-compact nav { justify-content: flex-start; gap: 13px 20px; }
  .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; }
  .footer-business { gap: 7px 14px; padding-block: 18px; font-size: 11px; }
  .footer-business span { flex: 0 1 auto; }
  .footer-business span:nth-child(4),
  .footer-business-status { flex-basis: 100%; }

  .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 h2 br { display: none; }
    .selection-dock { align-items: stretch; flex-direction: column; gap: 10px; }
    .selection-dock .button { width: 100%; }
    .plan-content h3 { min-block-size: 3.3em; min-block-size: 2lh; }
    .plan-content > p { min-block-size: 5.1em; min-block-size: 3lh; }
  }

  .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 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
  .dialog-chips button {
    min-width: 0;
    min-height: 52px;
    height: 100%;
    grid-column: auto;
    padding: 6px 3px;
    font-size: clamp(9px, 2.7vw, 11px);
    line-height: 1.25;
    white-space: normal;
    word-break: keep-all;
    text-wrap: balance;
  }
  .dialog-assurance { gap: 9px; margin: 17px 0 13px; font-size: 12px; }
  .question-suggestions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 10px;
    white-space: normal;
  }
  .question-suggestions > span { grid-column: 1 / -1; }
  .question-suggestions button {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 8px 10px;
    text-align: left;
    font-size: 12px;
    line-height: 1.45;
  }
  .dialog-step[data-step="2"] .dialog-title { margin-bottom: 14px; }
  .dialog-step[data-step="2"] .field-hint { margin-bottom: 14px; }
  .dialog-buttons { margin-top: 14px; }
  .dialog-buttons .button { min-height: 52px; padding-inline: 11px; font-size: 13px; }
  .question-box textarea { min-height: 126px; resize: none; font-size: 16px; }
  .toast { bottom: 92px; font-size: 11px; }
}

@media (max-width: 390px) {
  .hero-grid { padding-top: 84px; }
  .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; }
  .report-window { padding: 15px 14px 16px; }
  .report-cards { height: 148px; }
  .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 h2 { 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-intro { margin-bottom: 28px; }
  .experience-intro p { 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: 180px; }
  .report-cards div { width: 82px; height: auto; border-width: 2px; }
  .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 {
    background: #0d0a17;
  }

  .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);
}

/* A paid result is prepared off-screen and stays covered until the server
   confirms that its one-use entitlement has been finalized. */
.reading-result.is-finalizing {
  visibility: hidden;
  pointer-events: none;
}

@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: 112px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 8px 18px;
  padding: 18px;
  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 {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 7px;
  color: #756547;
  background: transparent;
  cursor: zoom-in;
}

.beta-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 15 / 26;
  object-fit: contain;
  border: 1px solid #ded1b9;
  border-radius: 6px;
  background: #f4efdf;
  box-shadow: 0 8px 20px rgba(28, 18, 38, 0.14);
}

.card-art-hint {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.card-art-unavailable {
  display: grid;
  aspect-ratio: 15 / 26;
  padding: 12px;
  place-items: center;
  border: 1px solid #ded1b9;
  border-radius: 6px;
  color: #6c6173;
  background: #f1eae4;
  font-size: 12px;
  line-height: 1.6;
}

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

.beta-card-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.beta-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.beta-card-meta small {
  color: #8b6a40;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.card-orientation {
  padding: 3px 7px;
  border: 1px solid #ddd3c5;
  border-radius: 5px;
  color: #695c47;
  background: #f3eee3;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.is-reversed .card-orientation {
  color: #694878;
  border-color: #dfcfe6;
  background: #f0e8f3;
}

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

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

.beta-card-answer {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #5d5563;
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.result-question {
  margin: 16px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(92, 71, 106, 0.12);
  border-radius: 10px;
  color: #4e4358;
  background: rgba(255, 253, 250, 0.68);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.card-art-dialog {
  width: min(430px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(233, 213, 175, 0.25);
  border-radius: 18px;
  color: #f5eee3;
  background: #16101f;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.card-art-dialog::backdrop { background: rgba(6, 4, 10, 0.82); }
.card-art-viewer { padding: 18px; }
.card-art-viewer > header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.card-art-viewer small { color: #ceb789; font-size: 11px; }
.card-art-viewer h2 { margin: 4px 0 0; font-family: var(--serif); font-size: 23px; line-height: 1.4; }
.card-art-viewer button { flex: 0 0 44px; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; color: #f5eee3; background: transparent; font-size: 27px; line-height: 1; cursor: pointer; }
.card-art-viewer > img { display: block; width: min(100%, calc((100dvh - 160px) * 15 / 26)); height: auto; margin: 0 auto; border-radius: 8px; object-fit: contain; }
.card-art-viewer > img.is-reversed { transform: rotate(180deg); }
.card-art-error { padding: 35px 10px; color: #e0d6e6; font-size: 14px; line-height: 1.7; text-align: center; }
.beta-card-image[hidden], .card-art-unavailable[hidden], .card-art-viewer > img[hidden], .card-art-error[hidden] { display: none; }
.result-upgrade > .upgrade-availability { margin: 16px 0 9px; color: #78658a; font-size: 12px; font-weight: 600; line-height: 1.6; }

.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: 15px;
  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-review {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(78, 54, 91, 0.16);
  border-radius: 14px;
  background: #fbf7ef;
  box-shadow: 0 16px 36px rgba(29, 18, 37, 0.08);
}

.result-review[hidden],
.review-invite[hidden],
.review-editor[hidden],
.review-success[hidden],
.review-form-message[hidden] { display: none; }

.review-invite {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 21px 22px;
  background:
    linear-gradient(90deg, rgba(218, 188, 132, 0.08), transparent 48%),
    #fbf7ef;
}

.review-invite small,
.review-editor-heading small,
.review-success > small {
  color: #88653b;
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.17em;
}

.review-invite h3,
.review-editor-heading h3,
.review-success h3 {
  margin: 6px 0 5px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.review-invite p,
.review-success > p {
  max-width: 390px;
  margin: 0;
  color: #6c626e;
  font-size: 13px;
  line-height: 1.65;
}

.review-invite > button,
.review-submit {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fffaf1;
  background: #130d1d;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), opacity 200ms ease;
}

.review-invite > button:hover,
.review-submit:hover:not(:disabled) { transform: translateY(-2px); }

.review-editor { padding: 22px; }

.review-editor-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.review-editor-heading > button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(33, 23, 40, 0.14);
  border-radius: 50%;
  color: #554b5c;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.review-rating {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.review-rating legend,
.review-field > span {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #4c4352;
  font-size: 12px;
  font-weight: 700;
}

.review-rating > div { display: flex; gap: 5px; }

.review-rating button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(74, 54, 84, 0.15);
  border-radius: 10px;
  color: #c9c0ca;
  background: #fffdfa;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.review-rating button.is-active {
  color: #ba812f;
  border-color: rgba(186, 129, 47, 0.36);
  background: #f4e6c9;
}

.review-field { display: block; margin-top: 13px; }
.review-field > span i { color: #8a818d; font-size: 10px; font-style: normal; font-weight: 500; }
.review-field > span b { font-weight: 700; }

.review-field input,
.review-field textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(65, 45, 75, 0.16);
  border-radius: 10px;
  color: #2f2734;
  background: #fffdfa;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.review-field input { height: 48px; padding: 0 14px; }
.review-field textarea { min-height: 132px; padding: 13px 14px; line-height: 1.65; resize: vertical; }

.review-field input:focus,
.review-field textarea:focus {
  border-color: #805b91;
  box-shadow: 0 0 0 3px rgba(128, 91, 145, 0.12);
}

.review-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  margin-top: 15px;
  color: #665d69;
  cursor: pointer;
}

.review-consent input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.review-consent > span { width: 20px; height: 20px; border: 1px solid #b9adb9; border-radius: 5px; background: #fffdfa; }
.review-consent input:focus-visible + span { outline: 2px solid #805b91; outline-offset: 2px; }
.review-consent input:checked + span { border-color: #251831; background: #251831; box-shadow: inset 0 0 0 4px #fbf7ef; }
.review-consent em { font-size: 11px; font-style: normal; line-height: 1.62; }

.review-reward-note {
  margin: 11px 0 0;
  color: #817580;
  font-size: 10px;
  line-height: 1.6;
}

.review-form-message { margin: 12px 0 0; color: #934f56; font-size: 12px; line-height: 1.55; }
.review-form-message[data-type="info"] { color: #625174; }
.review-submit { width: 100%; margin-top: 15px; border-radius: 10px; }
.review-submit:disabled { cursor: not-allowed; opacity: 0.36; }

.review-success {
  padding: 23px 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(183, 131, 196, 0.24), transparent 34%),
    linear-gradient(145deg, #f8f0e4, #efe5ef);
}

.review-pass {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 14px 15px;
  border: 1px dashed rgba(80, 55, 92, 0.34);
  border-radius: 11px;
  background: rgba(255, 253, 249, 0.68);
}

.review-pass[hidden],
.review-pass-action[hidden] { display: none; }
.review-pass > span { color: #887b89; font-family: var(--latin); font-size: 8px; font-weight: 750; letter-spacing: 0.13em; }
.review-pass > strong { color: #24172e; font-size: 17px; }
.review-pass > time { color: #776b79; font-size: 10px; }
.review-pass-action { display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 13px; margin-top: 9px; padding: 10px 14px; border-radius: 9px; color: #fff; background: #171020; font-size: 12px; font-weight: 750; text-align: center; text-decoration: none; }

.result-upgrade {
  position: relative;
  margin-top: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(85, 55, 102, 0.18);
  border-radius: 15px;
  background:
    radial-gradient(circle at 92% 6%, rgba(201, 157, 211, 0.22), transparent 34%),
    linear-gradient(145deg, #f7f1e8 0%, #efe6ef 100%);
  box-shadow: 0 18px 42px rgba(30, 19, 39, 0.1);
}

.result-upgrade::after {
  position: absolute;
  top: -72px;
  right: -52px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(119, 78, 140, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(119, 78, 140, 0.035), 0 0 0 50px rgba(119, 78, 140, 0.025);
  pointer-events: none;
}

.result-upgrade > small {
  color: #825f39;
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.result-upgrade h3 {
  max-width: 470px;
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.38;
  text-wrap: balance;
}

.result-upgrade > p {
  max-width: 480px;
  margin: 0;
  color: #655d68;
  font-size: 14px;
  line-height: 1.65;
}

.result-upgrade ul {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.result-upgrade li {
  position: relative;
  min-height: 38px;
  padding: 9px 12px 9px 35px;
  color: #4d4552;
  border: 1px solid rgba(61, 42, 70, 0.09);
  border-radius: 9px;
  background: rgba(255, 253, 249, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.result-upgrade li::before {
  position: absolute;
  top: 9px;
  left: 12px;
  color: #805b91;
  content: "?";
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
}

.upgrade-primary {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(140deg, #2d1d39, #100b18 72%);
  box-shadow: 0 14px 28px rgba(23, 14, 32, 0.2);
  text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.upgrade-primary:hover {
  box-shadow: 0 18px 34px rgba(23, 14, 32, 0.26);
  transform: translateY(-2px);
}

.upgrade-primary span { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.upgrade-primary span small { color: rgba(255,255,255,.6); font-size: 10px; }
.upgrade-primary span strong { color: rgba(255,255,255,.96); font-size: 15px; }
.upgrade-primary > b { flex: 0 0 auto; color: #e4c78e; font-size: 15px; }
.upgrade-primary > b i { margin-left: 5px; font-style: normal; }

.upgrade-depths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.upgrade-depths a {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 10px 12px;
  color: #514758;
  border: 1px solid rgba(65, 44, 76, 0.11);
  border-radius: 10px;
  background: rgba(255,255,255,.55);
  text-decoration: none;
}

.upgrade-depths span { color: #756d78; font-size: 10px; }
.upgrade-depths strong { font-size: 13px; }
.result-upgrade > em { display: block; margin-top: 9px; color: #777079; font-size: 10px; font-style: normal; text-align: center; }

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

.result-buttons {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  margin-top: 16px;
}

.result-buttons .button { padding-inline: 9px; word-break: keep-all; white-space: nowrap; }

@media (max-width: 767px) and (max-height: 740px) {
  .concern-first { padding-top: 78px; padding-bottom: 12px; }
  .concern-first .section-heading { margin-bottom: 10px; }
  .concern-first .section-heading .eyebrow { margin-bottom: 8px; }
  .concern-first .section-heading h1 { margin-bottom: 5px; font-size: clamp(27px, 7.7vw, 31px); line-height: 1.2; }
  .concern-first .centered p { font-size: 12px; line-height: 1.42; }
  .concern-first .concern-card { min-height: 82px; padding: 8px 11px; }
  .concern-first .concern-number { margin-bottom: 4px; }
  .concern-first .concern-card small { display: none; }
  .concern-first .selection-dock { min-height: 64px; margin-top: 8px; padding-block: 7px; }
}

@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: 104px minmax(0, 1fr); gap: 14px 16px; padding: 16px; }
  .beta-card-visual { grid-row: 1; }
  .beta-card-copy { align-self: center; }
  .beta-card-copy h3 { font-size: 24px; }
  .beta-card-copy strong { font-size: 13px; }
  .beta-card-answer { grid-column: 1 / -1; grid-row: 2; font-size: 15px; line-height: 1.75; }

  .result-message,
  .result-action { margin-top: 11px; padding: 15px 16px; }
  .result-message p,
  .result-action p { font-size: 15px; line-height: 1.65; }
  .result-review { margin-top: 11px; border-radius: 13px; }
  .review-invite { min-height: 0; flex-direction: column; align-items: stretch; gap: 16px; padding: 18px 16px; }
  .review-invite h3,
  .review-editor-heading h3,
  .review-success h3 { font-size: 21px; }
  .review-invite > button { width: 100%; }
  .review-editor,
  .review-success { padding: 18px 15px; }
  .review-rating > div { justify-content: space-between; gap: 4px; }
  .review-rating button { width: min(48px, 17%); }
  .review-pass { padding: 13px; }
  .review-pass > strong { font-size: 16px; }
  .result-upgrade { margin-top: 12px; padding: 18px 15px; border-radius: 13px; }
  .result-upgrade h3 { font-size: 21px; line-height: 1.42; }
  .result-upgrade > p { font-size: 14px; }
  .result-upgrade li { font-size: 13px; }
  .upgrade-primary { min-height: 64px; padding: 11px 13px; }
  .upgrade-primary span strong { font-size: 14px; }
  .upgrade-primary > b { font-size: 14px; }
  .upgrade-depths { grid-template-columns: 1fr; }
  .upgrade-depths a { min-height: 54px; }
  .result-disclaimer { font-size: 12px; }
}

.home-reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(120, 82, 139, 0.1), transparent 28%),
    #eee7dc;
}

.home-reviews-section::before {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(113, 79, 129, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(113, 79, 129, 0.025), 0 0 0 148px rgba(113, 79, 129, 0.018);
  pointer-events: none;
}

.home-reviews-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.home-reviews-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.3;
}

.home-reviews-heading h2 em { color: #78548a; font-style: normal; }
.home-reviews-intro { display: flex; flex-direction: column; align-items: flex-start; }
.home-reviews-intro p { margin: 0; color: #69616d; font-size: 15px; line-height: 1.85; word-break: keep-all; }
.home-reviews-all { min-height: 52px; margin-top: 24px; padding-inline: 22px; border-radius: 999px; }

.home-review-facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid rgba(28, 21, 34, 0.13);
  border-bottom: 1px solid rgba(28, 21, 34, 0.13);
}

.home-review-facts.is-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-review-facts span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #756d78;
  border-right: 1px solid rgba(28, 21, 34, 0.13);
  font-size: 12px;
}

.home-review-facts span:last-child { border-right: 0; }
.home-review-facts strong { color: #1c1621; font-size: 14px; font-weight: 700; }
.home-review-facts i { color: #756d78; font-size: 10px; font-style: normal; }
.home-review-status { margin: 34px 0 0; color: #756d78; text-align: center; font-size: 13px; }

.home-review-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.home-review-grid[hidden] { display: none; }

.home-review-card {
  min-width: 0;
  min-height: 334px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(28, 21, 34, 0.12);
  border-radius: 17px;
  background: rgba(255, 252, 247, 0.8);
  box-shadow: 0 18px 48px rgba(38, 27, 44, 0.055);
}

.home-review-card:nth-child(2) { background: linear-gradient(145deg, rgba(243, 234, 243, 0.94), rgba(255, 251, 245, 0.9)); }
.home-review-card header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.home-review-verified { display: inline-flex; min-height: 28px; align-items: center; padding: 0 10px; color: #654778; border-radius: 999px; background: #eee3f0; font-size: 9px; font-weight: 750; }
.home-review-verified.is-archive { color: #75552f; border: 1px solid rgba(132, 91, 43, 0.15); background: #f3e5ca; white-space: nowrap; }
.home-review-stars { flex: 0 0 auto; color: #ae7629; font-size: 12px; letter-spacing: 0.07em; }

.home-review-card blockquote {
  display: -webkit-box;
  flex: 1;
  margin: 25px 0;
  overflow: hidden;
  color: #342d38;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.82;
  overflow-wrap: anywhere;
  white-space: pre-line;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.home-review-meta { display: flex; align-items: end; justify-content: space-between; gap: 14px; padding-top: 17px; border-top: 1px solid rgba(28, 21, 34, 0.11); }
.home-review-meta strong { display: block; font-size: 12px; }
.home-review-meta span { display: block; margin-top: 4px; color: #827984; font-size: 10px; }
.home-review-meta time { flex: 0 0 auto; color: #8d848f; font-family: var(--latin); font-size: 9px; }
.home-review-disclosure { margin: 12px 0 0; color: #978e99; font-size: 9px; line-height: 1.5; }
.home-review-source { margin: 12px 0 0; color: #8b818b; font-size: 9px; line-height: 1.55; }
.home-review-source a { color: #6f4e7e; text-underline-offset: 3px; }
.home-review-card.is-archive { background: linear-gradient(145deg, rgba(255, 250, 241, 0.94), rgba(241, 232, 220, 0.9)); }

.home-review-empty {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(28, 21, 34, 0.12);
  border-radius: 17px;
  background: rgba(255, 252, 247, 0.64);
}

.home-review-empty[hidden] { display: none; }
.home-review-empty > span { display: grid; width: 52px; height: 52px; place-items: center; color: #79578a; border: 1px solid rgba(28, 21, 34, 0.12); border-radius: 50%; font-size: 18px; }
.home-review-empty h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 600; }
.home-review-empty p { margin: 6px 0 0; color: #746c77; font-size: 13px; line-height: 1.7; }
.home-review-empty a { display: inline-flex; min-height: 46px; align-items: center; gap: 14px; padding: 0 18px; color: #fff; border-radius: 999px; background: var(--night); font-size: 12px; font-weight: 700; }

.home-reviews-footer { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 20px; color: #807783; font-size: 10px; }
.home-reviews-footer p { margin: 0; }
.home-reviews-footer > div { display: grid; gap: 6px; }
.home-reviews-footer a { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; color: #6f4e7e; border-bottom: 1px solid rgba(111, 78, 126, 0.35); font-size: 11px; font-weight: 700; }

@media (max-width: 920px) {
  .home-reviews-heading { grid-template-columns: 1fr; gap: 25px; }
  .home-reviews-intro { max-width: 620px; }
  .home-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-review-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  #reviews { scroll-margin-top: 72px; }
  .home-reviews-section.section { padding-block: 68px; }
  .home-reviews-heading .eyebrow { justify-content: flex-start; }
  .home-reviews-heading h2 { font-size: clamp(34px, 9.5vw, 40px); line-height: 1.28; }
  .home-reviews-intro p { max-width: 36ch; font-size: 14px; line-height: 1.72; }
  .home-reviews-all { width: 100%; justify-content: center; }
  .home-review-facts { grid-template-columns: 1fr; margin-top: 34px; }
  .home-review-facts.is-compact { grid-template-columns: 1fr; }
  .home-review-facts span { min-height: 51px; justify-content: space-between; padding-inline: 13px; border-right: 0; border-bottom: 1px solid rgba(28, 21, 34, 0.11); }
  .home-review-facts span:last-child { border-bottom: 0; }
  .home-review-status { margin-top: 24px; }
  .home-review-grid {
    display: flex;
    width: calc(100% + 18px);
    gap: 12px;
    margin-right: -18px;
    padding: 0 18px 8px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-review-grid::-webkit-scrollbar { display: none; }
  .home-review-card,
  .home-review-card:first-child { min-height: 310px; flex: 0 0 clamp(276px, calc(100vw - 66px), 326px); grid-column: auto; padding: 21px; scroll-snap-align: start; }
  .home-review-card blockquote { font-size: 17px; line-height: 1.75; -webkit-line-clamp: 7; }
  .home-review-verified.is-archive { max-width: 100%; font-size: 8px; }
  .home-review-source { font-size: 9px; }
  .home-review-empty { grid-template-columns: 46px minmax(0, 1fr); gap: 15px; padding: 22px 18px; }
  .home-review-empty > span { width: 46px; height: 46px; }
  .home-review-empty h3 { font-size: 20px; }
  .home-review-empty p { font-size: 12px; }
  .home-review-empty a { min-height: 48px; grid-column: 1 / -1; justify-content: center; }
  .home-reviews-footer { align-items: flex-start; flex-direction: column; gap: 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-intro p, .faq-list details > p { color: rgba(255,255,255,.78); }
}
