:root {
  color-scheme: light;
  --ink: #17131d;
  --ink-soft: #26202d;
  --paper: #f7f5f2;
  --paper-2: #efebe6;
  --white: #fffdf9;
  --muted: #6c6670;
  --line: #dcd6d0;
  --violet: #713dc0;
  --violet-dark: #4c2387;
  --rose: #cc4d70;
  --gold: #bd8c25;
  --green: #247b72;
  --shadow: 0 22px 70px rgba(26, 18, 34, 0.12);
  --max: 1220px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid #f1bd4f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(23, 19, 29, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #e6bd62;
  font-family: var(--serif);
  font-size: 18px;
}

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

.desktop-nav > a:not(.button) {
  color: #d7d1db;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav > a:not(.button):hover,
.desktop-nav > a[aria-current="page"] {
  color: #ffffff;
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 17px;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
}

.menu-icon::before {
  transform: translateY(-5px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.mobile-menu {
  position: fixed;
  z-index: 49;
  inset: 76px 0 0;
  padding: 28px 24px 50px;
  background: var(--ink);
  color: var(--white);
}

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

.mobile-menu a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--violet);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--violet-dark);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.light:hover {
  background: #eee8f2;
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button.ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button.ghost.light {
  border-color: rgba(255, 255, 255, 0.54);
  color: #ffffff;
}

.button.ghost.light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button.small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.on-dark {
  color: #e6bd62;
}

.display,
.page-title,
.section-title,
.feature-title,
.article-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.display {
  max-width: 760px;
  color: #ffffff;
  font-size: 88px;
}

.display em,
.page-title em,
.section-title em {
  color: #e6bd62;
  font-weight: inherit;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #d2cad7;
  font-size: 20px;
  line-height: 1.65;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 128px));
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 84px 112px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(58%, 720px);
}

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

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #bfb5c5;
  font-size: 13px;
  list-style: none;
}

.micro-proof li::before {
  margin-right: 8px;
  color: #e6bd62;
  content: "+";
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 44%;
  overflow: hidden;
}

