:root {
  --ink: #08182d;
  --ink-soft: #4c6076;
  --line: #d8e2ec;
  --paper: #f7fbff;
  --paper-blue: #edf6fd;
  --navy: #07182c;
  --navy-2: #0d2948;
  --blue: #1f7ac9;
  --blue-bright: #4a95d0;
  --green: #168b6a;
  --mint: #86e5b0;
  --coral: #d85048;
  --rose: #cc4265;
  --saffron: #d69b22;
  --gold: #f0cb85;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 43, 72, 0.12);
  --shadow-small: 0 8px 24px rgba(12, 43, 72, 0.1);
  --container: min(1180px, calc(100% - 48px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
.brand {
  font-family: "Manrope", "DM Sans", sans-serif;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: 1.04;
  font-weight: 800;
}

h3 {
  line-height: 1.2;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  color: var(--white);
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(247, 251, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(8, 24, 45, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(30, 122, 201, 0.28);
}

.brand > span > span {
  color: #5eb7f1;
}

.site-header.is-scrolled .brand > span > span,
body.menu-open .site-header .brand > span > span {
  color: var(--blue);
}

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

.desktop-nav a,
.expert-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.84;
}

.desktop-nav a::after,
.expert-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.expert-link:hover::after,
.expert-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a[aria-current="page"] {
  opacity: 1;
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button:focus-visible,
.menu-button:focus-visible,
.insight-tabs button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(74, 149, 208, 0.55);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.button-primary {
  color: var(--white);
  background: #1769ad;
  border-color: #4da1de;
  box-shadow: 0 12px 26px rgba(31, 122, 201, 0.27);
}

.button-primary:hover {
  background: #1769ad;
}

.button-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.site-header.is-scrolled .button-light,
body.menu-open .site-header .button-light {
  color: var(--white);
  background: var(--blue);
  box-shadow: none;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.menu-button {
  width: 44px;
  height: 44px;
  padding: 0 10px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 5px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(920px, 94svh);
  padding: calc(var(--header-height) + 78px) 24px 160px;
  display: grid;
  place-items: start center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #03111e;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media {
  background-image: url("assets/galaxy-hero.png");
  background-position: 50% 44%;
  background-size: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background: linear-gradient(180deg, rgba(3, 14, 27, 0.56) 0%, rgba(3, 14, 27, 0.24) 37%, rgba(3, 15, 28, 0.84) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(3, 15, 28, 0.95));
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(-0.4%, -0.3%, 0); }
  to { transform: scale(1.08) translate3d(0.4%, 0.3%, 0); }
}

.constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.constellation i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 3px;
  height: 3px;
  background: #c9eaff;
  box-shadow: 0 0 12px 4px rgba(167, 222, 255, 0.46);
  animation: twinkle 3.5s var(--d) ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.25); }
}

.hero-inner {
  width: min(840px, 100%);
  text-align: center;
}

.eyebrow {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.hero-eyebrow {
  color: #b8e4ff;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(4.25rem, 11vw, 9rem);
  line-height: 0.88;
  font-weight: 800;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

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

.hero-signals {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px 28px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-signals span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(134, 229, 176, 0.8);
}

.hero-signals b {
  color: var(--white);
}

.hero-product {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: min(740px, calc(100% - 48px));
  min-height: 100px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(4, 20, 37, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.hero-product-date {
  color: #a9c4d9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-product-reading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zodiac-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(74, 149, 208, 0.33);
  color: #e5f5ff;
  font-size: 1.5rem;
}

.hero-product-reading div {
  display: grid;
}

.hero-product-reading strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.hero-product-reading small {
  color: #9fb8ca;
}

.hero-product-live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c7e8dc;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-product-arrow {
  margin-left: 4px;
  font-size: 1.2rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ef625c;
  box-shadow: 0 0 0 5px rgba(239, 98, 92, 0.14);
}

.scroll-cue {
  position: absolute;
  right: 26px;
  bottom: 58px;
  width: 34px;
  height: 52px;
  display: grid;
  place-items: start center;
  padding-top: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
}

.scroll-cue span {
  width: 4px;
  height: 9px;
  border-radius: 3px;
  background: var(--white);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 0.9; }
  75%, 100% { transform: translateY(19px); opacity: 0; }
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-band div {
  min-height: 148px;
  padding: 34px clamp(24px, 4vw, 70px);
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.signal-band div:last-child {
  border-right: 0;
}

.signal-band strong {
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.signal-band span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-copy {
  max-width: 560px;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.inline-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
}

.inline-link span {
  transition: transform 160ms ease;
}

.inline-link:hover span {
  transform: translateX(5px);
}

.daily-section {
  background: var(--paper-blue);
}

.daily-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.day-console {
  border: 1px solid #c8ddeb;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.day-console-top {
  min-height: 300px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #0d3d6a, #2f8ecc);
}

.console-kicker {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.day-console-top h3 {
  margin: 12px 0;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.day-console-top p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.sign-token {
  width: 84px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.sign-token span {
  font-size: 2.1rem;
}

.sign-token small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.65rem;
  text-transform: uppercase;
}

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

.day-console-grid > div {
  min-height: 170px;
  padding: 26px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.day-console-grid > div:last-child {
  border-right: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 1.15rem;
}

.feature-blue { color: #0e5b95; background: #dceefa; }
.feature-coral { color: #a8342f; background: #fae4e2; }
.feature-green { color: #0d7155; background: #dff4eb; }

.day-console-grid strong {
  font-size: 0.92rem;
}

.day-console-grid small {
  color: var(--ink-soft);
}

.live-section {
  overflow: hidden;
  color: var(--white);
  background: #06101d;
}

.live-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("assets/galaxy-hero.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}

.live-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.section-copy-light .eyebrow {
  color: #79c6f4;
}

.section-copy-light > p:not(.eyebrow) {
  color: #a9bdcf;
}

.live-demo {
  min-height: 660px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(159, 197, 226, 0.23);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 57, 91, 0.54), rgba(2, 10, 18, 0.9));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.live-demo-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.expert-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.live-demo-top div:nth-child(2) {
  display: grid;
  line-height: 1.25;
}

.live-demo-top small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9db1c2;
}

.viewer-count {
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #c4d6e4;
  font-size: 0.76rem;
}

.live-demo-center {
  flex: 1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.live-demo-center img {
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(31, 122, 201, 0.4);
}

.live-demo-center p {
  max-width: 310px;
  color: #a9bdcf;
}

.live-chat-stack {
  display: grid;
  gap: 9px;
}

.live-chat-stack p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8f2f9;
  font-size: 0.84rem;
}

.live-chat-stack b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(74, 149, 208, 0.32);
}

.live-chat-stack span {
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
}

.live-composer {
  margin-top: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #7991a5;
  background: rgba(0, 0, 0, 0.24);
}

.live-composer b {
  color: var(--white);
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #dce8f1;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06271d;
  background: var(--mint);
  font-size: 0.74rem;
  font-weight: 900;
}

.guidance-section {
  background: var(--white);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 58px;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.guidance-item {
  position: relative;
  min-height: 340px;
  padding: clamp(32px, 5vw, 62px);
  overflow: hidden;
  background: var(--white);
}

.guidance-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.guidance-item:hover::after {
  transform: scaleX(1);
}

.guidance-astrology::after { background: var(--blue); }
.guidance-relationship::after { background: var(--rose); }
.guidance-wellness::after { background: var(--green); }
.guidance-puja::after { background: var(--saffron); }

.guidance-number {
  position: absolute;
  right: 28px;
  top: 24px;
  color: #afbcc8;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.guidance-symbol {
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 1.7rem;
}

.guidance-astrology .guidance-symbol { color: #0c639f; background: #ddecf7; }
.guidance-relationship .guidance-symbol { color: #9f304d; background: #f9e3ea; }
.guidance-wellness .guidance-symbol { color: #086b50; background: #dff3ec; }
.guidance-puja .guidance-symbol { color: #9d6c05; background: #f8eed7; }

.guidance-item h3 {
  margin-bottom: 12px;
  font-size: 1.62rem;
}

.guidance-item p {
  max-width: 440px;
  color: var(--ink-soft);
}

.guidance-item a {
  position: absolute;
  left: clamp(32px, 5vw, 62px);
  bottom: 42px;
  display: inline-flex;
  gap: 9px;
  color: var(--blue);
  font-weight: 700;
}

.connect-section {
  background: #eef3f6;
}

.connect-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.connection-rail {
  border-top: 1px solid #bccbd7;
}

.connection-step {
  min-height: 108px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  border-bottom: 1px solid #bccbd7;
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.connection-step:hover,
.connection-step.active {
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.connection-step > span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.connection-step div {
  display: grid;
}

.connection-step strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.connection-step small {
  color: var(--ink-soft);
}

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

.insight-experience {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.insight-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.insight-tabs button {
  min-height: 72px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.insight-tabs button:last-child {
  border-right: 0;
}

.insight-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--blue);
}

.insight-panel {
  min-height: 390px;
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  grid-template-columns: 220px 1fr 0.8fr;
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
}

.insight-panel[hidden] {
  display: none;
}

.insight-score {
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 14px solid #dae6ef;
  border-top-color: var(--green);
  border-right-color: var(--green);
  border-radius: 50%;
}

.insight-score span {
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.insight-score small {
  color: var(--green);
  font-weight: 700;
}

.insight-bars {
  display: grid;
  gap: 20px;
}

.insight-bars p {
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.insight-bars b {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #e4ebf1;
}

.insight-bars b::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  background: var(--blue);
}

.insight-copy strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.insight-copy p {
  color: var(--ink-soft);
}

.timeline-visual {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.timeline-visual span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid #bfd5e5;
  border-radius: 50%;
  background: #edf7ff;
  color: var(--blue);
  font-weight: 700;
}

.timeline-visual i {
  height: 2px;
  background: #bfd5e5;
}

.prediction-visual {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.prediction-visual span {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
}

.prediction-visual span:last-child {
  border-right: 0;
}

.prediction-visual b {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 2.6rem;
}

.trust-section {
  background: #e9f4f0;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.trust-list {
  border-top: 1px solid #acc9bd;
}

.trust-list article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  border-bottom: 1px solid #acc9bd;
}

.trust-list article > span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.trust-list h3 {
  margin: 0 0 5px;
  font-size: 1.08rem;
}

.trust-list p {
  margin: 0;
  color: var(--ink-soft);
}

.experts-section {
  overflow: hidden;
  color: var(--white);
  background: #07182c;
}

.experts-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.experts-layout > div:first-child p:not(.eyebrow) {
  max-width: 610px;
  color: #a9bdcf;
  font-size: 1.05rem;
}

.experts-layout > .button {
  width: max-content;
}

.expert-dashboard {
  grid-row: span 2;
  padding: 30px;
  border: 1px solid rgba(159, 197, 226, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.expert-dashboard-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.expert-dashboard-head small {
  margin-left: auto;
  color: var(--mint);
}

.expert-metric {
  margin: 34px 0;
  padding: 34px 0;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.expert-metric span,
.expert-metric small {
  color: #8fa6b9;
}

.expert-metric strong {
  margin: 5px 0;
  font-family: "Manrope", sans-serif;
  font-size: 2.3rem;
}

.expert-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.expert-actions span {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #c4d5e1;
  font-size: 0.78rem;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

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

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

.faq-list summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin-top: -8px;
  padding: 0 60px 28px 0;
  color: var(--ink-soft);
}

.download-section {
  position: relative;
  min-height: 650px;
  padding: 100px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #03111e;
}

.download-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.56;
  background-image: url("assets/galaxy-hero.png");
  background-size: cover;
  background-position: center;
}

.download-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 15, 28, 0.64);
}

.download-inner {
  max-width: 760px;
  text-align: center;
}

.download-inner > img {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 122, 201, 0.4);
}

.download-inner h2 {
  margin-bottom: 16px;
}

.download-inner > p:not(.eyebrow) {
  color: #b4c7d7;
  font-size: 1.05rem;
}

.download-actions {
  margin: 30px 0 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.download-inner > small {
  color: #849cb0;
}

.site-footer {
  padding: 70px 0 24px;
  color: #c1d0dc;
  background: #020b14;
}

.footer-main,
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
}

.footer-main {
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 10px;
  color: #7f98ac;
}

.footer-brand > a:last-child {
  color: #78bfea;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
}

.footer-column a {
  color: #8299ab;
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6d8497;
  font-size: 0.78rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (scripting: enabled) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
  }

  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shared legal and contact pages */
.page-shell {
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--paper);
}

.page-shell .site-header {
  background: rgba(247, 251, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(8, 24, 45, 0.1);
}

.page-shell .site-header .brand > span > span {
  color: var(--blue);
}

.page-shell .site-header .button-light {
  color: var(--white);
  background: var(--blue);
  box-shadow: none;
}

.page-hero {
  padding: 92px 0 70px;
  color: var(--white);
  background: #07182c;
}

.page-hero-inner,
.legal-layout,
.contact-layout {
  width: var(--container);
  margin: 0 auto;
}

.page-hero-inner {
  max-width: 1180px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: #a9bdcf;
  font-size: 1.08rem;
}

.legal-layout {
  padding: 70px 0 110px;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  align-self: start;
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.legal-nav a:hover {
  color: var(--blue);
}

.legal-copy section {
  margin-bottom: 52px;
}

.legal-copy h2 {
  margin-bottom: 16px;
  font-size: 1.72rem;
  line-height: 1.2;
}

.legal-copy h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.legal-copy p,
.legal-copy li,
.legal-copy dd {
  color: var(--ink-soft);
}

.legal-copy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 22px;
}

.legal-callout,
.legal-contact {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  background: #e9f4fc;
}

.legal-callout p,
.legal-contact p {
  margin-bottom: 0;
}

.legal-dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px 20px;
}

.legal-dl dt {
  font-weight: 700;
}

.legal-dl dd {
  margin: 0;
}

.contact-layout {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 120px);
}

.contact-methods {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-method {
  min-height: 132px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-method > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: #e1f0fa;
  font-size: 1.15rem;
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method small {
  color: var(--ink-soft);
}

.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 2.1rem;
}

.contact-card label {
  margin: 18px 0 7px;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid #bdccda;
  border-radius: 5px;
  background: #fbfdff;
  color: var(--ink);
}

.contact-card input,
.contact-card select {
  height: 50px;
  padding: 0 14px;
}

.contact-card textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-card .button {
  margin-top: 22px;
}

.form-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.status-message {
  margin-top: 16px;
  padding: 12px 14px;
  display: none;
  border-left: 4px solid var(--green);
  background: #e3f4ed;
  color: #075a42;
}

.status-message.visible {
  display: block;
}

.error-page {
  min-height: calc(100vh - var(--header-height));
  padding: 90px 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-page img {
  width: 88px;
  margin: 0 auto 24px;
  border-radius: 8px;
}

.error-page h1 {
  margin-bottom: 12px;
  font-size: clamp(3rem, 9vw, 7rem);
}

.error-page p {
  max-width: 520px;
  color: var(--ink-soft);
}

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 36px, 920px);
  }

  .desktop-nav,
  .expert-link {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 18px;
    display: grid;
    gap: 0;
    overflow: auto;
    color: var(--ink);
    background: rgba(247, 251, 255, 0.98);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 18px 40px rgba(7, 24, 44, 0.12);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--blue);
  }

  .daily-layout,
  .live-layout,
  .connect-layout,
  .trust-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 680px;
  }

  .live-demo {
    width: min(620px, 100%);
    min-height: 620px;
    margin: 0 auto;
  }

  .insight-panel {
    grid-template-columns: 190px 1fr;
  }

  .insight-copy {
    grid-column: span 2;
  }

  .timeline-visual,
  .prediction-visual {
    grid-column: span 2;
  }

  .experts-layout {
    grid-template-columns: 1fr;
  }

  .expert-dashboard {
    grid-row: auto;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100% - 28px);
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .header-actions .button-small {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding: calc(var(--header-height) + 62px) 14px 172px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: auto;
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .hero-signals {
    display: none;
  }

  .hero-product {
    bottom: 24px;
    width: calc(100% - 28px);
    min-height: 126px;
    grid-template-columns: 1fr auto;
    gap: 13px;
  }

  .hero-product-date {
    grid-column: span 2;
  }

  .hero-product-status {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .signal-band div {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .daily-layout,
  .live-layout,
  .connect-layout,
  .trust-layout,
  .faq-layout,
  .experts-layout {
    gap: 48px;
  }

  .day-console-top {
    min-height: 330px;
    padding: 30px 24px;
  }

  .day-console-top p {
    font-size: 0.93rem;
  }

  .sign-token {
    width: 66px;
    height: 76px;
  }

  .day-console-grid {
    grid-template-columns: 1fr;
  }

  .day-console-grid > div {
    min-height: 115px;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .day-console-grid > div:last-child {
    border-bottom: 0;
  }

  .day-console-grid .feature-icon {
    grid-row: span 2;
    margin: 0;
  }

  .live-demo {
    min-height: 610px;
    padding: 18px;
  }

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

  .guidance-item {
    min-height: 310px;
    padding: 34px 26px;
  }

  .guidance-item a {
    left: 26px;
    bottom: 34px;
  }

  .insight-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(2, minmax(145px, 1fr));
  }

  .insight-tabs button {
    min-height: 62px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .insight-panel {
    min-height: 520px;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .insight-score {
    width: 174px;
    height: 174px;
    margin: 0 auto;
  }

  .insight-copy,
  .timeline-visual,
  .prediction-visual {
    grid-column: auto;
  }

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

  .timeline-visual i {
    display: none;
  }

  .timeline-visual span {
    width: 66px;
    height: 66px;
    justify-self: center;
  }

  .prediction-visual span {
    min-height: 118px;
  }

  .prediction-visual b {
    font-size: 2rem;
  }

  .expert-actions {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 82px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-layout {
    padding: 50px 0 84px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .legal-nav {
    position: static;
  }

  .legal-dl {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .legal-dl dd {
    margin-bottom: 15px;
  }

  .contact-layout {
    padding: 60px 0 90px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100% - 22px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-product-reading small {
    display: none;
  }

  .hero-product-live {
    gap: 4px;
  }

  .day-console-top {
    grid-template-columns: 1fr;
  }

  .sign-token {
    display: none;
  }

  .live-demo-top strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .prediction-visual {
    grid-template-columns: 1fr;
  }

  .prediction-visual span {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .prediction-visual span:last-child {
    border-bottom: 0;
  }

  .download-actions {
    display: grid;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Multipage marketing experience --------------------------------------- */
.report-led-hero {
  padding-bottom: 56px;
}

.report-led-hero .hero-inner {
  width: min(1000px, 100%);
}

.report-led-hero h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.7rem, 8vw, 7.2rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.report-led-hero .hero-copy {
  width: min(780px, 100%);
}

.hero-brag {
  width: min(840px, 100%);
  margin: 18px auto 0;
  padding: 12px 18px;
  color: #c6d9e7;
  border: 1px solid rgba(184, 228, 255, 0.2);
  border-radius: 6px;
  background: rgba(5, 25, 43, 0.48);
  font-size: clamp(0.84rem, 1.25vw, 0.98rem);
  line-height: 1.5;
}

.hero-brag strong { color: #f0cb85; }

.report-led-hero .hero-product {
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.report-led-hero .hero-product:hover,
.report-led-hero .hero-product:focus-visible {
  transform: translate(-50%, -4px);
  border-color: rgba(184, 228, 255, 0.55);
  background: rgba(9, 34, 57, 0.78);
}

.hero-product-static {
  position: relative;
  left: auto;
  bottom: auto;
  margin: 34px auto 0;
  transform: none;
  border-color: rgba(184, 228, 255, 0.32);
  background:
    linear-gradient(105deg, rgba(19, 65, 99, 0.72), rgba(4, 20, 37, 0.68));
}

.report-led-hero .hero-product-static:hover,
.report-led-hero .hero-product-static:focus-visible {
  transform: translateY(-4px);
}

.hero-card-marker {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(134, 229, 176, 0.11);
}

.home-intro-section {
  overflow: hidden;
  background: var(--white);
}

.home-intro-layout,
.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.home-path {
  position: relative;
  min-height: 245px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transition: transform 180ms ease, background-color 180ms ease;
}

.home-path:hover,
.home-path:focus-visible {
  z-index: 1;
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.home-path > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.home-path b {
  margin: auto 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.home-path small {
  max-width: 240px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.home-path i {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--blue);
  font-style: normal;
  font-size: 1.25rem;
}

.home-path-guidance { box-shadow: inset 0 4px 0 var(--green); }
.home-path-daily { box-shadow: inset 0 4px 0 var(--blue); }
.home-path-live { box-shadow: inset 0 4px 0 var(--rose); }
.home-path-trust { box-shadow: inset 0 4px 0 var(--saffron); }

.home-report-spotlight {
  overflow: hidden;
  background: #eef5fa;
}

.compact-download {
  min-height: 560px;
}

.content-page-hero {
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 82% 10%, rgba(44, 127, 190, 0.36), transparent 32%),
    radial-gradient(circle at 12% 80%, rgba(22, 139, 106, 0.16), transparent 28%),
    #07182c;
}

.content-page-hero .page-hero-inner {
  max-width: none;
}

.content-page-hero h1 {
  max-width: 920px;
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  letter-spacing: -0.045em;
}

.page-hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-story-section,
.live-journey-section {
  background: var(--white);
}

.about-principles {
  border-top: 1px solid var(--line);
}

.about-principles article {
  min-height: 145px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 64px 150px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.about-principles article > span,
.journey-grid article > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-principles h3,
.about-principles p,
.journey-grid h3,
.journey-grid p {
  margin: 0;
}

.about-principles p,
.journey-grid p {
  color: var(--ink-soft);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.journey-grid article {
  min-height: 260px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.journey-grid h3 {
  margin-top: auto;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

@media (max-width: 1040px) {
  .home-intro-layout,
  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .report-led-hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.35rem);
  }

  .hero-product-static {
    margin-top: 26px;
  }

  .home-path-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .home-path {
    min-height: 190px;
  }

  .content-page-hero {
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 70px;
  }

  .content-page-hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .page-hero-actions {
    display: grid;
  }

  .about-principles article {
    grid-template-columns: 48px 1fr;
  }

  .about-principles article p {
    grid-column: 2;
  }
}

@media (prefers-color-scheme: dark) {
  .page-shell {
    color-scheme: light;
  }
}

/* Honeypot field on the expert application form: hidden from people (and from
   assistive tech via aria-hidden + tabindex="-1" in the markup), still present
   in the DOM so spam bots fill it in and reveal themselves. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Application form status states. */
.status-message.is-error { color: #b3261e; }
.status-message.is-success { color: #0f7b4f; }

/* Forms embedded inside a legal/article column (delete-account, grievance).
   .contact-card is designed for the two-column contact layout, so reset the
   width constraints and give it breathing room in the prose flow. */
.legal-form {
  margin: 18px 0 8px;
  max-width: none;
  width: 100%;
}

/* Report storefront ------------------------------------------------------ */
.button-outline {
  color: var(--ink);
  border-color: #a9bdcf;
  background: rgba(255, 255, 255, 0.7);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.home-reports-section {
  overflow: hidden;
  background: #f8fbfd;
}

.home-reports-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.report-proof-list {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-proof-list span {
  min-height: 92px;
  padding: 20px 16px 18px 0;
  display: grid;
  align-content: center;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.report-proof-list b {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
}

.home-report-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.home-report-actions .inline-link {
  margin-top: 0;
}

.report-preview-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.report-preview-stage::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid #c7dceb;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 40%, rgba(225, 240, 250, 0.58) 41% 64%, transparent 65%);
}

.report-preview-orbit {
  position: absolute;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(31, 122, 201, 0.15);
  border-radius: 50%;
  animation: reportOrbit 28s linear infinite;
}

.report-preview-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(31, 122, 201, 0.1);
}

.report-preview-orbit i:nth-child(1) { left: 17%; top: 12%; }
.report-preview-orbit i:nth-child(2) { right: 8%; top: 35%; background: var(--saffron); }
.report-preview-orbit i:nth-child(3) { right: 25%; bottom: 8%; background: var(--rose); }
.report-preview-orbit i:nth-child(4) { left: 4%; bottom: 32%; background: var(--green); }
.report-preview-orbit i:nth-child(5) { left: 49%; top: -5px; width: 6px; height: 6px; }

@keyframes reportOrbit {
  to { transform: rotate(360deg); }
}

.report-preview-paper {
  position: relative;
  z-index: 2;
  width: min(430px, 74%);
  min-height: 555px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid #d5e2ec;
  background: var(--white);
  box-shadow: 0 35px 80px rgba(13, 41, 72, 0.2);
  transform: rotate(-2deg);
}

.report-preview-paper::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid #d4e7f4;
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(228, 241, 250, 0.65), 0 0 0 56px rgba(240, 247, 252, 0.7);
}

.report-preview-brand {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.report-preview-brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.report-preview-brand > span > span,
.report-sheet-brand span {
  color: var(--blue);
}

.report-preview-brand small {
  margin-left: auto;
  color: #708397;
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.report-preview-edition,
.report-sheet-edition {
  margin: 44px 0 20px;
  display: inline-block;
  padding: 7px 12px;
  color: var(--blue);
  border: 1px solid #cde1ef;
  background: #eff7fc;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.report-preview-paper h3 {
  margin-bottom: 9px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.report-preview-paper > p {
  color: var(--ink-soft);
}

.report-preview-chart {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 40px auto 28px;
  border: 1px solid #bcd9eb;
  border-radius: 50%;
  box-shadow: inset 0 0 0 27px #f1f7fb, inset 0 0 0 28px #c9dfed, inset 0 0 0 60px var(--white), inset 0 0 0 61px #c9dfed;
}

.report-preview-chart::before,
.report-preview-chart::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #c9dfed;
}

.report-preview-chart::before { width: 1px; height: 100%; }
.report-preview-chart::after { width: 100%; height: 1px; }

.report-preview-chart > span {
  position: absolute;
  z-index: 2;
  inset: 72px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 8px rgba(31, 122, 201, 0.1);
}

.report-preview-chart i {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--saffron);
}

.report-preview-chart .planet-one { top: 32px; right: 53px; }
.report-preview-chart .planet-two { bottom: 38px; left: 45px; background: var(--blue); }
.report-preview-chart .planet-three { top: 76px; right: 25px; background: var(--rose); }

.report-preview-lines {
  display: grid;
  gap: 7px;
}

.report-preview-lines span {
  width: 100%;
  height: 5px;
  display: block;
  background: #e5edf3;
}

.report-preview-lines span:nth-child(2) { width: 82%; }
.report-preview-lines span:nth-child(3) { width: 61%; }

.report-preview-card {
  position: absolute;
  z-index: 3;
  width: 210px;
  min-height: 118px;
  padding: 20px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: var(--navy-2);
  box-shadow: 0 18px 42px rgba(7, 24, 44, 0.2);
}

.report-preview-card span {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.report-preview-card strong {
  font-family: "Manrope", sans-serif;
}

.report-preview-card small { color: #adc0cf; }
.report-preview-card-top { top: 52px; right: -10px; }
.report-preview-card-bottom { left: 0; bottom: 42px; background: #0f6d62; }

.report-market-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #fbfdff 0%, #f3f9fd 62%, #eaf4fb 100%);
}

.report-market-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background-image: linear-gradient(rgba(31, 122, 201, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 122, 201, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, black 50%, transparent);
}

.report-market-hero-inner {
  position: relative;
  width: var(--container);
  min-height: 730px;
  margin: 0 auto;
  padding: 72px 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.report-market-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: 0.98;
  font-weight: 800;
}

.report-market-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

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

.report-market-note {
  margin: 20px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #64788c;
  font-size: 0.8rem;
}

.report-market-note span {
  color: var(--green);
  font-weight: 800;
}

.report-hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.report-hero-halo {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid #c7dfef;
  border-radius: 50%;
  box-shadow: inset 0 0 0 36px rgba(255, 255, 255, 0.42), inset 0 0 0 37px rgba(31, 122, 201, 0.08), inset 0 0 0 100px rgba(232, 244, 251, 0.5);
}

.report-hero-halo::before,
.report-hero-halo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(31, 122, 201, 0.1);
}

.report-hero-halo::before { width: 8px; height: 8px; top: 51px; left: 108px; }
.report-hero-halo::after { width: 11px; height: 11px; right: 54px; bottom: 131px; background: var(--saffron); }

.report-hero-sheet {
  position: relative;
  z-index: 2;
  width: 390px;
  min-height: 530px;
  padding: 25px 28px 20px;
  border: 1px solid #cadbe7;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 80px rgba(7, 32, 59, 0.2);
  transform: rotate(1.5deg);
}

.report-hero-sheet-back {
  position: absolute;
  z-index: 1;
  transform: translate(38px, 20px) rotate(5deg);
  background: #e5f1f8;
  box-shadow: none;
}

.report-hero-sheet header {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.report-sheet-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
}

.report-sheet-brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.report-hero-sheet header > small {
  max-width: 92px;
  color: #748699;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
}

.report-hero-sheet h2 {
  margin-bottom: 6px;
  font-size: 2.45rem;
  line-height: 1;
}

.report-hero-sheet > p {
  color: var(--ink-soft);
}

.report-wheel {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 32px auto 30px;
  border: 1px solid #a9d1e8;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #eef6fb 0 30deg, #fff8e8 30deg 60deg, #eef8f4 60deg 90deg, #f4effb 90deg 120deg, #eef6fb 120deg 150deg, #fff8e8 150deg 180deg, #eef8f4 180deg 210deg, #f4effb 210deg 240deg, #eef6fb 240deg 270deg, #fff8e8 270deg 300deg, #eef8f4 300deg 330deg, #f4effb 330deg 360deg);
  box-shadow: inset 0 0 0 36px rgba(255, 255, 255, 0.94), inset 0 0 0 37px #bad8e9, inset 0 0 0 82px var(--white), inset 0 0 0 83px #bad8e9;
}

.report-wheel::before,
.report-wheel::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(169, 209, 232, 0.8);
}

.report-wheel::before { width: 1px; height: 100%; }
.report-wheel::after { width: 100%; height: 1px; }

.wheel-core {
  position: absolute;
  z-index: 2;
  inset: 91px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
}

.wheel-core img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.wheel-planet {
  position: absolute;
  z-index: 3;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-style: normal;
  font-size: 0.49rem;
  font-weight: 800;
}

.wheel-planet-1 { top: 54px; right: 55px; background: #d6a43d; }
.wheel-planet-2 { top: 86px; right: 31px; background: #a46bb9; }
.wheel-planet-3 { bottom: 54px; left: 48px; background: var(--green); }
.wheel-planet-4 { bottom: 27px; left: 88px; background: #3e5f89; }

.report-hero-sheet footer {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #788a9b;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-hero-tag {
  position: absolute;
  z-index: 3;
  min-width: 155px;
  padding: 14px 17px;
  display: grid;
  border: 1px solid #c5dae8;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-small);
}

.report-hero-tag small {
  color: var(--blue);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.report-hero-tag strong { font-family: "Manrope", sans-serif; }
.report-hero-tag-left { left: -12px; top: 108px; }
.report-hero-tag-right { right: -14px; bottom: 104px; }

.report-promise-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.report-promise-band div {
  min-height: 124px;
  padding: 26px clamp(20px, 3.6vw, 58px);
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.report-promise-band div:last-child { border-right: 0; }
.report-promise-band strong { font-family: "Manrope", sans-serif; font-size: 1.15rem; }
.report-promise-band span { color: var(--ink-soft); font-size: 0.8rem; }

.report-break-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(31, 122, 201, 0.28), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(213, 168, 70, 0.18), transparent 28%),
    linear-gradient(140deg, #03111e 0%, #09243e 54%, #07182c 100%);
}

.report-break-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.8px),
    radial-gradient(circle at 78% 36%, rgba(141, 206, 245, 0.7) 0 1px, transparent 1.8px),
    radial-gradient(circle at 46% 82%, rgba(240, 203, 133, 0.7) 0 1px, transparent 1.8px);
  background-size: 310px 270px, 430px 350px, 520px 410px;
}

.report-break-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.report-break-copy h2 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.3vw, 5.7rem);
  line-height: 0.96;
}

.report-break-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #b9cad8;
}

.report-break-copy > p strong { color: var(--white); }
.report-break-copy .button { margin-top: 14px; }
.report-break-section .eyebrow { color: #8dcef5; }
.report-break-section .eyebrow span { background: #8dcef5; }

.report-break-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.report-break-card {
  position: relative;
  min-height: 440px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(10px);
}

.report-break-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--card-accent);
}

.report-break-card > span {
  color: var(--card-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.report-break-card h3 {
  margin: 58px 0 30px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.1;
}

.report-break-card ul {
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.report-break-card li {
  position: relative;
  padding-left: 22px;
  color: #c3d2dd;
  font-size: 0.86rem;
  line-height: 1.5;
}

.report-break-card li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-accent);
}

.report-break-card-old {
  --card-accent: #e99078;
  opacity: 0.76;
  transform: translateY(22px);
}

.report-break-card-new {
  --card-accent: #f0cb85;
  border-color: rgba(240, 203, 133, 0.38);
  background: linear-gradient(155deg, rgba(31, 122, 201, 0.22), rgba(255, 255, 255, 0.08));
}

.report-break-card-new h3 { color: #ffffff; }

.report-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 60px;
}

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

.report-heading-split > p {
  margin-bottom: 5px;
}

.report-card-head::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  background: #07182c url("assets/starmanifest-icon.png") center / cover no-repeat;
  box-shadow: 0 5px 14px rgba(7, 24, 44, 0.2);
}

.report-catalog-section {
  border-top: 1px solid var(--line);
  background: #edf6fd;
}

.report-catalog-header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  align-items: end;
  gap: 70px;
}

.report-catalog-header h2 { margin-bottom: 18px; }
.report-catalog-header > div > p:last-child { max-width: 680px; color: var(--ink-soft); }

.report-search {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.report-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid #b8cbda;
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  outline: 0;
}

.report-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 122, 201, 0.13);
}

.report-filter-row {
  margin: 38px 0 16px;
  padding-bottom: 4px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.report-filter-row button {
  min-height: 42px;
  padding: 0 16px;
  flex: 0 0 auto;
  border: 1px solid #b9cedd;
  border-radius: 99px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 700;
  cursor: pointer;
}

.report-filter-row button:hover,
.report-filter-row button:focus-visible,
.report-filter-row button.is-active {
  color: var(--white);
  border-color: var(--navy-2);
  background: var(--navy-2);
}

.report-results-line {
  margin-bottom: 24px;
  color: #667b8f;
  font-size: 0.8rem;
}

.report-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.report-card {
  --report-deep: #173f67;
  --report-accent: #b1843f;
  --report-wash: #f0f5fa;
  --report-line: #c5d6e5;
  --report-shadow: rgba(18, 52, 82, 0.11);
  position: relative;
  min-height: 380px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--report-line);
  background: linear-gradient(145deg, var(--report-wash) 0, rgba(255, 255, 255, 0.98) 38%, #fff 100%);
  box-shadow: 0 14px 36px var(--report-shadow);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.report-card[data-report-category~="divisional"] {
  --report-deep: #4b306b;
  --report-accent: #8a62a6;
  --report-wash: #f6f0f9;
  --report-line: #dbc9e5;
  --report-shadow: rgba(70, 41, 94, 0.12);
}

.report-card[data-report-category~="timing"] {
  --report-deep: #5d421f;
  --report-accent: #b27a31;
  --report-wash: #fbf5e9;
  --report-line: #e3d0aa;
  --report-shadow: rgba(90, 59, 22, 0.12);
}

.report-card[data-report-category~="work"] {
  --report-deep: #155548;
  --report-accent: #2d8b72;
  --report-wash: #edf8f4;
  --report-line: #bcded3;
  --report-shadow: rgba(16, 81, 66, 0.12);
}

.report-card[data-report-category~="relationships"] {
  --report-deep: #783552;
  --report-accent: #b95d7d;
  --report-wash: #fbf0f5;
  --report-line: #e7c5d2;
  --report-shadow: rgba(114, 43, 73, 0.12);
}

.report-card[data-report-category~="family"] {
  --report-deep: #285860;
  --report-accent: #438992;
  --report-wash: #eef8f8;
  --report-line: #c3dfe1;
  --report-shadow: rgba(31, 83, 91, 0.12);
}

.report-card[data-report-category~="start"] {
  --report-deep: #183e68;
  --report-accent: #b1843f;
  --report-wash: #eef4fa;
  --report-line: #c3d4e4;
  --report-shadow: rgba(18, 52, 82, 0.12);
}

.report-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--report-deep), var(--report-accent));
}

.report-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -94px;
  right: -74px;
  border: 1px solid var(--report-line);
  border-radius: 50%;
  box-shadow: 0 0 0 19px rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.report-card > * {
  position: relative;
  z-index: 1;
}

.report-card:hover {
  transform: translateY(-3px);
  border-color: var(--report-accent);
  box-shadow: 0 20px 44px var(--report-shadow);
}

.report-card[hidden] { display: none; }

.report-card.is-coming {
  background: rgba(247, 250, 252, 0.9);
}

.report-card.is-coming::before { background: #9aabba; }

.report-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.report-number {
  margin-right: auto;
  color: var(--report-deep);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.report-availability {
  padding: 5px 9px;
  border-radius: 99px;
  color: #6e7f8e;
  background: #e4ebf0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-availability.is-available {
  color: #075b44;
  background: #dcf4e9;
  border: 1px solid rgba(7, 91, 68, 0.12);
}

.report-card-kicker {
  margin: 44px 0 10px;
  color: var(--report-accent);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.is-coming .report-card-kicker { color: #6f8294; }

.report-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.report-card > p:not(.report-card-kicker) {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.report-card-includes {
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
  color: #29445b;
  font-size: 0.74rem;
  line-height: 1.42;
}

.report-card-includes li {
  position: relative;
  padding-left: 20px;
}

.report-card-includes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--report-accent);
  font-size: 0.7rem;
}

.report-card-includes strong {
  color: var(--report-deep);
  font-weight: 850;
}

.report-card-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.report-card-meta span {
  padding: 5px 9px;
  border: 1px solid var(--report-line);
  border-radius: 4px;
  color: var(--report-deep);
  background: var(--report-wash);
  font-size: 0.65rem;
  font-weight: 700;
}

.report-card footer {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--report-line);
}

.report-card footer > div { display: grid; }
.report-card footer small { color: #74889a; font-size: 0.62rem; }
.report-card footer strong { color: var(--report-deep); font-family: "Manrope", sans-serif; font-size: 1.45rem; }
.report-card footer a,
.report-card footer button { color: var(--white); font-size: 0.78rem; font-weight: 800; }
.report-card footer a span,
.report-card footer button span { display: inline-block; transition: transform 160ms ease; }
.report-card footer a:hover span,
.report-card footer button:hover span { transform: translateX(4px); }

.report-buy-trigger {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--report-deep);
  padding: 11px 15px;
  font: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 7px 16px var(--report-shadow);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.report-buy-trigger:hover {
  background: var(--report-deep);
  box-shadow: inset 0 0 0 2px var(--report-accent), 0 9px 20px var(--report-shadow);
  transform: translateY(-1px);
}

.report-buy-trigger:focus-visible {
  outline: 3px solid var(--report-line);
  outline-offset: 5px;
  border-radius: 999px;
}
.report-coming-label { color: #7b8e9f; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }

.report-empty {
  padding: 48px 24px;
  border: 1px dashed #aac3d5;
  text-align: center;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.56);
}

.report-price-note {
  max-width: 860px;
  margin: 26px 0 0;
  color: #667b8f;
  font-size: 0.75rem;
}

.report-process-section {
  color: var(--white);
  background: var(--navy);
}

.report-process-section .eyebrow { color: #8dcef5; }
.report-process-section .report-heading-split > p { color: #a8bac9; }

.report-process-grid {
  margin: 58px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.report-process-grid li {
  min-height: 315px;
  padding: 28px 28px 24px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.report-process-grid li + li { padding-left: 28px; }
.report-process-grid li:last-child { border-right: 0; }
.report-process-grid > li > span { color: var(--gold); font-family: "Manrope", sans-serif; font-size: 0.72rem; font-weight: 800; }
.report-process-grid li div { margin-top: auto; }
.report-process-grid h3 { margin-bottom: 12px; font-size: 1.3rem; }
.report-process-grid p { margin-bottom: 0; color: #a8bac9; font-size: 0.88rem; }

.report-clarity-section {
  padding: 92px 0;
  background: #f7fbff;
}

.report-clarity-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.report-clarity-visual {
  position: relative;
  min-height: 540px;
}

.clarity-page {
  position: absolute;
  width: min(390px, 74%);
  min-height: 455px;
  padding: 42px 36px;
  display: grid;
  align-content: start;
  border: 1px solid #cbdce8;
  background: var(--white);
  box-shadow: var(--shadow);
}

.clarity-page-a { left: 0; top: 0; transform: rotate(-3deg); }
.clarity-page-b { right: 0; bottom: 0; transform: rotate(3deg); }
.clarity-page > span { color: var(--blue); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; }
.clarity-page strong { margin: 28px 0 50px; font-family: "Manrope", sans-serif; font-size: 1.8rem; }
.clarity-page-b { color: var(--white); border-color: #315472; background: var(--navy-2); }
.clarity-page-b > span { color: var(--gold); }

.clarity-evidence-preview {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.clarity-mini-chart {
  position: relative;
  width: 104px;
  height: 104px;
  border: 1px solid #b9d3e5;
  border-radius: 50%;
  background:
    radial-gradient(circle, #0f416a 0 10%, transparent 11%),
    radial-gradient(circle, transparent 0 34%, #d5e6f1 35% 36%, transparent 37% 61%, #d5e6f1 62% 63%, transparent 64%);
}

.clarity-mini-chart::before,
.clarity-mini-chart::after {
  content: "";
  position: absolute;
  background: #d5e6f1;
}

.clarity-mini-chart::before { top: 50%; left: 7%; right: 7%; height: 1px; }
.clarity-mini-chart::after { top: 7%; bottom: 7%; left: 50%; width: 1px; }

.clarity-mini-chart b {
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.42rem;
  line-height: 1;
}

.clarity-mini-chart b:nth-child(1) { top: 8px; right: 15px; background: #d69b22; }
.clarity-mini-chart b:nth-child(2) { top: 46px; right: -4px; background: #7252a8; }
.clarity-mini-chart b:nth-child(3) { bottom: 4px; left: 15px; background: #1769ad; }

.clarity-evidence-list {
  display: grid;
}

.clarity-evidence-list div {
  padding: 9px 0;
  display: grid;
  border-top: 1px solid #d9e5ed;
}

.clarity-evidence-list div:first-child { border-top: 0; }
.clarity-evidence-list small { color: #71869a; font-size: 0.48rem; letter-spacing: 0.08em; text-transform: uppercase; }
.clarity-evidence-list b { color: var(--ink); font-size: 0.64rem; }

.clarity-reading-preview > p {
  max-width: 290px;
  margin: 0 0 18px;
  color: #c1d1de;
  font-size: 0.74rem;
  line-height: 1.5;
}

.clarity-reading-preview > div {
  min-height: 37px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.clarity-reading-preview > div > b { color: var(--gold); font-size: 0.52rem; letter-spacing: 0.08em; }
.clarity-reading-preview > div > span { color: #f3f7fa; font-size: 0.72rem; font-weight: 700; }

.report-clarity-section .section-copy h2,
.report-faq-section .section-copy h2 {
  font-size: clamp(2.5rem, 3.7vw, 3.7rem);
}

.report-check-list li {
  color: #40566b;
  border-color: #cad9e4;
}
.report-check-list li::before { color: var(--green); }

.report-faq-section { background: #edf6fd; }

.report-final-cta {
  padding: 110px 24px;
  color: var(--white);
  background: radial-gradient(circle at 50% 15%, #174e78 0%, #09243e 45%, #03111e 100%);
}

.report-final-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.report-final-inner > img {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.report-final-inner h2 { margin-bottom: 16px; }
.report-final-inner > p:not(.eyebrow) { color: #b5c8d7; }
.report-final-inner .report-market-actions { justify-content: center; }
.report-final-inner > small { margin-top: 22px; display: block; color: #8199ad; }

@media (max-width: 1120px) {
  .report-market-hero-inner {
    grid-template-columns: 1fr 470px;
    gap: 36px;
  }

  .report-hero-tag-left { left: 0; }
  .report-hero-tag-right { right: 0; }

  .home-reports-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
  }

  .report-preview-card-top { right: 0; }

  .report-break-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .report-break-copy { max-width: 800px; }
}

@media (max-width: 960px) {
  .report-market-hero-inner,
  .home-reports-layout,
  .report-clarity-layout {
    grid-template-columns: 1fr;
  }

  .report-market-copy { max-width: 760px; }
  .report-hero-visual { width: min(620px, 100%); margin: 0 auto; }
  .report-preview-stage { width: min(680px, 100%); margin: 0 auto; }
  .report-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-process-grid { grid-template-columns: repeat(2, 1fr); }
  .report-process-grid li:nth-child(2) { border-right: 0; }
  .report-process-grid li:nth-child(3),
  .report-process-grid li:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .report-process-grid li:nth-child(3) { padding-left: 0; }
  .report-clarity-layout { gap: 46px; }
  .report-clarity-visual { width: min(620px, 100%); min-height: 430px; }
}

@media (max-width: 760px) {
  .report-market-hero-inner { min-height: auto; padding: 72px 0 68px; }
  .report-market-copy h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .report-market-actions { display: grid; grid-template-columns: 1fr; }
  .report-market-actions .button { width: 100%; }
  .report-hero-visual { min-height: 530px; transform: scale(0.9); margin: -22px auto; }
  .report-promise-band { grid-template-columns: repeat(2, 1fr); }
  .report-promise-band div:nth-child(2) { border-right: 0; }
  .report-promise-band div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .report-break-layout { gap: 38px; }
  .report-break-copy h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .report-break-compare { grid-template-columns: 1fr; }
  .report-break-card { min-height: 0; }
  .report-break-card h3 { margin: 38px 0 28px; }
  .report-break-card-old { transform: none; }
  .report-heading-split,
  .report-catalog-header { grid-template-columns: 1fr; gap: 22px; }
  .report-card-grid { grid-template-columns: 1fr; }
  .report-card { min-height: 355px; }
  .report-process-section .section-heading { margin-bottom: 0; }
  .report-process-section .report-heading-split h2 { font-size: clamp(2.35rem, 10vw, 3rem); }
  .report-process-section .report-heading-split > p { font-size: 0.98rem; line-height: 1.55; }
  .report-process-grid { margin-top: 36px; grid-template-columns: 1fr; }
  .report-process-grid li,
  .report-process-grid li + li { min-height: 0; padding: 26px 0 28px; border-right: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .report-process-grid li:first-child { border-top: 0; }
  .report-process-grid li div { margin-top: 24px; }
  .report-process-grid h3 { margin-bottom: 8px; font-size: 1.22rem; }
  .report-process-grid p { font-size: 0.9rem; line-height: 1.55; }
  .report-clarity-layout { gap: 34px; }
  .report-clarity-visual { min-height: 330px; }
  .clarity-page { width: 76%; min-height: 285px; padding: 25px 22px; }
  .clarity-page-a { left: 3%; }
  .clarity-page-b { right: 3%; }
  .clarity-page strong { margin: 19px 0 28px; font-size: 1.3rem; }
  .clarity-evidence-preview { grid-template-columns: 86px minmax(0, 1fr); gap: 14px; }
  .clarity-mini-chart { width: 86px; height: 86px; }
  .clarity-mini-chart b { width: 21px; height: 21px; font-size: 0.37rem; }
  .clarity-mini-chart b:nth-child(1) { top: 5px; right: 12px; }
  .clarity-mini-chart b:nth-child(2) { top: 37px; right: -3px; }
  .clarity-mini-chart b:nth-child(3) { bottom: 2px; left: 12px; }
  .clarity-evidence-list div { padding: 7px 0; }
  .clarity-reading-preview > p { margin-bottom: 12px; font-size: 0.68rem; }
  .clarity-reading-preview > div { min-height: 31px; }
  .report-clarity-section { padding: 62px 0; }
  .report-clarity-section .section-copy h2,
  .report-faq-section .section-copy h2 { font-size: clamp(2.05rem, 8vw, 2.55rem); }
  .report-clarity-section .section-copy > p:not(.eyebrow) { font-size: 0.98rem; }
  .report-check-list { margin-top: 22px; gap: 10px; }
  .report-check-list li { color: #40566b; font-size: 0.92rem; line-height: 1.5; }
  .report-faq-section .faq-layout { gap: 28px; }
  .report-faq-section .faq-list summary { min-height: 72px; }
  .report-preview-stage { min-height: 560px; transform: scale(0.88); margin: -35px auto; }
  .report-proof-list { grid-template-columns: 1fr; }
  .report-proof-list span { min-height: 74px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .report-proof-list span:last-child { border-bottom: 0; }
  .report-filter-row { margin-top: 30px; }
}

@media (max-width: 520px) {
  .report-hero-visual {
    width: 100%;
    min-height: 540px;
    margin: 0;
    transform: none;
  }

  .report-hero-halo {
    width: 430px;
    height: 430px;
  }

  .report-hero-sheet {
    width: calc(100% - 30px);
    min-height: 490px;
    padding: 21px 22px 18px;
  }

  .report-hero-sheet-back {
    transform: translate(16px, 14px) rotate(3deg);
  }

  .report-hero-sheet h2 {
    font-size: 2rem;
  }

  .report-wheel {
    width: 230px;
    height: 230px;
    margin-top: 24px;
  }

  .wheel-core {
    inset: 84px;
  }

  .wheel-core img {
    width: 40px;
    height: 40px;
  }

  .report-hero-tag {
    min-width: 132px;
    padding: 11px 13px;
  }

  .report-hero-tag-left { left: 0; top: 82px; }
  .report-hero-tag-right { right: 0; bottom: 74px; }
  .report-promise-band div { min-height: 112px; padding: 22px 16px; }
  .report-promise-band strong { font-size: 1rem; }
  .report-preview-stage {
    width: 100%;
    min-height: 600px;
    margin: 0;
    transform: none;
  }

  .report-preview-stage::before {
    width: 410px;
    height: 410px;
  }

  .report-preview-orbit {
    width: 430px;
    height: 430px;
  }

  .report-preview-paper {
    width: calc(100% - 30px);
    min-height: 510px;
    padding: 24px;
    transform: rotate(-1deg);
  }

  .report-preview-paper h3 {
    font-size: 2.1rem;
  }

  .report-preview-card {
    width: 168px;
    min-height: 98px;
    padding: 14px;
  }

  .report-preview-card-top { top: 70px; right: 0; }
  .report-preview-card-bottom { left: 0; bottom: 58px; }
  .report-card footer { align-items: flex-start; flex-direction: column; }
  .report-card footer a,
  .report-card footer button { min-height: 42px; display: inline-flex; align-items: center; }
  .report-clarity-visual { min-height: 292px; }
  .clarity-page { width: 78%; min-height: 248px; padding: 22px 19px; }
  .clarity-page strong { margin: 16px 0 24px; font-size: 1.18rem; }
  .clarity-evidence-preview { grid-template-columns: 72px minmax(0, 1fr); gap: 11px; }
  .clarity-mini-chart { width: 72px; height: 72px; }
  .clarity-mini-chart b { width: 18px; height: 18px; border-width: 1px; font-size: 0.32rem; }
  .clarity-mini-chart b:nth-child(1) { top: 4px; right: 9px; }
  .clarity-mini-chart b:nth-child(2) { top: 30px; right: -2px; }
  .clarity-mini-chart b:nth-child(3) { bottom: 1px; left: 9px; }
  .clarity-evidence-list small { font-size: 0.42rem; }
  .clarity-evidence-list b { font-size: 0.56rem; }
  .report-clarity-section .section-copy h2,
  .report-faq-section .section-copy h2 { font-size: clamp(2rem, 8.6vw, 2.35rem); }
  .report-final-cta { padding: 84px 18px; }
}

/* ── Secure website report checkout ─────────────────────────────────────── */
.has-modal { overflow: hidden; }

.report-checkout {
  width: min(820px, calc(100% - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  color: #0a2037;
  background: #f9fcff;
  border: 1px solid rgba(28, 107, 170, 0.18);
  border-radius: 28px;
  box-shadow: 0 32px 100px rgba(2, 17, 35, 0.34);
}

.report-checkout::backdrop {
  background: rgba(3, 16, 31, 0.72);
  backdrop-filter: blur(9px);
}

.checkout-shell {
  position: relative;
  min-height: 300px;
  background:
    radial-gradient(circle at 84% 0%, rgba(63, 161, 222, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.checkout-close {
  position: sticky;
  z-index: 8;
  top: max(18px, env(safe-area-inset-top, 0px));
  float: right;
  width: 42px;
  height: 42px;
  margin: max(18px, env(safe-area-inset-top, 0px)) max(18px, env(safe-area-inset-right, 0px)) -60px 0;
  border: 1px solid #d9e7f2;
  border-radius: 50%;
  color: #294159;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(8, 39, 68, 0.08);
  cursor: pointer;
}

.checkout-intro {
  padding: 46px 64px 32px;
  border-bottom: 1px solid #dfebf4;
}

.checkout-intro .eyebrow { color: #156cab; }
.checkout-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 22px 0 14px;
}

.checkout-title-row small {
  display: block;
  margin-bottom: 6px;
  color: #4f667b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.checkout-title-row h2 {
  margin: 0;
  color: #071b30;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.08;
}

.checkout-pricing {
  flex: 0 0 min(250px, 42%);
  padding: 14px 16px;
  border: 1px solid #cfe3f2;
  border-radius: 15px;
  background: rgba(245, 251, 255, 0.9);
}

.checkout-pricing > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: #5b7185;
  font-size: 0.76rem;
  line-height: 1.45;
}

.checkout-pricing > div + div { margin-top: 5px; }
.checkout-pricing strong { color: #294b67; font-family: "Manrope", sans-serif; }
.checkout-pricing .checkout-pricing-total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #d7e8f4;
  color: #071b30;
  font-weight: 800;
}
.checkout-pricing-total strong { color: #1769ad; font-size: 1.15rem; }

.checkout-intro > p:last-of-type {
  max-width: 650px;
  margin: 0;
  color: #5d7185;
  line-height: 1.7;
}

.checkout-requirements {
  max-width: 680px;
  margin-top: 20px;
  padding: 15px 17px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid #cfe3f2;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 151, 215, 0.12), transparent 44%),
    #f5fbff;
}

.checkout-requirements > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #f8fbff;
  background: linear-gradient(145deg, #1769ad, #0a3e70);
  box-shadow: 0 7px 18px rgba(23, 105, 173, 0.2);
}

.checkout-requirements p {
  margin: 0;
  display: grid;
  gap: 3px;
  color: #173a57;
}

.checkout-requirements strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
}

.checkout-requirements small {
  color: #567087;
  font-size: 0.8rem;
  line-height: 1.55;
}

.checkout-form { padding: 34px 64px 52px; }
.checkout-form fieldset { margin: 0 0 34px; padding: 0; border: 0; }
.checkout-form legend {
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 10px;
  color: #16344f;
  border-bottom: 1px solid #dfebf4;
  font-family: "Manrope", sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-field-note {
  max-width: 680px;
  margin: -4px 0 18px;
  color: #5d7185;
  font-size: 0.83rem;
  line-height: 1.6;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-field { display: grid; gap: 8px; position: relative; }
.checkout-field-wide { grid-column: 1 / -1; }
.checkout-field > span,
.checkout-field > label {
  color: #2c465f;
  font-size: 0.76rem;
  font-weight: 750;
}
.checkout-field > span small { color: #7a8c9e; font-weight: 500; }
.checkout-field > small { color: #52697d; font-size: 0.75rem; line-height: 1.5; }
.checkout-field input,
.checkout-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: #0c2238;
  background: #fff;
  border: 1px solid #cfdfea;
  border-radius: 12px;
  font: 500 0.92rem "DM Sans", sans-serif;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.checkout-field select {
  padding-right: 42px;
  cursor: pointer;
}

.checkout-field input:disabled,
.checkout-field select:disabled {
  color: #76899b;
  background: #f3f7fa;
  cursor: not-allowed;
}

.checkout-field input:focus,
.checkout-field select:focus {
  outline: none;
  border-color: #2382c5;
  box-shadow: 0 0 0 4px rgba(35, 130, 197, 0.12);
}

.checkout-picker-field {
  padding: 13px;
  gap: 7px;
  border: 1px solid #dce9f3;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8fcff, #f1f8fd);
}

.checkout-picker-field > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-picker-field > span::after {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid #c9ddeb;
  border-radius: 999px;
  color: #397092;
  background: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.checkout-picker-field[data-picker-kind="date"] > span::after { content: "CALENDAR"; }
.checkout-picker-field[data-picker-kind="time"] > span::after { content: "CLOCK"; }

.checkout-picker-field input[type="date"],
.checkout-picker-field input[type="time"] {
  min-height: 56px;
  color-scheme: light;
  cursor: pointer;
  border-color: #bad3e4;
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.checkout-picker-field input[type="date"]::-webkit-calendar-picker-indicator,
.checkout-picker-field input[type="time"]::-webkit-calendar-picker-indicator {
  width: 24px;
  height: 24px;
  padding: 7px;
  border-radius: 8px;
  background-color: #eaf5fc;
  cursor: pointer;
}

.checkout-picker-field input:disabled { cursor: not-allowed; }

.checkout-field > .checkout-picker-preview {
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #60788d;
  font-size: 0.7rem;
}

.checkout-picker-preview::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #9cb2c4;
}

.checkout-field > .checkout-picker-preview.has-value {
  color: #0d664f;
  font-weight: 750;
}

.checkout-picker-preview.has-value::before { background: #168b6a; }

.checkout-place-field { z-index: 5; }
.location-suggestions {
  position: absolute;
  z-index: 12;
  top: 80px;
  right: 0;
  left: 0;
  max-height: 235px;
  overflow: auto;
  padding: 7px;
  background: #fff;
  border: 1px solid #cbddea;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(8, 41, 70, 0.16);
}

.location-suggestions button {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 12px 13px;
  border: 0;
  border-radius: 9px;
  color: #173650;
  background: transparent;
  font: 600 0.82rem "DM Sans", sans-serif;
  text-align: left;
  cursor: pointer;
}

.location-option-city {
  color: #123651;
  font-size: 0.86rem;
  font-weight: 750;
}

.location-option-context {
  color: #61788c;
  font-size: 0.72rem;
  font-weight: 550;
}
.location-suggestions button:hover,
.location-suggestions button:focus-visible,
.location-suggestions button.is-active {
  outline: 2px solid #2382c5;
  outline-offset: -2px;
  background: #eef7fd;
}
.checkout-location-status:empty { display: none; }
.checkout-location-status { color: #416e8c !important; }
.checkout-location-retry {
  justify-self: start;
  padding: 0;
  color: #1769ad;
  background: transparent;
  border: 0;
  font: 750 0.76rem "DM Sans", sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.checkout-location-retry:hover,
.checkout-location-retry:focus-visible { color: #0d4f86; }
.checkout-location-retry:focus-visible {
  outline: 2px solid #2382c5;
  outline-offset: 4px;
}

.checkout-fold {
  margin-top: 18px;
  padding: 16px;
  background: #fff8e9;
  border: 1px solid #efd8a8;
  border-radius: 13px;
}
.checkout-fold strong { font-size: 0.82rem; }
.checkout-fold p { margin: 4px 0 12px; color: #6e624d; font-size: 0.75rem; }
.checkout-fold-options { display: flex; gap: 10px; flex-wrap: wrap; }
.checkout-fold-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid #e1c995;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.checkout-consents { display: grid; gap: 13px; margin: 2px 0 22px; }
.checkout-consents label { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.checkout-consents input { width: 17px; height: 17px; margin-top: 2px; accent-color: #1769ad; }
.checkout-consents span { color: #536a80; font-size: 0.74rem; line-height: 1.55; }
.checkout-consents a { color: #1769ad; font-weight: 700; }
.checkout-extra-consent {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid #d7e7f2;
  border-radius: 12px;
  background: #f5faff;
}

.checkout-error {
  margin-bottom: 16px;
  padding: 13px 15px;
  color: #8a302d;
  background: #fff0ef;
  border: 1px solid #f1c4c0;
  border-radius: 11px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.checkout-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding-inline: 22px;
  border: 0;
  cursor: pointer;
}
.checkout-submit:disabled { opacity: 0.66; cursor: wait; }
.checkout-submit i { font-style: normal; font-size: 1.15rem; }

.checkout-trust {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 15px;
  color: #52697d;
}
.checkout-trust p { margin: 0; font-size: 0.75rem; line-height: 1.55; }
.checkout-trust strong { color: #50677d; }

.checkout-status {
  min-height: 650px;
  padding: 84px 64px 60px;
  text-align: center;
}
.checkout-status-orbit {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin: 0 auto 34px;
  border: 1px solid rgba(31, 126, 192, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 42%, #eaf6fe 43%, #f8fcff 66%);
  box-shadow: 0 20px 65px rgba(22, 110, 176, 0.14);
}
.checkout-status-orbit img { filter: drop-shadow(0 10px 20px rgba(5, 39, 75, 0.2)); }
.checkout-status .eyebrow { justify-content: center; color: #1769ad; }
.checkout-status h2 {
  max-width: 620px;
  margin: 20px auto 15px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.08;
}
.checkout-status > p { max-width: 560px; margin-inline: auto; color: #64798d; line-height: 1.7; }
.checkout-status-meta { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.checkout-status-meta span {
  padding: 8px 12px;
  color: #35617f;
  background: #eaf6fd;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.checkout-reference {
  max-width: 360px;
  margin: 26px auto 18px;
  padding: 17px;
  background: #fff;
  border: 1px solid #d8e7f2;
  border-radius: 14px;
}
.checkout-reference small { display: block; color: #52697d; font-size: 0.72rem; letter-spacing: 0.12em; }
.checkout-reference strong { display: block; margin-top: 5px; font-family: "Manrope", sans-serif; letter-spacing: 0.04em; }
.checkout-status .checkout-status-help { font-size: 0.7rem; }
.checkout-status .button { margin-top: 18px; }
.checkout-status .checkout-resume { display: flex; width: min(100%, 360px); margin: 22px auto 0; }
.checkout-status .checkout-resume[hidden] { display: none; }
.checkout-status .checkout-resume + .button { display: flex; width: min(100%, 360px); margin: 12px auto 0; }

@media (max-width: 680px) {
  .report-checkout { width: 100%; max-height: calc(100dvh - max(12px, env(safe-area-inset-top, 0px))); margin: max(12px, env(safe-area-inset-top, 0px)) 0 0; border-radius: 24px 24px 0 0; }
  .checkout-intro { padding: 54px max(24px, env(safe-area-inset-right, 0px)) 26px max(24px, env(safe-area-inset-left, 0px)); }
  .checkout-title-row { align-items: flex-start; flex-direction: column; gap: 14px; }
  .checkout-pricing { width: 100%; flex-basis: auto; }
  .checkout-form { padding: 28px max(24px, env(safe-area-inset-right, 0px)) max(42px, calc(env(safe-area-inset-bottom, 0px) + 24px)) max(24px, env(safe-area-inset-left, 0px)); }
  .checkout-field-grid { grid-template-columns: 1fr; }
  .checkout-field-wide { grid-column: auto; }
  .checkout-status { min-height: 620px; padding: 80px max(24px, env(safe-area-inset-right, 0px)) max(48px, calc(env(safe-area-inset-bottom, 0px) + 24px)) max(24px, env(safe-area-inset-left, 0px)); }
}

/* Report engine proof --------------------------------------------------- */
.engine-proof-section {
  overflow: hidden;
  padding: clamp(48px, 4vw, 56px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(40, 132, 199, 0.24), transparent 31%),
    radial-gradient(circle at 16% 86%, rgba(22, 139, 106, 0.15), transparent 27%),
    linear-gradient(145deg, #061425 0%, #09243e 52%, #061726 100%);
}

.engine-proof-section .section-inner {
  position: relative;
  z-index: 1;
}

.engine-proof-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.78;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.6) 0 1px, transparent 1.7px),
    radial-gradient(circle at 35% 76%, rgba(141,206,245,0.58) 0 1px, transparent 1.8px),
    radial-gradient(circle at 89% 68%, rgba(255,255,255,0.48) 0 1px, transparent 1.7px),
    radial-gradient(circle at 72% 10%, rgba(240,203,133,0.58) 0 1px, transparent 1.8px);
  background-size: 310px 260px, 390px 330px, 440px 370px, 520px 410px;
}

.engine-proof-header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: start;
  gap: clamp(36px, 5vw, 68px);
}

.engine-proof-section .eyebrow {
  color: #8dcef5;
}

.engine-proof-section .eyebrow span {
  background: #8dcef5;
}

.engine-proof-header h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 3.25vw, 3.25rem);
  line-height: 1.01;
}

.engine-proof-copy > p {
  margin-bottom: 10px;
  color: #b9cad8;
  font-size: 0.94rem;
  line-height: 1.55;
}

.engine-proof-copy > p:first-child {
  color: #e4edf4;
  font-size: 1rem;
}

.engine-proof-thesis {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.engine-proof-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.engine-proof-actions .button {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 0.88rem;
}

.engine-inline-link {
  margin-top: 0;
  color: #d5e8f7;
}

.engine-proof-content {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(520px, 1.2fr) minmax(310px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
}

.engine-method-stage {
  position: relative;
  margin: 0;
  min-height: 400px;
  isolation: isolate;
}

.engine-method-list {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.engine-method-stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 215px;
  height: 215px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,157,213,0.22), rgba(20,77,120,0.08) 52%, transparent 72%);
  filter: blur(2px);
}

.engine-method-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(151, 204, 238, 0.19);
  border-radius: 50%;
  pointer-events: none;
}

.engine-method-ring::before,
.engine-method-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: #8dcef5;
  box-shadow: 0 0 18px rgba(141, 206, 245, 0.82);
}

.engine-method-ring::before {
  width: 7px;
  height: 7px;
  margin: -3px 0 0 -3px;
  transform: translateX(calc(var(--ring-radius) * -1));
}

.engine-method-ring::after {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(240, 203, 133, 0.78);
  transform: translateX(var(--ring-radius));
}

.engine-method-ring-outer {
  --ring-radius: 190px;
  width: 380px;
  height: 380px;
  animation: engineOrbit 34s linear infinite;
}

.engine-method-ring-inner {
  --ring-radius: 132px;
  width: 264px;
  height: 264px;
  border-style: dashed;
  animation: engineOrbitReverse 28s linear infinite;
}

@keyframes engineOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes engineOrbitReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.engine-method-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 160px;
  min-height: 160px;
  padding: 19px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(153, 210, 245, 0.35);
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(145deg, rgba(21, 72, 111, 0.96), rgba(6, 30, 51, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), inset 0 0 42px rgba(79, 160, 215, 0.13);
}

.engine-method-core img {
  width: 42px;
  height: 42px;
  margin-bottom: 9px;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.32));
}

.engine-method-core small,
.engine-method-node span,
.engine-proof-verification small {
  color: #8dcef5;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.engine-method-core small,
.engine-method-node span {
  font-size: 0.52rem;
}

.engine-method-core strong {
  margin: 3px 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

.engine-method-core > span {
  color: #91a9bb;
  font-size: 0.6rem;
}

.engine-method-node {
  position: absolute;
  z-index: 3;
  width: 185px;
  min-height: 78px;
  padding: 13px 15px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(148, 194, 223, 0.24);
  border-radius: 12px;
  background: rgba(8, 34, 58, 0.88);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.engine-method-node strong {
  margin-top: 5px;
  color: #ecf4f9;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  line-height: 1.35;
}

.engine-method-foundation { top: 0; left: 50%; transform: translateX(-50%); }
.engine-method-vedic { top: 25%; left: 0; }
.engine-method-timing { top: 25%; right: 0; }
.engine-method-synthesis { bottom: 0; left: 5%; }
.engine-method-western { right: 5%; bottom: 0; }

.engine-proof-facts {
  display: grid;
  gap: 10px;
}

.engine-proof-metrics {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(151, 204, 238, 0.2);
  border-radius: 14px;
  background: rgba(151, 204, 238, 0.18);
}

.engine-proof-metrics div {
  min-height: 110px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(6, 28, 48, 0.9);
}

.engine-proof-metrics dt {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
}

.engine-proof-metrics div:last-child dt {
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  white-space: nowrap;
}

.engine-proof-metrics dd {
  margin: 8px 0 0;
  color: #9fb5c5;
  font-size: 0.66rem;
  line-height: 1.4;
}

.engine-proof-verification {
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  border: 1px solid rgba(134, 229, 176, 0.2);
  border-radius: 14px;
  background: rgba(17, 84, 69, 0.28);
}

.engine-verification-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #052c21;
  background: var(--mint);
  font-weight: 900;
}

.engine-proof-verification small { color: var(--mint); }

.engine-proof-verification strong {
  margin: 4px 0 6px;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
}

.engine-proof-verification p {
  margin: 0;
  color: #a9becd;
  font-size: 0.68rem;
  line-height: 1.5;
}

.engine-proof-note,
.report-method-note {
  margin: 14px 0 0;
  color: #7f99ac;
  font-size: 0.66rem;
}

.report-method-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(31, 122, 201, 0.09), transparent 28%),
    var(--white);
}

.report-method-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.report-method-card {
  min-height: 360px;
  padding: 29px 26px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
}

.report-method-card > span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.report-method-card h3 {
  margin: 74px 0 14px;
  font-size: 1.4rem;
}

.report-method-card p {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.report-method-card small {
  margin-top: auto;
  padding-top: 22px;
  color: #50667a;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-method-audit {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.62fr 0.7fr 1.2fr 1.6fr;
  border-radius: 14px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-small);
}

.report-method-audit > div,
.report-method-audit > p {
  min-height: 168px;
  margin: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.report-method-audit strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1;
}

.report-method-audit span {
  margin-top: 10px;
  color: #9fb4c4;
  font-size: 0.68rem;
  line-height: 1.4;
}

.report-method-audit > p {
  color: #b4c6d3;
  border-right: 0;
  font-size: 0.78rem;
}

.report-method-audit > p b {
  margin-bottom: 7px;
  color: var(--white);
}

.report-method-note {
  color: #50667a;
}

@media (max-width: 1120px) {
  .engine-proof-content {
    grid-template-columns: minmax(500px, 1.12fr) minmax(300px, 0.88fr);
    gap: 26px;
  }

  .engine-method-node { width: 180px; }
  .engine-method-ring-outer { --ring-radius: 190px; width: 380px; height: 380px; }
  .engine-method-ring-inner { --ring-radius: 132px; width: 264px; height: 264px; }
  .report-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-method-card { min-height: 320px; }
  .report-method-audit { grid-template-columns: repeat(3, 1fr); }
  .report-method-audit > p { grid-column: 1 / -1; min-height: 126px; border-top: 1px solid rgba(255,255,255,0.13); }
}

@media (max-width: 960px) {
  .engine-proof-header,
  .engine-proof-content {
    grid-template-columns: 1fr;
  }

  .engine-proof-header {
    align-items: start;
    gap: 32px;
  }

  .engine-proof-copy { max-width: 720px; }
  .engine-method-stage { width: min(700px, 100%); margin: 0 auto; }
  .engine-proof-facts { width: min(700px, 100%); margin: 0 auto; }
}

@media (max-width: 680px) {
  .engine-proof-section { padding: 62px 0; }
  .engine-proof-header { gap: 24px; }
  .engine-proof-header h2 { font-size: clamp(2.25rem, 9.5vw, 2.8rem); }
  .engine-proof-copy > p { font-size: 0.9rem; }
  .engine-proof-copy > p:first-child { font-size: 0.96rem; }
  .engine-proof-content { margin-top: 34px; }
  .engine-proof-actions { align-items: stretch; display: grid; }
  .engine-proof-actions .button { width: 100%; }
  .engine-inline-link { justify-content: center; }

  .engine-method-stage {
    min-height: 0;
  }

  .engine-method-stage::before,
  .engine-method-ring { display: none; }

  .engine-method-core,
  .engine-method-node {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .engine-method-core {
    min-height: 158px;
    border-radius: 16px;
  }

  .engine-method-list {
    position: relative;
    inset: auto;
    margin-top: 9px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .engine-method-node {
    min-height: 104px;
    padding: 14px;
  }

  .engine-method-foundation {
    grid-column: 1 / -1;
    min-height: 92px;
  }

  .engine-proof-metrics div { min-height: 122px; padding: 18px 16px; }
  .engine-proof-verification { grid-template-columns: 1fr; }
  .report-method-grid { grid-template-columns: 1fr; }
  .report-method-card { min-height: 300px; }
  .report-method-card h3 { margin-top: 48px; }
  .report-method-audit { grid-template-columns: 1fr; }
  .report-method-audit > div,
  .report-method-audit > p { min-height: 130px; border-right: 0; border-top: 1px solid rgba(255,255,255,0.13); }
  .report-method-audit > div:first-child { border-top: 0; }
  .report-method-audit > p { grid-column: auto; }
}

@media (max-width: 420px) {
  .engine-method-list { grid-template-columns: 1fr; }
  .engine-method-foundation { grid-column: auto; }
  .engine-method-node { min-height: 112px; }
  .engine-proof-metrics { grid-template-columns: 1fr; }
  .engine-proof-metrics div { min-height: 130px; }
}

/* App launch status */
.app-coming-page {
  background: var(--white);
}

.app-coming-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(72px, 9vw, 118px) 0 92px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 42%, rgba(45, 139, 207, 0.34), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(22, 139, 106, 0.18), transparent 28%),
    linear-gradient(132deg, #04101f 0%, #071d34 54%, #08243d 100%);
}

.app-coming-hero::before,
.app-coming-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(132, 199, 240, 0.13);
  border-radius: 50%;
}

.app-coming-hero::before {
  width: 780px;
  height: 780px;
  right: -270px;
  top: -380px;
}

.app-coming-hero::after {
  width: 430px;
  height: 430px;
  left: -250px;
  bottom: -300px;
}

.app-coming-sky {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.app-coming-sky i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d7f1ff;
  box-shadow: 0 0 16px 4px rgba(162, 218, 251, 0.38);
}

.app-coming-sky i:nth-child(1) { top: 14%; left: 8%; }
.app-coming-sky i:nth-child(2) { top: 22%; left: 46%; width: 2px; height: 2px; }
.app-coming-sky i:nth-child(3) { top: 74%; left: 41%; }
.app-coming-sky i:nth-child(4) { top: 12%; right: 7%; width: 3px; height: 3px; }
.app-coming-sky i:nth-child(5) { right: 46%; bottom: 12%; width: 2px; height: 2px; }

.app-coming-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.app-coming-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.app-coming-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 7.4vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.app-coming-copy > p:not(.eyebrow):not(.app-coming-available) {
  max-width: 610px;
  color: #a9bfd0;
  font-size: 1.05rem;
}

.app-coming-copy .app-coming-lead {
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  font-weight: 700;
}

.app-coming-actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-coming-available {
  max-width: 620px;
  margin: 28px 0 0;
  padding-top: 23px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #a9bfd0;
  font-size: 0.79rem;
}

.app-coming-available > span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #04281e;
  background: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
}

.app-coming-available strong { color: var(--white); }

.app-device-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: start center;
}

.app-device-orbit {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 510px;
  height: 510px;
  transform: translateX(-50%);
  border: 1px solid rgba(154, 211, 246, 0.14);
  border-radius: 50%;
}

.app-device-orbit::before,
.app-device-orbit::after {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(154, 211, 246, 0.11);
  border-radius: inherit;
}

.app-device-orbit::after { inset: 116px; }

.app-device-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px rgba(134, 229, 176, 0.7);
}

.app-device-orbit i:nth-child(1) { top: 48px; left: 78px; }
.app-device-orbit i:nth-child(2) { right: -4px; top: 252px; background: #7bc6f2; }
.app-device-orbit i:nth-child(3) { bottom: 50px; left: 88px; background: var(--gold); }

.app-device {
  position: relative;
  z-index: 1;
  width: 276px;
  height: 534px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,0.26), rgba(255,255,255,0.07));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38), inset 0 0 0 2px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.app-device-speaker {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 70px;
  height: 19px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: #04101e;
}

.app-device-screen {
  height: 100%;
  padding: 78px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 27%, rgba(82, 166, 222, 0.4), transparent 34%),
    linear-gradient(180deg, #092842 0%, #051321 100%);
  overflow: hidden;
}

.app-device-screen img {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(47, 140, 205, 0.38);
}

.app-device-screen small {
  margin-top: 22px;
  color: #a8d5ef;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.app-device-screen strong {
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.32rem;
  line-height: 1.24;
}

.app-device-screen > span {
  margin-top: auto;
  padding: 8px 13px;
  border: 1px solid rgba(134, 229, 176, 0.35);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(22, 139, 106, 0.12);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.store-status-list {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-status-card {
  min-height: 114px;
  padding: 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(163, 210, 239, 0.26);
  border-radius: 13px;
  background: rgba(6, 26, 45, 0.91);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.store-status-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.store-status-play {
  padding-left: 3px;
  color: var(--white);
  background: linear-gradient(135deg, #2d9ddb, #177f63);
  font-size: 0.9rem;
}

.store-status-card small {
  display: block;
  color: #8eacc0;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.store-status-card h2 {
  margin: 3px 0 0;
  color: var(--white);
  font-size: 0.91rem;
  line-height: 1.2;
}

.store-status-card > strong {
  grid-column: 1 / -1;
  padding-top: 9px;
  color: var(--mint);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-coming-details {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(31, 122, 201, 0.08), transparent 28%),
    var(--white);
}

.app-coming-details-head {
  max-width: 810px;
}

.app-coming-details-head h2 {
  max-width: 780px;
}

.app-coming-details-head > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.app-coming-feature-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.app-coming-feature-grid article {
  min-height: 275px;
  padding: 27px 25px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.97);
}

.app-coming-feature-grid article > span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 800;
}

.app-coming-feature-grid h3 {
  margin: auto 0 12px;
  font-size: 1.22rem;
}

.app-coming-feature-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.app-launch-safety {
  margin-top: 24px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid #d4e8df;
  border-radius: 12px;
  background: #f1faf6;
}

.app-launch-safety > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.app-launch-safety strong {
  font-family: "Manrope", sans-serif;
}

.app-launch-safety p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.app-launch-safety .inline-link {
  margin-top: 0;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .app-coming-inner {
    grid-template-columns: 1fr;
  }

  .app-coming-copy {
    max-width: 760px;
  }

  .app-device-stage {
    width: min(610px, 100%);
    margin: 8px auto 0;
  }

  .app-coming-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .app-coming-hero {
    padding: 68px 0 74px;
  }

  .app-coming-copy h1 {
    font-size: clamp(3.15rem, 16vw, 5.1rem);
  }

  .app-coming-actions {
    display: grid;
  }

  .app-coming-actions .button {
    width: 100%;
  }

  .app-device-stage {
    min-height: 670px;
    place-items: start center;
  }

  .app-device-orbit {
    top: 28px;
    width: 430px;
    height: 430px;
  }

  .store-status-list {
    grid-template-columns: 1fr;
  }

  .store-status-card {
    min-height: 94px;
    grid-template-columns: auto 1fr auto;
  }

  .store-status-card > strong {
    grid-column: auto;
    padding: 0;
    border-top: 0;
  }

  .app-coming-feature-grid {
    grid-template-columns: 1fr;
  }

  .app-coming-feature-grid article {
    min-height: 215px;
  }

  .app-launch-safety {
    grid-template-columns: auto 1fr;
  }

  .app-launch-safety .inline-link {
    grid-column: 2;
  }
}

@media (max-width: 430px) {
  .app-device-stage {
    min-height: 640px;
  }

  .app-device {
    width: 248px;
    height: 500px;
  }

  .store-status-card {
    grid-template-columns: auto 1fr;
  }

  .store-status-card > strong {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
}
