:root {
  --bg: #07090d;
  --bg-2: #0a0e13;
  --panel: #11161c;
  --panel-soft: #151a20;
  --panel-border: rgba(235, 210, 149, 0.18);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.075);
  --gold: #d7a944;
  --gold-2: #f2c65f;
  --gold-dark: #8e6929;
  --text: #f4ead7;
  --muted: #b7b1a6;
  --dim: #797b7d;
  --paper: #f2ead8;
  --paper-ink: #2a2620;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  background:
    radial-gradient(circle at 14% 12%, rgba(44, 64, 82, 0.34), transparent 26%),
    radial-gradient(circle at 90% 9%, rgba(184, 142, 62, 0.08), transparent 26%),
    linear-gradient(180deg, #06080c 0%, #07090d 46%, #06090d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 90%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 57% 20%, rgba(255, 255, 255, 0.06), transparent 15%),
    radial-gradient(circle at 32% 51%, rgba(50, 78, 98, 0.20), transparent 22%),
    radial-gradient(circle at 80% 65%, rgba(215, 169, 68, 0.08), transparent 18%);
  opacity: 0.86;
}

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

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

button {
  font: inherit;
}

.shell {
  width: 880px;
  max-width: calc(100% - 120px);
  margin-left: 74px;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 246px 1fr 158px;
  align-items: center;
  height: 52px;
  padding: 0 31px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.brand-mark {
  width: 0;
  height: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #d6d2ca;
  font-size: 11px;
  font-weight: 600;
}

.main-nav a {
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 26px;
  padding: 0 13px;
  border: 1px solid rgba(215, 169, 68, 0.9);
  border-radius: 8px;
  color: #f0c665;
  font-size: 10px;
  font-weight: 700;
  justify-self: end;
  white-space: nowrap;
}

.side-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: 50px;
  pointer-events: none;
}

.rail-arrow {
  position: absolute;
  top: 22px;
  left: 17px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.rail-line {
  position: absolute;
  top: 63px;
  bottom: 0;
  left: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.92);
}

.rail-line::before,
.rail-line::after {
  content: "";
  position: absolute;
  left: -6px;
  width: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
}

.rail-line::before {
  top: 0;
}

.rail-line::after {
  bottom: 0;
}

.rail-dot {
  position: absolute;
  left: 19px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 6px rgba(215, 169, 68, 0.12), 0 0 16px rgba(242, 198, 95, 0.6);
}

.rail-dot--one {
  top: 157px;
}

.rail-number {
  position: absolute;
  left: 34px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
}

.rail-number--one {
  top: 163px;
}

.rail-number--three {
  top: 512px;
  color: rgba(255, 255, 255, 0.66);
}

.rail-tick {
  position: absolute;
  left: 17px;
  width: 15px;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
}

.rail-tick--middle {
  top: 534px;
}

.rail-tick--end {
  bottom: 0;
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 55px;
  padding-left: 40px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 7px;
  margin-bottom: 3px;
  background: var(--gold);
}

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

.hero-copy h1 {
  max-width: 325px;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 455px;
  margin: 18px 0 0;
  color: #d7cdbd;
  font-size: 13px;
  line-height: 1.56;
}

.gold-rule {
  position: relative;
  width: 31px;
  height: 1px;
  margin: 24px 0 23px;
  background: var(--gold);
}

.gold-rule::after,
.title-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold);
}

.hero-assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 352px;
}

.hero-assurances article {
  min-height: 68px;
  padding-right: 18px;
}