.hero-screen {
  position: absolute;
  width: 310px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-screen.one {
  z-index: 3;
  top: 72px;
  right: 14%;
  transform: rotate(1.5deg);
}

.hero-screen.two {
  z-index: 2;
  top: 148px;
  right: -4%;
  opacity: 0.72;
  transform: rotate(5deg);
}

.hero-screen.three {
  z-index: 1;
  top: 220px;
  right: 34%;
  opacity: 0.46;
  transform: rotate(-5deg);
}

.proof-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-list {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 10px 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.proof-list li:first-child {
  padding-left: 0;
}

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

.proof-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.section {
  padding-block: 112px;
}

.section.compact {
  padding-block: 78px;
}

.section.alt {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}

.section.dark {
  background: var(--ink);
  color: white;
}

.section.dark .section-title,
.section.dark .feature-title {
  color: white;
}

.section.dark .section-copy,
.section.dark .feature-copy {
  color: #c9c0ce;
}

.section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  max-width: 900px;
  color: var(--ink);
  font-size: 62px;
}

.section-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-head.centered .section-copy {
  margin-inline: auto;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

.product-story.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.product-story.reverse .product-media {
  order: 2;
}

.product-media {
  min-width: 0;
}

.realm-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.dark .realm-visual {
  border-color: rgba(255, 255, 255, 0.16);
  background: #211a29;
  color: #ffffff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 900;
}

.dark .visual-topline {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e6bd62;
}

.visual-caption {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.forecast-signal {
  padding-block: 54px 42px;
}

.signal-mark {
  display: block;
  margin-bottom: 13px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
}

.forecast-signal strong {
  display: block;
  max-width: 430px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 0.98;
}

.forecast-signal p {
  max-width: 390px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.transit-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 42px;
}

.track-line {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.transit-track > i {
  position: absolute;
  top: 7px;
  left: var(--point);
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 1px var(--violet);
}

.transit-track b,
.transit-track small {
  display: block;
}

.transit-track b {
  color: var(--ink);
  font-size: 12px;
}

.transit-track small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.visual-chart {
  display: grid;
  align-content: center;
  justify-items: center;
  background: #f0ece7;
}

.chart-wheel {
  position: relative;
  width: 360px;
  max-width: 84%;
  aspect-ratio: 1;
  border: 1px solid #94859f;
  border-radius: 50%;
}

.chart-wheel::before,
.chart-wheel::after,
.chart-wheel .ring {
  position: absolute;
  border: 1px solid #c1b6c8;
  border-radius: 50%;
  content: "";
}

.chart-wheel::before {
  inset: 12%;
}

.chart-wheel::after {
  inset: 27%;
  border-color: var(--violet);
}

.chart-wheel .ring-one {
  inset: 38%;
  background: var(--white);
}

.chart-wheel .ring-two {
  inset: 4%;
  border-style: dashed;
}

.chart-wheel .axis {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 86%;
  height: 1px;
  background: #c1b6c8;
  transform-origin: center;
}

.chart-wheel .axis-two {
  transform: rotate(60deg);
}

.chart-wheel .axis-three {
  transform: rotate(120deg);
}

.chart-wheel > b {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  color: var(--violet-dark);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  transform: translate(-50%, -50%);
}

.planet {
  position: absolute;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.planet.p-one {
  top: 7%;
  left: 48%;
  background: var(--gold);
}

.planet.p-two {
  top: 56%;
  right: 3%;
  background: var(--rose);
}

.planet.p-three {
  bottom: 8%;
  left: 17%;
  background: var(--violet);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 11px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-violet { background: var(--violet); }
.legend-rose { background: var(--rose); }
.legend-gold { background: var(--gold); }

.visual-ask {
  display: flex;
  flex-direction: column;
}

.ask-question {
  margin: 42px 0 18px;
  color: #d8cfdd;
  font-size: 14px;
}

.evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.evidence-row span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #cfc4d4;
  font-size: 10px;
}

.answer-rule {
  width: 54px;
  height: 2px;
  margin: 50px 0 22px;
  background: var(--gold);
}

.visual-ask > strong {
  max-width: 430px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.02;
}

.visual-ask > p:not(.ask-question) {
  max-width: 420px;
  margin: 18px 0 0;
  color: #bfb5c5;
  font-size: 13px;
  line-height: 1.7;
}

.answer-source {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 28px;
  color: #a99fae;
  font-size: 10px;
}

.answer-source i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.profile-core {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 60px -34px 0;
  background: var(--line);
}

.profile-core > div {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: var(--white);
  text-align: center;
}

.profile-core small,
.profile-core span {
  color: var(--muted);
  font-size: 10px;
}

.profile-core strong {
  margin: 11px 0;
  color: var(--violet-dark);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.profile-depth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.profile-depth span {
  padding-top: 15px;
  border-top: 2px solid var(--gold);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.compat-map {
  position: relative;
  min-height: 300px;
  margin-top: 34px;
}

.person {
  position: absolute;
  top: 30px;
  width: 220px;
  max-width: 48%;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--violet);
  border-radius: 50%;
}

.person-a { left: 7%; }
.person-b { right: 7%; border-color: var(--rose); }

.person b {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
}

.person span {
  color: var(--muted);
  font-size: 10px;
}

.connection {
  position: absolute;
  z-index: 2;
  left: 50%;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  transform: translateX(-50%);
}

.c-one { top: 90px; }
.c-two { top: 145px; }
.c-three { top: 200px; }

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

.compat-grid span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.compat-grid b {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.timing-row {
  display: grid;
  grid-template-columns: 62px 1fr 150px;
  gap: 16px;
  align-items: center;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.timing-row b {
  color: var(--violet-dark);
  font-size: 10px;
}

.timing-row > span {
  height: 7px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-2);
}

.timing-row > span i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--violet);
}

.timing-row:nth-child(3) > span i { background: var(--rose); }
.timing-row:nth-child(4) > span i { background: var(--gold); }

.timing-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.timing-note {
  margin-top: 46px;
  padding: 25px;
  border-left: 3px solid var(--gold);
  background: var(--paper-2);
}

.timing-note strong,
.timing-note span {
  display: block;
}

.timing-note strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.timing-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.system-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 48px -34px 0;
  background: var(--line);
}

.system-compare > div {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--white);
}

.system-compare > div:last-child {
  background: #efe8f5;
}

.system-compare small {
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 900;
}

.system-compare strong {
  margin: 12px 0 48px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.system-compare span {
  padding-block: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.number-core {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.number-core > span {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.number-core small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.number-core strong {
  margin-top: 10px;
  color: var(--violet-dark);
  font-family: var(--serif);
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
}

.number-cycle {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  margin-top: 54px;
}

.number-cycle i {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
}

.number-cycle i.active {
  background: var(--rose);
}

.screen-stage {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-soft);
}

.screen-stage.rose {
  background: #542338;
}

.screen-stage.green {
  background: #143e3a;
}

.screen-stage img {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 390px;
  max-width: 82%;
  transform: translateX(-50%);
  box-shadow: var(--shadow);
}

/* App marketing page */
.app-cinema {
  position: relative;
  min-height: min(920px, calc(100svh - 76px));
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 45%, rgba(113, 61, 192, 0.24), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(204, 77, 112, 0.12), transparent 28%),
    #110d17;
  color: #fff;
}

.app-cinema::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.65px, transparent 0.65px);
  background-size: 44px 44px;
  opacity: 0.16;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.app-cinema-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.app-cinema-glow.glow-one { top: 10%; right: 2%; background: #9c5bff; }
.app-cinema-glow.glow-two { bottom: -18%; left: 5%; background: #cc4d70; }

.app-cinema-grid {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 54px;
  align-items: center;
  padding-block: 86px 110px;
}

.app-cinema-copy { position: relative; z-index: 4; }

.app-cinema-copy h1,
.app-section-head h2,
.app-gallery-head h2,
.app-context-grid h2,
.app-final-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.app-cinema-copy h1 {
  max-width: 720px;
  font-size: clamp(64px, 6.6vw, 104px);
}

.app-cinema-copy h1 em,
.app-section-head h2 em,
.app-context-grid h2 em,
.app-final-card h2 em {
  color: #e6bd62;
  font-weight: inherit;
}

.app-cinema-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #d1c7d8;
  font-size: 19px;
  line-height: 1.7;
}

.app-primary {
  min-height: 54px;
  padding-inline: 24px;
  background: linear-gradient(135deg, #8650d6, #6429a9);
  box-shadow: 0 15px 36px rgba(113, 61, 192, 0.28);
}

.app-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.app-proof li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #cfc5d5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-phone-universe {
  position: relative;
  min-height: 680px;
  perspective: 1400px;
}

.app-phone-universe::before,
.app-phone-universe::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(230, 189, 98, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-12deg);
}

.app-phone-universe::before { width: 590px; height: 590px; }
.app-phone-universe::after { width: 760px; height: 350px; }

.app-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 286px;
  height: 590px;
  overflow: hidden;
  border: 7px solid #21172a;
  border-radius: 42px;
  background: #f8f4fb var(--screen-image) top center / cover no-repeat;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.66), inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.app-phone::before {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 84px;
  height: 20px;
  border-radius: 99px;
  background: #17131d;
  content: "";
  transform: translateX(-50%);
}

.app-phone-center { z-index: 3; transform: translate(-50%, -50%) rotate(-1.5deg); }
.app-phone-left { z-index: 2; transform: translate(-102%, -48%) rotate(-10deg) scale(0.86); opacity: 0.68; }
.app-phone-right { z-index: 1; transform: translate(2%, -47%) rotate(9deg) scale(0.84); opacity: 0.58; }

.app-phone-label {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  background: rgba(23, 19, 29, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.app-planet { position: absolute; z-index: 5; display: block; border-radius: 50%; }
.planet-gold { top: 13%; right: 4%; width: 14px; height: 14px; background: #e6bd62; box-shadow: 0 0 28px #e6bd62; }
.planet-violet { bottom: 17%; left: 3%; width: 9px; height: 9px; background: #a876ed; box-shadow: 0 0 24px #a876ed; }

.app-orbit-lines {
  position: absolute;
  z-index: 1;
  top: -300px;
  right: -240px;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.app-orbit-lines span { position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; }
.app-orbit-lines span:nth-child(2) { inset: 25%; }
.app-orbit-lines span:nth-child(3) { inset: 38%; }
.app-orbit-lines i { position: absolute; bottom: 23%; left: 12%; width: 8px; height: 8px; border-radius: 50%; background: #e6bd62; box-shadow: 0 0 22px #e6bd62; }

.app-cinema-foot {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.app-signal-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.app-signal-strip .shell { display: grid; grid-template-columns: repeat(3, 1fr); }
.app-signal-strip .shell > div { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; padding: 23px 28px; border-right: 1px solid var(--line); }
.app-signal-strip .shell > div:first-child { padding-left: 0; }
.app-signal-strip .shell > div:last-child { border-right: 0; }
.app-signal-strip span { grid-row: 1 / 3; color: var(--violet); font-family: var(--serif); font-size: 30px; }
.app-signal-strip strong { font-size: 14px; }
.app-signal-strip small { color: var(--muted); font-size: 11px; }

.app-inside { padding-block: 130px; background: #17131d; color: #fff; }
.app-section-head { max-width: 940px; margin-bottom: 70px; }
.app-section-head h2 { font-size: clamp(54px, 6vw, 86px); }
.app-section-head > p:last-child { max-width: 700px; margin: 26px 0 0; color: #c4bac9; font-size: 18px; line-height: 1.7; }

.app-bento { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.app-bento-card { position: relative; min-height: 350px; overflow: hidden; padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.04); }
.app-bento-card h3 { max-width: 600px; margin: 24px 0 12px; font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; }
.app-bento-card p { max-width: 590px; margin: 0; color: #c4bac9; }
.app-bento-index { color: #e6bd62; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.app-bento-wide { min-height: 480px; background: linear-gradient(135deg, rgba(113,61,192,.34), rgba(255,255,255,.035)); }
.app-bento-chart { min-height: 480px; }
.app-bento-ask { background: #f3edf7; color: var(--ink); }
.app-bento-ask .app-bento-index { color: var(--violet-dark); }
.app-bento-ask .app-ask-prompt { margin: 38px 0 28px; color: var(--muted); font-family: var(--serif); font-size: 25px; }
.app-bento-ask strong { display: block; max-width: 610px; font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: 1; }
.app-bento-ask small { display: block; margin-top: 34px; color: var(--muted); }
.app-bento-systems { background: linear-gradient(135deg, #3d1c68, #24142f); }

.app-mini-transit { display: grid; gap: 16px; margin-top: 58px; }
.app-mini-transit span { display: grid; grid-template-columns: 50px 1fr minmax(180px, auto); gap: 15px; align-items: center; color: #d7cedc; font-size: 12px; }
.app-mini-transit b { color: #e6bd62; font-size: 10px; }
.app-mini-transit i { position: relative; height: 3px; background: rgba(255,255,255,.14); }
.app-mini-transit i::after { position: absolute; top: -3px; left: 68%; width: 9px; height: 9px; border-radius: 50%; background: #e6bd62; box-shadow: 0 0 18px rgba(230,189,98,.8); content: ""; }

.app-bento-wheel { position: absolute; right: -70px; bottom: -100px; width: 310px; height: 310px; border: 1px solid rgba(230,189,98,.4); border-radius: 50%; }
.app-bento-wheel::before, .app-bento-wheel::after, .app-bento-wheel span { position: absolute; inset: 15%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.app-bento-wheel::after { inset: 31%; }
.app-bento-wheel span:nth-child(2) { inset: 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); border-radius: 0; transform: rotate(43deg); }
.app-bento-wheel i { position: absolute; inset: 0; display: grid; place-items: center; color: #e6bd62; font-size: 11px; font-style: normal; font-weight: 900; }
.app-system-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 70px; }
.app-system-pills span { padding: 11px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; color: #ddd3e1; font-size: 10px; font-weight: 900; letter-spacing: .08em; }

.app-gallery { padding-block: 130px; background: #f4f0eb; }
.app-gallery-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.app-gallery-head h2 { max-width: 780px; font-size: clamp(54px, 5.6vw, 82px); }
.app-gallery-head > p { margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.app-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.app-gallery-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 22px 58px rgba(26,18,34,.08); }
.app-gallery-screen { aspect-ratio: .76; background: #efe8f5 var(--screen-image) top center / cover no-repeat; }
.app-gallery-card > div:last-child { padding: 28px; }
.app-gallery-card span { color: var(--violet); font-size: 11px; font-weight: 900; }
.app-gallery-card h3 { margin: 10px 0 9px; font-family: var(--serif); font-size: 35px; font-weight: 500; }
.app-gallery-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.app-context-section { padding-block: 130px; background: #211629; color: #fff; }
.app-context-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.app-context-grid h2 { max-width: 590px; font-size: clamp(62px, 6vw, 92px); }
.app-context-flow { margin: 0; padding: 0; list-style: none; }
.app-context-flow li { display: grid; grid-template-columns: 66px 1fr; gap: 22px; padding: 0 0 30px; }
.app-context-flow li + li { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.app-context-flow li > span { color: #e6bd62; font-family: var(--serif); font-size: 28px; }
.app-context-flow strong { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.app-context-flow p { margin: 7px 0 0; color: #bfb4c5; font-size: 14px; }

.app-final { padding: 22px; background: #211629; }
.app-final-card { min-height: 390px; display: grid; grid-template-columns: 110px 1fr auto; gap: 46px; align-items: center; padding: 70px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: radial-gradient(circle at 76% 20%, rgba(137,76,214,.48), transparent 33%), linear-gradient(135deg, #4b2181, #24142f); color: #fff; }
.app-final-mark { width: 100px; height: 100px; display: grid; place-items: center; border: 1px solid rgba(230,189,98,.6); border-radius: 28px; background: rgba(20,12,27,.36); color: #e6bd62; font-family: var(--serif); font-size: 54px; }
.app-final-card h2 { max-width: 680px; font-size: clamp(50px, 5vw, 76px); }
.app-final-card p:not(.eyebrow) { margin: 20px 0 0; color: #d6cadd; }

@media (max-width: 1080px) {
  .app-cinema-grid { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: 20px; }
  .app-phone-universe { transform: scale(.88); transform-origin: center; }
  .app-final-card { grid-template-columns: 90px 1fr; }
  .app-final-card > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .app-cinema { min-height: 1120px; }
  .app-cinema-grid { grid-template-columns: 1fr; align-content: start; padding-top: 80px; }
  .app-cinema-copy { max-width: 690px; }
  .app-phone-universe { min-height: 560px; transform: scale(.84); transform-origin: top center; }
  .app-cinema-foot { display: none; }
  .app-signal-strip .shell { grid-template-columns: 1fr; padding-block: 8px; }
  .app-signal-strip .shell > div, .app-signal-strip .shell > div:first-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .app-signal-strip .shell > div:last-child { border-bottom: 0; }
  .app-bento, .app-gallery-head, .app-context-grid { grid-template-columns: 1fr; }
  .app-gallery-head, .app-context-grid { gap: 42px; }
  .app-gallery-grid { grid-template-columns: 1fr 1fr; }
  .app-gallery-card:last-child { grid-column: 1 / -1; }
  .app-final-card { grid-template-columns: 76px 1fr; gap: 28px; padding: 46px; }
  .app-final-mark { width: 76px; height: 76px; border-radius: 21px; font-size: 42px; }
}

@media (max-width: 560px) {
  .app-cinema { min-height: 1000px; }
  .app-cinema-grid { padding-block: 58px 40px; }
  .app-cinema-copy h1 { font-size: 52px; }
  .app-cinema-lede { font-size: 16px; }
  .app-cinema-copy .hero-actions { align-items: stretch; flex-direction: column; }
  .app-cinema-copy .button { width: 100%; }
  .app-phone-universe { min-height: 520px; margin-inline: -54px; transform: scale(.7); }
  .app-phone-universe::after { display: none; }
  .app-phone-left { transform: translate(-90%, -48%) rotate(-9deg) scale(.84); }
  .app-phone-right { transform: translate(-10%, -47%) rotate(8deg) scale(.82); }
  .app-proof { gap: 7px; }
  .app-proof li { font-size: 9px; }
  .app-inside, .app-gallery, .app-context-section { padding-block: 82px; }
  .app-section-head { margin-bottom: 44px; }
  .app-section-head h2, .app-gallery-head h2, .app-context-grid h2 { font-size: 48px; }
  .app-bento { grid-template-columns: 1fr; }
  .app-bento-card, .app-bento-wide, .app-bento-chart { min-height: 360px; padding: 26px; }
  .app-bento-card h3 { font-size: 36px; }
  .app-bento-ask strong { font-size: 39px; }
  .app-mini-transit span { grid-template-columns: 40px 1fr; }
  .app-mini-transit small { grid-column: 2; }
  .app-gallery-grid { grid-template-columns: 1fr; }
  .app-gallery-card:last-child { grid-column: auto; }
  .app-context-flow li { grid-template-columns: 48px 1fr; gap: 12px; }
  .app-final { padding: 10px; }
  .app-final-card { grid-template-columns: 1fr; padding: 34px 26px; }
  .app-final-card > .button { grid-column: 1; }
}

/* Shared readings storefront: one ink, paper, and antique-gold system. */
.reading-frontend {
  --rf-ink: #151219;
  --rf-ink-2: #201b24;
  --rf-paper: #f3eee6;
  --rf-paper-2: #e8dfd2;
  --rf-white: #fffaf2;
  --rf-muted: #6d665f;
  --rf-line: #d1c7ba;
  --rf-coral: #bc8178;
  --rf-lime: #c6aa6d;
  --rf-yellow: #c6aa6d;
  --rf-blue: #c6aa6d;
}

.reading-frontend .rf-catalog-grid {
  grid-template-columns: 1fr;
}

.reading-frontend .rf-catalog-mark {
  display: none;
}

.reading-frontend .rf-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.reading-frontend .rf-header {
  position: sticky;
  z-index: 50;
  top: 0;
}

.reading-frontend .rf-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 242, 0.42);
  background: transparent;
  color: var(--rf-white);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.reading-frontend .rf-floating-cart {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 58px;
  min-height: 58px;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--rf-yellow);
  border-radius: 50%;
  background: var(--rf-ink);
  color: var(--rf-white);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(21, 18, 25, 0.24);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.reading-frontend .rf-floating-cart-count {
  display: inline-grid;
  min-width: 20px;
  min-height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--rf-yellow);
  color: var(--rf-ink);
  font-size: 10px;
}

.reading-frontend.rf-cart-open .rf-floating-cart {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.reading-frontend.rf-cart-open {
  overflow: hidden;
}

.reading-frontend .rf-cart-count {
  display: inline-grid;
  min-width: 18px;
  min-height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--rf-yellow);
  color: var(--rf-ink);
  font-size: 10px;
}

.reading-frontend .rf-catalog-hero,
.reading-frontend .rf-product-hero,
.reading-frontend [class*="conversion-hero"],
.reading-frontend .rf-final,
.reading-frontend [class*="report-section"] {
  background: var(--rf-ink);
}

.reading-frontend [class*="-outcomes"],
.reading-frontend [class*="-problem"],
.reading-frontend [class*="-delivery"],
.reading-frontend [class*="-faq"] {
  background: var(--rf-paper);
}

.reading-frontend [class*="-difference"],
.reading-frontend [class*="-reader-proof"],
.reading-frontend [class*="-final-offer"] {
  background: var(--rf-ink-2);
  color: var(--rf-white);
}

.reading-frontend [class*="-trust-strip"] {
  background: var(--rf-paper-2);
  color: var(--rf-ink);
}

.reading-frontend .rf-eyebrow {
  color: var(--rf-yellow);
}

.reading-frontend .rf-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rf-line);
  border-top: 3px solid var(--rf-card-accent, var(--rf-yellow));
  border-radius: 7px;
  background: var(--rf-white);
  box-shadow: 0 10px 24px rgba(27, 21, 29, .07);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.reading-frontend .rf-product-card-media {
  display: grid;
  min-height: 248px;
  place-items: center;
  padding: 18px;
  background: var(--rf-ink-2);
}

.reading-frontend .rf-product-card-media img {
  display: block;
  width: 100%;
  height: 212px;
  object-fit: contain;
}

.reading-frontend .rf-product-card:hover,
.reading-frontend .rf-product-card:focus-visible {
  border-color: var(--rf-card-accent, var(--rf-yellow));
  box-shadow: 0 18px 34px rgba(27, 21, 29, .14);
  transform: translateY(-4px);
}

.reading-frontend .rf-product-card:focus-visible {
  outline: 3px solid var(--rf-card-accent, var(--rf-yellow));
  outline-offset: 4px;
}

.reading-frontend .rf-theme-chart { --rf-card-accent: #c6aa6d; }
.reading-frontend .rf-theme-rose { --rf-card-accent: #e98770; }
.reading-frontend .rf-theme-gold { --rf-card-accent: #c6aa6d; }
.reading-frontend .rf-theme-blue { --rf-card-accent: #91b9cf; }

.reading-frontend .rf-product-copy {
  min-height: 320px;
  padding: 34px 36px 30px;
  justify-content: flex-start;
}

.reading-frontend .rf-product-copy h2 {
  margin-bottom: 14px;
}

.reading-frontend .rf-product-copy > p:not(.rf-eyebrow) {
  margin-bottom: 28px;
}

.reading-frontend .rf-product-actions {
  width: 100%;
  margin-top: auto;
  justify-content: space-between;
}

.reading-frontend .rf-product-actions .rf-link,
.reading-frontend .rf-product-actions .rf-button {
  position: relative;
  z-index: 1;
}

.reading-frontend .rf-product-art {
  min-height: 420px;
  padding: 22px;
}

.reading-frontend .rf-reading-visual {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.reading-frontend .rf-reading-image {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.reading-frontend .rf-hero-art,
.reading-frontend .love-hero-art,
.reading-frontend .year-hero-art,
.reading-frontend .number-hero-art {
  display: grid;
  place-items: center;
}

.reading-frontend .rf-hero-art .rf-reading-image,
.reading-frontend .love-hero-art .rf-reading-image,
.reading-frontend .year-hero-art .rf-reading-image,
.reading-frontend .number-hero-art .rf-reading-image {
  width: min(100%, 520px);
  max-height: 660px;
}

.reading-frontend .rf-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.reading-frontend .rf-product-actions .rf-button {
  margin-top: 0;
}

.reading-frontend .rf-inline-cta {
  background: var(--rf-paper);
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}

.reading-frontend .rf-inline-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.reading-frontend .rf-inline-cta-inner h2 {
  max-width: 620px;
  margin: 8px 0 0;
}

.reading-frontend .rf-inline-cta-inner p:not(.rf-eyebrow) {
  margin: 12px 0 0;
  color: var(--rf-muted);
}

.reading-frontend .rf-inline-cta-action {
  display: grid;
  justify-items: end;
  gap: 10px;
  flex: 0 0 auto;
}

.reading-frontend .rf-inline-cta-action > span {
  color: var(--rf-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.reading-frontend .rf-button-primary {
  background: var(--rf-yellow);
  color: var(--rf-ink);
}

.reading-frontend .rf-button-primary:hover {
  background: #d7bd83;
}

.reading-frontend .rf-add-to-cart {
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid #ef8966;
  border-radius: 3px;
  background: #ef8966;
  color: #191419;
  font-size: 14px;
  letter-spacing: .01em;
  box-shadow: 0 7px 0 #a95543, 0 13px 24px rgba(111, 46, 34, .22);
  transform: translateY(-2px);
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.reading-frontend .rf-add-to-cart:hover {
  background: #f39a79;
  box-shadow: 0 5px 0 #a95543, 0 10px 20px rgba(111, 46, 34, .24);
  transform: translateY(0);
}

.reading-frontend .rf-add-to-cart:focus-visible {
  outline: 3px solid #fffaf2;
  outline-offset: 4px;
}

.reading-frontend .rf-add-to-cart span {
  margin-left: 8px;
  font-size: 18px;
  line-height: 0;
}

@media (max-width: 700px) {
  .reading-frontend .rf-header-actions .rf-add-to-cart {
    width: 94px;
    min-height: 42px;
    padding: 8px 9px;
    font-size: 11px;
    line-height: 1.1;
    box-shadow: 0 4px 0 #a95543, 0 8px 16px rgba(111, 46, 34, .18);
    transform: none;
  }

  .reading-frontend .rf-header-actions .rf-add-to-cart:hover {
    box-shadow: 0 3px 0 #a95543, 0 7px 14px rgba(111, 46, 34, .2);
    transform: translateY(1px);
  }

  .reading-frontend .rf-header-actions .rf-add-to-cart span {
    margin-left: 4px;
    font-size: 15px;
  }
}

.reading-frontend .rf-cart-drawer {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  display: flex;
  width: min(430px, 100%);
  height: 100dvh;
  flex-direction: column;
  padding: 28px;
  background: var(--rf-white);
  box-shadow: -20px 0 50px rgba(21, 18, 25, 0.22);
  color: var(--rf-ink);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 220ms ease, visibility 220ms ease;
}

.reading-frontend .rf-cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.reading-frontend .rf-cart-header,
.reading-frontend .rf-cart-summary,
.reading-frontend .rf-cart-item,
.reading-frontend .rf-form-grid,
.reading-frontend .rf-reading-fieldset {
  display: flex;
  gap: 14px;
}

.reading-frontend .rf-cart-header,
.reading-frontend .rf-cart-summary {
  align-items: center;
  justify-content: space-between;
}

.reading-frontend .rf-cart-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rf-line);
}

.reading-frontend .rf-cart-header h2,
.reading-frontend .rf-details-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.reading-frontend .rf-icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--rf-line);
  background: transparent;
  color: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.reading-frontend .rf-cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 22px 0;
}

.reading-frontend .rf-cart-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rf-line);
}

.reading-frontend .rf-cart-thumb {
  width: 58px;
  height: 64px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--rf-line);
  background: var(--rf-paper-2);
}

.reading-frontend .rf-cart-item div {
  display: grid;
  gap: 4px;
}

.reading-frontend .rf-cart-item span,
.reading-frontend .rf-cart-empty,
.reading-frontend .rf-cart-summary,
.reading-frontend .rf-dialog-lede {
  color: var(--rf-muted);
  font-size: 14px;
  line-height: 1.5;
}

.reading-frontend .rf-cart-item button {
  border: 0;
  background: transparent;
  color: var(--rf-muted);
  font-size: 22px;
  cursor: pointer;
}

.reading-frontend .rf-cart-empty[hidden] {
  display: none;
}

.reading-frontend .rf-cart-summary {
  margin-top: auto;
  padding: 18px 0;
  border-top: 1px solid var(--rf-line);
  font-size: 16px;
}

.reading-frontend .rf-cart-continue {
  width: max-content;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rf-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.reading-frontend .rf-cart-checkout {
  width: 100%;
}

.reading-frontend .rf-cart-scrim:not([hidden]) {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: block;
  background: rgba(21, 18, 25, 0.58);
}

.reading-frontend .rf-details-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(90dvh, 800px);
  padding: 0;
  border: 1px solid var(--rf-line);
  background: var(--rf-white);
  color: var(--rf-ink);
}

.reading-frontend .rf-details-dialog::backdrop {
  background: rgba(21, 18, 25, 0.68);
}

.reading-frontend .rf-details-dialog form {
  position: relative;
  display: grid;
  gap: 20px;
  overflow: auto;
  padding: 36px;
}

.reading-frontend .rf-dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.reading-frontend .rf-dialog-lede {
  max-width: 560px;
  margin: -6px 0 0;
}

.reading-frontend .rf-draft-note {
  margin: -8px 0 0;
  color: var(--rf-muted);
  font-size: 12px;
}

.reading-frontend .rf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reading-frontend .rf-reading-fields {
  display: grid;
  gap: 20px;
}

.reading-frontend .rf-reading-product-fields {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--rf-line);
}

.reading-frontend .rf-field-product {
  margin: 0;
  color: var(--rf-coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reading-frontend .rf-reading-fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--rf-line);
}

.reading-frontend .rf-reading-fieldset legend {
  padding: 0 6px;
  font-weight: 800;
}

.reading-frontend .rf-details-dialog label {
  display: grid;
  gap: 7px;
  color: var(--rf-ink);
  font-size: 12px;
  font-weight: 800;
}

.reading-frontend .rf-details-dialog input {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--rf-line);
  border-radius: 0;
  background: var(--rf-paper);
  color: var(--rf-ink);
  font: inherit;
  font-size: 14px;
}

.reading-frontend .rf-location-picker {
  position: relative;
}

.reading-frontend .rf-location-picker input.rf-location-input {
  margin-top: 0;
}

.reading-frontend .rf-location-results {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid var(--rf-line);
  background: var(--rf-white);
  box-shadow: 0 14px 30px rgba(17, 18, 17, .16);
}

.reading-frontend .rf-location-results[hidden] {
  display: none;
}

.reading-frontend .rf-location-option {
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid var(--rf-line);
  background: transparent;
  color: var(--rf-ink);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.reading-frontend .rf-location-option:last-child {
  border-bottom: 0;
}

.reading-frontend .rf-location-option:hover,
.reading-frontend .rf-location-option:focus-visible {
  background: var(--rf-paper);
  outline: 0;
}

.reading-frontend .rf-location-status.is-error {
  color: #a33d32;
}

.reading-frontend .love-report-preview {
  padding-bottom: 64px;
}

.reading-frontend .love-report-page {
  transition: transform 220ms ease, opacity 220ms ease, z-index 220ms ease;
}

.reading-frontend .love-report-page.is-viewing {
  z-index: 5;
  top: 18px;
  right: auto;
  bottom: auto;
  left: 16%;
  width: 68%;
  min-height: 430px;
  height: 430px;
  transform: rotate(0deg);
  opacity: 1;
}

.reading-frontend .rf-field-note {
  color: var(--rf-muted);
  font-size: 10px;
  font-weight: 500;
}

.reading-frontend .rf-form-status,
.reading-frontend .rf-cart-feedback {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--rf-muted);
  font-size: 13px;
  line-height: 1.45;
}

.reading-frontend .rf-form-status.is-error {
  color: #a33d32;
}

@media (max-width: 700px) {
  .reading-frontend .rf-inline-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .reading-frontend .rf-inline-cta-action {
    justify-items: stretch;
  }

  .reading-frontend .rf-inline-cta-action .rf-button {
    width: 100%;
  }

  .reading-frontend .rf-header-actions {
    gap: 10px;
  }

  .reading-frontend .rf-header-link {
    display: none;
  }

  .reading-frontend .rf-product-art {
    min-height: 340px;
  }

  .reading-frontend .rf-form-grid {
    grid-template-columns: 1fr;
  }

  .reading-frontend .rf-details-dialog form {
    padding: 28px 20px;
  }

  .reading-frontend .rf-floating-cart {
    right: 16px;
    bottom: 16px;
  }
}

.feature-title {
  color: var(--ink);
  font-size: 50px;
}

.feature-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "OK";
  font-size: 10px;
}

.dark .feature-list li,
.dark .check-list li {
  color: #e5dee8;
}

.outcome-grid,
.feature-grid,
.article-grid,
.trust-grid,
.price-grid,
.partner-grid {
  display: grid;
  gap: 18px;
}

.outcome-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-grid,
.trust-grid,
.partner-grid {
  grid-template-columns: repeat(3, 1fr);
}

.outcome,
.feature-card,
.article-card,
.trust-card,
.partner-card,
.price-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.outcome,
.feature-card,
.article-card,
.trust-card,
.partner-card {
  padding: 28px;
}

.outcome-index,
.feature-index {
  display: block;
  margin-bottom: 70px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 900;
}

.outcome h3,
.feature-card h3,
.article-card h3,
.trust-card h3,
.partner-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.05;
}

.outcome p,
.feature-card p,
.article-card p,
.trust-card p,
.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-card .text-link,
.article-card .text-link {
  margin-top: 20px;
  font-size: 14px;
}

.metric-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.metric {
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: white;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.metric span {
  color: #bdb3c3;
  font-size: 14px;
}

.price-grid {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.price-card {
  padding: 34px;
}

.price-card.featured {
  border-color: var(--violet);
  box-shadow: 0 18px 55px rgba(80, 40, 135, 0.14);
}

.price-label {
  margin: 0;
  color: var(--violet-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 22px 0 8px;
}

.price strong {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.price span,
.price-note {
  color: var(--muted);
  font-size: 14px;
}

.price-card .button {
  width: 100%;
  margin-top: 14px;
}

.launch-band {
  padding-block: 96px;
  background: var(--ink);
  color: white;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 80px;
  align-items: center;
}

.launch-band .section-title {
  color: white;
}

.launch-band .section-copy {
  color: #c9c0ce;
}

.launch-form,
.support-form {
  display: grid;
  gap: 13px;
}

.launch-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #211a29;
}

.launch-form label,
.support-form label {
  display: grid;
  gap: 7px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.launch-form input,
.launch-form select,
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bdb5bf;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

.support-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #e5d9ea;
  font-size: 13px;
}

.support-form .form-status {
  color: var(--green);
}

.form-fineprint {
  margin: 0;
  color: #aaa0af;
  font-size: 11px;
  line-height: 1.5;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 96px;
}

.page-title {
  max-width: 920px;
  color: white;
  font-size: 76px;
}

.page-hero .lede {
  max-width: 700px;
}

.page-hero-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5%;
  width: 390px;
  max-width: 34vw;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 189, 98, 0.35);
  border-radius: 50%;
  opacity: 0.72;
  transform: translateY(-50%);
}

.page-hero-orbit::before,
.page-hero-orbit::after,
.page-hero-orbit span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.page-hero-orbit::before {
  inset: 14%;
}

.page-hero-orbit::after {
  inset: 32%;
  border-color: rgba(230, 189, 98, 0.42);
}

.page-hero-orbit span:nth-child(1) {
  inset: 48% -10% auto;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  transform: rotate(30deg);
}

.page-hero-orbit span:nth-child(2) {
  inset: 48% -10% auto;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  transform: rotate(90deg);
}

.page-hero-orbit span:nth-child(3) {
  inset: 48% -10% auto;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  transform: rotate(150deg);
}

.page-hero-orbit i {
  position: absolute;
  top: 9%;
  left: 57%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.breadcrumb {
  margin-bottom: 30px;
  color: #aca2b2;
  font-size: 13px;
}

.breadcrumb a {
  color: white;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 70px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 56px 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.article-body p,
.article-body li {
  color: #57515b;
  font-size: 17px;
  line-height: 1.8;
}

.article-body a {
  color: var(--violet-dark);
  text-underline-offset: 4px;
}

.article-body table {
  width: 100%;
  margin-block: 28px;
  border-collapse: collapse;
  background: var(--white);
}

.article-body th,
.article-body td {
  padding: 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: var(--ink);
  font-size: 14px;
}

.article-body td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.article-aside {
  position: sticky;
  top: 104px;
  padding: 22px;
  border-left: 2px solid var(--violet);
  background: var(--paper-2);
}

.article-aside strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.article-aside a {
  display: block;
  padding-block: 7px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.article-callout {
  margin-block: 44px;
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.article-callout h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

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

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

.faq-list summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.support-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.support-form h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.support-form > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid #39313f;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-block: 64px 46px;
}

.footer-intro {
  max-width: 350px;
  margin: 20px 0 0;
  color: #b9b0bf;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: white;
  font-size: 13px;
}

.footer-column a {
  display: block;
  padding-block: 5px;
  color: #b9b0bf;
  text-decoration: none;
  font-size: 13px;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid #39313f;
  color: #8f8695;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1080px) {
  .display {
    font-size: 72px;
  }

  .hero-copy {
    width: 62%;
  }

  .hero-visual {
    left: 48%;
  }

  .hero-screen {
    width: 280px;
  }

  .section-title {
    font-size: 54px;
  }

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

  .feature-grid,
  .article-grid,
  .trust-grid,
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-story,
  .product-story.reverse {
    gap: 50px;
  }

  .realm-visual {
    min-height: 520px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* Numerology conversion page. */
.number-sales-page {
  background: var(--rf-paper);
}

.number-conversion-hero {
  padding: clamp(72px, 9vw, 126px) 0 clamp(84px, 10vw, 142px);
  overflow: hidden;
  background: #111819;
  color: var(--rf-white);
}

.number-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 9vw, 126px);
}

.number-hero-copy h1,
.number-problem h2,
.number-outcomes h2,
.number-report-section h2,
.number-difference h2,
.number-delivery h2,
.number-faq h2,
.number-final-offer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.number-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.91;
}

.number-hero-copy .rf-eyebrow {
  color: var(--rf-blue);
}

.number-hero-copy .rf-lede {
  max-width: 690px;
  margin-top: 28px;
}

.number-hero-art .rf-art {
  transform: rotate(2deg);
}

.number-trust-strip {
  border-bottom: 1px solid var(--rf-line);
  background: var(--rf-white);
}

.number-trust-strip .rf-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.number-trust-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px 24px;
  border-right: 1px solid var(--rf-line);
  color: var(--rf-muted);
  font-size: 13px;
  font-weight: 800;
}

.number-trust-strip span:first-child {
  padding-left: 0;
}

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

.number-trust-strip b {
  color: #527f91;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.number-problem {
  background: var(--rf-white);
}

.number-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

.number-problem h2,
.number-outcomes h2,
.number-report-section h2,
.number-difference h2,
.number-delivery h2,
.number-faq h2,
.number-final-offer h2 {
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 0.94;
}

.number-problem-grid > div:first-child > p:last-child,
.number-report-grid > div:last-child > p,
.number-final-offer p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--rf-muted);
  font-size: 17px;
}

.number-situation-list {
  padding-top: 3px;
  border-top: 1px solid var(--rf-line);
}

.number-situation-list > p {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--rf-line);
  font-family: var(--serif);
  font-size: 25px;
}

.number-situation-list ul,
.number-report-grid ul,
.number-final-offer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.number-situation-list li,
.number-report-grid li,
.number-final-offer li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--rf-line);
  color: var(--rf-muted);
}

.number-situation-list li::before,
.number-report-grid li::before,
.number-final-offer li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #527f91;
  content: "";
}

.number-outcomes {
  background: #e4e9e4;
}

.number-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rf-line);
}

.number-outcome-grid article {
  min-height: 290px;
  padding: 28px 25px 32px;
  border-right: 1px solid var(--rf-line);
}

.number-outcome-grid article:first-child {
  padding-left: 0;
}

.number-outcome-grid article:last-child {
  border-right: 0;
}

.number-outcome-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: #527f91;
  font-size: 12px;
  font-weight: 900;
}

.number-outcome-grid h3,
.number-difference-grid h3,
.number-delivery-steps h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 0.98;
}

.number-outcome-grid p,
.number-difference-grid p,
.number-delivery-steps p {
  margin: 0;
  color: var(--rf-muted);
  font-size: 14px;
}

.number-report-section {
  background: #172121;
  color: var(--rf-white);
}

.number-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.number-report-grid .rf-eyebrow {
  color: var(--rf-blue);
}

.number-report-grid > div:last-child > p {
  color: #c6d0ca;
}

.number-report-grid ul {
  margin: 28px 0;
}

.number-report-grid li {
  border-color: rgba(255, 253, 248, 0.17);
  color: #d2dbd4;
}

.number-report-grid .rf-link {
  color: var(--rf-blue);
}

.number-report-preview {
  min-height: 540px;
  padding: 30px;
  border: 1px solid rgba(145, 185, 207, 0.8);
  background: #202b2b;
  box-shadow: 16px 16px 0 rgba(145, 185, 207, 0.1);
}

.number-report-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #c9d3ca;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.number-report-core {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.number-report-core > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 10px;
  border: 1px solid rgba(145, 185, 207, 0.52);
}

.number-report-core small,
.number-report-core span,
.number-report-reading > span,
.number-report-year > span {
  color: #b8c4bb;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.number-report-core strong {
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 500;
  line-height: 0.8;
}

.number-report-core > div:nth-child(2) strong { color: var(--rf-yellow); }
.number-report-core > div:nth-child(3) strong { color: var(--rf-lime); }

.number-report-reading {
  display: grid;
  gap: 11px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.number-report-reading b {
  max-width: 480px;
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.96;
}

.number-report-year {
  display: grid;
  grid-template-columns: auto 52px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 33px;
}

.number-report-year > strong {
  color: var(--rf-coral);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
}

.number-report-year > div {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
}

.number-report-year i {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
}

.number-report-year i.is-active {
  border-color: var(--rf-coral);
  background: var(--rf-coral);
}

.number-bonus-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 44px;
  padding: 26px 0;
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}

.number-bonus-row span {
  color: #527f91;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.number-bonus-row p {
  margin: 0;
  color: var(--rf-muted);
}

.number-difference {
  background: var(--rf-white);
}

.number-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rf-line);
}

.number-difference-grid article {
  min-height: 290px;
  padding: 30px 28px;
  border-right: 1px solid var(--rf-line);
}

.number-difference-grid article:first-child {
  padding-left: 0;
}

.number-difference-grid article:last-child {
  border-right: 0;
}

.number-difference-grid b {
  display: block;
  margin-bottom: 65px;
  color: #527f91;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.number-reader-proof {
  background: var(--rf-paper);
}

.number-delivery {
  background: #e4e9e4;
}

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

.number-delivery-steps li {
  min-height: 300px;
  padding: 30px 28px;
  border-right: 1px solid var(--rf-line);
}

.number-delivery-steps li:first-child {
  padding-left: 0;
}

.number-delivery-steps li:last-child {
  border-right: 0;
}

.number-delivery-steps li > span {
  display: block;
  margin-bottom: 72px;
  color: #527f91;
  font-size: 12px;
  font-weight: 900;
}

.number-faq {
  background: var(--rf-white);
}

.number-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

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

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

.number-faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
  list-style: none;
}

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

.number-faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: #527f91;
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
}

.number-faq-list details[open] summary::after {
  content: "-";
}

.number-faq-list details p {
  max-width: 640px;
  margin: -4px 0 22px;
  color: var(--rf-muted);
}

.number-final-offer {
  background: #111819;
  color: var(--rf-white);
}

.number-final-offer .rf-eyebrow {
  color: var(--rf-blue);
}

.number-offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(65px, 10vw, 130px);
  align-items: end;
}

.number-final-offer p {
  color: #c6d0ca;
}

.number-final-offer ul {
  margin-top: 24px;
}

.number-final-offer li {
  max-width: 600px;
  border-color: rgba(255, 253, 248, 0.17);
  color: #d2dbd4;
}

.number-offer-action {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(145, 185, 207, 0.58);
}

.number-offer-action > span {
  color: var(--rf-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.number-offer-action > strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.98;
}

@media (max-width: 900px) {
  .number-hero-grid,
  .number-problem-grid,
  .number-report-grid,
  .number-faq-grid,
  .number-offer-panel {
    grid-template-columns: 1fr;
  }

  .number-hero-art,
  .number-report-preview {
    max-width: 650px;
  }

  .number-outcome-grid,
  .number-difference-grid,
  .number-delivery-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-outcome-grid article:nth-child(2),
  .number-difference-grid article:nth-child(2),
  .number-delivery-steps li:nth-child(2) {
    border-right: 0;
  }

  .number-difference-grid article:last-child,
  .number-delivery-steps li:last-child {
    border-top: 1px solid var(--rf-line);
  }
}

@media (max-width: 560px) {
  .number-hero-copy h1 {
    font-size: 53px;
  }

  .number-trust-strip .rf-container,
  .number-outcome-grid,
  .number-difference-grid,
  .number-delivery-steps {
    grid-template-columns: 1fr;
  }

  .number-trust-strip span,
  .number-trust-strip span:first-child {
    min-height: 58px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rf-line);
  }

  .number-trust-strip span:last-child {
    border-bottom: 0;
  }

  .number-outcome-grid article,
  .number-outcome-grid article:first-child,
  .number-difference-grid article,
  .number-difference-grid article:first-child,
  .number-delivery-steps li,
  .number-delivery-steps li:first-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rf-line);
  }

  .number-outcome-grid article > span,
  .number-difference-grid b,
  .number-delivery-steps li > span {
    margin-bottom: 28px;
  }

  .number-report-preview {
    min-height: 535px;
    padding: 18px;
  }

  .number-report-core {
    gap: 5px;
    margin-top: 34px;
  }

  .number-report-core > div {
    min-height: 125px;
    padding: 12px 5px;
  }

  .number-report-core strong {
    font-size: 46px;
  }

  .number-report-core small,
  .number-report-core span {
    font-size: 7px;
  }

  .number-report-reading b {
    font-size: 25px;
  }

  .number-report-year {
    grid-template-columns: 1fr 45px;
  }

  .number-report-year > div {
    grid-column: 1 / -1;
  }

  .number-bonus-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .number-offer-action {
    padding: 22px;
  }
}

/* Year-Ahead conversion page. */
.year-sales-page {
  background: var(--rf-paper);
}

.year-conversion-hero {
  padding: clamp(72px, 9vw, 126px) 0 clamp(84px, 10vw, 142px);
  overflow: hidden;
  background: #121817;
  color: var(--rf-white);
}

.year-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 9vw, 126px);
}

.year-hero-copy h1,
.year-problem h2,
.year-outcomes h2,
.year-report-section h2,
.year-difference h2,
.year-delivery h2,
.year-faq h2,
.year-final-offer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.year-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.91;
}

.year-hero-copy .rf-eyebrow {
  color: var(--rf-yellow);
}

.year-hero-copy .rf-lede {
  max-width: 690px;
  margin-top: 28px;
}

.year-hero-art .rf-art {
  transform: rotate(-2deg);
}

.year-trust-strip {
  border-bottom: 1px solid var(--rf-line);
  background: var(--rf-white);
}

.year-trust-strip .rf-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.year-trust-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px 24px;
  border-right: 1px solid var(--rf-line);
  color: var(--rf-muted);
  font-size: 13px;
  font-weight: 800;
}

.year-trust-strip span:first-child {
  padding-left: 0;
}

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

.year-trust-strip b {
  color: #9b7624;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.year-problem {
  background: var(--rf-white);
}

.year-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

.year-problem h2,
.year-outcomes h2,
.year-report-section h2,
.year-difference h2,
.year-delivery h2,
.year-faq h2,
.year-final-offer h2 {
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 0.94;
}

.year-problem-grid > div:first-child > p:last-child,
.year-report-grid > div:last-child > p,
.year-final-offer p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--rf-muted);
  font-size: 17px;
}

.year-situation-list {
  padding-top: 3px;
  border-top: 1px solid var(--rf-line);
}

.year-situation-list > p {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--rf-line);
  font-family: var(--serif);
  font-size: 25px;
}

.year-situation-list ul,
.year-report-grid ul,
.year-final-offer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.year-situation-list li,
.year-report-grid li,
.year-final-offer li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--rf-line);
  color: var(--rf-muted);
}

.year-situation-list li::before,
.year-report-grid li::before,
.year-final-offer li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #9b7624;
  content: "";
}

.year-outcomes {
  background: #ece7d9;
}

.year-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rf-line);
}

.year-outcome-grid article {
  min-height: 290px;
  padding: 28px 25px 32px;
  border-right: 1px solid var(--rf-line);
}

.year-outcome-grid article:first-child {
  padding-left: 0;
}

.year-outcome-grid article:last-child {
  border-right: 0;
}

.year-outcome-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: #9b7624;
  font-size: 12px;
  font-weight: 900;
}

.year-outcome-grid h3,
.year-difference-grid h3,
.year-delivery-steps h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 0.98;
}

.year-outcome-grid p,
.year-difference-grid p,
.year-delivery-steps p {
  margin: 0;
  color: var(--rf-muted);
  font-size: 14px;
}

.year-report-section {
  background: #192120;
  color: var(--rf-white);
}

.year-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.year-report-grid .rf-eyebrow {
  color: var(--rf-yellow);
}

.year-report-grid > div:last-child > p {
  color: #c6d0ca;
}

.year-report-grid ul {
  margin: 28px 0;
}

.year-report-grid li {
  border-color: rgba(255, 253, 248, 0.17);
  color: #d2dbd4;
}

.year-report-grid .rf-link {
  color: var(--rf-yellow);
}

.year-report-preview {
  min-height: 530px;
  padding: 30px;
  border: 1px solid rgba(229, 197, 122, 0.75);
  background: #202927;
  box-shadow: 16px 16px 0 rgba(229, 197, 122, 0.1);
}