.hero-assurances article + article {
  padding-left: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-assurances p {
  margin: 12px 0 0;
  color: #ddd6c7;
  font-size: 11px;
  line-height: 1.52;
}

.mini-icon,
.line-icon {
  display: inline-grid;
  place-items: center;
  color: var(--gold);
}

.mini-icon {
  position: relative;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(215, 169, 68, 0.7);
  border-radius: 7px;
}

.shield::before {
  content: "♘";
  font-size: 14px;
}

.document::before {
  content: "▤";
  font-size: 15px;
}

.lock::before {
  content: "⌂";
  font-size: 14px;
}

.hand::before {
  content: "♁";
  font-size: 18px;
}

.photo::before {
  content: "▧";
  font-size: 16px;
}

.shield::before,
.document::before,
.lock::before,
.hand::before,
.photo::before {
  content: "" !important;
  display: block;
}

.shield::before {
  width: 11px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 7px 7px 9px 9px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.document::before {
  width: 11px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 2px;
  box-shadow: inset 0 4px 0 -3px currentColor, inset 0 8px 0 -7px currentColor;
}

.lock::before {
  width: 12px;
  height: 9px;
  margin-top: 5px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.lock::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 9px;
  height: 8px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.hand::before {
  width: 13px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 8px 8px 5px 5px;
}

.photo::before {
  width: 13px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.photo::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 0;
  height: 34px;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.report-entry:hover {
  transform: translateY(-1px);
}

.button--gold {
  width: 177px;
  border: 1px solid rgba(250, 209, 98, 0.62);
  color: #15110a;
  background: linear-gradient(180deg, #f3c964, #d49d33);
  box-shadow: 0 14px 32px rgba(211, 151, 42, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.button--ghost {
  min-width: 134px;
  border: 1px solid rgba(215, 169, 68, 0.82);
  color: var(--gold-2);
  background: rgba(7, 9, 13, 0.38);
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 0;
  color: #a9a399;
  font-size: 12px;
}

.hero-proof {
  width: fit-content;
  max-width: 100%;
}

.hero-proof__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 198, 95, 0.48);
  border-radius: 50%;
  background: #11161c;
  box-shadow: 0 0 0 3px rgba(215, 169, 68, 0.1), 0 12px 28px rgba(0, 0, 0, 0.34);
  object-fit: cover;
}

.hero-proof__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-proof__main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof__stars {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.hero-proof__note {
  color: #d0c8b9;
  font-size: 11px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 -72px -12px -30px;
  background:
    radial-gradient(circle at 52% 41%, rgba(255, 230, 170, 0.10), transparent 23%),
    radial-gradient(circle at 45% 50%, rgba(37, 49, 59, 0.45), transparent 42%);
}

.hero-visual img {
  position: absolute;
  right: 82px;
  top: 3px;
  width: auto;
  height: 501px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.06) contrast(1.04) drop-shadow(0 34px 46px rgba(0, 0, 0, 0.52));
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.palm-lines {
  position: absolute;
  top: 74px;
  right: 111px;
  width: 320px;
  height: 365px;
  overflow: visible;
  filter: drop-shadow(0 0 9px rgba(235, 178, 61, 0.65));
  display: none;
}

.palm-lines path,
.paper-map svg path {
  fill: none;
  stroke: url("#goldStroke");
  stroke-linecap: round;
}

.palm-lines path {
  stroke: #e9b84c;
  stroke-width: 2.4;
}

.palm-lines .head-line,
.palm-lines .heart-line {
  stroke-width: 2;
}

.palm-lines .fate-line {
  stroke-width: 1.65;
}

.callout {
  position: absolute;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.callout::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  border-top: 1px dashed rgba(215, 169, 68, 0.72);
}

.callout--head {
  top: 247px;
  left: 10px;
}

.callout--head::before {
  left: 105px;
}

.callout--heart {
  top: 196px;
  right: -22px;
}

.callout--heart::before,
.callout--life::before {
  right: 100%;
}

.callout--life {
  top: 346px;
  right: -31px;
}

.hover-note {
  position: absolute;
  right: -3px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 8px;
  width: 128px;
  min-height: 60px;
  padding: 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 7px;
  color: #c2bdb5;
  background: rgba(9, 12, 16, 0.65);
}

.hover-note p {
  margin: 0;
  font-size: 9px;
  line-height: 1.38;
}

.observe-section {
  height: auto;
  min-height: 408px;
  padding: 38px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 35% 38%, rgba(255, 255, 255, 0.035), transparent 24%),
    linear-gradient(180deg, rgba(9, 14, 19, 0.96), rgba(8, 11, 15, 0.98));
}

.section-title {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.title-rule {
  position: relative;
  width: 190px;
  height: 1px;
  margin: 10px auto 14px;
  background: linear-gradient(90deg, transparent, rgba(215, 169, 68, 0.62), transparent);
}

.observe-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.observation-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  height: auto;
  padding: 20px 17px 18px;
  border: 1px solid rgba(244, 234, 215, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(30, 33, 37, 0.96), rgba(16, 19, 23, 0.98));
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.line-icon {
  width: 39px;
  height: 32px;
  margin-bottom: 8px;
}

.line-icon--svg::before,
.line-icon--svg::after {
  display: none !important;
}

.line-icon svg {
  width: 43px;
  height: 34px;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.line-icon::before {
  font-size: 32px;
  line-height: 1;
}

.icon-lines::before {
  content: "⌒";
}

.icon-mounts::before {
  content: "⌁";
}

.icon-hand::before {
  content: "♙";
}

.icon-book::before {
  content: "□";
}

.icon-lines::before,
.icon-mounts::before,
.icon-hand::before,
.icon-book::before {
  content: "" !important;
  display: block;
}

.icon-lines::before {
  width: 30px;
  height: 22px;
  border-top: 3px solid currentColor;
  border-radius: 28px 28px 0 0;
  transform: rotate(-15deg);
}

.icon-mounts::before {
  width: 34px;
  height: 24px;
  border: 0;
  background:
    linear-gradient(135deg, transparent 44%, currentColor 45% 51%, transparent 52%),
    linear-gradient(45deg, transparent 45%, currentColor 46% 52%, transparent 53%),
    linear-gradient(120deg, transparent 50%, currentColor 51% 57%, transparent 58%);
  transform: none;
}

.icon-hand::before {
  width: 17px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 8px 8px;
  box-shadow:
    -8px -5px 0 -6px currentColor,
    -4px -8px 0 -6px currentColor,
    4px -8px 0 -6px currentColor,
    8px -5px 0 -6px currentColor;
}

.icon-book::before {
  width: 28px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-shadow: inset 13px 0 0 -12px currentColor;
}

.icon-book::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 3px;
  width: 2px;
  height: 21px;
  background: currentColor;
}

.observation-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.04;
  text-transform: uppercase;
}

.observation-card p {
  min-height: 30px;
  margin: 0 0 9px;
  color: #c5bfb4;
  font-size: 12px;
  line-height: 1.35;
}

.observation-card ul,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.observation-card li {
  display: flex;
  align-items: center;
  min-height: 24px;
  margin-top: 4px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #c9c3ba;
  font-size: 12px;
  line-height: 1.25;
  background: rgba(3, 5, 8, 0.2);
}

.observation-card strong {
  display: block;
  margin-top: auto;
  padding-top: 7px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.report-section {
  min-height: 612px;
  padding-top: 34px;
  background:
    radial-gradient(circle at 18% 54%, rgba(50, 72, 86, 0.18), transparent 24%),
    linear-gradient(180deg, #070a0e 0%, #07090d 100%);
}

.report-layout {
  display: grid;
  grid-template-columns: 213px 1fr 213px;
  gap: 9px;
  margin-top: -13px;
}

.report-menu,
.report-preview,
.price-card,
.trust-strip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(16, 20, 25, 0.86);
  box-shadow: var(--shadow);
}

.report-menu {
  min-height: 440px;
  padding: 11px 13px;
}

.report-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 33px;
  border: 0;
  border-radius: 7px;
  color: #d0cbc2;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.report-entry span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 5px;
  color: #dad3c5;
  font-size: 10px;
  line-height: 1;
}

.report-entry.is-active {
  color: #1b1408;
  background: linear-gradient(180deg, #f0bf58, #d79e34);
}

.report-entry.is-active span {
  border-color: rgba(0, 0, 0, 0.22);
  color: #1b1408;
}

.report-group {
  position: relative;
  margin: 4px 0 4px 18px;
  padding: 3px 0 3px 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.report-group::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 10px;
  left: 7px;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.report-entry--sub {
  min-height: 29px;
  color: #b7b2aa;
}

.report-entry--sub span {
  position: relative;
  flex-basis: 8px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #11161c;
}

.report-entry--sub.is-current {
  color: var(--gold-2);
}

.report-entry--sub.is-current span {
  background: var(--gold-2);
  box-shadow: 0 0 10px rgba(242, 198, 95, 0.55);
}

.report-preview {
  overflow: hidden;
  padding: 7px;
}

.paper {
  min-height: 430px;
  padding: 24px 31px 26px;
  border-radius: 5px 5px 0 0;
  color: var(--paper-ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, #fbf2de, #e9dcc3);
}

.paper h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.paper h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--gold);
}

.paper > p {
  width: 306px;
  margin: 0 0 18px;
  color: #3f3830;
  font-size: 12px;
  line-height: 1.58;
}

.written-report-sample {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 18px 20px 22px;
  border: 1px solid rgba(90, 70, 40, 0.16);
  border-radius: 6px;
  background: rgba(255, 252, 244, 0.42);
}

.written-report-sample section {
  display: grid;
  gap: 7px;
}

.written-report-sample h4 {
  margin: 0;
  color: #5e4623;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.written-report-sample p,
.written-report-sample ul {
  margin: 0;
  color: #3f3830;
  font-size: 12px;
  line-height: 1.56;
}

.written-report-sample ul {
  display: grid;
  gap: 5px;
  padding-left: 18px;
}

.paper-map {
  position: relative;
  height: 250px;
  margin-top: 8px;
}

.paper-map img {
  position: absolute;
  left: 68px;
  top: 4px;
  width: 197px;
  height: 247px;
  object-fit: contain;
  filter: grayscale(1) sepia(0.08) opacity(0.54);
}

.paper-map svg {
  position: absolute;
  left: 42px;
  top: 45px;
  width: 220px;
  height: 174px;
  overflow: visible;
}

.paper-map svg path {
  stroke: #d9a33c;
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
}

.map-note {
  position: absolute;
  margin: 0;
  color: #4e473c;
  font-size: 10px;
  line-height: 1.38;
}

.map-note::after {
  content: "";
  position: absolute;
  top: 10px;
  border-top: 1px dashed rgba(212, 154, 46, 0.85);
}

.map-note--heart {
  left: 0;
  top: 46px;
  width: 94px;
}

.map-note--heart::after {
  left: 94px;
  width: 52px;
}

.map-note--head {
  left: 0;
  top: 106px;
  width: 104px;
}

.map-note--head::after {
  left: 88px;
  width: 48px;
}

.map-note--life {
  left: 0;
  top: 172px;
  width: 87px;
}

.map-note--life::after {
  left: 80px;
  width: 63px;
}

.map-note--jupiter {
  right: 0;
  top: 49px;
  width: 110px;
}

.map-note--jupiter::after,
.map-note--venus::after,
.map-note--wrist::after {
  right: 112px;
  width: 48px;
}

.map-note--venus {
  right: 0;
  top: 117px;
  width: 106px;
}

.map-note--wrist {
  right: 0;
  top: 181px;
  width: 110px;
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  color: #bdb6aa;
  font-size: 12px;
  background: #0d1218;
}

.preview-footer .mini-icon {
  width: 20px;
  height: 20px;
  border: 0;
}

.price-card {
  align-self: start;
  height: auto;
  min-height: 510px;
  padding: 36px 30px 28px;
  border-color: rgba(215, 169, 68, 0.72);
  text-align: center;
  background:
    radial-gradient(circle at 50% 66%, rgba(215, 169, 68, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 22, 28, 0.98), rgba(9, 12, 17, 0.99));
}

.price-card > p {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.08;
  text-transform: uppercase;
}

.price-card > p::after {
  content: "";
  display: block;
  width: 33px;
  height: 1px;
  margin: 16px auto 22px;
  background: var(--gold);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 11px;
  margin-bottom: 22px;
}

.price span {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  line-height: 0.8;
}

.price small {
  color: #dfd5c4;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.09em;
}

.price-card li {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  color: #c6bfb2;
  font-size: 15px;
  line-height: 1.25;
  text-align: left;
}

.price-card li::before {
  content: "✓";
  color: var(--gold-2);
  font-weight: 800;
}

.price-button {
  width: 100%;
  height: 52px;
  margin: 30px 0 22px;
  border-radius: 14px;
  font-size: 16px;
}

.price-card small {
  display: block;
  color: #9b958d;
  font-size: 13px;
  line-height: 1.5;
}

.secure {
  margin-bottom: 22px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  min-height: 62px;
  margin-top: 10px;
  padding: 11px 15px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 12px;
}

.trust-strip article + article {
  padding-left: 15px;
}

.trust-strip .mini-icon {
  width: 28px;
  height: 28px;
}

.trust-strip p {
  margin: 0;
  color: #a9a39b;
  font-size: 11px;
  line-height: 1.36;
}

.trust-strip strong {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

@media (max-width: 980px) {
  .shell {
    width: min(100% - 28px, 640px);
    max-width: 640px;
    margin-inline: auto;
  }

  .side-rail,
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 62px;
    padding: 0 14px;
  }

  .brand {
    font-size: 25px;
  }

  .hero-section {
    height: auto;
    min-height: clamp(620px, 74vw, 700px);
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-copy h1 {
    max-width: min(100%, 620px);
    font-size: clamp(46px, 8.6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.025em;
  }

  .hero-lead {
    max-width: 540px;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-assurances {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-assurances article,
  .hero-assurances article + article {
    min-height: auto;
    padding: 0;
    border-left: 0;
  }

  .hero-visual {
    min-height: 410px;
    margin-top: 28px;
  }

  .hero-visual img {
    right: 50%;
    width: 330px;
    transform: translateX(50%);
  }

  .palm-lines,
  .callout,
  .hover-note {
    display: none;
  }

  .observe-section {
    height: auto;
    padding: 46px 0;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: 0.2em;
  }

  .observe-grid,
  .report-layout,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .report-section {
    padding-bottom: 28px;
  }

  .paper > p {
    width: auto;
  }

  .paper-map {
    display: none;
  }

  .price-card,
  .report-menu {
    min-height: 0;
  }

  .trust-strip article + article {
    padding-left: 0;
    margin-top: 12px;
  }
}

.site-footer {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 7, 10, 0.92);
}

.site-footer__inner {
  display: flex;
  width: min(calc(100% - 120px), 1120px);
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(183, 177, 166, 0.62);
  font-size: 11px;
  line-height: 1.4;
}

.site-footer a {
  color: rgba(242, 198, 95, 0.68);
  text-decoration: underline;
  text-decoration-color: rgba(242, 198, 95, 0.24);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer a:hover {
  color: var(--gold-2);
  text-decoration-color: rgba(242, 198, 95, 0.7);
}

.legal-main {
  min-height: calc(100vh - 100px);
  padding: 74px 0 82px;
}

.legal-shell {
  width: min(calc(100% - 120px), 900px);
  margin-left: 74px;
  margin-right: auto;
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.94;
}

.legal-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: #d7cebf;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.36;
}

.legal-document {
  display: grid;
  gap: 0;
  padding: 2px 0 0;
  border-top: 1px solid rgba(242, 198, 95, 0.36);
}

.legal-document article {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 10px 34px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-document article > :not(h2) {
  grid-column: 2;
}

.legal-document h2 {
  grid-column: 1;
  grid-row: 1 / -1;
  margin: 0;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.05;
}

.legal-document p {
  margin: 0;
  color: #cfc8bd;
  font-size: 15px;
  line-height: 1.78;
}

.legal-document ul {
  margin: 0;
  padding-left: 19px;
  color: #cfc8bd;
  font-size: 15px;
  line-height: 1.72;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document p + p {
  margin-top: 12px;
}

.legal-document strong {
  color: var(--text);
  font-weight: 800;
}

.legal-document a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-color: rgba(242, 198, 95, 0.32);
  text-underline-offset: 4px;
}

.legal-back-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 30px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-back-link::before {
  content: "←";
  margin-right: 10px;
  font-size: 15px;
  line-height: 1;
}

@media (min-width: 1400px) {
  .shell {
    width: min(calc(100% - 160px), 1810px);
    max-width: 1810px;
    margin-left: 80px;
  }

  .site-header {
    grid-template-columns: 460px 1fr 180px;
    height: 54px;
    padding-inline: 94px 32px;
  }

  .brand {
    font-size: 30px;
  }

  .main-nav {
    gap: clamp(26px, 2vw, 44px);
    font-size: 14px;
  }

  .header-cta {
    width: 180px;
    height: 34px;
    font-size: 12px;
  }

  .hero-section {
    height: 626px;
  }

  .hero-grid {
    grid-template-columns: 32% 68%;
  }

  .hero-copy {
    padding-top: 74px;
    padding-left: 50px;
  }

  .eyebrow {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .hero-copy h1 {
    max-width: 510px;
    font-size: 64px;
    line-height: 0.97;
  }

  .hero-lead {
    max-width: 500px;
    font-size: 15px;
  }

  .gold-rule {
    margin: 34px 0 28px;
  }

  .hero-assurances {
    width: 520px;
  }

  .hero-assurances article {
    min-height: 93px;
    padding-right: 24px;
  }

  .hero-assurances article + article {
    padding-left: 25px;
  }

  .hero-assurances p {
    font-size: 16px;
  }

  .mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .hero-actions {
    margin-top: 4px;
    gap: 16px;
  }

  .button {
    height: 42px;
    border-radius: 11px;
    font-size: 14px;
  }

  .button--gold {
    width: 220px;
  }

  .button--ghost {
    min-width: 166px;
  }

  .rating {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-proof__avatar {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .hero-proof__stars {
    font-size: 16px;
  }

  .hero-proof__note {
    font-size: 13px;
  }

  .hero-visual,
  .hero-visual::before {
    min-height: 626px;
  }

  .hero-visual img {
    top: 8px;
    right: clamp(470px, 29vw, 610px);
    height: 618px;
  }

  .callout {
    font-size: 13px;
  }

  .callout::before {
    width: 150px;
  }

  .callout--head {
    top: 316px;
    left: 165px;
  }

  .callout--heart {
    top: 247px;
    right: 430px;
  }

  .callout--life {
    top: 410px;
    right: 365px;
  }

  .hover-note {
    right: 315px;
    bottom: 36px;
    width: 160px;
    min-height: 90px;
    padding: 14px;
    grid-template-columns: 36px 1fr;
  }

  .hover-note p {
    font-size: 12px;
  }

  .observe-section {
    height: auto;
    min-height: 456px;
    padding: 44px 0 40px;
  }

  .section-title {
    font-size: 30px;
    letter-spacing: 0.08em;
  }

  .title-rule {
    margin-bottom: 16px;
  }

  .observe-grid {
    gap: 18px;
  }

  .observation-card {
    min-height: 316px;
    height: auto;
    padding: 24px 26px 20px;
  }

  .line-icon {
    width: 50px;
    height: 40px;
    margin-bottom: 8px;
  }

  .line-icon svg {
    width: 50px;
    height: 39px;
  }

  .observation-card h3 {
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: 0.12em;
  }

  .observation-card p,
  .observation-card li {
    font-size: 13px;
  }

  .observation-card li {
    min-height: 27px;
    margin-top: 5px;
  }

  .observation-card strong {
    padding-top: 10px;
    font-size: 15px;
  }

  .report-layout {
    grid-template-columns: 400px minmax(0, 1fr) 426px;
    gap: 18px;
  }

  .report-menu {
    min-height: 548px;
    padding: 15px 18px;
  }

  .report-entry {
    min-height: 42px;
    font-size: 15px;
  }

  .report-entry span {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .report-entry--sub {
    min-height: 36px;
  }

  .paper {
    min-height: 500px;
    padding: 36px 42px 34px;
  }

  .paper h3 {
    font-size: 18px;
  }

  .paper > p {
    width: min(520px, 62%);
    font-size: 16px;
    line-height: 1.58;
    margin-bottom: 22px;
  }

  .written-report-sample {
    gap: 18px;
    padding: 22px 26px 26px;
  }

  .written-report-sample h4 {
    font-size: 17px;
  }

  .written-report-sample p,
  .written-report-sample ul {
    font-size: 15px;
  }

  .paper-map {
    height: 300px;
  }

  .paper-map img {
    left: 38%;
    top: 2px;
    width: 250px;
    height: 300px;
  }

  .paper-map svg {
    left: calc(38% - 42px);
    top: 55px;
    width: 290px;
    height: 225px;
  }

  .map-note {
    font-size: 13px;
  }

  .map-note--heart,
  .map-note--head,
  .map-note--life {
    left: 0;
    width: 150px;
  }

  .map-note--jupiter,
  .map-note--venus,
  .map-note--wrist {
    right: 0;
    width: 170px;
  }

  .preview-footer {
    min-height: 58px;
    font-size: 15px;
  }

  .price-card {
    min-height: 548px;
    padding: 36px 38px 32px;
  }

  .price-card > p {
    font-size: 24px;
    line-height: 1.08;
  }

  .price span {
    font-size: 58px;
  }

  .price-card li {
    align-items: flex-start;
    color: #e6ded2;
    font-size: 16px;
    line-height: 1.32;
    margin-top: 14px;
  }

  .price-card li::before {
    flex: 0 0 16px;
    line-height: 1.2;
  }

  .price-button {
    width: 276px;
    max-width: 100%;
    height: 52px;
    margin: 30px auto 20px;
    border-radius: 14px;
    font-size: 16px;
  }

  .trust-strip {
    min-height: 78px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .shell {
    width: min(calc(100% - 120px), 1180px);
    max-width: 1180px;
  }

  .hero-copy h1 {
    max-width: 430px;
    font-size: 56px;
    line-height: 0.95;
  }

  .hero-lead {
    max-width: 430px;
  }

  .hero-assurances {
    width: 440px;
  }

  .hero-assurances p {
    font-size: 14px;
  }

  .observation-card h3 {
    font-size: 22px;
  }

  .observation-card p,
  .observation-card li {
    font-size: 13px;
  }
}

#rapport .report-layout {
  align-items: start;
}

#rapport .report-menu,
#rapport .report-preview,
#rapport .price-card {
  align-self: start;
}

#rapport .report-entry {
  min-height: 36px;
  padding: 7px 8px;
  line-height: 1.25;
  white-space: normal;
}

#rapport .report-entry--sub {
  min-height: 32px;
}

@media (max-width: 1399px) and (min-width: 981px) {
  #rapport .paper > p {
    width: 100%;
    max-width: 340px;
    font-size: 13px;
    line-height: 1.62;
  }

  #rapport .paper-map {
    margin-top: 12px;
  }

  #rapport .map-note {
    font-size: 12px;
    line-height: 1.24;
  }

  #rapport .map-note--heart,
  #rapport .map-note--head,
  #rapport .map-note--life {
    width: 150px;
  }

  #rapport .map-note--heart::after,
  #rapport .map-note--head::after,
  #rapport .map-note--life::after {
    left: calc(100% + 8px);
    width: 42px;
  }

  #rapport .map-note--jupiter,
  #rapport .map-note--venus,
  #rapport .map-note--wrist {
    width: 170px;
  }

  #rapport .map-note--jupiter::after,
  #rapport .map-note--venus::after,
  #rapport .map-note--wrist::after {
    right: calc(100% + 8px);
    width: 42px;
  }
}

@media (min-width: 1400px) {
  #rapport .report-layout {
    grid-template-columns: clamp(320px, 18vw, 400px) minmax(560px, 1fr) clamp(340px, 20vw, 426px);
    gap: 16px;
    margin-top: 0;
  }

  #rapport .paper > p {
    width: min(520px, 72%);
  }

  #rapport .paper-map img {
    left: 50%;
    width: 220px;
    height: auto;
    transform: translateX(-50%);
  }

  #rapport .paper-map svg {
    left: 50%;
    width: 260px;
    transform: translateX(-50%);
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  #rapport .report-layout {
    grid-template-columns: minmax(212px, 0.36fr) minmax(0, 1fr);
    gap: 12px;
  }

  #rapport .price-card {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(430px, 100%);
    min-height: 560px;
    padding: 38px 46px 34px;
  }

  #rapport .price-card li {
    font-size: 16px;
    line-height: 1.34;
  }

  #rapport .price-button {
    width: 286px;
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 62px;
    padding: 0 14px;
  }

  .brand {
    font-size: 25px;
  }

  .header-cta {
    max-width: 154px;
    padding-inline: 12px;
  }

  .hero-proof {
    gap: 10px;
    margin-top: 12px;
  }

  .hero-proof__avatar {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .hero-proof__main {
    gap: 6px;
    font-size: 11px;
  }

  .hero-proof__stars {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .hero-proof__note {
    font-size: 11px;
  }

  #rapport .shell {
    width: min(100% - 28px, 640px);
    max-width: 640px;
    margin-inline: auto;
  }

  #rapport .report-layout {
    grid-template-columns: 1fr;
  }

  #rapport .paper {
    min-height: 0;
    padding: 24px clamp(22px, 7vw, 31px) 28px;
  }

  #rapport .paper > p {
    width: auto;
    max-width: none;
    font-size: 13px;
    line-height: 1.62;
  }

  #rapport .paper-map {
    display: none;
  }

  #rapport .preview-footer {
    min-height: 0;
    padding: 14px 18px;
    line-height: 1.35;
    text-align: center;
  }

  #rapport .price-card,
  #rapport .report-menu {
    min-height: 0;
  }
}