.year-report-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #c9d3ca;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.year-report-arc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-top: 1px solid rgba(255, 253, 248, 0.25);
  border-bottom: 1px solid rgba(255, 253, 248, 0.25);
}

.year-report-arc > div {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 253, 248, 0.18);
}

.year-report-arc > div:first-child {
  padding-left: 0;
}

.year-report-arc > div:last-child {
  border-right: 0;
}

.year-report-arc small,
.year-report-arc span,
.year-report-window > span {
  color: #b8c4bb;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.year-report-arc strong {
  margin: auto 0 16px;
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.year-report-arc > div:nth-child(1) strong { color: var(--rf-blue); }
.year-report-arc > div:nth-child(2) strong { color: var(--rf-yellow); }
.year-report-arc > div:nth-child(3) strong { color: var(--rf-coral); }
.year-report-arc > div:nth-child(4) strong { color: var(--rf-lime); }

.year-report-window {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.year-report-window b {
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.year-report-window p {
  max-width: 470px;
  margin: 0;
  color: #c6d0ca;
  font-size: 12px;
}

.year-report-track {
  position: relative;
  height: 1px;
  margin-top: 48px;
  background: rgba(255, 253, 248, 0.36);
}

.year-report-track i {
  position: absolute;
  top: -5px;
  left: var(--year-point);
  width: 11px;
  height: 11px;
  border: 2px solid #202927;
  border-radius: 50%;
  background: var(--rf-yellow);
  box-shadow: 0 0 0 1px var(--rf-yellow);
}

.year-report-track i:nth-child(2) { background: var(--rf-blue); box-shadow: 0 0 0 1px var(--rf-blue); }
.year-report-track i:nth-child(3) { background: var(--rf-coral); box-shadow: 0 0 0 1px var(--rf-coral); }
.year-report-track i:nth-child(4) { background: var(--rf-lime); box-shadow: 0 0 0 1px var(--rf-lime); }

.year-bonus-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 44px;
  padding: 26px 0;
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}

.year-bonus-row span {
  color: #9b7624;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.year-bonus-row p {
  margin: 0;
  color: var(--rf-muted);
}

.year-difference {
  background: var(--rf-white);
}

.year-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rf-line);
}

.year-difference-grid article {
  min-height: 290px;
  padding: 30px 28px;
  border-right: 1px solid var(--rf-line);
}

.year-difference-grid article:first-child {
  padding-left: 0;
}

.year-difference-grid article:last-child {
  border-right: 0;
}

.year-difference-grid b {
  display: block;
  margin-bottom: 65px;
  color: #7b8468;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.year-reader-proof {
  background: var(--rf-paper);
}

.year-delivery {
  background: #ece7d9;
}

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

.year-delivery-steps li {
  min-height: 300px;
  padding: 30px 28px;
  border-right: 1px solid var(--rf-line);
}

.year-delivery-steps li:first-child {
  padding-left: 0;
}

.year-delivery-steps li:last-child {
  border-right: 0;
}

.year-delivery-steps li > span {
  display: block;
  margin-bottom: 72px;
  color: #9b7624;
  font-size: 12px;
  font-weight: 900;
}

.year-faq {
  background: var(--rf-white);
}

.year-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

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

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

.year-faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
  list-style: none;
}

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

.year-faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: #9b7624;
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
}

.year-faq-list details[open] summary::after {
  content: "-";
}

.year-faq-list details p {
  max-width: 640px;
  margin: -4px 0 22px;
  color: var(--rf-muted);
}

.year-final-offer {
  background: #121817;
  color: var(--rf-white);
}

.year-final-offer .rf-eyebrow {
  color: var(--rf-yellow);
}

.year-offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(65px, 10vw, 130px);
  align-items: end;
}

.year-final-offer p {
  color: #c6d0ca;
}

.year-final-offer ul {
  margin-top: 24px;
}

.year-final-offer li {
  max-width: 600px;
  border-color: rgba(255, 253, 248, 0.17);
  color: #d2dbd4;
}

.year-offer-action {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(229, 197, 122, 0.55);
}

.year-offer-action > span {
  color: var(--rf-yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.year-offer-action > strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.98;
}

@media (max-width: 900px) {
  .year-hero-grid,
  .year-problem-grid,
  .year-report-grid,
  .year-faq-grid,
  .year-offer-panel {
    grid-template-columns: 1fr;
  }

  .year-hero-art,
  .year-report-preview {
    max-width: 650px;
  }

  .year-outcome-grid,
  .year-difference-grid,
  .year-delivery-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .year-outcome-grid article:nth-child(2),
  .year-difference-grid article:nth-child(2),
  .year-delivery-steps li:nth-child(2) {
    border-right: 0;
  }

  .year-difference-grid article:last-child,
  .year-delivery-steps li:last-child {
    border-top: 1px solid var(--rf-line);
  }
}

@media (max-width: 560px) {
  .year-hero-copy h1 {
    font-size: 53px;
  }

  .year-trust-strip .rf-container,
  .year-outcome-grid,
  .year-difference-grid,
  .year-delivery-steps {
    grid-template-columns: 1fr;
  }

  .year-trust-strip span,
  .year-trust-strip span:first-child {
    min-height: 58px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rf-line);
  }

  .year-trust-strip span:last-child {
    border-bottom: 0;
  }

  .year-outcome-grid article,
  .year-outcome-grid article:first-child,
  .year-difference-grid article,
  .year-difference-grid article:first-child,
  .year-delivery-steps li,
  .year-delivery-steps li:first-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rf-line);
  }

  .year-outcome-grid article > span,
  .year-difference-grid b,
  .year-delivery-steps li > span {
    margin-bottom: 28px;
  }

  .year-report-preview {
    min-height: 520px;
    padding: 18px;
  }

  .year-report-arc {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }

  .year-report-arc > div {
    min-height: 120px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  }

  .year-report-arc > div:nth-child(2) {
    border-right: 0;
  }

  .year-report-arc > div:nth-child(3) {
    padding-left: 0;
  }

  .year-report-arc strong {
    margin-top: 24px;
  }

  .year-report-window b {
    font-size: 26px;
  }

  .year-bonus-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .year-offer-action {
    padding: 22px;
  }
}

/* Love and Compatibility conversion page. */
.love-sales-page {
  background: var(--rf-paper);
}

.love-conversion-hero {
  padding: clamp(72px, 9vw, 126px) 0 clamp(84px, 10vw, 142px);
  overflow: hidden;
  background: var(--rf-ink);
  color: var(--rf-white);
}

.love-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 9vw, 126px);
}

.love-hero-copy h1,
.love-problem h2,
.love-outcomes h2,
.love-report-section h2,
.love-difference h2,
.love-delivery h2,
.love-faq h2,
.love-final-offer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.love-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.91;
}

.love-hero-copy .rf-lede {
  max-width: 690px;
  margin-top: 28px;
}

.love-hero-art .rf-art {
  transform: rotate(2deg);
}

.love-trust-strip {
  border-bottom: 1px solid var(--rf-line);
  background: var(--rf-white);
}

.love-trust-strip .rf-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.love-trust-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px 24px;
  border-right: 1px solid var(--rf-line);
  color: var(--rf-muted);
  font-size: 13px;
  font-weight: 800;
}

.love-trust-strip span:first-child {
  padding-left: 0;
}

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

.love-trust-strip b {
  color: var(--rf-coral);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.love-problem {
  background: var(--rf-white);
}

.love-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

.love-problem h2,
.love-outcomes h2,
.love-report-section h2,
.love-difference h2,
.love-delivery h2,
.love-faq h2,
.love-final-offer h2 {
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 0.94;
}

.love-problem-grid > div:first-child > p:last-child,
.love-report-grid > div:last-child > p,
.love-final-offer p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--rf-muted);
  font-size: 17px;
}

.love-situation-list {
  padding-top: 3px;
  border-top: 1px solid var(--rf-line);
}

.love-situation-list > p {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--rf-line);
  color: var(--rf-ink);
  font-family: var(--serif);
  font-size: 25px;
}

.love-situation-list ul,
.love-report-grid ul,
.love-final-offer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.love-situation-list li,
.love-report-grid li,
.love-final-offer li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--rf-line);
  color: var(--rf-muted);
}

.love-situation-list li::before,
.love-report-grid li::before,
.love-final-offer li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--rf-coral);
  content: "";
}

.love-outcomes {
  background: var(--rf-paper-2);
}

.love-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rf-line);
}

.love-outcome-grid article {
  min-height: 290px;
  padding: 28px 25px 32px;
  border-right: 1px solid var(--rf-line);
}

.love-outcome-grid article:first-child {
  padding-left: 0;
}

.love-outcome-grid article:last-child {
  border-right: 0;
}

.love-outcome-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--rf-coral);
  font-size: 12px;
  font-weight: 900;
}

.love-outcome-grid h3,
.love-difference-grid h3,
.love-delivery-steps h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 0.98;
}

.love-outcome-grid p,
.love-difference-grid p,
.love-delivery-steps p {
  margin: 0;
  color: var(--rf-muted);
  font-size: 14px;
}

.love-report-section {
  background: var(--rf-ink-2);
  color: var(--rf-white);
}

.love-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.love-report-grid .rf-eyebrow {
  color: var(--rf-coral);
}

.love-report-grid > div:last-child > p {
  color: #c6d0ca;
}

.love-report-grid ul {
  margin: 28px 0 28px;
}

.love-report-grid li {
  border-color: rgba(255, 253, 248, 0.17);
  color: #d2dbd4;
}

.love-report-grid .rf-link {
  color: var(--rf-lime);
}

.love-report-preview {
  position: relative;
  min-height: 560px;
}