.hero-section {
  isolation: isolate;
  background: #05070a;
}

.hero-section .hero-grid {
  position: relative;
}

.hero-section .hero-copy {
  position: relative;
  z-index: 2;
}

.hero-section .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-section .hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.84) 28%, rgba(5, 7, 10, 0.30) 52%, rgba(5, 7, 10, 0.10) 73%, rgba(5, 7, 10, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.20));
}

.hero-section .hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.03);
  mask-image: none;
  transform: none;
}

.hero-section .palm-lines,
.hero-section .callout,
.hero-section .hover-note {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-section .hero-visual {
    min-height: 100%;
  }

  .hero-section .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.92) 0%, rgba(5, 7, 10, 0.76) 42%, rgba(5, 7, 10, 0.52) 70%, rgba(5, 7, 10, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.24) 72%, rgba(5, 7, 10, 0.60));
  }

  .hero-section .hero-visual img {
    object-position: 66% top;
    opacity: 0.82;
  }
}

.order-section {
  scroll-margin-top: 70px;
  padding: 50px 0 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 74% 20%, rgba(215, 169, 68, 0.10), transparent 25%),
    linear-gradient(180deg, #07090d 0%, #090d12 100%);
}

.order-layout {
  display: grid;
  width: min(calc(100% - 120px), 1120px);
  max-width: 1120px;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 420px);
  gap: 18px;
  align-items: stretch;
}