.love-report-page {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  background: #172020;
  box-shadow: 14px 14px 0 rgba(255, 253, 248, 0.06);
}

.love-report-page small,
.love-report-page > span,
.love-report-front > div {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.love-report-page strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.95;
}

.love-report-page > span {
  margin-top: 18px;
  color: #b9c6bd;
}

.love-report-back {
  width: 58%;
  height: 360px;
  top: 18px;
  left: 2%;
  border-color: rgba(229, 197, 122, 0.58);
  transform: rotate(-7deg);
}

.love-report-middle {
  width: 58%;
  height: 390px;
  top: 72px;
  right: 1%;
  border-color: rgba(183, 212, 164, 0.58);
  transform: rotate(6deg);
}

.love-report-front {
  width: 68%;
  min-height: 430px;
  left: 16%;
  bottom: 10px;
  justify-content: flex-start;
  border-color: rgba(233, 135, 112, 0.9);
  background: #202828;
}

.love-report-front > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #c7d1c9;
}

.love-report-front h3 {
  max-width: 340px;
  margin: 70px 0 18px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 0.92;
}

.love-report-front p {
  max-width: 360px;
  margin: 0;
  color: #c6d0ca;
  font-size: 13px;
}

.love-report-signals {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--rf-yellow);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.love-report-signals i {
  height: 1px;
  background: var(--rf-coral);
}

.love-bonus-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 44px;
  padding: 26px 0;
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}

.love-bonus-row span {
  color: var(--rf-coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.love-bonus-row p {
  margin: 0;
  color: var(--rf-muted);
}

.love-difference {
  background: var(--rf-white);
}

.love-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rf-line);
}

.love-difference-grid article {
  min-height: 290px;
  padding: 30px 28px;
  border-right: 1px solid var(--rf-line);
}

.love-difference-grid article:first-child {
  padding-left: 0;
}

.love-difference-grid article:last-child {
  border-right: 0;
}

.love-difference-grid b {
  display: block;
  margin-bottom: 65px;
  color: #6c826b;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.love-reader-proof {
  background: var(--rf-paper);
}

.love-delivery {
  background: var(--rf-paper-2);
}

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

.love-delivery-steps li {
  min-height: 300px;
  padding: 30px 28px;
  border-right: 1px solid var(--rf-line);
}

.love-delivery-steps li:first-child {
  padding-left: 0;
}

.love-delivery-steps li:last-child {
  border-right: 0;
}

.love-delivery-steps li > span {
  display: block;
  margin-bottom: 72px;
  color: var(--rf-coral);
  font-size: 12px;
  font-weight: 900;
}

.love-faq {
  background: var(--rf-white);
}

.love-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

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

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

.love-faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
  list-style: none;
}

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

.love-faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--rf-coral);
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
}

.love-faq-list details[open] summary::after {
  content: "-";
}

.love-faq-list details p {
  max-width: 640px;
  margin: -4px 0 22px;
  color: var(--rf-muted);
}

.love-final-offer {
  background: var(--rf-ink);
  color: var(--rf-white);
}

.love-final-offer .rf-eyebrow {
  color: var(--rf-coral);
}

.love-offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(65px, 10vw, 130px);
  align-items: end;
}

.love-final-offer p {
  color: #c6d0ca;
}

.love-final-offer ul {
  margin-top: 24px;
}

.love-final-offer li {
  max-width: 600px;
  border-color: rgba(255, 253, 248, 0.17);
  color: #d2dbd4;
}

.love-offer-action {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.38);
}

.love-offer-action > span {
  color: var(--rf-yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.love-offer-action > strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.98;
}

@media (max-width: 900px) {
  .love-hero-grid,
  .love-problem-grid,
  .love-report-grid,
  .love-faq-grid,
  .love-offer-panel {
    grid-template-columns: 1fr;
  }

  .love-hero-art,
  .love-report-preview {
    max-width: 650px;
  }

  .love-outcome-grid,
  .love-difference-grid,
  .love-delivery-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .love-outcome-grid article:nth-child(2),
  .love-difference-grid article:nth-child(2),
  .love-delivery-steps li:nth-child(2) {
    border-right: 0;
  }

  .love-difference-grid article:last-child,
  .love-delivery-steps li:last-child {
    border-top: 1px solid var(--rf-line);
  }
}

@media (max-width: 560px) {
  .love-hero-copy h1 {
    font-size: 53px;
  }

  .love-trust-strip .rf-container,
  .love-outcome-grid,
  .love-difference-grid,
  .love-delivery-steps {
    grid-template-columns: 1fr;
  }

  .love-trust-strip span,
  .love-trust-strip span:first-child {
    min-height: 58px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rf-line);
  }

  .love-trust-strip span:last-child {
    border-bottom: 0;
  }

  .love-outcome-grid article,
  .love-outcome-grid article:first-child,
  .love-difference-grid article,
  .love-difference-grid article:first-child,
  .love-delivery-steps li,
  .love-delivery-steps li:first-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rf-line);
  }

  .love-outcome-grid article > span,
  .love-difference-grid b,
  .love-delivery-steps li > span {
    margin-bottom: 28px;
  }

  .love-report-preview {
    min-height: 490px;
  }

  .love-report-back,
  .love-report-middle {
    width: 67%;
  }

  .love-report-front {
    width: 78%;
    left: 11%;
    min-height: 390px;
  }

  .love-report-front h3 {
    margin-top: 48px;
    font-size: 35px;
  }

  .love-bonus-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .love-offer-action {
    padding: 22px;
  }
}

/* Standalone reading storefront. Kept separate from the Astro Realm brand site UI. */
.reading-frontend {
  --rf-ink: #111516;
  --rf-ink-2: #1a2222;
  --rf-paper: #f4f0e7;
  --rf-paper-2: #e9e2d5;
  --rf-white: #fffdf8;
  --rf-muted: #64706e;
  --rf-line: #cfd1c8;
  --rf-coral: #e98770;
  --rf-lime: #b7d4a4;
  --rf-yellow: #e5c57a;
  --rf-blue: #91b9cf;
  background: var(--rf-paper);
  color: var(--rf-ink);
  font-family: var(--sans);
}

.reading-frontend .rf-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  background: var(--rf-ink);
  color: var(--rf-white);
}

.rf-brand,
.rf-header-link {
  color: inherit;
  text-decoration: none;
}

.rf-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.rf-brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--rf-yellow);
  color: var(--rf-yellow);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
}

.rf-header-link {
  color: #d8dfd6;
  font-size: 12px;
  font-weight: 800;
}

.rf-header-link span,
.rf-link span {
  margin-left: 6px;
}

.rf-container {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.rf-eyebrow {
  margin: 0 0 15px;
  color: #6c826b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rf-lede {
  max-width: 660px;
  color: #c6d0ca;
  font-size: 18px;
  line-height: 1.55;
}

.rf-catalog-hero,
.rf-product-hero {
  overflow: hidden;
  background: var(--rf-ink);
  color: var(--rf-white);
}

.rf-catalog-hero {
  padding: clamp(76px, 10vw, 140px) 0 clamp(80px, 10vw, 132px);
}

.rf-catalog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.rf-catalog-hero h1,
.rf-product-hero h1,
.rf-positioning h2,
.rf-section-intro h2,
.rf-final h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.rf-catalog-hero h1 {
  max-width: 800px;
  font-size: clamp(56px, 7.6vw, 104px);
  line-height: 0.94;
}

.rf-catalog-hero .rf-lede {
  margin-top: 28px;
}

.rf-catalog-mark {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(229, 197, 122, 0.7);
  color: var(--rf-yellow);
  transform: rotate(3deg);
}

.rf-catalog-mark::before,
.rf-catalog-mark::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(145, 185, 207, 0.48);
  border-radius: 50%;
  content: "";
}

.rf-catalog-mark::after {
  inset: 34%;
  border-color: rgba(233, 135, 112, 0.7);
}

.rf-catalog-mark span,
.rf-catalog-mark b {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.rf-catalog-mark b {
  margin-top: 68px;
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
  text-align: right;
}

.rf-catalog-mark i {
  position: absolute;
  right: 26%;
  bottom: 20%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--rf-ink);
  border-radius: 50%;
  background: var(--rf-coral);
  box-shadow: 0 0 0 1px var(--rf-coral);
}

.rf-section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.rf-catalog-section {
  background: var(--rf-paper);
}

.rf-section-intro {
  max-width: 700px;
  margin-bottom: 54px;
}

.rf-section-intro h2,
.rf-positioning h2,
.rf-final h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.96;
}

.rf-section-intro > p:last-child,
.rf-positioning-grid > p,
.rf-final-grid > div > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--rf-muted);
  font-size: 17px;
}

.rf-product-grid {
  display: grid;
  gap: 18px;
}

.rf-product-card {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
  border: 1px solid var(--rf-line);
  background: var(--rf-white);
}

.rf-product-card.rf-no-art {
  display: block;
}

.rf-product-card.rf-no-art .rf-product-copy {
  min-height: 300px;
}

.rf-product-art {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--rf-ink-2);
}

.rf-product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 52px;
}

.rf-product-copy h2 {
  max-width: 570px;
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.94;
}

.rf-product-copy > p:not(.rf-eyebrow) {
  max-width: 600px;
  margin: 0 0 22px;
  color: var(--rf-muted);
}

.rf-status {
  margin-bottom: 23px;
  padding: 7px 10px;
  border: 1px solid var(--rf-line);
  color: var(--rf-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rf-link {
  color: var(--rf-ink);
  font-size: 14px;
  font-weight: 900;
  text-underline-offset: 5px;
}

.rf-product-hero {
  padding: clamp(68px, 9vw, 126px) 0 clamp(80px, 10vw, 138px);
}

.rf-product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 9vw, 124px);
}

.rf-product-hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.92;
}

.rf-product-hero-copy .rf-lede {
  margin-top: 28px;
}

.rf-hero-offer-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 360px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.06);
}

.rf-hero-offer-panel strong {
  max-width: 460px;
  margin-top: 12px;
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: .94;
}

.rf-hero-offer-panel > span {
  margin-top: 22px;
  color: var(--rf-yellow);
  font-size: 18px;
  font-weight: 800;
}

.rf-hero-offer-panel > p:not(.rf-eyebrow) {
  max-width: 390px;
  margin: 14px 0 24px;
  color: rgba(255, 253, 248, .78);
}

.rf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.rf-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  border: 1px solid transparent;
  color: var(--rf-ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.rf-button-primary {
  background: var(--rf-lime);
}

.rf-button-primary:hover {
  background: #c9e2b9;
}

.rf-button-secondary {
  border-color: rgba(255, 253, 248, 0.45);
  color: var(--rf-white);
}

.rf-button-secondary:hover {
  border-color: var(--rf-white);
  background: rgba(255, 253, 248, 0.08);
}

.rf-proof-list {
  display: grid;
  gap: 11px;
  margin: 34px 0 0;
  padding: 0;
  color: #d8e0d8;
  font-size: 13px;
  list-style: none;
}

.rf-proof-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rf-proof-list li span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--rf-yellow);
  color: var(--rf-yellow);
  font-weight: 900;
}

.rf-positioning {
  background: var(--rf-white);
}

.rf-positioning-grid,
.rf-proof-grid,
.rf-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 84px;
}

.rf-positioning-grid > p {
  margin: 0;
}

.rf-included {
  background: var(--rf-paper-2);
}

.rf-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  border-top: 1px solid var(--rf-line);
}

.rf-content-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  min-height: 174px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rf-line);
}

.rf-content-item > span {
  color: var(--rf-coral);
  font-size: 13px;
  font-weight: 900;
}

.rf-content-item h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.rf-content-item p {
  max-width: 440px;
  margin: 0;
  color: var(--rf-muted);
}

.rf-proof {
  background: var(--rf-paper);
}

.rf-proof-grid blockquote {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.94;
}

.rf-proof-grid > div:first-child > span {
  display: block;
  max-width: 570px;
  color: var(--rf-muted);
}

.rf-proof-stack {
  display: grid;
  border-top: 1px solid var(--rf-line);
}

.rf-proof-stack > div {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rf-line);
}

.rf-proof-stack strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.rf-proof-stack span {
  color: var(--rf-muted);
  font-size: 14px;
}

.rf-final {
  background: var(--rf-ink);
  color: var(--rf-white);
}

.rf-final .rf-eyebrow {
  color: var(--rf-yellow);
}

.rf-final-grid > div > p:last-child {
  color: #c6d0ca;
}

.rf-final-side {
  display: grid;
  gap: 12px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 253, 248, 0.24);
}