.order-copy {
  min-width: 0;
  padding: 30px 34px;
  border: 1px solid rgba(215, 169, 68, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(13, 17, 22, 0.84);
  box-shadow: var(--shadow);
}

.order-copy h2 {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 650;
  line-height: 0.98;
}

.order-lead,
.order-note {
  margin: 0;
  color: #d5cec1;
  font-size: 15px;
  line-height: 1.58;
}

.photo-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.photo-checklist li {
  position: relative;
  min-height: 42px;
  padding: 11px 14px 11px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f0e6d4;
  font-size: 14px;
  font-weight: 700;
  background: rgba(3, 5, 8, 0.24);
}

.photo-checklist li::marker {
  content: "";
}

.photo-checklist li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transform: translateY(-50%);
}

.order-action-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 32px 30px;
  border: 1px solid rgba(242, 198, 95, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 169, 68, 0.20), transparent 38%),
    linear-gradient(180deg, rgba(23, 28, 35, 0.95), rgba(8, 12, 17, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.order-action-panel .mini-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border-radius: 12px;
}

.order-action-panel h3 {
  margin: 0 auto 12px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 650;
  line-height: 1;
}

.order-action-panel p {
  max-width: 310px;
  margin: 0 auto 26px;
  color: #cfc7ba;
  font-size: 14px;
  line-height: 1.55;
}

.order-popup-button {
  width: 250px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 14px;
  font-size: 15px;
}

.order-direct-link {
  color: #b8aa8f;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.chiromancy-story-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 169, 68, 0.08), transparent 24%),
    radial-gradient(circle at 82% 34%, rgba(52, 76, 94, 0.18), transparent 30%),
    linear-gradient(180deg, #06090d 0%, #080b10 48%, #05070a 100%);
}

.chiromancy-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 86%, transparent 100%);
}

.chiromancy-story {
  position: relative;
  display: grid;
  width: min(calc(100% - 120px), 1120px);
  max-width: 1120px;
  grid-template-columns: 150px minmax(0, 820px);
  gap: 38px;
  align-items: start;
}

.story-rail {
  position: sticky;
  top: 92px;
  min-height: 520px;
}

.story-rail__line {
  position: absolute;
  top: 6px;
  bottom: 0;
  left: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(242, 198, 95, 0.88), rgba(242, 198, 95, 0.08));
}

.story-rail__mark {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #cdbb91;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.story-rail__mark::before {
  content: "";
  width: 37px;
  height: 37px;
  border: 1px solid rgba(242, 198, 95, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 198, 95, 0.86) 0 4px, transparent 5px),
    rgba(7, 10, 14, 0.78);
  box-shadow: 0 0 22px rgba(215, 169, 68, 0.16);
}

.story-rail__mark--one {
  top: 0;
}

.story-rail__mark--two {
  top: 30%;
}

.story-rail__mark--three {
  top: 58%;
}

.story-rail__mark--four {
  top: 88%;
}

.story-copy {
  min-width: 0;
}

.story-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.98;
}

.story-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e2d8c7;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.34;
}

.story-flow {
  display: grid;
  gap: 34px;
  margin-top: 48px;
}