.rf-final-side > span {
  color: var(--rf-yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.rf-final-side strong {
  max-width: 270px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.98;
}

.reading-frontend.rf-reading-birth-chart .rf-final {
  border-top: 1px solid var(--rf-line);
  background: var(--rf-white);
  color: var(--rf-ink);
}

.reading-frontend.rf-reading-birth-chart .rf-final .rf-eyebrow,
.reading-frontend.rf-reading-birth-chart .rf-final-side > span {
  color: #a85b45;
}

.reading-frontend.rf-reading-birth-chart .rf-final-grid > div > p:last-child {
  color: #4f5961;
}

.reading-frontend.rf-reading-birth-chart .rf-final-side {
  border-left-color: rgba(21, 18, 25, .18);
}

.reading-frontend.rf-reading-birth-chart .rf-final-side .rf-button-secondary {
  border-color: var(--rf-ink);
  color: var(--rf-ink);
}

.reading-frontend.rf-reading-birth-chart .rf-final-side .rf-button-secondary:hover {
  background: var(--rf-ink);
  color: var(--rf-white);
}

.rf-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 253, 248, 0.15);
  background: var(--rf-ink);
  color: #b4c0b7;
  font-size: 11px;
}

.rf-footer div {
  display: grid;
  gap: 5px;
}

.rf-footer strong {
  color: var(--rf-white);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.rf-footer span {
  color: #a7b2aa;
}

.rf-art {
  width: min(100%, 500px);
  min-height: 390px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  background: var(--rf-ink-2);
  box-shadow: 18px 18px 0 rgba(255, 253, 248, 0.08);
}

.rf-art-label,
.rf-art-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #c9d3ca;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rf-art-foot {
  align-items: baseline;
  margin-top: 20px;
  color: #c9d3ca;
}

.rf-art-foot strong {
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.rf-art-chart {
  border-color: rgba(145, 185, 207, 0.72);
}

.rf-chart-wheel {
  position: relative;
  width: min(80vw, 270px);
  aspect-ratio: 1;
  margin: 49px auto 0;
  border: 1px solid var(--rf-blue);
  border-radius: 50%;
}

.rf-chart-wheel::before,
.rf-chart-wheel::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(145, 185, 207, 0.75);
  border-radius: 50%;
  content: "";
}

.rf-chart-wheel::after {
  inset: 49% -9% auto;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(233, 135, 112, 0.8);
  transform: rotate(34deg);
}

.rf-chart-wheel i {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--rf-ink-2);
  border-radius: 50%;
  background: var(--rf-coral);
}

.rf-chart-wheel i:nth-child(1) { top: 13%; left: 52%; }
.rf-chart-wheel i:nth-child(2) { top: 55%; left: 15%; background: var(--rf-yellow); }
.rf-chart-wheel i:nth-child(3) { top: 72%; left: 66%; background: var(--rf-lime); }

.rf-chart-wheel b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.rf-art-love {
  border-color: rgba(233, 135, 112, 0.8);
}

.rf-love-orbit {
  position: relative;
  width: 270px;
  aspect-ratio: 1;
  margin: 35px auto 0;
  border: 1px solid rgba(233, 135, 112, 0.8);
  border-radius: 50%;
}

.rf-love-orbit::before,
.rf-love-orbit::after {
  position: absolute;
  inset: 19%;
  border: 1px solid rgba(229, 197, 122, 0.8);
  border-radius: 50%;
  content: "";
}

.rf-love-orbit::after {
  inset: 49% -14% auto;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(183, 212, 164, 0.75);
  transform: rotate(-38deg);
}

.rf-love-person {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 3px;
  justify-items: center;
}

.rf-love-person b {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--rf-white);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.rf-love-person span {
  font-size: 9px;
  letter-spacing: 0.12em;
}

.rf-love-a { top: 7%; left: 4%; }
.rf-love-b { right: 3%; bottom: 6%; }
.rf-love-a b { background: #3d2b38; }
.rf-love-b b { background: #2a3e3b; }

.rf-love-orbit > i {
  position: absolute;
  inset: 45% 0 auto;
  display: grid;
  place-items: center;
  color: var(--rf-yellow);
  font-family: var(--serif);
  font-size: 30px;
  font-style: normal;
}

.rf-art-year {
  border-color: rgba(229, 197, 122, 0.85);
}

.rf-art-number {
  border-color: rgba(145, 185, 207, 0.85);
}

.rf-number-core {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 56px;
}

.rf-number-core span {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 16px 8px;
  border: 1px solid rgba(145, 185, 207, 0.58);
  background: rgba(145, 185, 207, 0.08);
}

.rf-number-core small {
  color: #c9d3ca;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.rf-number-core strong {
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 57px;
  font-weight: 500;
  line-height: 0.8;
}

.rf-number-core span:nth-child(2) strong {
  color: var(--rf-yellow);
}

.rf-number-core span:nth-child(3) strong {
  color: var(--rf-lime);
}

.rf-number-cycle {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 7px;
  margin-top: 38px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 253, 248, 0.28);
}

.rf-number-cycle i {
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.45);
  border-radius: 50%;
}

.rf-number-cycle i.is-active {
  border-color: var(--rf-coral);
  background: var(--rf-coral);
  box-shadow: 0 0 0 4px rgba(233, 135, 112, 0.16);
}

.rf-year-line {
  display: grid;
  grid-template-columns: 54px 1fr 38px;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  color: #cad5c9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.rf-year-line + .rf-year-line {
  margin-top: 24px;
}

.rf-year-line i {
  position: relative;
  display: block;
  height: 14px;
  border: 1px solid rgba(255, 253, 248, 0.36);
}

.rf-year-line i::after {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: var(--rf-width);
  background: var(--rf-yellow);
  content: "";
}

.rf-year-line:nth-of-type(3) i::after { background: var(--rf-coral); }
.rf-year-line:nth-of-type(4) i::after { background: var(--rf-lime); }

.rf-year-note {
  display: grid;
  gap: 8px;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.28);
}

.rf-year-note strong {
  color: var(--rf-white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.rf-year-note span {
  color: #c9d3ca;
  font-size: 12px;
}

.rf-art-tarot {
  border-color: rgba(183, 212, 164, 0.78);
}

.rf-tarot-spread {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 290px;
  padding: 30px 0 18px;
}

.rf-tarot-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  border: 1px solid rgba(255, 253, 248, 0.68);
  text-align: center;
}

.rf-tarot-card strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.rf-tarot-card small,
.rf-tarot-card span {
  color: #c9d3ca;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rf-tarot-card i {
  display: grid;
  width: 55px;
  height: 65px;
  place-items: center;
  border: 1px solid var(--rf-yellow);
  color: var(--rf-yellow);
  font-size: 9px;
  font-style: normal;
}

.rf-tarot-back { background: #3d2b38; transform: translateY(16px); }
.rf-tarot-mid { background: #253a39; }
.rf-tarot-front { background: #3a3425; transform: translateY(-16px); }

.rf-art-tarot .rf-art-foot strong {
  color: var(--rf-lime);
}

@media (max-width: 820px) {
  .rf-catalog-grid,
  .rf-product-card,
  .rf-product-hero-grid,
  .rf-positioning-grid,
  .rf-proof-grid,
  .rf-final-grid {
    grid-template-columns: 1fr;
  }

  .rf-catalog-grid,
  .rf-product-hero-grid {
    gap: 54px;
  }

  .rf-catalog-mark {
    max-width: 430px;
  }

  .rf-content-grid {
    grid-template-columns: 1fr;
  }

  .rf-final-side {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 253, 248, 0.24);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .reading-frontend .rf-header {
    min-height: 64px;
  }

  .rf-brand {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .rf-header-link {
    font-size: 10px;
  }

  .rf-container {
    width: min(calc(100% - 36px), 1180px);
  }

  .rf-catalog-hero h1,
  .rf-product-hero h1 {
    font-size: 54px;
  }

  .rf-catalog-mark {
    min-height: 240px;
  }

  .rf-catalog-mark b {
    font-size: 44px;
  }

  .rf-product-art {
    min-height: 300px;
    padding: 18px;
  }

  .rf-product-copy {
    padding: 30px 24px 34px;
  }

  .rf-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rf-actions .rf-button {
    width: 100%;
  }

  .rf-art {
    min-height: 330px;
    padding: 16px;
    box-shadow: 10px 10px 0 rgba(255, 253, 248, 0.08);
  }

  .rf-chart-wheel,
  .rf-love-orbit {
    width: 220px;
  }

  .rf-number-core {
    gap: 5px;
    margin-top: 36px;
  }

  .rf-number-core span {
    padding: 12px 4px;
  }

  .rf-number-core strong {
    font-size: 43px;
  }

  .rf-tarot-spread {
    gap: 5px;
    min-height: 235px;
    padding: 22px 0 14px;
  }

  .rf-tarot-card {
    min-height: 175px;
    padding: 10px 4px;
  }

  .rf-tarot-card strong {
    font-size: 14px;
  }

  .rf-tarot-card i {
    width: 39px;
    height: 48px;
  }

  .rf-art-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .rf-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Isolated reading sales pages. These routes are previews until pricing and checkout are approved. */
.readings-catalog-hero,
.reading-sales-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.readings-catalog-hero {
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 88px 0 94px;
}

.readings-catalog-hero::after,
.reading-sales-hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -130px;
  bottom: -240px;
  border: 1px solid rgba(230, 189, 98, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(255, 255, 255, 0.035), 0 0 0 112px rgba(255, 255, 255, 0.025);
  content: "";
}

.readings-catalog-hero .shell,
.reading-sales-grid {
  position: relative;
  z-index: 1;
}

.readings-catalog-hero .page-title {
  max-width: 820px;
}

.readings-catalog-hero .lede {
  max-width: 700px;
  margin-top: 24px;
}

.readings-catalog {
  background: var(--paper-2);
}

.reading-catalog-grid {
  display: grid;
  gap: 22px;
}

.reading-catalog-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.74fr) minmax(0, 1.26fr);
  min-height: 330px;
  border: 1px solid var(--line);
  background: var(--white);
}

.reading-catalog-art {
  display: grid;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.reading-catalog-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.reading-catalog-card:nth-child(2) .reading-catalog-art {
  background: #2b1c2b;
}

.reading-catalog-card:nth-child(3) .reading-catalog-art {
  background: #242016;
}

.reading-catalog-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 48px;
}

.reading-catalog-copy h2 {
  max-width: 530px;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.98;
}

.reading-catalog-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 22px;
  color: var(--muted);
}

.reading-status {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reading-sales-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 74px 0 84px;
}

.reading-sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
}

.reading-sales-copy .display {
  max-width: 690px;
  font-size: clamp(54px, 6vw, 92px);
}

.reading-sales-copy .lede {
  max-width: 625px;
  margin-top: 28px;
}

.reading-sales-copy .hero-actions {
  margin-top: 32px;
}

.reading-sales-copy .micro-proof {
  display: grid;
  gap: 10px;
  max-width: 510px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
  color: #d8d0dc;
  font-size: 13px;
}

.reading-sales-copy .micro-proof li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reading-sales-copy .micro-proof li span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #e6bd62;
  border-radius: 50%;
  color: #e6bd62;
  font-weight: 900;
}

.reading-sales-art {
  min-width: 0;
}

.reading-screen-wrap {
  position: relative;
  width: min(100%, 530px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 24px 24px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(2deg);
}

.reading-screen-wrap--rose {
  box-shadow: 24px 24px 0 rgba(204, 77, 112, 0.28);
}

.reading-screen-wrap--gold {
  box-shadow: 24px 24px 0 rgba(189, 140, 37, 0.28);
}

.reading-screen-label,
.tarot-visual-top,
.tarot-visual-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #e8e0ec;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reading-screen-wrap img {
  width: 100%;
  margin-top: 14px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  background: var(--paper);
}

.reading-screen-caption {
  padding: 13px 2px 1px;
  color: #c6bbc9;
  font-size: 12px;
}

.tarot-visual {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 24px;
  border: 1px solid rgba(230, 189, 98, 0.48);
  background: #211a2d;
  box-shadow: 24px 24px 0 rgba(113, 61, 192, 0.3);
  transform: rotate(-2deg);
}

.tarot-spread {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 380px;
  padding: 34px 0 30px;
}

.tarot-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px;
  border: 1px solid rgba(246, 230, 184, 0.75);
  text-align: center;
}