.story-flow section {
  display: grid;
  gap: 14px;
}

.story-flow h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 0 2px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.04;
}

.story-flow h3::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 169, 68, 0.5), transparent);
}

.story-flow p {
  max-width: 760px;
  margin: 0;
  color: #cfc8bd;
  font-size: 16px;
  line-height: 1.82;
}

.chiromancer-note {
  max-width: 720px;
  margin: 2px 0;
  padding-left: 24px;
  border-left: 1px solid rgba(242, 198, 95, 0.6);
  color: #f1e6cf !important;
  font-family: var(--serif);
  font-size: 28px !important;
  font-style: italic;
  line-height: 1.28 !important;
}

.story-term {
  position: relative;
  color: #f0c96b;
  cursor: help;
  text-decoration: underline;
  text-decoration-color: rgba(242, 198, 95, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.story-term::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: min(260px, 72vw);
  padding: 11px 13px;
  border: 1px solid rgba(242, 198, 95, 0.34);
  border-radius: 8px;
  color: #f4ead7;
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
  background: rgba(9, 12, 16, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.story-term:hover::after,
.story-term:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-link::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

@media (min-width: 1400px) {
  .order-section {
    padding: 62px 0 74px;
  }

  .order-layout {
    width: min(calc(100% - 160px), 1180px);
    max-width: 1180px;
    grid-template-columns: minmax(520px, 1fr) 420px;
  }

  .order-copy h2 {
    font-size: 50px;
  }

  .chiromancy-story-section {
    padding: 88px 0 108px;
  }

  .chiromancy-story {
    width: min(calc(100% - 160px), 1280px);
    max-width: 1280px;
    grid-template-columns: 180px minmax(0, 880px);
  }

  .legal-shell {
    width: min(calc(100% - 160px), 980px);
  }
}

@media (max-width: 980px) {
  .order-section {
    padding: 44px 0 54px;
  }

  .order-layout {
    width: min(100% - 28px, 640px);
    max-width: 640px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .order-copy {
    padding: 26px 20px;
  }

  .order-copy h2 {
    font-size: 38px;
  }

  .photo-checklist {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0;
  }

  .photo-checklist li {
    min-height: 40px;
    border-radius: 14px;
  }

  .order-action-panel {
    min-height: 278px;
    padding: 28px 20px;
  }

  .order-popup-button {
    width: 100%;
    max-width: 320px;
  }

  .chiromancy-story-section {
    padding: 54px 0 66px;
  }

  .chiromancy-story {
    width: min(100% - 28px, 640px);
    max-width: 640px;
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: auto;
  }

  .story-rail {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    gap: 12px 14px;
    margin: 0 0 28px;
    overflow: visible;
  }

  .story-rail__line {
    display: none;
  }

  .story-rail__mark {
    position: static;
    gap: 8px;
  }

  .story-rail__mark::before {
    width: 26px;
    height: 26px;
    background:
      radial-gradient(circle, rgba(242, 198, 95, 0.86) 0 3px, transparent 4px),
      rgba(7, 10, 14, 0.78);
  }

  .story-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .story-lead {
    margin-top: 20px;
    font-size: 22px;
  }

  .story-flow {
    gap: 30px;
    margin-top: 36px;
  }

  .story-flow h3 {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 30px;
  }

  .story-flow h3::after {
    width: 54px;
  }

  .story-flow p {
    font-size: 15px;
    line-height: 1.76;
  }

  .chiromancer-note {
    padding-left: 18px;
    font-size: 23px !important;
  }

  .site-footer {
    padding: 18px 0 24px;
  }

  .site-footer__inner {
    width: min(100% - 28px, 640px);
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .legal-main {
    padding: 46px 0 60px;
  }

  .legal-shell {
    width: min(100% - 28px, 640px);
    margin-inline: auto;
  }

  .legal-hero {
    padding-bottom: 28px;
  }

  .legal-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .legal-hero p:not(.eyebrow) {
    font-size: 21px;
  }

  .legal-document article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .legal-document article > :not(h2),
  .legal-document h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .legal-document h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