.tarot-card strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.tarot-card small,
.tarot-card span {
  color: #dacdb1;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tarot-card i {
  display: grid;
  width: 74px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(230, 189, 98, 0.75);
  color: #e6bd62;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.tarot-card-back {
  justify-content: center;
  gap: 14px;
  border-color: rgba(204, 77, 112, 0.85);
  background: #3c2138;
  color: #f2d4e2;
  transform: translateY(20px);
}

.tarot-card-back span {
  color: #f2d4e2;
}

.tarot-card-mid {
  background: #30233c;
}

.tarot-card-front {
  background: #2d2937;
  transform: translateY(-20px);
}

.tarot-visual-foot {
  align-items: baseline;
  color: #dacdb1;
}

.tarot-visual-foot strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.reading-intro {
  background: var(--white);
}

.reading-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 84px;
  align-items: end;
}

.reading-intro .section-title {
  max-width: 640px;
}

.reading-intro .section-copy {
  max-width: 610px;
  margin: 0;
}

.reading-included {
  background: var(--paper);
}

.reading-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  border-top: 1px solid var(--line);
}

.reading-content-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 178px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.reading-content-item > span {
  color: var(--violet-dark);
  font-size: 13px;
  font-weight: 900;
}

.reading-content-item h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.reading-content-item p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.reading-proof {
  background: var(--paper-2);
}

.reading-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 76px;
  align-items: center;
}

.reading-proof-statement blockquote {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 0.98;
}

.reading-proof-statement > span {
  display: block;
  max-width: 570px;
  color: var(--muted);
}

.reading-proof-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.reading-proof-list > div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.reading-proof-list strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.reading-proof-list span {
  color: var(--muted);
  font-size: 14px;
}

.reading-delivery {
  background: var(--ink);
  color: var(--white);
}

.reading-delivery .section-title {
  color: var(--white);
}

.reading-delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.62fr);
  gap: 80px;
  align-items: end;
}

.reading-delivery .section-copy {
  max-width: 600px;
  color: #c7becb;
}

.reading-delivery-side {
  display: grid;
  gap: 12px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.reading-delivery-side > span {
  color: #e6bd62;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reading-delivery-side strong {
  max-width: 260px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 820px) {
  .reading-catalog-card,
  .reading-sales-grid,
  .reading-intro-grid,
  .reading-proof-grid,
  .reading-delivery-panel {
    grid-template-columns: 1fr;
  }

  .reading-sales-grid {
    gap: 54px;
  }

  .reading-sales-art {
    max-width: 620px;
  }

  .reading-intro-grid,
  .reading-proof-grid,
  .reading-delivery-panel {
    gap: 38px;
  }

  .reading-content-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reading-delivery-side {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .readings-catalog-hero {
    min-height: 440px;
    padding: 58px 0 70px;
  }

  .reading-catalog-art {
    min-height: 260px;
  }

  .reading-catalog-copy {
    padding: 30px 24px 34px;
  }

  .reading-sales-hero {
    min-height: auto;
    padding: 58px 0 76px;
  }

  .reading-sales-copy .display {
    font-size: 49px;
  }

  .reading-sales-copy .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .reading-sales-copy .hero-actions .button {
    width: 100%;
  }

  .reading-screen-wrap,
  .tarot-visual {
    box-shadow: 12px 12px 0 rgba(113, 61, 192, 0.25);
  }

  .tarot-visual {
    padding: 16px;
  }

  .tarot-spread {
    gap: 6px;
    min-height: 270px;
    padding: 22px 0;
  }

  .tarot-card {
    min-height: 205px;
    padding: 12px 6px;
  }

  .tarot-card strong {
    font-size: 16px;
  }

  .tarot-card i {
    width: 46px;
    height: 56px;
    font-size: 9px;
  }

  .tarot-card span {
    font-size: 8px;
  }

  .tarot-visual-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 790px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 72px;
  }

  .hero-copy {
    width: 100%;
    max-width: 610px;
  }

  .display {
    font-size: 64px;
  }

  .lede {
    max-width: 560px;
    font-size: 18px;
  }

  .hero-visual {
    inset: 400px 0 0 18%;
    opacity: 0.56;
  }

  .hero-screen.one {
    right: 24%;
  }

  .proof-list {
    grid-template-columns: 1fr 1fr;
    padding-block: 14px;
  }

  .proof-list li,
  .proof-list li:first-child {
    padding: 13px;
    border-right: 0;
  }

  .section {
    padding-block: 84px;
  }

  .section-title {
    font-size: 48px;
  }

  .product-story,
  .product-story.reverse {
    grid-template-columns: 1fr;
  }

  .product-story.reverse .product-media {
    order: 0;
  }

  .realm-visual {
    min-height: 560px;
  }

  .metric-band {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .launch-grid,
  .support-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    order: -1;
  }

  .page-title {
    font-size: 64px;
  }

  .page-hero-orbit {
    right: -8%;
    max-width: 300px;
    opacity: 0.34;
  }

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

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .mobile-menu {
    top: 68px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-block: 58px 82px;
  }

  .display {
    font-size: 48px;
    line-height: 1;
  }

  .lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button.ghost.light {
    background: var(--ink);
  }

  .hero-visual {
    inset: 430px -120px 0 8%;
  }

  .hero-screen {
    width: 245px;
  }

  .hero-screen.one {
    top: 45px;
    right: 32%;
  }

  .hero-screen.two {
    top: 78px;
    right: 4%;
  }

  .hero-screen.three {
    display: none;
  }

  .proof-list,
  .outcome-grid,
  .feature-grid,
  .article-grid,
  .trust-grid,
  .partner-grid,
  .price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 68px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-title,
  .page-title {
    font-size: 43px;
  }

  .section-copy,
  .feature-copy {
    font-size: 16px;
  }

  .feature-title {
    font-size: 40px;
  }

  .realm-visual {
    min-height: 500px;
    padding: 22px;
  }

  .visual-topline {
    gap: 10px;
  }

  .forecast-signal {
    padding-block: 42px 32px;
  }

  .forecast-signal strong {
    font-size: 43px;
  }

  .transit-track {
    gap: 8px;
  }

  .chart-wheel {
    max-width: 94%;
  }

  .visual-ask > strong {
    font-size: 35px;
  }

  .profile-core {
    margin-inline: -22px;
  }

  .profile-core > div {
    min-height: 190px;
    padding: 12px 8px;
  }

  .profile-core strong {
    font-size: 24px;
  }

  .profile-depth {
    gap: 7px;
  }

  .compat-map {
    min-height: 240px;
  }

  .person {
    width: 170px;
    top: 24px;
  }

  .person b {
    font-size: 44px;
  }

  .c-one { top: 64px; }
  .c-two { top: 111px; }
  .c-three { top: 158px; }

  .timing-row {
    grid-template-columns: 52px 1fr;
    gap: 10px;
  }

  .timing-row p {
    grid-column: 2;
  }

  .system-compare {
    margin-inline: -22px;
  }

  .system-compare > div {
    min-height: 310px;
    padding: 24px 14px;
  }

  .system-compare strong {
    font-size: 27px;
  }

  .number-core {
    gap: 7px;
  }

  .number-core > span {
    min-height: 150px;
  }

  .number-core strong {
    font-size: 54px;
  }

  .outcome-index,
  .feature-index {
    margin-bottom: 40px;
  }

  .metric {
    padding: 30px 18px;
  }

  .launch-grid {
    gap: 38px;
  }

  .launch-form,
  .support-form,
  .price-card {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero-inner {
    padding-block: 72px;
  }

  .page-hero-orbit {
    right: -30%;
    width: 280px;
    max-width: none;
  }

  .article-body h2 {
    font-size: 34px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-body table {
    display: block;
    overflow-x: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Public brand-site refinement: editorial, evidence-led, and intentionally calm. */
:root {
  --paper: #f4f1ec;
  --paper-2: #ebe6df;
  --white: #fffefa;
  --line: #d4cec6;
  --ink: #17131d;
  --shadow: 0 16px 38px rgba(26, 18, 34, 0.08);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  background: var(--ink);
  backdrop-filter: none;
}

.brand-mark,
.menu-button {
  border-radius: 6px;
}

.button {
  border-radius: 6px;
  box-shadow: none;
}

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

.hero.brand-hero {
  min-height: 690px;
  background: #1d1723;
}

.hero.brand-hero::before,
.hero.brand-hero::after,
.hero-visual::before,
.hero-visual::after {
  display: none;
}

.brand-hero .hero-inner {
  min-height: 690px;
  padding-block: 72px 94px;
}

.brand-hero .hero-copy {
  width: min(55%, 650px);
}

.brand-hero .display {
  max-width: 650px;
  font-size: clamp(58px, 6.5vw, 86px);
  letter-spacing: -0.035em;
}

.brand-hero .lede {
  max-width: 560px;
  color: #d8d1dc;
  font-size: 18px;
  line-height: 1.6;
}

.brand-hero .hero-visual {
  left: 48%;
}

.brand-hero .hero-screen {
  width: 286px;
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.brand-hero .hero-screen.one {
  top: 78px;
  right: 18%;
  transform: rotate(0deg);
}

.brand-hero .hero-screen.two {
  top: 132px;
  right: -3%;
  opacity: 0.52;
  transform: rotate(3deg);
}

.brand-hero .hero-screen.three {
  top: 190px;
  right: 39%;
  opacity: 0.34;
  transform: rotate(-3deg);
}

.proof-list {
  min-height: 84px;
}

.proof-list li {
  padding-inline: 20px;
}

.section {
  padding-block: 92px;
}

.section-title {
  max-width: 820px;
  font-size: clamp(48px, 5vw, 68px);
  letter-spacing: -0.025em;
}

.section-copy,
.feature-copy {
  line-height: 1.65;
}

.brand-method .section-head {
  max-width: 720px;
}

.brand-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}

.brand-step {
  min-height: 230px;
  padding: 28px 30px 28px 0;
  border-right: 1px solid var(--line);
}

.brand-step + .brand-step {
  padding-left: 30px;
}

.brand-step:last-child {
  border-right: 0;
}

.brand-step > span {
  display: block;
  margin-bottom: 52px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.brand-step p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 96px;
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 0.95fr);
}

.split-feature.reverse .split-feature-copy {
  grid-column: 2;
}

.split-feature.reverse .feature-panel {
  grid-column: 1;
  grid-row: 1;
}

.split-feature-copy {
  max-width: 600px;
}

.feature-title {
  font-size: clamp(42px, 4.5vw, 60px);
  letter-spacing: -0.025em;
}

.feature-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-panel .panel-kicker {
  margin: 0 0 26px;
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-panel > strong {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.feature-panel > span,
.feature-panel > small {
  color: var(--muted);
}

.feature-panel > span {
  font-size: 16px;
  font-weight: 700;
}

.feature-panel > p:last-child {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.panel-rule {
  width: 100%;
  height: 1px;
  margin: 14px 0 2px;
  background: var(--line);
}

.systems-panel {
  gap: 16px;
}

.systems-panel > div:not(.panel-rule) {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.systems-panel > div strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.systems-panel > div span {
  color: var(--muted);
  font-size: 13px;
}

.brand-methodology .trust-card {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
}

.brand-methodology .trust-card h3 {
  color: #ffffff;
}

.brand-methodology .trust-card p {
  color: #c9c0ce;
}

.price-card,
.outcome,
.feature-card,
.article-card,
.trust-card,
.partner-card {
  border-radius: 6px;
  box-shadow: none;
}

@media (max-width: 820px) {
  .hero.brand-hero,
  .brand-hero .hero-inner {
    min-height: 760px;
  }

  .brand-hero .hero-copy {
    width: 100%;
  }

  .brand-hero .hero-visual {
    left: 18%;
  }

  .brand-method-grid {
    grid-template-columns: 1fr;
  }

  .brand-step,
  .brand-step + .brand-step {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-step:last-child {
    border-bottom: 0;
  }

  .brand-step > span {
    margin-bottom: 22px;
  }

  .split-feature,
  .split-feature.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .split-feature.reverse .split-feature-copy,
  .split-feature.reverse .feature-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-panel {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .brand-hero .display {
    font-size: 48px;
  }

  .brand-hero .hero-visual {
    inset: 420px -100px 0 8%;
  }

  .brand-hero .hero-screen.one {
    top: 40px;
    right: 30%;
  }

  .brand-hero .hero-screen.two {
    top: 72px;
    right: 2%;
  }

  .brand-hero .hero-screen.three {
    display: block;
    top: 96px;
    right: 56%;
  }

  .feature-panel {
    min-height: 300px;
    padding: 28px;
  }

  .feature-panel > strong {
    font-size: 36px;
  }

  .systems-panel > div:not(.panel-rule) {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
