@font-face {
  font-family: "Chong Modern Pro";
  src: url("assets/fonts/ChongModernPro-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Chong Modern Pro";
  src: url("assets/fonts/ChongModernPro-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Chong Modern Pro";
  src: url("assets/fonts/ChongModernPro-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Chong Modern Pro";
  src: url("assets/fonts/ChongModernPro-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Chong Modern Pro";
  src: url("assets/fonts/ChongModernPro-BoldItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ivory: #e6e3d9;
  --taupe: #d2c8b3;
  --golden: #a59065;
  --lilac: #d0ced9;
  --lavender: #544e67;
  --blue: #232448;
  --paper: #f9f8f7;
  --white: #fffefd;
  --night: #12062a;
  --brand-pink: #e4a4df;
  --brand-sky: #74b2eb;
  --brand-violet: #9267fe;
  --brand-purple: #6d3e8c;
  --brand-plum: #461d5c;
  --reader-transcript-text: var(--brand-plum);
  --brand-blue: var(--brand-sky);
  --brand-gold: var(--golden);
  --stella-violet-deep: #38124a;
  --stella-plum-muted: #402e52;
  --stella-lilac-dust: #b29bbd;
  --stella-lavender-mist: #e3dfe9;
  --stella-midnight: #0c0841;
  --stella-blue-gray: #a5aec9;
  --stella-mist-blue: #dce4ec;
  --stella-porcelain: #f2f1f0;
  --stella-charcoal: #292433;
  --stella-sage: #5a655e;
  --stella-pale-sage: #b8c7bd;
  --stella-soft-gold: #debc87;
  --chart-ink: var(--stella-charcoal);
  --chart-structure: var(--stella-sage);
  --chart-subtle: var(--stella-pale-sage);
  --chart-paper: var(--stella-porcelain);
  --chart-harmonious: #b8c7bd;
  --chart-dynamic: #714c7e;
  --chart-neutral: #cfab72;
  --chart-adjustment: #b29bbd;
  --chart-aspect-harmonious: #b8c7bd;
  --chart-aspect-dynamic: #714c7e;
  --chart-aspect-neutral: #5a655e;
  --chart-aspect-adjustment: #b29bbd;
  --chart-aspect-conjunction: #cfab72;
  --chart-aspect-sextile: #a5aec9;
  --chart-aspect-trine: #b8c7bd;
  --chart-aspect-square: #5a655e;
  --chart-aspect-opposition: #714c7e;
  --chart-aspect-quincunx: #b29bbd;
  --chart-field-center: #fffefd;
  --chart-field-mid: #f2f1f0;
  --chart-field-edge: #e3dfe9;
  --chart-house-base: color-mix(in srgb, var(--chart-field-mid) 48%, transparent);
  --chart-house-alt: color-mix(in srgb, var(--chart-field-edge) 58%, transparent);
  --chart-zodiac-symbol: var(--stella-charcoal);
  --chart-transit-point: rgb(64, 46, 82);
  --chart-transit-label: rgb(64, 46, 82);
  --chart-transit-ring: #6d3e8c;
  --chart-symbol-filter: none;
  --chart-zodiac-symbol-filter: var(--chart-symbol-filter);
  --chart-symbol-hover-filter: drop-shadow(0 4px 7px rgba(41, 36, 51, 0.2));
  --plum-ink: #281033;
  --pink-veil: rgba(228, 164, 223, 0.12);
  --sky-veil: rgba(116, 178, 235, 0.1);
  --violet-veil: rgba(146, 103, 254, 0.11);
  --purple-wash: rgba(109, 62, 140, 0.12);
  --violet: var(--brand-purple);
  --amethyst: var(--brand-violet);
  --electric-blue: #2e35a4;
  --glow-lilac: var(--brand-pink);
  --line: rgba(70, 29, 92, 0.16);
  --soft-line: rgba(109, 62, 140, 0.14);
  --shadow: 0 24px 70px rgba(70, 29, 92, 0.13);
  --violet-shadow: 0 26px 90px rgba(109, 62, 140, 0.24);
  --font-body: "Antic", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Josefin Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Chong Modern Pro", Georgia, serif;
  --font-logo: "Roxborough CF", "Chong Modern Pro", Georgia, serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(70, 29, 92, 0.08), transparent 24%),
    radial-gradient(circle at 94% 8%, var(--sky-veil), transparent 28%),
    linear-gradient(180deg, #fffefd 0%, var(--paper) 48%, #f3f0ec 100%);
  color: var(--brand-plum);
  font: 17px/1.58 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 254, 253, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(70, 29, 92, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-action,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 74px;
  height: 60px;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(70, 29, 92, 0.16));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-logo);
  font-size: 18px;
  line-height: 1.05;
}

.brand small,
.nav,
.header-action,
.button,
.kicker,
.eyebrow,
.section-index {
  font-family: var(--font-ui);
}

.brand small,
.kicker,
.eyebrow,
.section-index {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  color: var(--brand-purple);
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--brand-plum);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--brand-violet);
}

.mobile-member-action {
  display: none;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 254, 253, 0.82);
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 254, 253, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 0.98fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
  padding: 122px clamp(22px, 5vw, 74px) 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 36%, var(--violet-veil), transparent 25%),
    radial-gradient(circle at 90% 50%, var(--sky-veil), transparent 30%),
    linear-gradient(135deg, rgba(255, 254, 253, 0.88), rgba(230, 227, 217, 0.72));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(70, 29, 92, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(70, 29, 92, 0.035) 1px, transparent 1px);
  background-size: 108px 108px;
  mask-image: linear-gradient(180deg, black 0%, transparent 95%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 76% 32%, var(--pink-veil), transparent 20%),
    radial-gradient(circle at 88% 44%, var(--sky-veil), transparent 24%),
    radial-gradient(circle at 60% 18%, rgba(70, 29, 92, 0.1), transparent 26%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: 740px;
}

.hero-copy::before,
.section-heading::before {
  content: "";
  display: block;
  width: 156px;
  height: 3px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-plum), var(--brand-purple), var(--brand-sky), var(--brand-pink));
}

.kicker,
.eyebrow,
.section-index {
  color: var(--brand-purple);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 38px;
  line-height: 1.02;
}

.lede {
  max-width: 650px;
  color: rgba(70, 29, 92, 0.72);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.button.primary {
  border-color: rgba(70, 29, 92, 0.28);
  background: linear-gradient(135deg, var(--plum-ink), var(--brand-plum) 72%, var(--brand-purple));
  color: var(--paper);
  box-shadow: 0 16px 36px rgba(70, 29, 92, 0.18);
}

.button.secondary {
  border-color: rgba(70, 29, 92, 0.2);
  background: rgba(255, 254, 253, 0.78);
  color: var(--brand-plum);
}

.orbital-system {
  position: relative;
  min-height: 660px;
  isolation: isolate;
}

.orbital-system.is-orbit-active {
  cursor: pointer;
}

.orbit,
.orbit-hub,
.orbit-link,
.planet {
  position: absolute;
}

.orbit {
  z-index: 2;
  --orbit-angle: -10deg;
  display: block;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(var(--orbit-angle));
  transform-origin: center;
  transition: border-color 260ms ease, box-shadow 260ms ease, opacity 260ms ease;
}

.orbit:hover,
.orbit:focus-visible,
.orbital-system:has([data-orbit-link="book"]:hover) .orbit-outer,
.orbital-system:has([data-orbit-link="book"]:focus-visible) .orbit-outer,
.orbital-system:has([data-orbit-link="listen"]:hover) .orbit-middle,
.orbital-system:has([data-orbit-link="listen"]:focus-visible) .orbit-middle,
.orbital-system:has([data-orbit-link="brie"]:hover) .orbit-inner,
.orbital-system:has([data-orbit-link="brie"]:focus-visible) .orbit-inner,
.orbital-system:has([data-orbit-link="themes"]:hover) .orbit-themes,
.orbital-system:has([data-orbit-link="themes"]:focus-visible) .orbit-themes,
.orbital-system:has([data-orbit-link="chart"]:hover) .orbit-map-chart,
.orbital-system:has([data-orbit-link="chart"]:focus-visible) .orbit-map-chart,
.orbital-system:has([data-orbit-link="updates"]:hover) .orbit-updates,
.orbital-system:has([data-orbit-link="updates"]:focus-visible) .orbit-updates,
.orbital-system[data-active-orbit="book"] .orbit-outer,
.orbital-system[data-active-orbit="listen"] .orbit-middle,
.orbital-system[data-active-orbit="brie"] .orbit-inner,
.orbital-system[data-active-orbit="themes"] .orbit-themes,
.orbital-system[data-active-orbit="chart"] .orbit-map-chart,
.orbital-system[data-active-orbit="updates"] .orbit-updates {
  border-color: rgba(146, 103, 254, 0.6);
  box-shadow: 0 0 56px rgba(146, 103, 254, 0.2);
  outline: none;
}

.orbit-outer {
  width: 660px;
  height: 360px;
  top: 118px;
  right: 12px;
}

.orbit-middle {
  width: 520px;
  height: 276px;
  top: 160px;
  right: 82px;
  border-color: rgba(116, 178, 235, 0.24);
}

.orbit-inner {
  width: 350px;
  height: 172px;
  top: 214px;
  right: 168px;
  border-color: rgba(228, 164, 223, 0.26);
}

.orbit-themes {
  --orbit-angle: -18deg;
  width: 590px;
  height: 305px;
  top: 135px;
  right: 44px;
  border-color: rgba(109, 62, 140, 0.28);
}

.orbit-map-chart {
  --orbit-angle: -4deg;
  width: 410px;
  height: 206px;
  top: 95px;
  right: 130px;
  border-color: rgba(116, 178, 235, 0.26);
}

.orbit-updates {
  --orbit-angle: 8deg;
  width: 470px;
  height: 226px;
  top: 247px;
  right: 108px;
  border-color: rgba(146, 103, 254, 0.28);
}

.orbital-system::before,
.orbital-system::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.orbital-system::before {
  width: 520px;
  height: 520px;
  top: 72px;
  right: 76px;
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 254, 253, 0.9), transparent 18%),
    radial-gradient(circle at 50% 48%, rgba(228, 164, 223, 0.24), rgba(146, 103, 254, 0.14) 44%, rgba(116, 178, 235, 0.08) 70%);
  opacity: 0.72;
}

.orbital-system::after {
  width: 330px;
  height: 330px;
  top: 236px;
  right: 8px;
  background:
    radial-gradient(circle at 44% 42%, rgba(116, 178, 235, 0.18), rgba(228, 164, 223, 0.11) 54%, rgba(70, 29, 92, 0.12));
  opacity: 0.8;
}

.orbit-hub {
  z-index: 3;
  top: 212px;
  right: 219px;
  width: 216px;
  height: 216px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 35%, rgba(249, 248, 247, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(64, 46, 82, 0.97), rgba(64, 46, 82, 0.86) 58%, rgba(178, 155, 189, 0.22));
  color: var(--paper);
  text-align: center;
  box-shadow: var(--violet-shadow);
}

.orbit-hub img,
.orbit-hub-logo {
  width: 69%;
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(16, 12, 26, 0.26));
  opacity: 0.96;
}

.orbit-hub-logo.is-type-lockup {
  width: 78%;
  border-radius: 2px;
}

.orbit-link {
  z-index: 4;
  width: 112px;
  min-height: 82px;
  display: grid;
  grid-template-rows: 56px auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 6px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-plum);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: transform 220ms ease, color 220ms ease;
}

.orbit-link::before,
.orbit-link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.orbit-link::before {
  z-index: -2;
  width: 62px;
  height: 62px;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 254, 253, 0.74), transparent 28%),
    radial-gradient(circle, color-mix(in srgb, var(--token-accent, var(--brand-purple)) 34%, transparent), transparent 68%);
  filter: blur(7px);
  opacity: 0.34;
  animation: energyBreath 7s ease-in-out infinite;
}

.orbit-link::after {
  z-index: -1;
  width: 54px;
  height: 54px;
  background:
    conic-gradient(
      from 24deg,
      transparent 0 18%,
      color-mix(in srgb, var(--token-accent, var(--brand-purple)) 42%, transparent) 24%,
      transparent 34% 58%,
      rgba(255, 254, 253, 0.54) 64%,
      transparent 72% 100%
    );
  opacity: 0.32;
  animation: energyTurn 18s linear infinite;
}

.orbit-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--token-accent, var(--brand-purple)) 42%, rgba(255, 254, 253, 0.52));
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 27%, rgba(255, 254, 253, 0.92), transparent 23%),
    radial-gradient(circle at 55% 62%, color-mix(in srgb, var(--token-accent, var(--brand-purple)) 32%, transparent), transparent 58%),
    radial-gradient(circle, rgba(255, 254, 253, 0.78), rgba(255, 254, 253, 0.2) 62%, color-mix(in srgb, var(--token-accent, var(--brand-purple)) 20%, transparent));
  color: var(--token-accent, var(--brand-purple));
  box-shadow:
    inset 0 0 18px rgba(255, 254, 253, 0.62),
    inset 0 -10px 18px color-mix(in srgb, var(--token-accent, var(--brand-purple)) 12%, transparent),
    0 0 18px color-mix(in srgb, var(--token-accent, var(--brand-purple)) 24%, transparent);
  flex: 0 0 auto;
}

.orbit-icon::before,
.orbit-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-icon::before {
  inset: -42%;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 16%,
      rgba(255, 254, 253, 0.52) 23%,
      transparent 31% 54%,
      color-mix(in srgb, var(--token-accent, var(--brand-purple)) 48%, transparent) 62%,
      transparent 72% 100%
    );
  opacity: 0.34;
  animation: energySpin 13s linear infinite reverse;
}

.orbit-icon::after {
  inset: 7px;
  border: 1px solid rgba(255, 254, 253, 0.32);
  box-shadow: inset 0 0 12px rgba(255, 254, 253, 0.24);
}

.orbit-icon svg {
  position: relative;
  z-index: 2;
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.orbit-link-label {
  position: relative;
  z-index: 2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 118px;
  line-height: 1.12;
  white-space: normal;
  opacity: 0.78;
  text-shadow: none;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease, text-shadow 220ms ease;
}

.orbit-book { --token-accent: #714c7e; }
.orbit-work { --token-accent: #a5aec9; }
.orbit-archive { --token-accent: #cfab72; }
.orbit-circles { --token-accent: #5a655e; }
.orbit-chart { --token-accent: #0d0951; }
.orbit-member { --token-accent: #b29bbd; }

.orbit-archive .orbit-icon svg {
  fill: color-mix(in srgb, var(--token-accent) 18%, transparent);
}

.orbit-link:hover,
.orbit-link:focus-visible,
.orbital-system[data-active-orbit="book"] [data-orbit-link="book"],
.orbital-system[data-active-orbit="listen"] [data-orbit-link="listen"],
.orbital-system[data-active-orbit="brie"] [data-orbit-link="brie"],
.orbital-system[data-active-orbit="themes"] [data-orbit-link="themes"],
.orbital-system[data-active-orbit="chart"] [data-orbit-link="chart"],
.orbital-system[data-active-orbit="updates"] [data-orbit-link="updates"] {
  transform: translateY(-4px);
  color: var(--token-accent, var(--brand-purple));
  outline: none;
}

.orbit-link:hover::before,
.orbit-link:focus-visible::before,
.orbital-system[data-active-orbit="book"] [data-orbit-link="book"]::before,
.orbital-system[data-active-orbit="listen"] [data-orbit-link="listen"]::before,
.orbital-system[data-active-orbit="brie"] [data-orbit-link="brie"]::before,
.orbital-system[data-active-orbit="themes"] [data-orbit-link="themes"]::before,
.orbital-system[data-active-orbit="chart"] [data-orbit-link="chart"]::before,
.orbital-system[data-active-orbit="updates"] [data-orbit-link="updates"]::before {
  opacity: 0.82;
  filter: blur(9px);
}

.orbit-link:hover::after,
.orbit-link:focus-visible::after,
.orbital-system[data-active-orbit="book"] [data-orbit-link="book"]::after,
.orbital-system[data-active-orbit="listen"] [data-orbit-link="listen"]::after,
.orbital-system[data-active-orbit="brie"] [data-orbit-link="brie"]::after,
.orbital-system[data-active-orbit="themes"] [data-orbit-link="themes"]::after,
.orbital-system[data-active-orbit="chart"] [data-orbit-link="chart"]::after,
.orbital-system[data-active-orbit="updates"] [data-orbit-link="updates"]::after {
  opacity: 0.74;
  animation-duration: 8s;
}

.orbit-link:hover .orbit-icon,
.orbit-link:focus-visible .orbit-icon,
.orbital-system[data-active-orbit="book"] [data-orbit-link="book"] .orbit-icon,
.orbital-system[data-active-orbit="listen"] [data-orbit-link="listen"] .orbit-icon,
.orbital-system[data-active-orbit="brie"] [data-orbit-link="brie"] .orbit-icon,
.orbital-system[data-active-orbit="themes"] [data-orbit-link="themes"] .orbit-icon,
.orbital-system[data-active-orbit="chart"] [data-orbit-link="chart"] .orbit-icon,
.orbital-system[data-active-orbit="updates"] [data-orbit-link="updates"] .orbit-icon {
  border-color: color-mix(in srgb, var(--token-accent, var(--brand-purple)) 78%, rgba(255, 254, 253, 0.44));
  background:
    radial-gradient(circle at 34% 27%, rgba(255, 254, 253, 0.95), transparent 25%),
    radial-gradient(circle at 58% 64%, color-mix(in srgb, var(--token-accent, var(--brand-purple)) 46%, transparent), transparent 60%),
    radial-gradient(circle, rgba(255, 254, 253, 0.82), rgba(255, 254, 253, 0.24) 60%, color-mix(in srgb, var(--token-accent, var(--brand-purple)) 32%, transparent));
  box-shadow:
    inset 0 0 20px rgba(255, 254, 253, 0.7),
    inset 0 -12px 20px color-mix(in srgb, var(--token-accent, var(--brand-purple)) 18%, transparent),
    0 0 28px color-mix(in srgb, var(--token-accent, var(--brand-purple)) 44%, transparent);
}

.orbit-link:hover .orbit-link-label,
.orbit-link:focus-visible .orbit-link-label,
.orbital-system[data-active-orbit="book"] [data-orbit-link="book"] .orbit-link-label,
.orbital-system[data-active-orbit="listen"] [data-orbit-link="listen"] .orbit-link-label,
.orbital-system[data-active-orbit="brie"] [data-orbit-link="brie"] .orbit-link-label,
.orbital-system[data-active-orbit="themes"] [data-orbit-link="themes"] .orbit-link-label,
.orbital-system[data-active-orbit="chart"] [data-orbit-link="chart"] .orbit-link-label,
.orbital-system[data-active-orbit="updates"] [data-orbit-link="updates"] .orbit-link-label {
  opacity: 1;
  transform: translateY(2px);
  text-shadow: 0 1px 0 rgba(255, 254, 253, 0.58);
}

.orbit-book { top: 112px; right: 432px; }
.orbit-work { top: 134px; right: 94px; }
.orbit-archive { top: 340px; right: 0; }
.orbit-circles { top: 478px; right: 402px; }
.orbit-chart { top: 86px; right: 288px; }
.orbit-member { top: 520px; right: 172px; }

.planet {
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.point-gold { top: 168px; right: 220px; background: var(--brand-sky); box-shadow: 0 0 24px rgba(116, 178, 235, 0.7); }
.point-lilac { top: 420px; right: 94px; background: var(--brand-pink); box-shadow: 0 0 26px rgba(228, 164, 223, 0.82); }
.point-lavender { top: 485px; right: 314px; background: var(--brand-violet); box-shadow: 0 0 24px rgba(146, 103, 254, 0.68); }

@keyframes energyTurn {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

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

@keyframes energyBreath {
  0%,
  100% {
    transform: translateX(-50%) scale(0.92);
  }

  50% {
    transform: translateX(-50%) scale(1.08);
  }
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.manifesto {
  background:
    radial-gradient(circle at 18% 0%, rgba(228, 164, 223, 0.09), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(116, 178, 235, 0.08), transparent 28%),
    linear-gradient(135deg, var(--night), var(--brand-plum) 58%, #24103c);
  color: var(--paper);
}

.manifesto {
  padding: 86px 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 330px;
  gap: 52px;
  align-items: start;
}

.manifesto h2 {
  font-size: 28px;
  line-height: 1.06;
}

.manifesto p:last-child {
  color: var(--ivory);
}

.memoir-section,
.listen-section,
.themes-section,
.chart-section,
.about-section,
.updates-section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

h2 {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.08;
}

.memoir-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(70, 29, 92, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(230, 227, 217, 0.95), rgba(255, 254, 253, 0.9));
}

.memoir-section p,
.listen-section p,
.themes-section p,
.chart-section p,
.about-section p,
.updates-section p {
  color: rgba(70, 29, 92, 0.72);
}

.memoir-card,
.chapter-card,
.archive-stack article,
.circle-list article {
  border: 1px solid var(--line);
  background: rgba(255, 254, 253, 0.72);
}

.memoir-card {
  border-radius: 30px;
  border-top: 4px solid var(--brand-plum);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.cover-stack {
  display: grid;
  gap: 18px;
}

.book-cover {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(70, 29, 92, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(70, 29, 92, 0.1), rgba(116, 178, 235, 0.08)),
    rgba(255, 254, 253, 0.72);
  box-shadow:
    0 28px 70px rgba(70, 29, 92, 0.18),
    18px 22px 0 rgba(109, 62, 140, 0.08);
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border: 1px solid rgba(146, 103, 254, 0.18);
  border-radius: 8px;
}

.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.book-cover figcaption {
  margin-top: 10px;
  color: rgba(70, 29, 92, 0.66);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: center;
}

.memoir-card ul {
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--lavender);
}

.signup {
  max-width: 560px;
  margin-top: 32px;
}

.signup > label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signup-row {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(180px, 1.25fr);
}

.signup input[type="text"],
.signup input[type="email"],
.signup select,
.signup textarea {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--brand-plum);
  outline: none;
  font: inherit;
}

.signup[data-capture-status="paused"] .signup-row,
.signup[data-capture-status="paused"] .interest-fieldset,
.signup[data-capture-status="paused"] .signup-grid,
.signup[data-capture-status="paused"] .consent-check {
  opacity: 0.6;
}

.signup input:disabled,
.signup select:disabled,
.signup textarea:disabled {
  cursor: not-allowed;
}

.signup input[type="text"],
.signup input[type="email"] {
  flex: 1;
  min-height: 52px;
  padding: 0 18px;
}

.signup-row input + input {
  border-left: 1px solid var(--line);
}

.signup select,
.signup textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 254, 253, 0.78);
  padding: 13px 14px;
}

.signup textarea {
  resize: vertical;
}

.interest-fieldset {
  margin: 18px 0;
  border: 0;
  padding: 0;
}

.interest-fieldset legend,
.signup-grid label {
  color: var(--brand-plum);
  font-size: 13px;
  font-weight: 850;
}

.interest-fieldset legend {
  margin-bottom: 10px;
}

.interest-fieldset label,
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(70, 29, 92, 0.76);
  font-size: 14px;
  line-height: 1.35;
}

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

.interest-fieldset legend {
  grid-column: 1 / -1;
}

.signup input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--brand-purple);
  flex: 0 0 auto;
}

.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 14px;
}

.consent-check {
  margin-top: 16px;
}

.bot-field {
  display: none;
}

.signup input:focus-visible,
.signup select:focus-visible,
.signup textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(146, 103, 254, 0.18);
}

.signup-submit {
  width: 100%;
  margin-top: 18px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-plum);
  color: var(--paper);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 850;
}

.signup-submit:hover,
.signup-submit:focus-visible {
  background: var(--night);
  box-shadow: 0 16px 34px rgba(70, 29, 92, 0.18);
}

.signup-submit:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.listen-section {
  background:
    radial-gradient(circle at 14% 4%, rgba(116, 178, 235, 0.08), transparent 28%),
    linear-gradient(180deg, var(--paper), rgba(230, 227, 217, 0.54));
}

code {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.12em 0.42em;
  background: rgba(255, 254, 253, 0.76);
  color: var(--brand-plum);
  font-size: 0.88em;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.chapter-list {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: repeat(3, minmax(164px, auto));
  gap: 18px;
  align-items: stretch;
}

.reading-room-info-card {
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(70, 29, 92, 0.14);
  border-top: 4px solid var(--stella-soft-gold);
  border-radius: 28px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 189, 131, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 254, 253, 0.92), rgba(230, 227, 217, 0.72));
}

.reading-room-info-cover {
  display: flex;
  min-height: 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.reading-room-info-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 254, 253, 0.64);
  box-shadow: 0 18px 42px rgba(41, 36, 51, 0.12);
}

.reading-room-info-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(70, 29, 92, 0.1);
  padding-top: 16px;
}

.reading-room-info-copy .eyebrow {
  margin: 0;
  color: var(--brand-purple);
}

.reading-room-info-copy h3 {
  margin: 0;
  color: var(--brand-plum);
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 0.98;
}

.reading-room-info-copy p {
  margin: 0;
  color: color-mix(in srgb, var(--text) 80%, transparent);
  font-size: 15px;
  line-height: 1.45;
}

.reading-room-overview-card {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 0;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-top: 4px solid var(--brand-purple);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(146, 103, 254, 0.12), transparent 30%),
    rgba(255, 254, 253, 0.78);
  padding: 22px 24px;
}

.reading-room-overview-card .eyebrow,
.reading-room-overview-card h3,
.reading-room-overview-card p {
  margin: 0;
}

.reading-room-overview-card .eyebrow {
  color: var(--brand-purple);
}

.reading-room-overview-card h3 {
  color: var(--brand-plum);
  font-size: clamp(22px, 2.25vw, 31px);
  line-height: 1;
}

.reading-room-overview-card p {
  color: color-mix(in srgb, var(--text) 80%, transparent);
  font-size: 15px;
  line-height: 1.45;
}

.chapter-card {
  min-height: 0;
  border-radius: 28px;
  border-top-width: 4px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.chapter-card.is-expanded {
  grid-column: 1 / -1;
  grid-row: 4;
  gap: 24px;
  box-shadow: var(--violet-shadow);
}

.chapter-card.is-active-reading-room {
  border-color: color-mix(in srgb, var(--brand-purple) 36%, rgba(70, 29, 92, 0.14));
  box-shadow: 0 18px 46px rgba(70, 29, 92, 0.12);
}

.chapter-summary {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.chapter-card.is-expanded .chapter-summary {
  min-height: 0;
}

.chapter-card[data-content-id="prelude"] {
  grid-column: 2;
  grid-row: 2;
  border-top-color: var(--brand-pink);
  background: linear-gradient(180deg, rgba(228, 164, 223, 0.1), rgba(255, 254, 253, 0.9));
}

.chapter-card[data-content-id="chapter-01"] {
  grid-column: 2;
  grid-row: 3;
  border-top-color: var(--brand-sky);
  background: linear-gradient(180deg, rgba(116, 178, 235, 0.1), rgba(255, 254, 253, 0.9));
}

.chapter-card[data-content-id="chapter-02"] {
  border-top-color: var(--brand-violet);
  background: linear-gradient(180deg, rgba(146, 103, 254, 0.09), rgba(255, 254, 253, 0.9));
}

.chapter-card.is-expanded {
  grid-column: 1 / -1;
  grid-row: 4;
}

.reading-room-expanded-panel {
  grid-column: 1 / -1;
  grid-row: 4;
}

.chapter-card.is-future-chapter {
  display: none;
}

.chapter-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--brand-purple);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.listen-toggle {
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  border: 1px solid rgba(70, 29, 92, 0.2);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.82);
  color: var(--brand-plum);
  cursor: pointer;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.listen-toggle:hover,
.listen-toggle:focus-visible {
  background: var(--brand-plum);
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(70, 29, 92, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.chapter-player {
  display: none;
}

.chapter-card.is-expanded .chapter-player {
  display: grid;
  gap: 16px;
}

.chapter-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 38px);
  align-items: stretch;
  border: 1px solid rgba(255, 254, 253, 0.22);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 34px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 6, 42, 0.88), rgba(70, 29, 92, 0.76)),
    url("assets/hero-sanctuary.png") center / cover;
  color: var(--paper);
}

.chapter-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(228, 164, 223, 0.22), transparent 28%),
    radial-gradient(circle at 78% 32%, rgba(116, 178, 235, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(18, 6, 42, 0.2), rgba(18, 6, 42, 0.62));
  pointer-events: none;
}

.chapter-audio,
.transcript-panel {
  position: relative;
  z-index: 1;
}

.chapter-audio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 254, 253, 0.18);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.07), rgba(18, 6, 42, 0.42)),
    rgba(18, 6, 42, 0.3);
  backdrop-filter: blur(12px);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.chapter-audio::before,
.chapter-audio::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.chapter-audio::before {
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 254, 253, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 18%, rgba(116, 178, 235, 0.64) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 76%, rgba(228, 164, 223, 0.58) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 84%, rgba(255, 254, 253, 0.44) 0 1px, transparent 2px);
  opacity: 0.5;
  animation: audioStarPulse 7s ease-in-out infinite alternate;
}

.chapter-audio::after {
  z-index: 0;
  inset: -24%;
  background:
    radial-gradient(circle at 28% 36%, rgba(228, 164, 223, 0.16), transparent 28%),
    radial-gradient(circle at 72% 62%, rgba(116, 178, 235, 0.16), transparent 30%);
  filter: blur(8px);
  opacity: 0.62;
  animation: audioAuraDrift 18s ease-in-out infinite alternate;
}

.chapter-audio > * {
  position: relative;
  z-index: 1;
}

.audio-orbit {
  order: 2;
  position: relative;
  display: block;
  width: min(100%, 230px);
  aspect-ratio: 1;
  align-self: center;
  margin: 14px 0;
  border: 1px solid rgba(255, 254, 253, 0.22);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 254, 253, 0.22) 0 8%, transparent 9% 100%),
    radial-gradient(circle at 50% 50%, rgba(146, 103, 254, 0.1) 0 18%, transparent 19% 100%),
    repeating-radial-gradient(circle, transparent 0 32px, rgba(255, 254, 253, 0.18) 33px 34px);
  box-shadow:
    inset 0 0 38px rgba(255, 254, 253, 0.08),
    0 0 56px rgba(116, 178, 235, 0.16);
  opacity: 1;
  transform: translateZ(0);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.audio-orbit::before,
.audio-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.audio-orbit::before {
  inset: 8%;
  background:
    radial-gradient(circle at 73% 29%, rgba(116, 178, 235, 0.86) 0 4%, transparent 5% 100%),
    radial-gradient(circle at 25% 74%, rgba(228, 164, 223, 0.76) 0 3%, transparent 4% 100%),
    radial-gradient(circle at 48% 9%, rgba(255, 254, 253, 0.76) 0 2%, transparent 3% 100%),
    radial-gradient(circle at 86% 67%, rgba(146, 103, 254, 0.7) 0 2.5%, transparent 3.5% 100%);
  animation: audioOrbitDrift 26s linear infinite;
}

.audio-orbit::after {
  inset: 0;
  background:
    radial-gradient(circle at 51% 6%, rgba(255, 254, 253, 0.82) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 48%, rgba(116, 178, 235, 0.56) 0 2px, transparent 3px),
    radial-gradient(circle at 10% 55%, rgba(228, 164, 223, 0.52) 0 2px, transparent 3px),
    conic-gradient(from 74deg, transparent 0 84deg, rgba(255, 254, 253, 0.28) 85deg 86deg, transparent 87deg 210deg, rgba(116, 178, 235, 0.22) 211deg 212deg, transparent 213deg);
  opacity: 0.78;
  animation: audioOrbitCounterDrift 38s linear infinite;
}

.chapter-audio.has-section-visual .audio-orbit {
  display: none;
}

.chapter-audio-visual {
  order: 2;
  display: grid;
  gap: 8px;
  align-self: stretch;
  margin: 6px 0 2px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 1.4s ease,
    transform 1.4s ease;
}

.chapter-audio-visual[hidden] {
  display: none;
}

.chapter-audio-visual.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chapter-audio-visual img {
  display: block;
  width: 100%;
  max-height: min(42vh, 420px);
  object-fit: contain;
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 8px;
  background: rgba(242, 241, 240, 0.9);
  box-shadow:
    0 18px 42px rgba(13, 9, 81, 0.18),
    inset 0 0 0 1px rgba(255, 254, 253, 0.34);
}

.chapter-audio-visual figcaption {
  color: rgba(255, 254, 253, 0.82);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-audio .eyebrow {
  order: 1;
  color: var(--brand-sky);
}

.chapter-audio audio {
  order: 3;
  width: 100%;
  filter: saturate(0.7);
}

.audio-rewind-control,
.audio-speed-control {
  justify-self: center;
  align-self: center;
  min-width: 58px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 254, 253, 0.3);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.12);
  color: rgba(255, 254, 253, 0.88);
  font: 850 11px/1 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.audio-rewind-control {
  order: 4;
}

.audio-speed-control {
  order: 5;
  min-width: 52px;
}

.audio-rewind-control:hover,
.audio-rewind-control:focus-visible,
.audio-speed-control:hover,
.audio-speed-control:focus-visible {
  border-color: rgba(207, 171, 114, 0.82);
  background: rgba(207, 171, 114, 0.2);
  color: #fffefd;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(207, 171, 114, 0.14);
}

.section-jump-nav {
  order: 6;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: -6px;
}

.section-jump-button {
  display: inline-grid;
  flex: 0 0 auto;
  width: 26px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 254, 253, 0.28);
  border-radius: 7px;
  background: rgba(255, 254, 253, 0.1);
  color: rgba(255, 254, 253, 0.86);
  font: 700 10px/1 var(--font-body);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.section-jump-button:hover,
.section-jump-button:focus-visible {
  border-color: rgba(207, 171, 114, 0.78);
  background: rgba(207, 171, 114, 0.2);
  color: #fffefd;
  transform: translateY(-1px);
}

.section-jump-button.is-active {
  border-color: rgba(207, 171, 114, 0.92);
  background: var(--brand-gold);
  color: var(--brand-ink);
  box-shadow: 0 8px 22px rgba(207, 171, 114, 0.18);
}

.chapter-card.is-playing .chapter-audio {
  border-color: rgba(116, 178, 235, 0.36);
  box-shadow: inset 0 0 42px rgba(116, 178, 235, 0.08);
}

.chapter-card.is-playing .audio-orbit {
  border-color: rgba(255, 254, 253, 0.34);
  box-shadow:
    inset 0 0 38px rgba(255, 254, 253, 0.1),
    0 0 72px rgba(116, 178, 235, 0.26);
}

.chapter-card.is-playing .audio-orbit::before {
  animation-duration: 18s;
}

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

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

@keyframes audioStarPulse {
  0%,
  100% {
    opacity: 0.34;
  }

  46% {
    opacity: 0.72;
  }
}

@keyframes audioAuraDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
  }

  100% {
    transform: translate3d(2%, 1%, 0) rotate(8deg);
  }
}

.transcript-panel {
  min-height: 420px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  border: 1px solid rgba(255, 254, 253, 0.2);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.88);
  color: var(--reader-transcript-text);
  box-shadow: 0 24px 70px rgba(18, 6, 42, 0.24);
}

.transcript-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(70, 29, 92, 0.14);
  padding: 16px 20px;
}

.transcript-heading h2,
.transcript-heading span {
  margin: 0;
}

.transcript-heading h2 {
  color: var(--stella-violet-deep);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.35vw, 38px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.transcript-heading span {
  color: rgba(70, 29, 92, 0.54);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chapter-card.is-playing .transcript-heading span {
  color: var(--brand-purple);
}

.transcript-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(70, 29, 92, 0.08);
}

.transcript-progress span {
  display: block;
  width: 0%;
  height: 100%;
  min-height: 0;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-sky), var(--brand-pink));
  transition: width 220ms linear;
}

.transcript-scroll {
  --transcript-scroll-buffer: clamp(150px, 34vh, 280px);
  box-sizing: border-box;
  max-height: 430px;
  overflow: auto;
  scroll-behavior: auto;
  padding: clamp(20px, 3vw, 32px);
  color: var(--reader-transcript-text);
}

[data-chapter-ending-presented="true"] .transcript-scroll {
  overflow-anchor: none;
}

.transcript-scroll::before,
.transcript-scroll::after {
  content: "";
  display: block;
  pointer-events: none;
}

.transcript-scroll::before {
  height: 0;
}

.transcript-scroll::after {
  height: var(--transcript-scroll-buffer);
}

.transcript-line,
.music-cue,
.video-cue {
  border-left: 3px solid transparent;
  margin: 0;
  padding: 16px 0 16px 18px;
  color: var(--reader-transcript-text);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.transcript-line {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.42vw, 20px);
  font-weight: 400;
  line-height: 1.4;
}

.listen-section .transcript-line {
  color: var(--reader-transcript-text);
}

.listen-section .transcript-panel .transcript-scroll p,
.listen-section .transcript-panel .transcript-line,
.listen-section .transcript-panel .transcript-line em,
.listen-section .transcript-panel .transcript-line cite,
.listen-section .transcript-panel .transcript-line strong {
  color: var(--reader-transcript-text);
}

.transcript-line em,
.transcript-line cite {
  font-family: inherit;
  font-size: inherit;
  font-style: italic;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.transcript-line strong {
  color: var(--reader-transcript-text);
  font-family: var(--font-display);
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.transcript-epigraph {
  border-left-color: color-mix(in srgb, var(--brand-gold) 72%, var(--stella-charcoal));
  margin: 6px 0 18px;
  padding: clamp(10px, 1.6vw, 16px) 0 clamp(10px, 1.6vw, 16px) clamp(14px, 2.4vw, 22px);
  cursor: pointer;
}

.transcript-epigraph-quote,
.listen-section .transcript-panel .transcript-scroll .transcript-epigraph-quote {
  margin: 0;
  white-space: pre-line;
  color: var(--reader-transcript-text);
  font-family: var(--font-body);
  font-size: clamp(19px, 2vw, 28px);
  font-synthesis: none;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.16;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .transcript-epigraph-quote,
  .listen-section .transcript-panel .transcript-scroll .transcript-epigraph-quote {
    background:
      linear-gradient(
        105deg,
        var(--stella-charcoal) 0%,
        color-mix(in srgb, var(--brand-plum) 82%, var(--stella-charcoal)) 30%,
        #8f743e 49%,
        #d4bc7b 58%,
        color-mix(in srgb, var(--brand-plum) 82%, var(--stella-charcoal)) 80%,
        var(--stella-charcoal) 100%
      );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.transcript-epigraph cite,
.listen-section .transcript-panel .transcript-scroll .transcript-epigraph cite {
  display: block;
  margin-top: 7px;
  padding-left: clamp(26px, 4vw, 44px);
  color: color-mix(in srgb, var(--reader-transcript-text) 82%, var(--stella-charcoal));
  font-family: var(--font-body);
  font-size: clamp(16px, 1.65vw, 23px);
  font-style: normal;
  font-synthesis: none;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

.transcript-epigraph cite em {
  font-style: italic;
}

.transcript-epigraph.is-compact-bold .transcript-epigraph-quote,
.listen-section .transcript-panel .transcript-scroll .transcript-epigraph.is-compact-bold .transcript-epigraph-quote {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--reader-transcript-text);
  -webkit-text-fill-color: var(--reader-transcript-text);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 19px);
  font-style: italic;
  font-synthesis: none;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.transcript-epigraph.is-compact-bold cite,
.listen-section .transcript-panel .transcript-scroll .transcript-epigraph.is-compact-bold cite {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.08vw, 15px);
  font-style: italic;
  font-synthesis: none;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.transcript-quote-block {
  display: block;
  border-left: 3px solid color-mix(in srgb, var(--brand-gold) 58%, var(--reader-transcript-text));
  margin: 8px 0 22px;
  padding: 0 0 0 clamp(14px, 2.3vw, 22px);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.transcript-quote-heading,
.listen-section .transcript-panel .transcript-scroll .transcript-quote-heading {
  margin: 0 0 0.42em;
  color: var(--reader-transcript-text);
  font-family: var(--font-ui);
  font-size: clamp(13px, 1.08vw, 15px);
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
}

.transcript-quote-text,
.listen-section .transcript-panel .transcript-scroll .transcript-quote-text {
  margin: 0 0 0.42em;
  color: var(--reader-transcript-text);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 21px);
  font-synthesis: none;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.22;
  white-space: normal;
}

.transcript-quote-block.is-body-bold .transcript-quote-text,
.listen-section .transcript-panel .transcript-scroll .transcript-quote-block.is-body-bold .transcript-quote-text {
  font-weight: 700;
}

.transcript-quote-block.is-compact .transcript-quote-text,
.listen-section .transcript-panel .transcript-scroll .transcript-quote-block.is-compact .transcript-quote-text {
  margin-bottom: 0.26em;
  font-size: clamp(15px, 1.26vw, 18px);
  line-height: 1.14;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .transcript-quote-block.is-metallic .transcript-quote-text,
  .listen-section .transcript-panel .transcript-scroll .transcript-quote-block.is-metallic .transcript-quote-text {
    background:
      linear-gradient(
        105deg,
        var(--stella-charcoal) 0%,
        color-mix(in srgb, var(--brand-plum) 78%, var(--stella-charcoal)) 30%,
        #8f743e 49%,
        #d4bc7b 58%,
        color-mix(in srgb, var(--brand-plum) 78%, var(--stella-charcoal)) 80%,
        var(--stella-charcoal) 100%
      );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.transcript-quote-block cite,
.listen-section .transcript-panel .transcript-scroll .transcript-quote-block cite {
  display: block;
  margin-top: 0.36em;
  color: color-mix(in srgb, var(--reader-transcript-text) 82%, var(--stella-charcoal));
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 17px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.16;
}

.transcript-quote-block cite em,
.transcript-quote-block em,
.transcript-bullet-block em {
  font-family: inherit;
  font-size: inherit;
  font-style: italic;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.transcript-quote-block strong:not(.transcript-display),
.transcript-bullet-block strong:not(.transcript-display) {
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  line-height: inherit;
}

.transcript-oracle-callout {
  display: block;
  border-left: 3px solid color-mix(in srgb, var(--reader-transcript-text) 34%, transparent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: 8px 0 22px;
  padding: 0 0 0 clamp(14px, 2.3vw, 22px);
  cursor: pointer;
}

.transcript-oracle-heading,
.transcript-oracle-line,
.listen-section .transcript-panel .transcript-scroll .transcript-oracle-heading,
.listen-section .transcript-panel .transcript-scroll .transcript-oracle-line {
  margin: 0 0 0.48em;
  color: var(--reader-transcript-text);
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.46vw, 21px);
  font-style: italic;
  font-synthesis: none;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  white-space: normal;
}

.transcript-oracle-line.is-spacer,
.listen-section .transcript-panel .transcript-scroll .transcript-oracle-line.is-spacer {
  min-height: 0.12em;
  margin-bottom: 0.18em;
}

.transcript-oracle-callout .transcript-oracle-line:last-child {
  margin-bottom: 0;
}

.transcript-image-cue {
  display: grid;
  gap: 10px;
  padding-right: 0;
}

.transcript-image-cue.is-audio-panel-visual {
  display: none;
}

.transcript-image-cue img {
  display: block;
  width: min(100%, 680px);
  max-height: min(70vh, 680px);
  object-fit: contain;
  border: 1px solid rgba(70, 29, 92, 0.14);
  border-radius: 10px;
  background: rgba(255, 254, 253, 0.72);
  box-shadow: 0 18px 48px rgba(70, 29, 92, 0.12);
}

.transcript-image-cue figcaption {
  color: var(--brand-purple);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transcript-section-title {
  color: var(--brand-purple);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.transcript-styled-bullet {
  position: relative;
  display: block !important;
  width: 100%;
  max-width: 100%;
  column-count: 1 !important;
  columns: auto !important;
  column-width: auto !important;
  column-gap: normal !important;
  padding-left: 1.15em;
  text-indent: -1.15em;
  white-space: normal;
  text-wrap: wrap;
}

.transcript-styled-bullet::before {
  content: none;
}

.transcript-styled-bullet-marker {
  display: none;
}

.transcript-styled-bullet-body {
  display: inline;
  width: 100%;
  max-width: 100%;
  column-count: 1 !important;
  columns: auto !important;
  column-width: auto !important;
  column-gap: normal !important;
  min-width: 0;
  white-space: normal;
  text-wrap: wrap;
  break-inside: avoid;
  overflow-wrap: normal;
  word-break: normal;
}

.transcript-styled-bullet-body * {
  column-count: 1 !important;
  columns: auto !important;
  column-width: auto !important;
  column-gap: normal !important;
  float: none !important;
  position: static;
  text-wrap: wrap;
  white-space: normal !important;
}

.transcript-styled-bullet-body em,
.transcript-styled-bullet-body strong {
  display: inline !important;
  max-width: none;
  vertical-align: baseline;
}

.transcript-bullet-block {
  display: grid !important;
  width: 100%;
  max-width: 100%;
  margin: 8px 0 20px;
  padding: 0;
  list-style: none;
  gap: clamp(12px, 1.5vw, 18px);
  column-count: 1 !important;
  columns: auto !important;
  column-width: auto !important;
  column-gap: normal !important;
}

.transcript-bullet-block li {
  display: grid;
  grid-template-columns: 0.8em minmax(0, 1fr);
  align-items: start;
  gap: 0.72em;
  width: 100%;
  max-width: 100%;
  color: var(--reader-transcript-text);
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: normal;
  text-wrap: wrap;
  break-inside: avoid;
}

.transcript-bullet-marker {
  color: color-mix(in srgb, var(--brand-purple) 88%, var(--brand-gold));
  font-family: var(--font-display);
  font-size: 1.08em;
  font-weight: 700;
  line-height: 1.28;
}

.transcript-bullet-body {
  display: block;
  min-width: 0;
  max-width: 100%;
  column-count: 1 !important;
  columns: auto !important;
  column-width: auto !important;
  column-gap: normal !important;
  overflow-wrap: normal;
  text-wrap: wrap;
  white-space: normal;
  word-break: normal;
}

.transcript-inline-glyph {
  display: inline-block;
  width: var(--inline-glyph-size, 1.08em);
  height: var(--inline-glyph-size, 1.08em);
  line-height: 1;
  margin-left: var(--inline-glyph-trim-left, 0em);
  margin-right: calc(var(--inline-glyph-space, 0.06em) + var(--inline-glyph-trim-right, 0em));
  vertical-align: -0.14em;
  transform: translate(var(--inline-glyph-x, 0), var(--inline-glyph-y, 0));
  background-color: var(--inline-glyph-color, currentColor);
  -webkit-mask: var(--inline-glyph-image) center / var(--inline-glyph-fit, 114%) no-repeat;
  mask: var(--inline-glyph-image) center / var(--inline-glyph-fit, 114%) no-repeat;
}

.transcript-inline-glyph.is-zodiac {
  width: var(--inline-glyph-size, 1.14em);
  height: var(--inline-glyph-size, 1.14em);
}

.chapter-card .transcript-line .transcript-inline-glyph,
.chapter-card .transcript-rich-line .transcript-inline-glyph {
  display: inline-block;
  flex: 0 0 auto;
  min-height: 0;
  align-items: normal;
  color: transparent;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.music-cue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, rgba(146, 103, 254, 0.1), rgba(116, 178, 235, 0.08));
  font-size: 14px;
  font-weight: 850;
}

.music-cue span {
  min-height: auto;
  color: var(--brand-purple);
}

.music-cue a {
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.78);
  padding: 8px 12px;
  text-decoration: none;
}

.video-cue {
  --video-cue-indent: 21px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  border-radius: 0 18px 18px 0;
  background:
    linear-gradient(90deg, rgba(70, 29, 92, 0.09), rgba(116, 178, 235, 0.07)),
    rgba(255, 254, 253, 0.36);
}

.video-cue > span {
  min-height: auto;
  color: var(--brand-purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inline-video {
  box-sizing: border-box;
  width: min(100%, 420px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 8px;
  background: var(--deep-night);
  box-shadow: 0 18px 42px rgba(70, 29, 92, 0.12);
}

.inline-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.inline-video-mini {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  min-width: 0;
}

.video-cue > .inline-video-mini {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
}

.video-cue > a {
  width: fit-content;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.78);
  color: var(--brand-plum);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.video-cue > a:hover,
.video-cue > a:focus-visible {
  border-color: rgba(146, 103, 254, 0.4);
  outline: none;
}

.media-cue-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.media-continue,
.video-cue .media-external-link,
.music-cue .media-external-link {
  width: fit-content;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.82);
  color: var(--brand-plum);
  padding: 5px 9px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.media-continue {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: #fffefd;
}

.media-continue:hover,
.media-continue:focus-visible,
.video-cue .media-external-link:hover,
.video-cue .media-external-link:focus-visible,
.music-cue .media-external-link:hover,
.music-cue .media-external-link:focus-visible {
  border-color: rgba(70, 29, 92, 0.34);
  box-shadow: 0 8px 22px rgba(70, 29, 92, 0.14);
  outline: none;
}

.video-cue.is-awaiting-continue,
.music-cue.is-awaiting-continue {
  border-left-color: var(--brand-gold);
  background:
    linear-gradient(90deg, rgba(207, 171, 114, 0.22), rgba(116, 178, 235, 0.08)),
    rgba(255, 254, 253, 0.58);
}

.chapter-links {
  display: none !important;
  flex-wrap: wrap;
  gap: 10px;
}

.chapter-card.is-expanded .chapter-links {
  display: none !important;
}

.chapter-links a {
  min-height: 58px;
  display: inline-flex;
  flex: 1 1 220px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(70, 29, 92, 0.14);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.74);
  color: var(--brand-plum);
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.chapter-links a:hover,
.chapter-links a:focus-visible {
  border-color: rgba(146, 103, 254, 0.4);
  box-shadow: 0 14px 34px rgba(70, 29, 92, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.chapter-links span,
.chapter-links small {
  min-height: auto;
  display: block;
  letter-spacing: 0;
  text-transform: none;
}

.chapter-links span {
  color: var(--brand-plum);
  font-size: 15px;
  font-weight: 850;
}

.chapter-links small {
  color: rgba(70, 29, 92, 0.58);
  font-size: 12px;
  font-weight: 750;
}

.reader-echoes {
  display: grid;
  gap: 18px;
  min-width: 0;
  margin: 18px 0 10px;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(188, 155, 84, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 254, 253, 0.92), rgba(239, 234, 225, 0.72));
  box-shadow: 0 18px 44px rgba(70, 29, 92, 0.08);
  padding: clamp(20px, 3.4vw, 32px);
  cursor: default;
}

.reader-echoes-heading {
  display: grid;
  gap: 9px;
}

.reader-echoes-heading .eyebrow,
.reader-echoes-heading p,
.reader-echoes-status,
.reader-echoes-empty,
.reader-echoes-access p,
.reader-echo p,
.reader-echoes-form-status {
  margin: 0;
}

.reader-echoes-title-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.reader-echoes h4 {
  margin: 0;
  color: var(--brand-plum);
  font-size: clamp(25px, 2.9vw, 35px);
  line-height: 0.98;
}

.chapter-card .reader-echoes-count,
.chapter-card .reader-echo-avatar {
  min-height: auto;
  letter-spacing: normal;
  text-transform: none;
}

.reader-echoes-count {
  flex: 0 0 auto;
  border: 1px solid rgba(188, 155, 84, 0.38);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.7);
  color: rgba(70, 29, 92, 0.72);
  padding: 5px 9px 4px;
  font-size: 10px;
  font-weight: 850;
}

.reader-echoes-heading > p:not(.eyebrow) {
  color: rgba(70, 29, 92, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.reader-echoes-public-note {
  border-left: 2px solid rgba(188, 155, 84, 0.58);
  padding-left: 12px;
  font-size: 12px !important;
}

.reader-echoes-status,
.reader-echoes-empty,
.reader-echoes-form-status {
  color: rgba(70, 29, 92, 0.66);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.reader-echoes-status[data-state="loading"]::before {
  content: "✦";
  display: inline-block;
  margin-right: 7px;
  color: var(--brand-gold);
  animation: reader-echoes-pulse 1.4s ease-in-out infinite;
}

.reader-echoes-status[data-state="unavailable"] {
  border: 1px dashed rgba(70, 29, 92, 0.22);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.52);
  padding: 12px 14px;
}

.reader-echoes-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reader-echoes-status[hidden],
.reader-echoes-list[hidden],
.reader-echoes-empty[hidden],
.reader-echoes-access[hidden],
.reader-echoes-form[hidden],
.reader-echoes-guest-fields[hidden] {
  display: none !important;
}

.reader-echo {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.7);
  padding: 15px;
}

.reader-echo-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reader-echo-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(188, 155, 84, 0.48);
  border-radius: 50%;
  background: rgba(70, 29, 92, 0.08);
  color: var(--brand-plum);
  font-size: 10px;
  font-weight: 900;
}

.reader-echo-identity {
  display: grid;
  gap: 2px;
}

.reader-echo-identity strong {
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 13px;
}

.reader-echo-identity time {
  color: rgba(70, 29, 92, 0.54);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reader-echo > p {
  color: rgba(70, 29, 92, 0.82);
  font-size: 14px;
  line-height: 1.62;
}

.reader-echoes-access {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(70, 29, 92, 0.12);
  padding-top: 16px;
}

.reader-echoes-access p {
  color: rgba(70, 29, 92, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.reader-echoes-sign-in,
.reader-echoes-submit {
  min-height: 42px;
  border: 1px solid rgba(70, 29, 92, 0.2);
  border-radius: 999px;
  background: var(--brand-plum);
  color: #fffefd;
  padding: 10px 16px 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.reader-echoes-form {
  display: grid;
  gap: 11px;
  border-top: 1px solid rgba(70, 29, 92, 0.12);
  padding-top: 16px;
}

.reader-echoes-guest-fields {
  position: relative;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(188, 155, 84, 0.28);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.58);
  padding: 14px;
}

.reader-echoes-guest-intro {
  margin: 0;
  color: rgba(70, 29, 92, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.reader-echoes-guest-identity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reader-echoes-form input[type="text"],
.reader-echoes-form input[type="email"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.88);
  color: var(--brand-plum);
  padding: 9px 11px;
}

.reader-echoes-consent {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px !important;
  align-items: start;
  color: rgba(70, 29, 92, 0.74);
  font-size: 11px;
  line-height: 1.5;
}

.reader-echoes-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--brand-purple);
}

.reader-echoes-consent > span {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: 700 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.reader-echoes-bot-field {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px;
  overflow: hidden;
}

.reader-echoes-form label {
  display: grid;
  gap: 7px;
}

.reader-echoes-form label > span {
  color: var(--brand-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reader-echoes-form textarea {
  width: 100%;
  min-height: 112px;
  max-width: 100%;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.88);
  color: var(--brand-plum);
  resize: vertical;
}

@media (max-width: 620px) {
  .reader-echoes-guest-identity {
    grid-template-columns: 1fr;
  }
}

.reader-echoes-form-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.reader-echoes-form-footer small {
  color: rgba(70, 29, 92, 0.52);
  font-size: 10px;
}

.reader-echoes-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.reader-echoes-form-status[data-state="success"] {
  color: #2f6c5a;
}

.reader-echoes-form-status[data-state="error"] {
  color: #8a334a;
}

@keyframes reader-echoes-pulse {
  0%, 100% { opacity: 0.42; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

.themes-section {
  background:
    radial-gradient(circle at 78% 14%, rgba(70, 29, 92, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(210, 200, 179, 0.72), rgba(255, 254, 253, 0.62)),
    var(--paper);
}

.archive-grid,
.chart-grid,
.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.archive-stack {
  display: grid;
  gap: 14px;
}

.archive-stack article {
  border-radius: 28px;
  border-left: 5px solid var(--brand-purple);
  padding: 24px;
}

.archive-stack article:nth-child(1) { border-left-color: var(--brand-pink); }
.archive-stack article:nth-child(2) { border-left-color: var(--brand-sky); }
.archive-stack article:nth-child(3) { border-left-color: var(--brand-violet); }

.chart-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(116, 178, 235, 0.09), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(228, 164, 223, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 254, 253, 0.94), rgba(230, 227, 217, 0.64));
}

.chart-section .container {
  width: min(1520px, calc(100% - 44px));
}

.chart-grid {
  align-items: start;
  grid-template-areas:
    "intro intro"
    "form results";
  grid-template-columns: minmax(320px, 0.42fr) minmax(680px, 1fr);
  gap: clamp(22px, 3vw, 42px) clamp(34px, 5vw, 78px);
}

.chart-grid.has-chart-results {
  grid-template-areas:
    "intro intro intro"
    "form visual summary";
  grid-template-columns: minmax(220px, 0.22fr) minmax(600px, 1fr) minmax(280px, 0.32fr);
  gap: clamp(18px, 2.35vw, 32px) clamp(18px, 2.2vw, 32px);
  align-items: start;
}

.chart-grid,
.chart-copy,
.chart-form,
.chart-results-shell,
.chart-results,
.chart-visual,
.chart-interpretation-panel,
.chart-summary-panel,
.chart-transit-panel,
.chart-dashboard-panel,
.chart-companion-panel {
  min-width: 0;
  max-width: 100%;
}

.chart-copy {
  display: contents;
}

.chart-tool-stack {
  grid-area: form;
  display: grid;
  gap: 18px;
  align-self: start;
}

.chart-intro {
  grid-area: intro;
  max-width: 1160px;
}

.chart-intro h2 {
  max-width: none;
}

.chart-intro p:not(.kicker) {
  max-width: 900px;
}

.chart-form {
  grid-area: form;
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.chart-tool-stack .chart-form {
  grid-area: auto;
}

.chart-form-heading {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(70, 29, 92, 0.1);
  padding-bottom: 8px;
}

.chart-form-heading h3,
.chart-form-heading p {
  margin: 0;
}

.chart-form-heading h3 {
  color: var(--brand-plum);
  font-size: clamp(22px, 2.35vw, 29px);
  line-height: 0.96;
}

.chart-form-heading p:not(.eyebrow) {
  color: rgba(70, 29, 92, 0.72);
  font-size: 11.5px;
  line-height: 1.5;
}

.chart-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chart-form label,
.birth-picker legend {
  display: grid;
  gap: 5px;
  color: var(--brand-purple);
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.chart-form input,
.chart-form select {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 253, 0.86);
  color: var(--brand-plum);
  padding: 0 12px;
  outline: none;
  font: 14.5px/1.35 var(--font-ui);
  letter-spacing: 0;
  text-transform: none;
}

.birth-picker {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.birth-picker legend {
  grid-column: 1 / -1;
  padding: 0;
}

.chart-time-confidence-field {
  grid-column: 1 / -1;
}

.chart-field-hint {
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.chart-form [hidden] {
  display: none !important;
}

.birth-year-field {
  align-content: start;
}

.birth-year-manual {
  margin-top: 1px;
}

.chart-house-system-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  white-space: nowrap;
}

.chart-house-system-field select {
  min-height: 34px;
  max-width: 132px;
  border-radius: 9px;
  padding: 0 9px;
  font-size: 12.5px;
}

.chart-form input:focus-visible,
.chart-form select:focus-visible {
  border-color: rgba(146, 103, 254, 0.36);
  box-shadow: 0 0 0 3px rgba(146, 103, 254, 0.14);
}

.chart-toggle,
.chart-layer-dashboard {
  grid-column: 1 / -1;
}

.chart-toggle {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(116, 178, 235, 0.13), transparent 32%),
    rgba(255, 254, 253, 0.72);
  cursor: pointer;
  padding: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.chart-toggle input {
  width: 22px;
  min-height: 22px;
  accent-color: var(--brand-purple);
}

.chart-toggle strong,
.chart-toggle small {
  display: block;
}

.chart-toggle strong {
  color: var(--brand-plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-toggle small {
  color: rgba(70, 29, 92, 0.62);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.chart-layer-dashboard {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(222, 188, 135, 0.16), transparent 28%),
    rgba(255, 254, 253, 0.66);
  padding: 11px;
}

.chart-grid.has-chart-results .chart-form > .chart-layer-dashboard {
  display: none;
}

.chart-layer-dashboard-head {
  display: grid;
  gap: 3px;
}

.chart-layer-dashboard-head .eyebrow {
  margin: 0;
}

.chart-layer-dashboard-head strong {
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
}

.chart-layer-toggle-grid {
  display: grid;
  gap: 7px;
}

.chart-layer-toggle-grid-results {
  grid-template-columns: 1fr;
}

.chart-layer-toggle-grid-chart {
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  margin-top: 9px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.chart-grid.has-chart-results .chart-layer-toggle-grid-chart {
  gap: 5px;
  margin-top: 5px;
}

.chart-layer-footer {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.chart-grid.has-chart-results .chart-layer-footer {
  gap: 5px;
  position: relative;
}

.chart-layer-toggle {
  display: grid;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.58);
  color: var(--brand-plum);
  cursor: pointer;
  min-height: 46px;
  min-width: 0;
  padding: 7px 9px;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.chart-grid.has-chart-results .chart-layer-toggle {
  min-height: 34px;
  padding: 5px 6px;
}

.chart-layer-toggle:hover,
.chart-layer-toggle:focus-visible {
  border-color: rgba(146, 103, 254, 0.34);
  background: rgba(255, 254, 253, 0.78);
  box-shadow: 0 10px 24px rgba(70, 29, 92, 0.1);
  transform: translateY(-1px);
}

.chart-layer-toggle.is-active {
  border-color: rgba(146, 103, 254, 0.34);
  background:
    radial-gradient(circle at 94% 0%, rgba(116, 178, 235, 0.18), transparent 34%),
    rgba(255, 254, 253, 0.82);
}

.chart-layer-toggle.is-locked,
.chart-layer-toggle[aria-disabled="true"] {
  cursor: default;
}

.chart-layer-toggle.is-locked:hover,
.chart-layer-toggle.is-locked:focus-visible,
.chart-layer-toggle[aria-disabled="true"]:hover,
.chart-layer-toggle[aria-disabled="true"]:focus-visible {
  transform: none;
}

.chart-layer-toggle.is-planned {
  background: rgba(255, 254, 253, 0.42);
  opacity: 0.78;
}

.chart-layer-toggle.is-planned > span {
  filter: blur(0.32px);
}

.chart-layer-toggle strong,
.chart-layer-toggle small,
.chart-layer-toggle em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chart-layer-toggle strong {
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.chart-grid.has-chart-results .chart-layer-toggle strong {
  font-size: 8.5px;
  letter-spacing: 0.045em;
}

.chart-layer-toggle small {
  color: rgba(70, 29, 92, 0.64);
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.chart-grid.has-chart-results .chart-layer-toggle small {
  font-size: 8px;
}

.chart-layer-toggle em {
  color: rgba(70, 29, 92, 0.68);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  margin-top: 5px;
}

.transit-date-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(70, 29, 92, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.54);
  padding: 9px;
}

.chart-grid.has-chart-results .transit-date-controls {
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  align-items: end;
  gap: 7px;
  padding: 6px;
}

.chart-grid.has-chart-results .chart-layer-footer .transit-date-controls:not([hidden]) {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 8;
  width: min(720px, 100%);
  background:
    radial-gradient(circle at 94% 0%, rgba(116, 178, 235, 0.18), transparent 34%),
    rgba(255, 254, 253, 0.92);
  box-shadow:
    0 18px 44px rgba(70, 29, 92, 0.18),
    inset 0 0 0 1px rgba(255, 254, 253, 0.74);
  backdrop-filter: blur(14px);
}

.transit-date-controls[hidden] {
  display: none;
}

.transit-date-copy {
  display: grid;
  gap: 2px;
}

.transit-date-copy strong {
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.chart-grid.has-chart-results .transit-date-copy strong {
  font-size: 8.7px;
}

.transit-date-copy small {
  color: rgba(70, 29, 92, 0.62);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.chart-grid.has-chart-results .transit-date-copy small {
  font-size: 8.5px;
  line-height: 1.25;
}

.transit-date-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(112px, 0.62fr) minmax(0, 1.22fr) auto;
  align-items: end;
  gap: 7px;
  min-width: 0;
  width: 100%;
}

.chart-grid.has-chart-results .transit-date-fields {
  grid-template-columns: minmax(0, 0.78fr) minmax(96px, 0.5fr) minmax(0, 1.18fr) auto;
  gap: 5px;
}

.transit-date-mode {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  border: 1px solid rgba(70, 29, 92, 0.1);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.62);
  padding: 3px;
}

.transit-date-mode button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(70, 29, 92, 0.68);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 950;
  letter-spacing: 0.06em;
  min-height: 29px;
  padding: 6px 9px;
  text-transform: uppercase;
}

.chart-grid.has-chart-results .transit-date-mode button {
  min-height: 26px;
  padding: 5px 7px;
  font-size: 8.5px;
}

.transit-date-mode button.is-active {
  background: var(--brand-plum);
  color: var(--paper);
}

.transit-date-field,
.transit-location-field {
  display: grid;
  gap: 3px;
}

.transit-location-field {
  grid-column: 1 / -1;
  min-width: 0;
}

.transit-time-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.chart-grid.has-chart-results .transit-time-picker {
  gap: 4px;
}

.transit-time-picker legend {
  grid-column: 1 / -1;
  margin: 0 0 -2px;
  padding: 0;
}

.transit-time-picker label {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.transit-date-field span,
.transit-time-picker legend,
.transit-time-picker span,
.transit-location-field span {
  color: rgba(70, 29, 92, 0.72);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-grid.has-chart-results .transit-date-field span,
.chart-grid.has-chart-results .transit-time-picker legend,
.chart-grid.has-chart-results .transit-time-picker span,
.chart-grid.has-chart-results .transit-location-field span {
  font-size: 8px;
}

.transit-date-field input,
.transit-time-picker select,
.transit-location-field input {
  width: 100%;
  border: 1px solid rgba(70, 29, 92, 0.13);
  border-radius: 7px;
  background: rgba(255, 254, 253, 0.78);
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 850;
  min-height: 34px;
  padding: 6px 8px;
}

.chart-grid.has-chart-results .transit-date-field input,
.chart-grid.has-chart-results .transit-time-picker select,
.chart-grid.has-chart-results .transit-location-field input {
  min-height: 30px;
  padding: 5px 7px;
  font-size: 10.5px;
}

.transit-date-field.is-disabled,
.transit-time-picker.is-disabled {
  opacity: 0.54;
}

.transit-update-button {
  display: inline-grid;
  box-sizing: border-box;
  grid-column: 4;
  grid-row: 1;
  inline-size: 118px;
  min-height: 34px;
  place-items: center;
  justify-self: end;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--plum-ink), var(--brand-plum));
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.chart-grid.has-chart-results .transit-update-button {
  inline-size: 104px;
  min-height: 30px;
  padding: 6px 10px;
  font-size: 8.5px;
}

.transit-update-button:hover,
.transit-update-button:focus-visible {
  background: var(--night);
  outline: none;
}

.transit-update-button.is-updating,
.transit-update-button:disabled {
  background: linear-gradient(135deg, var(--brand-plum), var(--brand-purple));
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--brand-plum) 18%, transparent),
    0 10px 24px rgba(70, 29, 92, 0.18);
  color: var(--paper);
  cursor: progress;
  opacity: 1;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: no-preference) {
  .transit-update-button.is-updating {
    animation: transit-update-pulse 1.25s ease-in-out infinite;
  }
}

@keyframes transit-update-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 3px color-mix(in srgb, var(--brand-plum) 14%, transparent),
      0 10px 24px rgba(70, 29, 92, 0.16);
  }

  50% {
    box-shadow:
      0 0 0 5px color-mix(in srgb, var(--brand-plum) 24%, transparent),
      0 14px 30px rgba(70, 29, 92, 0.22);
  }
}

.chart-location-field {
  grid-column: 1 / -1;
}

.location-combobox {
  position: relative;
}

.location-options {
  position: absolute;
  z-index: 24;
  top: calc(100% - 22px);
  right: 0;
  left: 0;
  display: grid;
  gap: 3px;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid rgba(70, 29, 92, 0.14);
  border-radius: 14px;
  background: rgba(255, 254, 253, 0.98);
  box-shadow: 0 22px 48px rgba(70, 29, 92, 0.16);
  padding: 6px;
}

.transit-location-field .location-options {
  top: calc(100% + 4px);
}

.location-options[hidden] {
  display: none;
}

.location-option {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--brand-plum);
  cursor: pointer;
  padding: 8px 10px;
  text-align: left;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.location-option:hover,
.location-option:focus-visible,
.location-option.is-active {
  background: linear-gradient(135deg, rgba(228, 164, 223, 0.14), rgba(116, 178, 235, 0.12));
  outline: none;
}

.location-option span,
.location-option small {
  display: block;
}

.location-option span {
  font-size: 13.5px;
  font-weight: 850;
}

.location-option small,
.location-hint,
.location-empty {
  color: rgba(70, 29, 92, 0.64);
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.location-hint {
  margin-top: -2px;
}

.location-hint[data-state="pending"] {
  color: var(--brand-purple);
}

.location-hint[data-state="success"] {
  color: #315b50;
}

.location-hint[data-state="error"] {
  color: #8a2f4d;
}

.location-empty {
  margin: 0;
  padding: 10px 12px;
}

.chart-privacy {
  border-left: 3px solid var(--brand-sky);
  margin: 4px 0 0;
  padding-left: 10px;
  font-size: 11.5px;
  line-height: 1.5;
}

.chart-expand-note {
  border: 1px solid color-mix(in srgb, var(--brand-purple) 14%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-purple) 7%, transparent), color-mix(in srgb, var(--stella-mist-blue) 9%, transparent)),
    color-mix(in srgb, var(--surface) 76%, transparent);
  margin: 10px 0 0;
  padding: 8px 10px;
  color: color-mix(in srgb, var(--brand-plum) 74%, var(--night) 26%);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
}

.chart-submit {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--plum-ink), var(--brand-plum) 70%, var(--brand-purple));
  color: var(--paper);
  cursor: pointer;
  padding: 0 16px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(70, 29, 92, 0.18);
}

.chart-submit:hover,
.chart-submit:focus-visible {
  background: var(--night);
  outline: none;
}

.chart-submit:disabled {
  cursor: progress;
  opacity: 0.68;
}

.form-note[data-state="pending"] {
  color: var(--brand-purple);
}

.form-note[data-state="success"] {
  color: #315b50;
}

.form-note[data-state="error"] {
  color: #8a2f4d;
}

.chart-results-shell {
  grid-area: results;
  min-height: 560px;
  display: grid;
  align-self: start;
}

.chart-grid.has-chart-results .chart-results-shell {
  min-height: 0;
  display: contents;
}

.chart-results {
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: center;
}

.chart-grid.has-chart-results .chart-results {
  display: contents;
}

.chart-visual {
  width: min(100%, 900px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--chart-ink) 28%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 20%, color-mix(in srgb, var(--stella-mist-blue) 26%, transparent), transparent 24%),
    #f2f1f0;
  padding: clamp(10px, 2vw, 18px);
  box-shadow:
    0 26px 76px color-mix(in srgb, var(--chart-ink) 18%, transparent),
    inset 0 0 0 1px rgba(255, 254, 253, 0.72),
    inset 0 -28px 80px color-mix(in srgb, var(--chart-structure) 10%, transparent);
}

.chart-grid.has-chart-results .chart-visual {
  grid-column: 2;
  grid-area: visual;
  width: min(100%, 900px);
  max-height: calc(100vh - 96px);
  align-self: start;
  justify-self: center;
  margin-top: 0;
  overflow: visible;
  overscroll-behavior: contain;
  position: sticky;
  top: 82px;
  z-index: 2;
}

.chart-visual svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.chart-grid.has-chart-results .chart-visual svg {
  max-height: clamp(500px, 72vh, 760px);
}

.chart-visual-custom {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 254, 253, 0.52), color-mix(in srgb, var(--stella-lavender-mist) 18%, transparent) 58%, transparent),
    #f2f1f0;
}

.chart-grid.has-chart-results .chart-visual-custom {
  padding: clamp(7px, 1vw, 11px);
}

.stella-native-chart {
  color: var(--chart-ink);
  overflow: visible;
}

.stella-chart-field {
  fill: url("#stella-chart-glow");
  filter: url("#stella-chart-soft-shadow");
  stroke: color-mix(in srgb, var(--chart-structure) 34%, transparent);
  stroke-width: 1.35;
}

.stella-chart-zodiac-band {
  fill: none;
  stroke: color-mix(in srgb, var(--stella-lavender-mist) 72%, transparent);
  stroke-width: 42;
}

.stella-chart-inner-glow {
  fill: color-mix(in srgb, white 56%, var(--stella-mist-blue));
  stroke: color-mix(in srgb, var(--stella-soft-gold) 34%, transparent);
  stroke-width: 1;
}

.stella-chart-zodiac-outer,
.stella-chart-zodiac-inner,
.stella-chart-house-ring,
.stella-chart-house-number-outer,
.stella-chart-house-free-guide,
.stella-chart-aspect-ring {
  fill: none;
  stroke-linecap: round;
}

.stella-chart-house-number-band {
  fill: none;
  stroke: color-mix(in srgb, white 54%, var(--stella-mist-blue));
  stroke-width: 26;
}

.stella-chart-zodiac-outer {
  stroke: color-mix(in srgb, var(--chart-ink) 54%, transparent);
  stroke-width: 2.15;
}

.stella-chart-zodiac-inner {
  stroke: color-mix(in srgb, var(--chart-structure) 44%, transparent);
  stroke-width: 1.1;
}

.stella-chart-house-ring {
  stroke: color-mix(in srgb, var(--chart-structure) 25%, transparent);
  stroke-width: 0.9;
}

.stella-chart-house-number-outer {
  stroke: color-mix(in srgb, var(--chart-structure) 44%, transparent);
  stroke-width: 1.05;
}

.stella-chart-house-free-guide {
  fill: none;
  stroke: color-mix(in srgb, var(--stella-soft-gold) 28%, transparent);
  stroke-dasharray: 2 7;
  stroke-linecap: round;
  stroke-width: 1;
}

.stella-chart-planet-track {
  display: none;
}

.stella-chart-aspect-ring {
  stroke: color-mix(in srgb, var(--chart-ink) 58%, transparent);
  stroke-width: 1.5;
}

.stella-house-slice {
  pointer-events: none;
  stroke: none;
}

.stella-house-slice.is-base {
  fill: var(--chart-house-base);
}

.stella-house-slice.is-alt {
  fill: var(--chart-house-alt);
}

.stella-degree-tick,
.stella-sign-boundary,
.stella-house-cusp,
.stella-angle-axis,
.stella-aspect-line,
.stella-aspect-anchor,
.stella-point-guide,
.stella-point-anchor,
.stella-chart-transit-inner,
.stella-chart-transit-outer,
.stella-transit-house-cusp,
.stella-transit-point-guide,
.stella-transit-anchor {
  vector-effect: non-scaling-stroke;
}

.stella-degree-tick {
  stroke: color-mix(in srgb, var(--chart-structure) 18%, transparent);
  stroke-width: 0.38;
}

.stella-degree-tick.is-medium {
  stroke: color-mix(in srgb, var(--chart-structure) 27%, transparent);
  stroke-width: 0.5;
}

.stella-degree-tick.is-major {
  stroke: color-mix(in srgb, var(--chart-ink) 27%, transparent);
  stroke-width: 0.76;
}

.stella-degree-tick.is-sign-boundary,
.stella-sign-boundary {
  stroke: color-mix(in srgb, var(--chart-neutral) 66%, transparent);
  stroke-width: 1.1;
}

.stella-house-cusp {
  stroke: color-mix(in srgb, var(--chart-structure) 28%, transparent);
  stroke-width: 0.82;
}

.stella-house-cusp.is-cardinal {
  stroke: color-mix(in srgb, var(--chart-ink) 56%, transparent);
  stroke-width: 1.18;
}

.stella-angle-axis {
  stroke: color-mix(in srgb, var(--chart-ink) 38%, transparent);
  stroke-width: 1.08;
}

.stella-aspect-line {
  cursor: pointer;
  opacity: 0.9;
  stroke-linecap: round;
  stroke-width: 1.9;
}

.stella-aspect-line:hover,
.stella-aspect-line:focus-visible,
.stella-aspect-line.is-interpretation-selected {
  opacity: 1;
  stroke-width: 2.55;
  filter: drop-shadow(0 0 4px color-mix(in srgb, currentColor 28%, transparent));
}

.stella-aspect-line.is-harmonious {
  stroke: var(--chart-aspect-harmonious);
}

.stella-aspect-line.is-sextile {
  stroke: var(--chart-aspect-sextile);
}

.stella-aspect-line.is-trine {
  stroke: var(--chart-aspect-trine);
}

.stella-aspect-line.is-dynamic {
  stroke: var(--chart-aspect-dynamic);
}

.stella-aspect-line.is-square {
  stroke: var(--chart-aspect-square);
}

.stella-aspect-line.is-opposition {
  stroke: var(--chart-aspect-opposition);
}

.stella-aspect-line.is-neutral {
  stroke: var(--chart-aspect-neutral);
}

.stella-aspect-line.is-conjunction {
  stroke: var(--chart-aspect-conjunction);
  stroke-width: 2.45;
}

.stella-conjunction-accent {
  fill: none;
  opacity: 0.96;
  stroke: var(--chart-aspect-conjunction);
  stroke-linecap: round;
  stroke-width: 4.25;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--chart-aspect-conjunction) 32%, transparent));
}

.stella-aspect-line.is-adjustment {
  stroke: var(--chart-aspect-adjustment);
  stroke-dasharray: 5 6;
}

.stella-aspect-line.is-quincunx {
  stroke: var(--chart-aspect-quincunx);
  stroke-dasharray: 5 6;
}

.stella-aspect-anchor {
  opacity: 0.92;
  stroke: var(--chart-field-center);
  stroke-width: 0.72;
}

.stella-aspect-anchor.is-natal {
  fill: color-mix(in srgb, var(--chart-ink) 72%, var(--chart-field-center) 28%);
}

.stella-aspect-anchor.is-transit {
  fill: var(--chart-transit-point);
  stroke: color-mix(in srgb, var(--chart-field-edge) 74%, transparent);
}

.stella-aspect-anchor.is-progression {
  fill: #81536f;
  stroke: color-mix(in srgb, var(--chart-field-edge) 70%, transparent);
}

.stella-aspect-anchor.is-return {
  fill: #714c7e;
  stroke: color-mix(in srgb, var(--chart-field-edge) 70%, transparent);
}

.stella-aspect-anchor.is-synastry {
  fill: #81536f;
  stroke: color-mix(in srgb, var(--chart-field-edge) 70%, transparent);
}

.stella-native-chart.is-progression-comparison {
  --chart-transit-label: #6f405f;
  --chart-transit-point: #81536f;
  --chart-transit-ring: #b68957;
}

.stella-native-chart.is-progression-comparison .stella-chart-transit-band {
  opacity: 0.18;
  stroke: color-mix(in srgb, #b68957 68%, var(--chart-field-edge) 32%);
}

.stella-native-chart.is-progression-comparison .stella-comparison-aspect-line {
  opacity: 0.62;
}

.stella-native-chart.is-progression-comparison .stella-comparison-aspect-line.is-interpretation-selected {
  opacity: 1;
  stroke-width: 3.2;
}

.chart-lab-progression.is-aspect-focused .stella-comparison-aspect-line:not(.is-interpretation-selected) {
  opacity: 0.1;
}

.stella-native-chart.is-return-comparison {
  --chart-transit-label: #402e52;
  --chart-transit-point: #714c7e;
  --chart-transit-ring: #cfab72;
}

.stella-native-chart.is-return-comparison .stella-chart-transit-band {
  opacity: 0.2;
  stroke: color-mix(in srgb, #cfab72 72%, var(--chart-field-edge) 28%);
}

.stella-native-chart.is-return-comparison .stella-comparison-aspect-line {
  opacity: 0.62;
}

.stella-native-chart.is-return-comparison .stella-comparison-aspect-line.is-interpretation-selected {
  opacity: 1;
  stroke-width: 3.2;
}

.stella-native-chart.is-synastry-comparison {
  --chart-transit-label: #54364d;
  --chart-transit-point: #81536f;
  --chart-transit-ring: #b8c7bd;
}

.stella-native-chart.is-synastry-comparison .stella-chart-transit-band {
  opacity: 0.2;
  stroke: color-mix(in srgb, #b8c7bd 74%, #81536f 26%);
}

.stella-native-chart.is-synastry-comparison .stella-comparison-aspect-line {
  opacity: 0.52;
}

.stella-native-chart.is-synastry-comparison .stella-comparison-aspect-line.is-interpretation-selected {
  opacity: 1;
  stroke-width: 3.2;
}

.stella-transit-layer {
  color: var(--chart-transit-point);
}

.stella-chart-transit-band {
  fill: none;
  opacity: 0.22;
  stroke: color-mix(in srgb, var(--chart-transit-ring) 70%, var(--chart-field-edge) 30%);
  stroke-width: 76;
}

.stella-chart-transit-inner {
  fill: none;
  opacity: 0.55;
  stroke: color-mix(in srgb, var(--chart-structure) 54%, transparent);
  stroke-width: 0.9;
}

.stella-chart-transit-outer {
  fill: none;
  opacity: 0.98;
  stroke: color-mix(in srgb, var(--chart-transit-ring) 94%, var(--chart-ink) 6%);
  stroke-width: 1.55;
}

.stella-transit-house-slice.is-base {
  fill: color-mix(in srgb, var(--chart-house-base) 78%, transparent);
}

.stella-transit-house-slice.is-alt {
  fill: color-mix(in srgb, var(--chart-house-alt) 82%, transparent);
}

.stella-transit-house-cusp {
  opacity: 0.68;
  stroke: color-mix(in srgb, var(--chart-structure) 36%, transparent);
  stroke-width: 0.58;
}

.stella-transit-house-cusp.is-cardinal {
  opacity: 0.94;
  stroke: color-mix(in srgb, var(--chart-ink) 68%, var(--chart-transit-ring) 12%);
  stroke-linecap: round;
  stroke-width: 1.48;
}

.stella-transit-house-number {
  fill: color-mix(in srgb, var(--chart-ink) 58%, transparent);
  dominant-baseline: central;
  font: 850 8.8px var(--font-ui);
  text-anchor: middle;
}

.stella-transit-aspect-line {
  opacity: 0.72;
  stroke-width: 1.45;
}

.stella-transit-point-guide {
  opacity: 0.58;
  stroke: color-mix(in srgb, var(--chart-transit-point) 68%, transparent);
  stroke-linecap: round;
  stroke-width: 0.72;
}

.stella-transit-anchor {
  fill: var(--chart-transit-point);
  opacity: 0.96;
  stroke: color-mix(in srgb, var(--chart-field-edge) 72%, transparent);
  stroke-width: 1;
}

.chart-legend-stack {
  margin-top: 10px;
}

.chart-grid.has-chart-results .chart-legend-stack {
  margin-top: 5px;
}

.chart-aspect-legend {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px 8px;
  margin: 6px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--chart-structure) 22%, transparent);
  padding: 8px 0 0;
  list-style: none;
}

.chart-grid.has-chart-results .chart-aspect-legend {
  gap: 4px 6px;
  margin-top: 4px;
  padding-top: 5px;
}

.chart-aspect-legend li {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
}

.chart-grid.has-chart-results .chart-aspect-legend li {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 4px;
}

.aspect-legend-line {
  display: block;
  width: 24px;
  height: 0;
  border-top: 3px solid var(--chart-aspect-neutral);
  border-radius: 999px;
}

.chart-grid.has-chart-results .aspect-legend-line {
  width: 18px;
  border-top-width: 2.4px;
}

.aspect-legend-line.is-harmonious {
  border-top-color: var(--chart-aspect-harmonious);
}

.aspect-legend-line.is-sextile {
  border-top-color: var(--chart-aspect-sextile);
}

.aspect-legend-line.is-trine {
  border-top-color: var(--chart-aspect-trine);
}

.aspect-legend-line.is-dynamic {
  border-top-color: var(--chart-aspect-dynamic);
}

.aspect-legend-line.is-square {
  border-top-color: var(--chart-aspect-square);
}

.aspect-legend-line.is-opposition {
  border-top-color: var(--chart-aspect-opposition);
}

.aspect-legend-line.is-neutral {
  border-top-color: var(--chart-aspect-neutral);
}

.aspect-legend-line.is-conjunction {
  border-top-color: var(--chart-aspect-conjunction);
}

.aspect-legend-line.is-adjustment {
  border-top-color: var(--chart-aspect-adjustment);
  border-top-style: dashed;
}

.aspect-legend-line.is-quincunx {
  border-top-color: var(--chart-aspect-quincunx);
  border-top-style: dashed;
}

.chart-aspect-legend strong,
.chart-aspect-legend small {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

.chart-aspect-legend strong {
  color: color-mix(in srgb, var(--chart-ink) 86%, transparent);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.chart-grid.has-chart-results .chart-aspect-legend strong {
  font-size: 8.4px;
}

.chart-aspect-legend small {
  color: color-mix(in srgb, var(--chart-structure) 78%, transparent);
  font-size: 9.5px;
  font-weight: 750;
}

.chart-grid.has-chart-results .chart-aspect-legend small {
  display: none;
}

.chart-motion-note {
  margin: 0;
  color: color-mix(in srgb, var(--chart-structure) 78%, transparent);
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 750;
  text-align: right;
}

.chart-grid.has-chart-results .chart-motion-note {
  font-size: 9px;
}

.chart-motion-note strong {
  color: color-mix(in srgb, var(--chart-ink) 86%, transparent);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.chart-time-quality-note {
  align-items: flex-start;
  background: color-mix(in srgb, var(--stella-soft-gold) 12%, rgba(255, 254, 253, 0.82));
  border: 1px solid color-mix(in srgb, var(--stella-soft-gold) 34%, transparent);
  border-radius: 10px;
  color: color-mix(in srgb, var(--chart-structure) 88%, transparent);
  display: flex;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.45;
  margin: 8px 0 0;
  padding: 9px 11px;
}

.chart-time-quality-note strong {
  color: var(--chart-ink);
  flex: 0 0 auto;
  font-weight: 900;
}

.stella-zodiac-label text,
.stella-house-number,
.stella-angle-label,
.stella-angle-degree,
.stella-point-glyph {
  text-anchor: middle;
  dominant-baseline: central;
}

.stella-zodiac-label text {
  fill: var(--chart-zodiac-symbol);
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-style: normal;
  font-variant-emoji: text;
  font-weight: 500;
}

.stella-zodiac-icon,
.stella-point-icon,
.stella-transit-point-icon {
  filter: var(--chart-symbol-filter);
  overflow: visible;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
}

.stella-zodiac-icon {
  filter: var(--chart-zodiac-symbol-filter);
  opacity: 0.9;
}

.stella-house-number {
  fill: color-mix(in srgb, var(--chart-ink) 74%, transparent);
  font: 850 12px var(--font-ui);
}

.stella-angle-label {
  fill: var(--chart-ink);
  font: 900 11px var(--font-ui);
  letter-spacing: 0.08em;
}

.stella-angle-degree {
  fill: color-mix(in srgb, var(--chart-structure) 84%, transparent);
  font: 800 8px var(--font-ui);
}

.stella-angle-label.is-inner-angle {
  font-size: 9px;
  letter-spacing: 0.06em;
}

.stella-angle-degree.is-inner-angle {
  fill: color-mix(in srgb, var(--chart-structure) 72%, transparent);
  font-size: 7px;
  font-weight: 850;
}

.stella-chart-point {
  cursor: pointer;
}

.stella-point-guide {
  opacity: 0.7;
  stroke: color-mix(in srgb, var(--chart-structure) 68%, transparent);
  stroke-linecap: round;
  stroke-width: 0.9;
}

.stella-point-anchor {
  fill: var(--chart-ink);
  opacity: 0.72;
  stroke: rgba(255, 254, 253, 0.92);
  stroke-width: 0.85;
}

.stella-chart-point.is-clustered .stella-point-degree {
  fill: color-mix(in srgb, var(--chart-ink) 84%, transparent);
}

.stella-point-glyph {
  fill: var(--chart-ink);
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-style: normal;
  font-variant-emoji: text;
  font-weight: 400;
  paint-order: stroke;
  stroke: var(--chart-field-center);
  stroke-width: 3px;
  transition:
    fill 160ms ease,
    filter 160ms ease,
    font-size 160ms ease,
    font-weight 160ms ease,
    stroke 160ms ease,
    stroke-width 160ms ease;
}

.stella-point-icon {
  opacity: 0.94;
  transition:
    filter 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.stella-transit-point-icon {
  fill: var(--chart-transit-point);
  filter:
    url("#stella-transit-glyph-tint")
    drop-shadow(0 2px 0 color-mix(in srgb, var(--chart-field-edge) 82%, transparent));
  opacity: 0.96;
  transition:
    fill 160ms ease,
    filter 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.stella-transit-point-icon.is-transit-purple {
  fill: var(--chart-transit-point);
}

.stella-transit-point-glyph,
.stella-transit-degree,
.stella-transit-retrograde {
  dominant-baseline: central;
  text-anchor: middle;
}

.stella-transit-point-glyph {
  fill: var(--chart-transit-label);
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-variant-emoji: text;
  font-weight: 500;
  stroke: var(--chart-field-edge);
  stroke-width: 2.4px;
}

.stella-transit-degree {
  fill: var(--chart-transit-label);
  font: 925 14.7px var(--font-ui);
  letter-spacing: 0.005em;
  paint-order: normal;
  stroke: none;
  stroke-width: 0;
}

.stella-transit-degree.is-minute {
  font-size: 9.8px;
  font-weight: 760;
  letter-spacing: 0.005em;
  opacity: 0.94;
}

.stella-transit-retrograde {
  fill: var(--chart-transit-label);
  font: 900 8px var(--font-ui);
  letter-spacing: 0.04em;
  stroke: var(--chart-field-edge);
  stroke-width: 1.7px;
}

.stella-chart-point.is-text-label .stella-point-glyph {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.stella-point-degree {
  fill: color-mix(in srgb, var(--chart-ink) 84%, transparent);
  dominant-baseline: central;
  font: 925 14.7px var(--font-ui);
  letter-spacing: 0.005em;
  paint-order: normal;
  stroke: none;
  stroke-width: 0;
  text-anchor: middle;
  transition:
    fill 160ms ease,
    filter 160ms ease,
    font-size 160ms ease,
    font-weight 160ms ease,
    stroke 160ms ease,
    stroke-width 160ms ease;
}

.stella-point-degree.is-minute {
  fill: color-mix(in srgb, var(--chart-ink) 68%, transparent);
  font-size: 9.8px;
  font-weight: 760;
}

.stella-point-degree.is-combined {
  fill: color-mix(in srgb, var(--chart-ink) 82%, transparent);
  font-size: 12.1px;
  font-weight: 875;
}

.stella-point-degree.is-cluster-degree,
.stella-point-degree.is-cluster-minute {
  fill: color-mix(in srgb, var(--chart-ink) 84%, transparent);
  font-size: 14.7px;
  font-weight: 925;
}

.stella-point-degree.is-cluster-minute {
  fill: color-mix(in srgb, var(--chart-ink) 68%, transparent);
  font-size: 9.8px;
  font-weight: 760;
}

.stella-chart-point.is-point-vertex .stella-point-glyph,
.stella-chart-point.is-point-vertex .stella-transit-point-glyph {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.01em;
  stroke: color-mix(in srgb, var(--chart-field-center) 72%, transparent);
  stroke-width: 2px;
}

.stella-chart-point.is-point-vertex .stella-point-glyph {
  fill: var(--chart-transit-label);
}

.stella-chart-point.is-point-vertex .stella-transit-point-glyph {
  fill: var(--chart-transit-label);
}

.stella-chart-point.is-point-vertex .stella-point-anchor,
.stella-chart-point.is-point-vertex .stella-transit-anchor {
  opacity: 0.94;
  stroke: color-mix(in srgb, var(--chart-neutral) 70%, white 12%);
  stroke-width: 1.2;
  transform: scale(1.12);
  transform-box: fill-box;
  transform-origin: center;
}

.stella-point-retrograde {
  fill: color-mix(in srgb, var(--chart-ink) 86%, transparent);
  font: 900 8px var(--font-ui);
  letter-spacing: 0.04em;
  paint-order: stroke;
  stroke: rgba(255, 254, 253, 0.88);
  stroke-width: 1.8px;
  text-anchor: middle;
  dominant-baseline: central;
  transition:
    fill 160ms ease,
    filter 160ms ease,
    font-size 160ms ease,
    stroke 160ms ease,
    stroke-width 160ms ease;
}

.stella-chart-point:hover .stella-point-glyph,
.stella-chart-point:focus-visible .stella-point-glyph {
  fill: var(--stella-violet-deep);
  filter: drop-shadow(0 5px 8px color-mix(in srgb, var(--chart-ink) 24%, transparent));
  paint-order: stroke;
  stroke: rgba(255, 254, 253, 0.92);
  stroke-width: 1.7px;
  font-size: 35px;
  font-weight: 500;
}

.stella-chart-point:hover .stella-point-icon,
.stella-chart-point:focus-visible .stella-point-icon {
  filter: var(--chart-symbol-hover-filter);
  opacity: 1;
  transform: scale(1.12);
}

.stella-chart-point:hover .stella-transit-point-icon,
.stella-chart-point:focus-visible .stella-transit-point-icon {
  filter:
    url("#stella-transit-glyph-tint")
    drop-shadow(0 5px 8px color-mix(in srgb, var(--chart-transit-point) 24%, transparent));
  opacity: 1;
  transform: scale(1.12);
}

.stella-chart-point.is-text-label:hover .stella-point-glyph,
.stella-chart-point.is-text-label:focus-visible .stella-point-glyph {
  font-size: 12px;
  font-weight: 950;
}

.stella-chart-point:hover .stella-point-degree,
.stella-chart-point:focus-visible .stella-point-degree {
  fill: var(--chart-ink);
  filter: none;
  font-size: 15.3px;
  font-weight: 950;
  stroke: none;
  stroke-width: 0;
}

.stella-chart-point:hover .stella-point-degree.is-minute,
.stella-chart-point:focus-visible .stella-point-degree.is-minute {
  fill: color-mix(in srgb, var(--chart-ink) 76%, transparent);
  font-size: 10.2px;
  font-weight: 800;
}

.stella-chart-point:hover .stella-point-degree.is-combined,
.stella-chart-point:focus-visible .stella-point-degree.is-combined {
  font-size: 12.7px;
}

.stella-chart-point:hover .stella-point-degree.is-cluster-degree,
.stella-chart-point:focus-visible .stella-point-degree.is-cluster-degree {
  font-size: 15.3px;
}

.stella-chart-point:hover .stella-point-degree.is-cluster-minute,
.stella-chart-point:focus-visible .stella-point-degree.is-cluster-minute {
  font-size: 10.2px;
}

.stella-chart-point:hover .stella-point-retrograde,
.stella-chart-point:focus-visible .stella-point-retrograde {
  fill: var(--stella-violet-deep);
  filter: drop-shadow(0 4px 7px color-mix(in srgb, var(--chart-ink) 18%, transparent));
  font-size: 9.4px;
  stroke: rgba(255, 254, 253, 0.94);
  stroke-width: 2.2px;
}

.stella-chart-point:hover .stella-point-guide,
.stella-chart-point:focus-visible .stella-point-guide,
.stella-chart-point:hover .stella-point-anchor,
.stella-chart-point:focus-visible .stella-point-anchor {
  opacity: 1;
  stroke: color-mix(in srgb, var(--chart-ink) 78%, transparent);
}

.stella-chart-point:hover .stella-point-anchor,
.stella-chart-point:focus-visible .stella-point-anchor {
  fill: var(--stella-violet-deep);
}

.stella-chart-point[role="button"] {
  cursor: pointer;
  outline: none;
}

.stella-chart-point.is-interpretation-selected .stella-point-glyph {
  fill: var(--stella-violet-deep);
  filter: drop-shadow(0 5px 8px color-mix(in srgb, var(--chart-ink) 24%, transparent));
  paint-order: stroke;
  stroke: rgba(255, 254, 253, 0.92);
  stroke-width: 1.5px;
}

.stella-chart-point.is-interpretation-selected .stella-point-anchor {
  fill: var(--stella-violet-deep);
  opacity: 1;
}

@keyframes stella-chart-focus-pulse {
  0%,
  100% {
    opacity: 1;
  }

  45% {
    opacity: 0.58;
  }
}

.stella-aspect-line.is-chart-muted,
.stella-chart-point.is-chart-muted,
.stella-angle-marker.is-chart-muted {
  opacity: 0.16;
}

.stella-aspect-line.is-chart-highlighted {
  animation: stella-chart-focus-pulse 1.15s ease-in-out 2;
  opacity: 1;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--chart-aspect-conjunction) 34%, transparent));
}

.stella-pattern-highlight-line {
  animation: stella-chart-focus-pulse 1.15s ease-in-out 2;
  fill: none;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--stella-soft-gold) 42%, transparent));
  opacity: 0.96;
  pointer-events: none;
  stroke: var(--stella-soft-gold);
  stroke-linecap: round;
  stroke-width: 3;
}

.stella-pattern-highlight-line.is-conjunction {
  stroke: var(--chart-aspect-conjunction);
}

.stella-pattern-highlight-line.is-sextile {
  stroke: var(--chart-aspect-sextile);
}

.stella-pattern-highlight-line.is-trine {
  stroke: var(--chart-aspect-trine);
}

.stella-pattern-highlight-line.is-square {
  stroke: var(--chart-aspect-square);
}

.stella-pattern-highlight-line.is-opposition {
  stroke: var(--chart-aspect-opposition);
}

.stella-pattern-highlight-line.is-quincunx {
  stroke: var(--chart-aspect-quincunx);
  stroke-dasharray: 5 5;
}

.stella-chart-point.is-chart-highlighted {
  opacity: 1;
}

.stella-angle-marker.is-chart-highlighted {
  opacity: 1;
}

.stella-angle-marker.is-chart-highlighted .stella-angle-axis {
  animation: stella-chart-focus-pulse 1.15s ease-in-out 2;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--stella-soft-gold) 34%, transparent));
  opacity: 1;
  stroke: color-mix(in srgb, var(--chart-ink) 72%, transparent);
  stroke-width: 1.45;
}

.stella-angle-marker.is-chart-highlighted .stella-angle-label,
.stella-angle-marker.is-chart-highlighted .stella-angle-degree {
  animation: stella-chart-focus-pulse 1.15s ease-in-out 2;
  fill: var(--chart-ink);
  font-weight: 900;
}

.stella-chart-point.is-chart-highlighted .stella-point-icon,
.stella-chart-point.is-chart-highlighted .stella-point-glyph {
  animation: stella-chart-focus-pulse 1.15s ease-in-out 2;
  filter: var(--chart-symbol-hover-filter);
}

.stella-chart-point.is-chart-highlighted .stella-point-degree,
.stella-chart-point.is-chart-highlighted .stella-transit-degree {
  animation: stella-chart-focus-pulse 1.15s ease-in-out 2;
  fill: var(--chart-ink);
  font-size: 13.8px;
  font-weight: 900;
}

.stella-chart-point.is-chart-highlighted .stella-point-anchor {
  fill: var(--stella-soft-gold);
  opacity: 1;
}

.chart-summary-panel {
  width: min(100%, 820px);
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.8);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 18px 42px rgba(70, 29, 92, 0.08);
}

.chart-grid.has-chart-results .chart-summary-panel {
  grid-column: 3;
  grid-area: summary;
  width: 100%;
  min-height: 0;
  height: auto;
  max-height: none;
  align-self: start;
  margin-top: 0;
  overflow: visible;
  overscroll-behavior: auto;
  position: relative;
  scrollbar-gutter: stable;
  top: auto;
}

@media (min-width: 1041px) and (max-height: 760px) {
  .chart-grid.has-chart-results .chart-visual svg {
    max-height: clamp(440px, 64vh, 660px);
  }

  .chart-grid.has-chart-results .chart-layer-toggle {
    min-height: 30px;
    padding-block: 4px;
  }

  .chart-grid.has-chart-results .transit-date-controls {
    gap: 5px;
    padding: 5px;
  }

  .chart-grid.has-chart-results .chart-aspect-legend {
    padding-top: 4px;
  }
}

.chart-insight-tabs {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.chart-grid.has-chart-results .chart-insight-tabs {
  gap: 10px;
  margin: 12px 0;
}

.chart-insight-tablist {
  display: grid;
  grid-template-columns: repeat(4, minmax(max-content, 1fr));
  gap: 4px;
  border: 1px solid rgba(70, 29, 92, 0.1);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.68);
  min-width: 0;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: thin;
}

.chart-insight-tab {
  min-width: max-content;
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: color-mix(in srgb, var(--brand-plum) 64%, transparent);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: clamp(8.6px, 0.72vw, 10px);
  font-weight: 950;
  letter-spacing: 0.045em;
  padding: 6px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.chart-insight-tab:hover,
.chart-insight-tab:focus-visible,
.chart-insight-tab.is-active {
  background: var(--brand-plum);
  color: var(--paper);
  outline: none;
}

.chart-insight-panel-stack {
  display: grid;
}

.chart-insight-panel {
  display: grid;
  gap: 16px;
}

.chart-grid.has-chart-results .chart-insight-panel {
  gap: 12px;
}

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

.chart-tab-section-head {
  display: grid;
  gap: 5px;
}

.chart-tab-section-head h4 {
  margin: 0;
}

.chart-tab-section-head p,
.chart-beginner-block p,
.chart-house-card p,
.chart-aspect-learning-copy p {
  margin: 0;
  color: rgba(70, 29, 92, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.chart-beginner-block,
.chart-house-walkthrough {
  display: grid;
  gap: 12px;
}

.chart-big-three-grid,
.chart-house-list,
.chart-aspect-learning-list {
  display: grid;
  gap: 9px;
}

.chart-grid.has-chart-results .chart-house-list,
.chart-grid.has-chart-results .chart-aspect-learning-list {
  gap: 7px;
}

.chart-big-three-card,
.chart-house-card,
.chart-aspect-learning-card {
  border: 1px solid rgba(70, 29, 92, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(146, 103, 254, 0.055), rgba(116, 178, 235, 0.055)),
    rgba(255, 254, 253, 0.7);
  padding: 11px;
}

.chart-grid.has-chart-results .chart-house-card,
.chart-grid.has-chart-results .chart-aspect-learning-card {
  padding: 9px;
}

.chart-big-three-card.is-clickable {
  cursor: pointer;
}

.chart-big-three-card:hover,
.chart-big-three-card:focus-visible,
.chart-big-three-card.is-interpretation-selected,
.house-placement-link:hover,
.house-placement-link:focus-visible,
.house-placement-link.is-interpretation-selected {
  border-color: color-mix(in srgb, var(--brand-purple) 30%, transparent);
  background:
    linear-gradient(135deg, rgba(146, 103, 254, 0.11), rgba(116, 178, 235, 0.09)),
    rgba(255, 254, 253, 0.9);
  outline: none;
}

.chart-big-three-card {
  display: grid;
  gap: 6px;
}

.chart-big-three-card > span,
.chart-house-card > div > span {
  color: var(--brand-purple);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-big-three-card div,
.house-placement-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.chart-big-three-card strong,
.chart-house-card strong,
.chart-aspect-learning-card strong,
.house-placement-table strong {
  color: var(--brand-plum);
}

.chart-big-three-card small,
.chart-house-card small,
.house-placement-table small {
  color: rgba(70, 29, 92, 0.62);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 760;
}

.chart-big-three-card p,
.chart-bundle-status {
  margin: 0;
  color: rgba(70, 29, 92, 0.72);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.45;
}

.chart-bundle-status {
  margin-top: 4px;
  color: rgba(70, 29, 92, 0.62);
  font-size: 11px;
  font-weight: 760;
}

.chart-house-card {
  display: grid;
  gap: 8px;
}

.chart-house-card > div {
  display: grid;
  gap: 3px;
}

.chart-house-title-row {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.chart-house-title-row strong {
  min-width: 0;
  line-height: 1.05;
  white-space: nowrap;
}

.chart-house-open-card {
  min-height: 24px;
  flex: 0 0 auto;
  padding: 4px 8px;
}

.chart-house-plain {
  margin-top: 2px;
}

.chart-house-prompt {
  border-left: 2px solid color-mix(in srgb, var(--stella-soft-gold) 70%, transparent);
  margin-top: 2px;
  padding-left: 9px;
}

.house-placement-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(70, 29, 92, 0.035), rgba(255, 254, 253, 0.34)),
    rgba(255, 254, 253, 0.62);
  overscroll-behavior-inline: contain;
}

.house-placement-table {
  width: 100%;
  min-width: 286px;
  border-collapse: collapse;
  display: block;
  table-layout: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.house-placement-table tbody {
  display: block;
}

.house-placement-row {
  display: grid;
  grid-template-columns: minmax(112px, 1.05fr) minmax(98px, 0.82fr) 52px;
  align-items: center;
}

.house-placement-table td {
  border-bottom: 1px solid rgba(70, 29, 92, 0.09);
  padding: 5px 6px;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: normal;
  text-align: left;
  vertical-align: middle;
  word-break: normal;
}

.house-placement-point-cell {
  width: auto;
}

.house-placement-position-cell {
  width: auto;
}

.house-placement-action-cell {
  width: 52px;
  text-align: right;
}

.house-placement-table tr:last-child td {
  border-bottom: 0;
}

.house-placement-row:hover {
  background: rgba(146, 103, 254, 0.055);
}

.house-placement-link {
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 3px 2px;
  text-align: left;
}

.house-placement-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  column-gap: 7px;
}

.house-placement-link .chart-pattern-glyph {
  display: inline-grid;
  width: 22px;
  min-width: 22px;
  place-items: center;
  text-align: center;
  white-space: nowrap;
}

.house-placement-link .chart-pattern-glyph.is-image-glyph {
  display: inline-block;
  width: 16px;
  min-width: 16px;
  object-fit: contain;
}

.house-placement-link > span:last-child,
.house-placement-position-cell {
  display: grid;
  gap: 1px;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.house-placement-link > span:last-child,
.house-placement-position-cell strong {
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: keep-all;
}

.house-placement-link > span:last-child {
  color: var(--brand-plum);
  font-size: 11px;
  font-weight: 880;
  overflow: hidden;
  text-overflow: ellipsis;
}

.house-placement-position-cell strong {
  font-size: 10.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.house-placement-position-cell small {
  display: block;
  font-size: 9.5px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.house-placement-action-cell .chart-show-factor {
  min-width: 42px;
  min-height: 23px;
  padding: 3px 7px;
  font-size: 9px;
}

@media (max-width: 560px) {
  .house-placement-table {
    min-width: 274px;
  }

  .house-placement-row {
    grid-template-columns: minmax(104px, 1fr) minmax(92px, 0.8fr) 50px;
  }

  .house-placement-table td {
    padding-inline: 5px;
  }

  .house-placement-link {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 6px;
  }
}

.chart-aspect-learning-card {
  display: grid;
  gap: 10px;
}

.chart-aspect-learning-copy {
  display: grid;
  gap: 5px;
}

.chart-aspect-learning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chart-pattern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chart-show-factor,
.chart-open-card {
  min-height: 30px;
  border: 1px solid rgba(70, 29, 92, 0.13);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.chart-show-factor {
  background: rgba(255, 254, 253, 0.78);
  color: var(--brand-plum);
  white-space: nowrap;
}

.chart-show-factor:hover,
.chart-show-factor:focus-visible,
.chart-show-factor.is-active {
  border-color: color-mix(in srgb, var(--stella-soft-gold) 56%, transparent);
  background: color-mix(in srgb, var(--stella-soft-gold) 22%, white);
  outline: none;
}

.chart-show-factor.is-active {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--stella-soft-gold) 24%, transparent);
}

.house-placement-show,
.chart-placement-show {
  min-height: 28px;
  padding-inline: 9px;
}

.chart-open-card {
  border-color: transparent;
  background: var(--brand-plum);
  color: var(--paper);
}

.chart-open-card:hover,
.chart-open-card:focus-visible {
  background: var(--night);
  outline: none;
}

.chart-dashboard-panel,
.chart-companion-panel {
  width: min(100%, 900px);
  border: 1px solid rgba(70, 29, 92, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 10%, rgba(222, 188, 135, 0.14), transparent 32%),
    rgba(255, 254, 253, 0.8);
  box-shadow: 0 18px 42px rgba(70, 29, 92, 0.08);
  padding: clamp(18px, 3vw, 26px);
}

.chart-grid.has-chart-results .chart-dashboard-panel {
  grid-column: 2;
  grid-area: dashboard;
  justify-self: center;
}

.chart-grid.has-chart-results .chart-companion-panel {
  grid-column: 3;
  grid-area: companion;
  justify-self: stretch;
}

.natal-lens-grid,
.companion-lens-grid {
  display: grid;
  gap: 10px;
}

.natal-lens-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.companion-lens-grid {
  grid-template-columns: 1fr;
}

.natal-lens-card,
.companion-lens-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(70, 29, 92, 0.11);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.64);
  padding: 13px;
}

.natal-lens-card {
  border-left: 4px solid rgba(222, 188, 135, 0.76);
}

.companion-lens-card {
  border-left: 4px solid rgba(90, 101, 94, 0.48);
}

.companion-lens-card.is-active {
  border-left-color: rgba(116, 178, 235, 0.72);
}

.natal-lens-head {
  display: grid;
  gap: 3px;
}

.natal-lens-head span,
.companion-lens-card small {
  color: color-mix(in srgb, var(--brand-purple) 74%, transparent);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.natal-lens-head h4,
.companion-lens-card strong {
  margin: 0;
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 950;
}

.natal-lens-points {
  display: grid;
  gap: 7px;
}

.natal-lens-point {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
}

.natal-lens-glyph {
  display: inline-grid;
  width: 28px;
  min-width: 28px;
  height: 20px;
  place-items: center;
  color: var(--brand-plum);
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.natal-lens-glyph.is-image-glyph {
  display: inline-block;
  width: 20px;
  min-width: 20px;
  object-fit: contain;
  filter: var(--chart-symbol-filter);
}

.natal-lens-point strong,
.natal-lens-point small {
  display: block;
}

.natal-lens-point strong {
  color: var(--brand-purple);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.natal-lens-point small {
  color: rgba(70, 29, 92, 0.74);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
}

.natal-lens-card p,
.natal-lens-card > small,
.companion-lens-card p {
  margin: 0;
  color: rgba(70, 29, 92, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.natal-lens-card > small {
  border-top: 1px solid rgba(70, 29, 92, 0.08);
  padding-top: 9px;
  font-family: var(--font-ui);
  font-weight: 800;
}

.chart-transit-panel {
  width: min(100%, 900px);
  border: 1px solid rgba(70, 29, 92, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(146, 103, 254, 0.11), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(116, 178, 235, 0.13), transparent 32%),
    rgba(255, 254, 253, 0.78);
  box-shadow: 0 18px 42px rgba(70, 29, 92, 0.08);
  padding: clamp(18px, 3vw, 26px);
}

.chart-grid.has-chart-results .chart-transit-panel {
  grid-column: 2;
  grid-area: transit;
  justify-self: center;
}

.premium-tease-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.premium-tease-card {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.74), rgba(228, 164, 223, 0.14)),
    rgba(255, 254, 253, 0.54);
  padding: 15px;
}

.premium-tease-card::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2.5px);
  background: rgba(255, 254, 253, 0.3);
  pointer-events: none;
}

.premium-tease-card span,
.premium-tease-card strong,
.premium-tease-card small {
  position: relative;
  z-index: 1;
}

.premium-tease-card span {
  display: block;
  color: var(--brand-gold);
  font-size: 21px;
  line-height: 1;
}

.premium-tease-card strong,
.premium-tease-card small {
  display: block;
}

.premium-tease-card strong {
  color: var(--brand-plum);
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
}

.premium-tease-card small {
  color: rgba(70, 29, 92, 0.6);
  margin-top: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 850;
}

.chart-transit-panel.is-muted {
  color: rgba(70, 29, 92, 0.7);
}

.chart-transit-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.chart-transit-header h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
}

.chart-transit-header > span {
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.72);
  color: var(--brand-plum);
  padding: 7px 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 850;
}

.chart-layer-note {
  border-left: 3px solid color-mix(in srgb, var(--chart-aspect-conjunction) 64%, transparent);
  color: rgba(70, 29, 92, 0.7);
  margin: 0 0 14px;
  padding-left: 11px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.transit-card-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transit-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-left: 4px solid rgba(146, 103, 254, 0.48);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.66);
  padding: 13px;
}

.transit-card[data-transit-strength="strong"] {
  border-left-color: rgba(213, 45, 92, 0.72);
}

.transit-card[data-transit-strength="moderate"] {
  border-left-color: rgba(146, 103, 254, 0.56);
}

.transit-card[data-transit-strength="weak"] {
  border-left-color: rgba(116, 178, 235, 0.62);
}

.transit-card-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.transit-rank {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(70, 29, 92, 0.1);
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
}

.transit-card strong {
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.transit-card strong > span:not(.transit-glyph) {
  color: var(--brand-purple);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transit-glyph {
  display: inline-grid;
  min-width: 20px;
  place-items: center;
  color: var(--brand-plum);
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: normal;
  font-variant-emoji: text;
  font-weight: 700;
  line-height: 1;
}

.transit-card p {
  margin: 0;
  color: rgba(70, 29, 92, 0.76);
  font-size: 14px;
}

.transit-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.transit-card-meta span {
  border-radius: 999px;
  background: rgba(116, 178, 235, 0.12);
  color: rgba(70, 29, 92, 0.72);
  padding: 4px 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
}

.transit-card small {
  color: rgba(70, 29, 92, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 750;
}

.chart-summary-panel h3,
.chart-summary-panel h4 {
  margin: 0 0 12px;
}

.chart-summary-panel h3 {
  font-size: 32px;
}

.chart-disclaimer {
  border-left: 3px solid var(--brand-pink);
  margin: 0 0 18px;
  padding-left: 12px;
  font-size: 14px;
}

.chart-insight-strip {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  border: 1px solid rgba(70, 29, 92, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(116, 178, 235, 0.1), transparent 36%),
    rgba(255, 254, 253, 0.62);
  padding: 11px;
}

.chart-insight-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 7px;
}

.chart-insight-stats span {
  display: grid;
  min-width: 0;
  gap: 2px;
  border: 1px solid rgba(70, 29, 92, 0.09);
  border-radius: 7px;
  background: rgba(255, 254, 253, 0.68);
  padding: 8px 7px;
}

.chart-insight-stats strong,
.chart-insight-stats small,
.chart-insight-strip p {
  font-family: var(--font-ui);
}

.chart-insight-stats strong {
  color: var(--brand-plum);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.chart-insight-stats small {
  color: rgba(70, 29, 92, 0.62);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.chart-insight-strip p {
  margin: 0;
  color: rgba(70, 29, 92, 0.7);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.4;
}

.chart-factor-list,
.chart-note-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.chart-factor-list li {
  display: grid;
  grid-template-columns: minmax(112px, max-content) minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(70, 29, 92, 0.1);
  padding-top: 8px;
  overflow-wrap: normal;
  word-break: normal;
}

.chart-factor-list strong {
  color: var(--brand-purple);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aspect-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.aspect-chip {
  min-height: 38px;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(146, 103, 254, 0.08), rgba(116, 178, 235, 0.07)),
    rgba(255, 254, 253, 0.82);
  color: var(--brand-plum);
  cursor: default;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 780;
}

.aspect-chip.has-card {
  cursor: pointer;
  padding-right: 8px;
}

.aspect-chip.has-card:hover,
.aspect-chip.has-card:focus-visible,
.aspect-chip.has-card.is-selected {
  border-color: rgba(146, 103, 254, 0.34);
  background:
    linear-gradient(135deg, rgba(146, 103, 254, 0.14), rgba(116, 178, 235, 0.12)),
    rgba(255, 254, 253, 0.94);
  box-shadow: 0 12px 26px rgba(70, 29, 92, 0.1);
}

.aspect-chip span {
  display: inline-grid;
  place-items: center;
  min-height: 22px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(70, 29, 92, 0.1);
  color: var(--brand-plum);
  padding: 0 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.aspect-card-stack {
  display: grid;
  gap: 12px;
  margin: -4px 0 18px;
}

.aspect-card-detail {
  border: 1px solid rgba(70, 29, 92, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.94), rgba(228, 164, 223, 0.1)),
    var(--surface);
  box-shadow: 0 20px 48px rgba(70, 29, 92, 0.1);
  padding: clamp(16px, 3vw, 22px);
}

.aspect-card-detail h5 {
  margin: 0 0 10px;
  color: var(--brand-plum);
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 0.95;
}

.aspect-card-detail p {
  margin: 0 0 14px;
}

.aspect-card-detail dl {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.aspect-card-detail dl div {
  border-top: 1px solid rgba(70, 29, 92, 0.1);
  padding-top: 10px;
}

.aspect-card-detail dt {
  color: var(--brand-purple);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aspect-card-detail dd {
  margin: 4px 0 0;
  color: rgba(70, 29, 92, 0.78);
}

.aspect-card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.aspect-card-keywords span {
  border-radius: 999px;
  background: rgba(116, 178, 235, 0.13);
  color: var(--brand-plum);
  padding: 5px 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
}

.aspect-card-detail > small {
  display: block;
  color: rgba(70, 29, 92, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
}

.chart-interpretation-panel {
  border: 1px solid color-mix(in srgb, var(--brand-plum) 16%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--stella-gold) 15%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 94%, white), color-mix(in srgb, var(--stella-lavender-mist) 18%, var(--surface)));
  box-shadow: 0 24px 62px color-mix(in srgb, var(--brand-plum) 12%, transparent);
  padding: clamp(18px, 3vw, 26px);
}

.chart-grid.has-chart-results .chart-interpretation-panel {
  width: min(100%, 900px);
  margin: 4px 0 18px;
}

.chart-interpretation-shell {
  display: grid;
  gap: 14px;
}

.chart-interpretation-panel h3 {
  margin: 0;
  color: var(--brand-plum);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 0.95;
}

.chart-interpretation-panel p {
  margin: 0;
  color: color-mix(in srgb, var(--chart-ink) 82%, transparent);
}

.chart-interpretation-summary {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.45;
}

.chart-interpretation-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.chart-interpretation-panel dl div {
  border-top: 1px solid color-mix(in srgb, var(--brand-plum) 12%, transparent);
  padding-top: 10px;
}

.chart-interpretation-panel dt {
  color: var(--brand-purple);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-interpretation-panel dd {
  margin: 4px 0 0;
  color: color-mix(in srgb, var(--chart-ink) 78%, transparent);
}

.chart-interpretation-panel small {
  color: color-mix(in srgb, var(--brand-plum) 58%, transparent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 760;
}

.chart-interpretation-panel[data-state="pending"] {
  border-color: color-mix(in srgb, var(--brand-purple) 22%, transparent);
}

.chart-interpretation-panel[data-state="error"] {
  border-color: rgba(138, 47, 77, 0.3);
}

.chart-pattern-list {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
}

.chart-pattern-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(70, 29, 92, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(116, 178, 235, 0.08), rgba(228, 164, 223, 0.08)),
    rgba(255, 254, 253, 0.7);
  padding: 10px 12px;
}

.chart-pattern-card.has-card-request {
  cursor: pointer;
}

.chart-pattern-card.has-card-request:hover,
.chart-pattern-card.has-card-request:focus-visible,
.chart-pattern-card.has-card-request.is-interpretation-selected,
.chart-placement-item.is-clickable:hover,
.chart-placement-item.is-clickable:focus-visible,
.chart-placement-item.is-clickable.is-interpretation-selected {
  border-color: color-mix(in srgb, var(--brand-purple) 32%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-purple) 10%, transparent), color-mix(in srgb, var(--stella-mist-blue) 13%, transparent)),
    color-mix(in srgb, var(--surface) 86%, white);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--brand-plum) 10%, transparent);
  outline: none;
}

.chart-pattern-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  justify-content: space-between;
}

.chart-pattern-tag {
  color: var(--brand-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-pattern-card small {
  color: rgba(70, 29, 92, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
}

.chart-pattern-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chart-pattern-points > span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: rgba(70, 29, 92, 0.06);
  color: var(--brand-plum);
  padding: 3px 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
}

.chart-pattern-glyph {
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.chart-pattern-card p,
.chart-pattern-empty {
  margin: 0;
  color: rgba(70, 29, 92, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.chart-pattern-empty {
  margin: 0 0 18px;
  border-left: 3px solid rgba(116, 178, 235, 0.5);
  padding-left: 12px;
}

.chart-note-list li {
  border-left: 3px solid rgba(116, 178, 235, 0.5);
  padding-left: 12px;
  color: rgba(70, 29, 92, 0.76);
}

.chart-placement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  overflow-wrap: normal;
  word-break: normal;
}

.chart-placement-list li {
  display: grid;
  grid-template-columns: 26px minmax(70px, max-content) minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(70, 29, 92, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.62);
  padding: 8px;
}

.chart-placement-item.is-clickable {
  cursor: pointer;
}

.placement-symbol {
  color: var(--brand-plum);
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal;
  font-variant-emoji: text;
  font-weight: 700;
  line-height: 1;
}

.placement-symbol.is-image-glyph,
.chart-pattern-glyph.is-image-glyph,
.transit-glyph.is-image-glyph {
  display: inline-block;
  object-fit: contain;
  filter: var(--chart-symbol-filter);
}

.placement-symbol.is-image-glyph {
  align-self: center;
  justify-self: center;
  width: 20px;
  height: 20px;
}

.chart-pattern-glyph.is-image-glyph {
  width: 16px;
  height: 16px;
}

.transit-glyph.is-image-glyph {
  width: 19px;
  height: 19px;
  vertical-align: -4px;
}

.chart-placement-list strong {
  color: var(--brand-purple);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.chart-placement-list span:not(.placement-symbol) {
  color: var(--brand-plum);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.chart-placement-list .placement-position {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.chart-placement-list .placement-position .placement-zodiac-sign {
  color: color-mix(in srgb, var(--chart-zodiac-symbol) 88%, var(--chart-ink));
  font-weight: 850;
}

.placement-retrograde {
  display: inline-grid;
  min-height: 18px;
  place-items: center;
  border: 1px solid rgba(70, 29, 92, 0.16);
  border-radius: 999px;
  background: rgba(70, 29, 92, 0.06);
  color: var(--brand-plum);
  padding: 0 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.placement-retrograde[data-card-request] {
  cursor: pointer;
}

.chart-placement-list small {
  grid-column: 2 / 4;
  color: rgba(70, 29, 92, 0.58);
  font-size: 11px;
  font-weight: 750;
}

.chart-placeholder {
  height: auto;
}

.about-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(228, 164, 223, 0.08), transparent 30%),
    radial-gradient(circle at 84% 68%, rgba(116, 178, 235, 0.08), transparent 32%),
    linear-gradient(135deg, var(--night), var(--brand-plum) 58%, #24103c);
  color: var(--paper);
}

.about-section p {
  color: var(--ivory);
}

.about-section .kicker {
  color: var(--brand-pink);
}

.author-portrait-card {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(255, 254, 253, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 24%, rgba(116, 178, 235, 0.1), transparent 30%),
    rgba(255, 254, 253, 0.08);
  box-shadow: 0 28px 70px rgba(18, 6, 42, 0.24);
}

.author-portrait-card::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(228, 164, 223, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.author-portrait-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 240px);
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(255, 254, 253, 0.36);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(18, 6, 42, 0.28);
}

.author-portrait-card figcaption {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  text-align: center;
}

.author-portrait-card span,
.author-portrait-card small {
  display: block;
}

.author-portrait-card span {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.05;
}

.author-portrait-card small {
  margin-top: 8px;
  color: rgba(230, 227, 217, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chart-instrument {
  position: relative;
  min-height: clamp(560px, 54vw, 680px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 74% 24%, rgba(116, 178, 235, 0.14), transparent 24%),
    radial-gradient(circle at 26% 68%, rgba(228, 164, 223, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 254, 253, 0.9), rgba(208, 206, 217, 0.74));
  overflow: hidden;
}

.wheel {
  position: absolute;
  top: clamp(40px, 5vw, 72px);
  left: 50%;
  width: min(calc(100% - clamp(48px, 9vw, 104px)), 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(70, 29, 92, 0.26);
  border-radius: 50%;
  transform: translateX(-50%);
}

.wheel::before,
.wheel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(84, 78, 103, 0.22);
  border-radius: 50%;
}

.wheel::before { inset: 18%; }
.wheel::after { inset: 36%; }

.glyph {
  position: absolute;
  color: var(--brand-purple);
  font-size: 32px;
}

.glyph-one { top: clamp(54px, 7vw, 88px); left: clamp(58px, 7vw, 94px); }
.glyph-two { top: clamp(190px, 22vw, 270px); right: clamp(58px, 7vw, 94px); }
.glyph-three { bottom: clamp(86px, 9vw, 118px); left: clamp(86px, 10vw, 142px); }

.instrument-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: rgba(249, 248, 247, 0.86);
  color: var(--brand-plum);
}

.instrument-card p {
  margin: 4px 0 0;
  color: rgba(70, 29, 92, 0.72);
}

.updates-section {
  background:
    linear-gradient(135deg, rgba(70, 29, 92, 0.08), rgba(255, 254, 253, 0.86) 44%, rgba(116, 178, 235, 0.08)),
    var(--ivory);
}

.launch-signup {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.signup-paused-panel,
.updates-card {
  width: 100%;
  max-width: none;
  margin-top: 0;
  border: 1px solid rgba(70, 29, 92, 0.14);
  border-top: 4px solid var(--brand-gold);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.9), rgba(230, 227, 217, 0.72)),
    var(--paper);
  box-shadow: 0 24px 70px rgba(70, 29, 92, 0.08);
  padding: clamp(28px, 4vw, 42px);
}

.updates-card {
  border-top-color: var(--brand-purple);
}

.signup-paused-panel .panel-label,
.updates-card .panel-label {
  margin: 0 0 14px;
  color: var(--brand-purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signup-paused-panel h3,
.updates-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--brand-plum);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
}

.signup-paused-panel p,
.updates-card p {
  max-width: 560px;
}

.updates-card-form {
  margin-top: 24px;
}

.updates-signup-row input[type="text"] {
  flex: 0.88;
}

.updates-signup-row input[type="email"] {
  flex: 1.12;
}

.signup-paused-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.signup-paused-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(70, 29, 92, 0.78);
  font-weight: 700;
}

.signup-paused-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(116, 178, 235, 0.14);
  flex: 0 0 auto;
}

.signup-paused-note {
  margin-top: 28px;
  border-top: 1px solid rgba(70, 29, 92, 0.12);
  padding-top: 18px;
  font-size: 14px;
}

.form-note {
  margin: 12px 0 0;
  font-size: 14px;
}

.form-note[data-state="pending"] {
  color: var(--brand-purple);
}

.form-note[data-state="success"] {
  color: #315b50;
}

.form-note[data-state="error"] {
  color: #8a2f4d;
}

.form-note[data-state="paused"] {
  color: rgba(70, 29, 92, 0.72);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(228, 164, 223, 0.08), transparent 34%),
    radial-gradient(circle at 58% 70%, rgba(116, 178, 235, 0.07), transparent 28%),
    var(--night);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  margin-bottom: 0;
  color: var(--ivory);
}

.footer-grid .footer-legal {
  grid-column: 1 / -1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 254, 253, 0.68);
}

.site-footer .brand small {
  color: var(--ivory);
}

.coming-soon-page {
  background:
    radial-gradient(circle at 78% 16%, rgba(178, 155, 189, 0.16), transparent 27%),
    radial-gradient(circle at 18% 26%, rgba(184, 199, 189, 0.18), transparent 31%),
    linear-gradient(180deg, #fffefd 0%, #f7f4f0 46%, #ede8df 100%);
}

.coming-soon-header {
  background: rgba(255, 254, 253, 0.76);
  border-bottom: 1px solid rgba(70, 29, 92, 0.08);
  backdrop-filter: blur(18px);
}

.coming-soon-main {
  overflow: hidden;
}

.coming-soon-hero {
  position: relative;
  min-height: min(760px, 86svh);
  display: grid;
  align-items: center;
  padding: clamp(96px, 10vw, 124px) 0 clamp(34px, 5vw, 64px);
}

.coming-soon-hero::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto auto;
  width: min(68vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(70, 29, 92, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 254, 253, 0.28), transparent 30%),
    repeating-radial-gradient(circle, rgba(70, 29, 92, 0.08) 0 1px, transparent 1px 42px);
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-12deg);
}

.coming-soon-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.coming-soon-copy h1 {
  max-width: 840px;
  margin-bottom: 20px;
  color: var(--brand-plum);
  font-size: 38px;
  line-height: 1.02;
}

.coming-soon-copy .lede {
  max-width: 690px;
  color: rgba(70, 29, 92, 0.76);
  font-size: clamp(19px, 2.2vw, 25px);
}

.coming-soon-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.coming-soon-points span {
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.62);
  color: var(--brand-plum);
  padding: 9px 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coming-soon-panel {
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-top: 4px solid var(--golden);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(228, 164, 223, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 254, 253, 0.92), rgba(230, 227, 217, 0.72));
  box-shadow: 0 28px 80px rgba(70, 29, 92, 0.14);
  padding: clamp(22px, 3.2vw, 32px);
}

.coming-soon-panel h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.06;
}

.coming-soon-panel p {
  color: rgba(70, 29, 92, 0.72);
}

.panel-label {
  margin: 0 0 14px;
  color: var(--brand-purple);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coming-soon-signup {
  max-width: none;
  margin-top: 18px;
}

.coming-soon-signup input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 254, 253, 0.82);
  padding: 0 16px;
}

.coming-soon-signup .consent-check {
  align-items: flex-start;
  margin-top: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.coming-soon-signup .consent-check span {
  color: rgba(70, 29, 92, 0.68);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42;
}

.coming-soon-section {
  position: relative;
}

.coming-soon-book {
  padding: clamp(58px, 8vw, 104px) 0;
  border-top: 1px solid rgba(70, 29, 92, 0.08);
  border-bottom: 1px solid rgba(70, 29, 92, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(222, 188, 135, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 254, 253, 0.84), rgba(242, 241, 240, 0.86));
}

.coming-soon-book-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.coming-soon-cover {
  position: relative;
  width: min(100%, 294px);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(41, 36, 51, 0.16);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.78);
  box-shadow:
    0 28px 70px rgba(41, 36, 51, 0.13),
    14px 18px 0 rgba(90, 101, 94, 0.08);
}

.coming-soon-cover::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  z-index: -1;
  border: 1px solid rgba(165, 144, 101, 0.22);
  border-radius: 8px;
}

.coming-soon-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.coming-soon-cover figcaption {
  margin-top: 10px;
  color: rgba(41, 36, 51, 0.64);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.coming-soon-book-copy {
  max-width: 820px;
}

.coming-soon-book-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--brand-plum);
  font-size: 28px;
  line-height: 1.06;
}

.coming-soon-book-copy p {
  max-width: 760px;
  color: rgba(41, 36, 51, 0.78);
  font-size: clamp(17px, 1.7vw, 20px);
}

.reading-room-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: clamp(24px, 4vw, 34px) 0 0;
}

.reading-room-list li {
  list-style: none;
  border-top: 1px solid rgba(70, 29, 92, 0.16);
  padding-top: 14px;
}

.reading-room-list span {
  display: block;
  color: var(--brand-plum);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reading-room-list small {
  display: block;
  margin-top: 8px;
  color: rgba(41, 36, 51, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.coming-soon-chart-grid {
  grid-template-columns: minmax(320px, 0.46fr) minmax(620px, 1fr);
}

.coming-soon-chart-grid.has-chart-results {
  grid-template-columns: minmax(292px, 0.33fr) minmax(690px, 1fr) minmax(320px, 0.38fr);
}

.chart-results-basic .chart-basic-panel h3 {
  margin-bottom: 12px;
}

.has-basic-chart-results .chart-transit-panel {
  display: none;
}

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

  .coming-soon-panel {
    max-width: 720px;
  }

  .coming-soon-chart-grid,
  .coming-soon-chart-grid.has-chart-results {
    grid-template-columns: 1fr;
  }

  .coming-soon-book-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-book-copy {
    max-width: none;
  }
}

@media (max-width: 780px) {
  .coming-soon-header .brand small {
    display: none;
  }

  .coming-soon-header .brand {
    gap: 8px;
  }

  .coming-soon-header .brand-mark {
    width: 52px;
    height: 42px;
  }

  .coming-soon-header .brand strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .coming-soon-header .nav {
    display: flex;
    gap: 10px;
    font-size: 12px;
  }

  .coming-soon-header .header-action {
    display: none;
  }

  .coming-soon-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .coming-soon-hero::before {
    width: 120vw;
    inset: 2% -52% auto auto;
    opacity: 0.42;
  }

  .coming-soon-copy h1 {
    font-size: 38px;
  }

  .coming-soon-copy .lede,
  .coming-soon-panel p,
  .coming-soon-signup .consent-check span {
    color: rgba(70, 29, 92, 0.82);
  }

  .coming-soon-points span {
    width: 100%;
  }

  .coming-soon-book {
    padding: 48px 0 58px;
  }

  .coming-soon-cover {
    width: min(100%, 238px);
  }

  .coming-soon-book-copy h2 {
    font-size: 28px;
  }

  .reading-room-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ivory: #d8d0c1;
    --taupe: #9b90a3;
    --golden: #d0b474;
    --lilac: #c3b7d0;
    --lavender: #d2c7e6;
    --blue: #090817;
    --paper: #0f0c16;
    --white: #191421;
    --night: #06040c;
    --brand-pink: #dfa2d8;
    --brand-sky: #8bbde8;
    --brand-violet: #aa8df0;
    --brand-purple: #c0a0dc;
    --brand-plum: #efe9fb;
    --stella-violet-deep: #d7c6ff;
    --stella-plum-muted: #b4a6c5;
    --stella-lilac-dust: #9c8daa;
    --stella-lavender-mist: #2b2537;
    --stella-midnight: #090817;
    --stella-blue-gray: #a6b2ca;
    --stella-mist-blue: #1e2934;
    --stella-porcelain: #15121d;
    --stella-charcoal: #eee8f6;
    --stella-sage: #8b978d;
    --stella-pale-sage: #566357;
    --stella-soft-gold: #d8bd83;
    --chart-ink: #eee8f6;
    --chart-structure: #8b978d;
    --chart-subtle: #566357;
    --chart-paper: #15121d;
    --chart-neutral: #cfab72;
    --chart-aspect-harmonious: #b8c7bd;
    --chart-aspect-dynamic: #b29bbd;
    --chart-aspect-neutral: #a5aec9;
    --chart-aspect-adjustment: #b29bbd;
    --chart-aspect-conjunction: #cfab72;
    --chart-aspect-sextile: #a5aec9;
    --chart-aspect-trine: #b8c7bd;
    --chart-aspect-square: #8b978d;
    --chart-aspect-opposition: #b29bbd;
    --chart-aspect-quincunx: #a696b5;
    --chart-field-center: #221a2f;
    --chart-field-mid: #181522;
    --chart-field-edge: #0f0c16;
    --chart-house-base: color-mix(in srgb, var(--chart-field-mid) 64%, transparent);
    --chart-house-alt: color-mix(in srgb, var(--chart-field-center) 54%, transparent);
    --chart-zodiac-symbol: #efe0b2;
    --chart-symbol-filter: drop-shadow(0 3px 6px rgba(255, 254, 253, 0.18));
    --chart-zodiac-symbol-filter: drop-shadow(0 3px 6px rgba(239, 224, 178, 0.2));
    --chart-symbol-hover-filter: drop-shadow(0 4px 8px rgba(244, 211, 111, 0.34));
    --plum-ink: #080411;
    --pink-veil: rgba(223, 162, 216, 0.14);
    --sky-veil: rgba(139, 189, 232, 0.12);
    --violet-veil: rgba(170, 141, 240, 0.13);
    --purple-wash: rgba(192, 160, 220, 0.12);
    --electric-blue: #8bbde8;
    --line: rgba(239, 233, 251, 0.16);
    --soft-line: rgba(239, 233, 251, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --violet-shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
    color-scheme: dark;
  }

  body {
    background:
      radial-gradient(circle at 8% 0%, rgba(240, 167, 231, 0.1), transparent 24%),
      radial-gradient(circle at 94% 8%, rgba(140, 200, 255, 0.1), transparent 28%),
      linear-gradient(180deg, #090612 0%, var(--paper) 48%, #15111f 100%);
    color: var(--brand-plum);
  }

  .site-header[data-elevated="true"] {
    background: rgba(9, 6, 18, 0.84);
    border-color: var(--line);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  }

  .brand small,
  .nav,
  .kicker,
  .eyebrow,
  .section-index,
  .chapter-card span,
  .chart-form label,
  .signup > label,
  .chart-factor-list strong,
  .glyph {
    color: var(--brand-purple);
  }

  .nav a:hover,
  .header-action:hover,
  .button.secondary:hover {
    color: var(--brand-sky);
  }

  .header-action,
  .button.secondary,
  .listen-toggle,
  .music-cue a,
  .video-cue > a,
  .chapter-links a,
  code {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.07);
    color: var(--brand-plum);
  }

  .button.primary,
  .listen-toggle:hover,
  .listen-toggle:focus-visible,
  .signup-submit,
  .chart-submit {
    background: linear-gradient(135deg, #12091f, #3a1751 64%, #67369a);
    color: #fffefd;
  }

  .brand-mark {
    background: transparent;
    box-shadow: none;
  }

  .brand-mark img {
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
  }

  .orbit-link {
    color: var(--brand-plum);
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.26));
  }

  .orbit-icon {
    border-color: color-mix(in srgb, var(--token-accent, var(--brand-purple)) 46%, rgba(238, 231, 255, 0.2));
    background:
      radial-gradient(circle at 34% 27%, rgba(255, 254, 253, 0.56), transparent 23%),
      radial-gradient(circle at 55% 62%, color-mix(in srgb, var(--token-accent, var(--brand-purple)) 38%, transparent), transparent 58%),
      radial-gradient(circle, rgba(238, 231, 255, 0.16), rgba(238, 231, 255, 0.06) 62%, color-mix(in srgb, var(--token-accent, var(--brand-purple)) 28%, transparent));
  }

  .orbit-link-label {
    text-shadow: 0 1px 12px rgba(9, 6, 18, 0.6);
  }

  .hero {
    background:
      radial-gradient(circle at 76% 36%, rgba(173, 141, 255, 0.13), transparent 25%),
      radial-gradient(circle at 90% 50%, rgba(140, 200, 255, 0.1), transparent 30%),
      linear-gradient(135deg, rgba(12, 8, 22, 0.96), rgba(27, 20, 38, 0.88));
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(238, 231, 255, 0.055) 1px, transparent 1px),
      linear-gradient(180deg, rgba(238, 231, 255, 0.045) 1px, transparent 1px);
  }

  .hero::after,
  .orbital-system::before,
  .orbital-system::after {
    opacity: 0.64;
  }

  .lede,
  .memoir-section p,
  .listen-section p,
  .themes-section p,
  .chart-section p,
  .updates-section p,
  .interest-fieldset label,
  .consent-check,
  .chapter-links small,
  .chart-note-list li,
  .instrument-card p {
    color: rgba(238, 231, 255, 0.74);
  }

  .memoir-section {
    background:
      radial-gradient(circle at 88% 12%, rgba(240, 167, 231, 0.08), transparent 26%),
      linear-gradient(180deg, rgba(22, 17, 31, 0.98), rgba(12, 8, 20, 0.95));
  }

  .manifesto {
    background:
      radial-gradient(circle at 18% 4%, rgba(223, 162, 216, 0.14), transparent 31%),
      radial-gradient(circle at 84% 24%, rgba(139, 189, 232, 0.12), transparent 29%),
      linear-gradient(135deg, #120d1d 0%, #241936 54%, #0c0815 100%);
    color: rgba(255, 254, 253, 0.9);
  }

  .manifesto h2 {
    color: rgba(255, 254, 253, 0.92);
    font-weight: 400;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }

  .manifesto p:last-child {
    color: rgba(239, 233, 251, 0.78);
  }

  .listen-section {
    background:
      radial-gradient(circle at 14% 4%, rgba(140, 200, 255, 0.1), transparent 28%),
      linear-gradient(180deg, rgba(12, 8, 20, 0.98), rgba(20, 16, 29, 0.92));
  }

  .themes-section {
    background:
      radial-gradient(circle at 78% 14%, rgba(201, 157, 242, 0.12), transparent 28%),
      linear-gradient(135deg, rgba(20, 16, 29, 0.98), rgba(9, 6, 18, 0.94));
  }

  .chart-section {
    background:
      radial-gradient(circle at 16% 8%, rgba(140, 200, 255, 0.1), transparent 28%),
      radial-gradient(circle at 88% 74%, rgba(240, 167, 231, 0.1), transparent 30%),
      linear-gradient(180deg, rgba(13, 9, 22, 0.98), rgba(21, 16, 30, 0.95));
  }

  .updates-section {
    background:
      linear-gradient(135deg, rgba(201, 157, 242, 0.12), rgba(13, 9, 22, 0.96) 44%, rgba(140, 200, 255, 0.1)),
      var(--paper);
  }

  .signup-paused-panel,
  .updates-card {
    border-color: rgba(238, 231, 255, 0.14);
    border-top-color: rgba(216, 179, 95, 0.86);
    background:
      linear-gradient(135deg, rgba(26, 20, 38, 0.92), rgba(12, 8, 20, 0.9)),
      var(--paper);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  }

  .updates-card {
    border-top-color: rgba(228, 164, 223, 0.88);
  }

  .signup-paused-panel .panel-label,
  .updates-card .panel-label {
    color: rgba(228, 164, 223, 0.9);
  }

  .signup-paused-panel h3,
  .updates-card h3 {
    color: rgba(255, 254, 253, 0.94);
  }

  .signup-paused-list li {
    color: rgba(238, 231, 255, 0.82);
  }

  .signup-paused-note {
    border-top-color: rgba(238, 231, 255, 0.14);
  }

  .memoir-card,
  .chapter-card,
  .archive-stack article,
  .circle-list article,
  .chart-summary-panel,
  .chart-dashboard-panel,
  .chart-layer-dashboard,
  .chart-companion-panel,
  .chart-transit-panel,
  .instrument-card {
    border-color: var(--line);
    background: rgba(27, 22, 36, 0.78);
    box-shadow: var(--shadow);
  }

  .natal-lens-card,
  .companion-lens-card,
  .chart-layer-toggle,
  .chart-interpretation-panel,
  .chart-insight-strip,
  .chart-insight-stats span,
  .transit-card {
    border-color: rgba(238, 231, 255, 0.12);
    background: rgba(238, 231, 255, 0.07);
  }

  .chart-insight-stats strong {
    color: rgba(255, 254, 253, 0.92);
  }

  .chart-insight-stats small,
  .chart-insight-strip p {
    color: rgba(238, 231, 255, 0.7);
  }

  .chart-insight-tablist,
  .chart-big-three-card,
  .chart-house-card,
  .chart-aspect-learning-card,
  .house-placement-table-wrap {
    border-color: rgba(238, 231, 255, 0.12);
    background:
      linear-gradient(135deg, rgba(223, 162, 216, 0.055), rgba(139, 189, 232, 0.045)),
      rgba(24, 19, 33, 0.88);
  }

  .house-placement-table td {
    border-bottom-color: rgba(238, 231, 255, 0.1);
  }

  .house-placement-row:hover {
    background: rgba(238, 231, 255, 0.055);
  }

  .house-placement-link {
    background: transparent;
  }

  .house-placement-link:hover,
  .house-placement-link:focus-visible,
  .house-placement-link.is-interpretation-selected {
    border-color: rgba(216, 189, 131, 0.34);
    background: rgba(216, 189, 131, 0.12);
  }

  .chart-insight-tab {
    color: rgba(238, 231, 255, 0.68);
  }

  .chart-insight-tab:hover,
  .chart-insight-tab:focus-visible,
  .chart-insight-tab.is-active {
    background: var(--stella-soft-gold);
    color: #1b1624;
  }

  .chart-tab-section-head p,
  .chart-beginner-block p,
  .chart-house-card p,
  .chart-aspect-learning-copy p {
    color: rgba(238, 231, 255, 0.72);
  }

  .chart-big-three-card > span,
  .chart-house-card > div > span {
    color: rgba(216, 189, 131, 0.86);
  }

  .chart-big-three-card strong,
  .chart-house-card strong,
  .chart-aspect-learning-card strong,
  .house-placement-table strong,
  .house-placement-link > span:last-child {
    color: rgba(255, 254, 253, 0.92);
  }

  .chart-big-three-card small,
  .chart-house-card small,
  .house-placement-table small,
  .chart-aspect-learning-actions span {
    color: rgba(192, 160, 220, 0.78);
  }

  .chart-show-factor {
    border-color: rgba(238, 231, 255, 0.14);
    background: rgba(238, 231, 255, 0.08);
    color: rgba(255, 254, 253, 0.88);
  }

  .chart-show-factor:hover,
  .chart-show-factor:focus-visible,
  .chart-show-factor.is-active {
    border-color: rgba(216, 189, 131, 0.44);
    background: rgba(216, 189, 131, 0.18);
  }

  .chart-house-prompt {
    border-left-color: rgba(216, 189, 131, 0.64);
  }

  .chart-open-card {
    background: linear-gradient(135deg, var(--stella-lilac-dust), var(--brand-plum));
    color: rgba(255, 254, 253, 0.94);
  }

  .chart-interpretation-panel {
    background:
      radial-gradient(circle at 96% 0%, rgba(222, 188, 135, 0.12), transparent 32%),
      linear-gradient(135deg, rgba(27, 22, 36, 0.9), rgba(18, 14, 26, 0.94));
  }

  .chart-interpretation-panel h3 {
    color: rgba(255, 254, 253, 0.94);
  }

  .chart-interpretation-panel p,
  .chart-interpretation-panel dd {
    color: rgba(238, 231, 255, 0.78);
  }

  .chart-interpretation-panel dt,
  .chart-interpretation-panel small {
    color: rgba(222, 188, 135, 0.78);
  }

  .chart-interpretation-panel dl div {
    border-top-color: rgba(238, 231, 255, 0.12);
  }

  .chart-layer-toggle:hover,
  .chart-layer-toggle:focus-visible,
  .chart-layer-toggle.is-active {
    border-color: rgba(222, 188, 135, 0.34);
    background:
      radial-gradient(circle at 94% 0%, rgba(140, 200, 255, 0.1), transparent 34%),
      rgba(238, 231, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .chart-layer-toggle.is-planned {
    background: rgba(238, 231, 255, 0.055);
    opacity: 0.78;
  }

  .chart-layer-dashboard-head strong,
  .chart-layer-toggle strong {
    color: rgba(255, 254, 253, 0.9);
  }

  .chart-layer-toggle small,
  .chart-layer-toggle em {
    color: rgba(238, 231, 255, 0.72);
  }

  .transit-date-controls,
  .transit-date-mode {
    border-color: rgba(238, 231, 255, 0.12);
    background: rgba(238, 231, 255, 0.07);
  }

  .transit-date-copy strong,
  .transit-date-field span,
  .transit-time-picker legend,
  .transit-time-picker span,
  .transit-location-field span {
    color: rgba(255, 254, 253, 0.9);
  }

  .transit-date-copy small,
  .transit-date-mode button {
    color: rgba(238, 231, 255, 0.7);
  }

  .transit-date-mode button.is-active {
    background: var(--stella-soft-gold);
    color: #1b1624;
  }

  .chart-layer-note {
    color: rgba(238, 231, 255, 0.72);
  }

  .stella-transit-point-icon {
    filter:
      url("#stella-transit-glyph-tint")
      drop-shadow(0 2px 0 rgba(255, 254, 253, 0.46));
  }

  .transit-date-field input,
  .transit-time-picker select,
  .transit-location-field input {
    border-color: rgba(238, 231, 255, 0.14);
    background: rgba(18, 14, 26, 0.86);
    color: rgba(255, 254, 253, 0.92);
  }

  .transit-update-button {
    background: linear-gradient(135deg, var(--stella-lilac-dust), var(--brand-plum));
    color: rgba(255, 254, 253, 0.94);
  }

  .transit-update-button:hover,
  .transit-update-button:focus-visible {
    background: color-mix(in srgb, var(--brand-plum) 82%, white);
  }

  .transit-update-button.is-updating,
  .transit-update-button:disabled {
    background: linear-gradient(135deg, var(--brand-plum), var(--brand-purple));
    color: rgba(255, 254, 253, 0.96);
  }

  .natal-lens-head h4,
  .companion-lens-card strong,
  .natal-lens-point strong,
  .transit-card strong {
    color: rgba(255, 254, 253, 0.9);
  }

  .natal-lens-head span,
  .companion-lens-card small,
  .natal-lens-point small,
  .natal-lens-card p,
  .natal-lens-card > small,
  .companion-lens-card p,
  .transit-card p,
  .transit-card small {
    color: rgba(238, 231, 255, 0.74);
  }

  .reading-room-info-card {
    border-color: rgba(238, 231, 255, 0.14);
    background:
      radial-gradient(circle at 18% 10%, rgba(216, 189, 131, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(54, 44, 70, 0.84), rgba(27, 22, 36, 0.88));
  }

  .reading-room-overview-card {
    border-color: rgba(238, 231, 255, 0.14);
    background:
      radial-gradient(circle at 92% 10%, rgba(173, 141, 255, 0.12), transparent 30%),
      rgba(27, 22, 36, 0.86);
  }

  .reading-room-info-copy h3,
  .reading-room-overview-card h3 {
    color: rgba(255, 254, 253, 0.92);
  }

  .reading-room-info-copy p,
  .reading-room-overview-card p {
    color: rgba(238, 231, 255, 0.74);
  }

  .chapter-card[data-content-id="prelude"] {
    background: linear-gradient(180deg, rgba(240, 167, 231, 0.12), rgba(27, 22, 36, 0.86));
  }

  .chapter-card[data-content-id="chapter-01"] {
    background: linear-gradient(180deg, rgba(140, 200, 255, 0.12), rgba(27, 22, 36, 0.86));
  }

  .chapter-card[data-content-id="chapter-02"] {
    background: linear-gradient(180deg, rgba(173, 141, 255, 0.13), rgba(27, 22, 36, 0.86));
  }

  .book-cover,
  .chart-visual,
  .location-options,
  .signup-row,
  .signup select,
  .signup textarea,
  .chart-form input,
  .chart-form select {
    border-color: var(--line);
    background:
      radial-gradient(circle at 72% 20%, rgba(140, 200, 255, 0.08), transparent 24%),
      rgba(18, 14, 26, 0.9);
    color: var(--brand-plum);
  }

  .chart-visual {
    border-color: rgba(239, 233, 251, 0.22);
    box-shadow:
      0 30px 86px rgba(0, 0, 0, 0.38),
      inset 0 0 0 1px rgba(255, 254, 253, 0.08),
      inset 0 -34px 90px rgba(216, 189, 131, 0.08);
  }

  .chart-visual-custom {
    background:
      radial-gradient(circle at 48% 46%, rgba(43, 37, 55, 0.92), rgba(30, 41, 52, 0.42) 52%, rgba(15, 12, 22, 0.96)),
      color-mix(in srgb, var(--chart-paper) 86%, black);
  }

  .stella-chart-field {
    stroke: color-mix(in srgb, var(--chart-structure) 42%, transparent);
  }

  .stella-chart-zodiac-band {
    stroke: color-mix(in srgb, var(--stella-lavender-mist) 74%, transparent);
  }

  .stella-chart-inner-glow {
    fill: color-mix(in srgb, var(--chart-field-mid) 82%, var(--stella-mist-blue));
    stroke: color-mix(in srgb, var(--stella-soft-gold) 28%, transparent);
  }

  .stella-chart-house-number-band {
    stroke: color-mix(in srgb, var(--chart-field-center) 82%, var(--stella-mist-blue));
  }

  .stella-chart-planet-track {
    display: none;
  }

  .stella-zodiac-label text,
  .stella-point-glyph {
    font-weight: 400;
  }

  .stella-zodiac-label text {
    fill: var(--chart-zodiac-symbol);
  }

  .stella-zodiac-icon {
    filter: var(--chart-zodiac-symbol-filter);
    opacity: 0.98;
  }

  .stella-point-icon,
  .placement-symbol.is-image-glyph,
  .natal-lens-glyph.is-image-glyph,
  .chart-pattern-glyph.is-image-glyph {
    filter: var(--chart-symbol-filter);
    opacity: 0.96;
  }

  .stella-point-glyph {
    fill: rgba(255, 254, 253, 0.96);
  }

  .stella-point-glyph {
    stroke: var(--chart-field-center);
  }

  .stella-house-number,
  .stella-angle-label {
    fill: rgba(239, 233, 251, 0.7);
  }

  .stella-angle-degree {
    fill: rgba(255, 254, 253, 0.9);
    stroke: var(--chart-field-center);
    stroke-width: 2.8px;
  }

  .stella-point-degree {
    fill: rgba(255, 254, 253, 0.9);
    stroke: none;
    stroke-width: 0;
  }

  .stella-point-degree.is-minute {
    fill: rgba(255, 254, 253, 0.84);
  }

  .stella-point-anchor {
    fill: rgba(239, 233, 251, 0.78);
    stroke: rgba(15, 12, 22, 0.72);
  }

  .stella-house-slice.is-base {
    fill: var(--chart-house-base);
  }

  .stella-house-slice.is-alt {
    fill: var(--chart-house-alt);
  }

  .signup input[type="text"],
  .signup input[type="email"],
  .signup select,
  .signup textarea,
  .chart-form input,
  .chart-form select {
    color: var(--brand-plum);
  }

  .signup input::placeholder,
  .signup textarea::placeholder,
  .chart-form input::placeholder {
    color: rgba(238, 231, 255, 0.48);
  }

  .interest-fieldset legend,
  .signup-grid label,
  .chapter-links span,
  .location-option,
  .aspect-chip,
  .music-cue span,
  .video-cue > span,
  .transcript-heading span,
  .book-cover figcaption {
    color: var(--brand-plum);
  }

  .location-option:hover,
  .location-option:focus-visible,
  .location-option.is-active,
  .music-cue,
  .video-cue,
  .aspect-chip,
  .chart-pattern-card.has-card-request:hover,
  .chart-pattern-card.has-card-request:focus-visible,
  .chart-pattern-card.has-card-request.is-interpretation-selected,
  .chart-placement-item.is-clickable:hover,
  .chart-placement-item.is-clickable:focus-visible,
  .chart-placement-item.is-clickable.is-interpretation-selected {
    background:
      linear-gradient(135deg, rgba(240, 167, 231, 0.12), rgba(140, 200, 255, 0.1)),
      rgba(255, 255, 255, 0.04);
  }

  .location-option small,
  .location-hint,
  .location-empty,
  .transcript-heading span {
    color: rgba(238, 231, 255, 0.62);
  }

  .transcript-panel {
    border-color: rgba(239, 233, 251, 0.18);
    background:
      radial-gradient(circle at 80% 10%, rgba(139, 189, 232, 0.08), transparent 26%),
      rgba(18, 14, 26, 0.92);
    color: var(--brand-plum);
  }

  .transcript-line,
  .music-cue,
  .video-cue {
    color: rgba(239, 233, 251, 0.84);
  }

  .listen-section .transcript-line,
  .transcript-line strong {
    color: rgba(255, 254, 253, 0.92);
  }

  .transcript-heading {
    border-bottom-color: var(--line);
  }

  .transcript-progress {
    background: rgba(238, 231, 255, 0.1);
  }

  .inline-video,
  .chapter-links a {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.06);
  }

  .chart-factor-list li {
    border-top-color: var(--line);
  }

  .chart-placement-list li {
    border-color: rgba(239, 233, 251, 0.12);
    background:
      linear-gradient(135deg, rgba(223, 162, 216, 0.055), rgba(139, 189, 232, 0.045)),
      rgba(24, 19, 33, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 254, 253, 0.045);
  }

  .placement-symbol {
    color: rgba(239, 233, 251, 0.82);
    font-weight: 500;
  }

  .chart-placement-list strong {
    color: rgba(216, 189, 131, 0.86);
  }

  .chart-placement-list .placement-degree-value {
    color: rgba(255, 254, 253, 0.92);
    font-weight: 900;
  }

  .chart-placement-list .placement-position .placement-zodiac-sign {
    color: var(--chart-zodiac-symbol);
    font-weight: 900;
  }

  .chart-placement-list small {
    color: rgba(192, 160, 220, 0.78);
  }

  .placement-retrograde {
    border-color: rgba(239, 233, 251, 0.14);
    background: rgba(239, 233, 251, 0.08);
    color: rgba(255, 254, 253, 0.88);
  }

  .chart-instrument {
    background:
      radial-gradient(circle at 74% 24%, rgba(140, 200, 255, 0.13), transparent 24%),
      radial-gradient(circle at 26% 68%, rgba(240, 167, 231, 0.1), transparent 26%),
      linear-gradient(135deg, rgba(25, 19, 36, 0.96), rgba(11, 7, 18, 0.95));
  }

  .wheel,
  .wheel::before,
  .wheel::after {
    border-color: rgba(238, 231, 255, 0.2);
  }

  .form-note[data-state="success"],
  .location-hint[data-state="success"] {
    color: #9ee0c7;
  }

  .form-note[data-state="error"],
  .location-hint[data-state="error"] {
    color: #ff9abd;
  }

  .reader-echoes {
    border-color: rgba(238, 231, 255, 0.16);
    background:
      radial-gradient(circle at 88% 8%, rgba(221, 188, 111, 0.12), transparent 28%),
      linear-gradient(145deg, rgba(27, 22, 38, 0.95), rgba(16, 12, 24, 0.94));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  }

  .reader-echoes-heading > p:not(.eyebrow),
  .reader-echoes-access p,
  .reader-echo > p {
    color: rgba(238, 231, 255, 0.76);
  }

  .reader-echoes-count,
  .reader-echoes-status[data-state="unavailable"],
  .reader-echo {
    border-color: rgba(238, 231, 255, 0.16);
    background: rgba(255, 254, 253, 0.06);
    color: rgba(238, 231, 255, 0.7);
  }

  .reader-echo-avatar {
    border-color: rgba(221, 188, 111, 0.42);
    background: rgba(255, 254, 253, 0.08);
    color: rgba(249, 248, 247, 0.92);
  }

  .reader-echo-identity strong {
    color: rgba(249, 248, 247, 0.94);
  }

  .reader-echo-identity time,
  .reader-echoes-status,
  .reader-echoes-empty,
  .reader-echoes-form-status,
  .reader-echoes-form-footer small {
    color: rgba(238, 231, 255, 0.58);
  }

  .reader-echoes-access,
  .reader-echoes-form {
    border-top-color: rgba(238, 231, 255, 0.14);
  }

  .reader-echoes-form textarea {
    border-color: rgba(238, 231, 255, 0.16);
    background: rgba(255, 254, 253, 0.08);
    color: rgba(249, 248, 247, 0.92);
  }

  .reader-echoes-form-status[data-state="success"] {
    color: #9ee0c7;
  }

  .reader-echoes-form-status[data-state="error"] {
    color: #ff9abd;
  }

  .coming-soon-page {
    background:
      radial-gradient(circle at 78% 16%, rgba(140, 200, 255, 0.12), transparent 27%),
      radial-gradient(circle at 18% 26%, rgba(240, 167, 231, 0.12), transparent 31%),
      linear-gradient(180deg, #090612 0%, #120d1d 46%, #15111f 100%);
  }

  .coming-soon-header {
    background: rgba(9, 6, 18, 0.78);
    border-bottom-color: rgba(238, 231, 255, 0.12);
  }

  .coming-soon-copy .lede,
  .coming-soon-panel p,
  .coming-soon-signup .consent-check span {
    color: rgba(238, 231, 255, 0.78);
  }

  .coming-soon-points span,
  .coming-soon-panel {
    border-color: rgba(238, 231, 255, 0.14);
    background:
      radial-gradient(circle at 92% 10%, rgba(240, 167, 231, 0.12), transparent 34%),
      rgba(27, 22, 36, 0.78);
  }

  .coming-soon-signup input[type="email"] {
    border-color: var(--line);
    background: rgba(18, 14, 26, 0.9);
    color: var(--brand-plum);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 116px;
  }

  .orbital-system {
    min-height: 620px;
  }

  .manifesto-grid,
  .archive-grid,
  .chart-grid,
  .chart-grid.has-chart-results,
  .membership-grid,
  .split,
  .split.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .chart-grid,
  .chart-grid.has-chart-results {
    grid-template-areas:
      "intro"
      "form"
      "results";
  }

  .chart-grid.has-chart-results .chart-results-shell,
  .chart-grid.has-chart-results .chart-results {
    display: grid;
  }

  .chart-grid.has-chart-results .chart-results {
    grid-template-columns: 1fr;
  }

  .chart-grid.has-chart-results .chart-visual,
  .chart-grid.has-chart-results .chart-summary-panel,
  .chart-grid.has-chart-results .chart-transit-panel,
  .chart-grid.has-chart-results .chart-dashboard-panel,
  .chart-grid.has-chart-results .chart-companion-panel {
    grid-column: auto;
    grid-area: auto;
    width: min(100%, 820px);
    max-height: none;
    justify-self: center;
    margin-top: 0;
    overflow: visible;
    position: static;
    top: auto;
    transform: none;
    z-index: auto;
  }

  .chart-grid.has-chart-results .chart-summary-panel {
    height: auto;
  }

  .chart-grid.has-chart-results .chart-visual svg {
    max-height: none;
  }

  .natal-lens-grid {
    grid-template-columns: 1fr;
  }

  .chapter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chapter-stage {
    grid-template-columns: 1fr;
  }

  .chapter-audio {
    min-height: 260px;
  }
}

@media (max-width: 920px) and (min-width: 781px) {
  .site-header {
    gap: 18px;
  }

  .brand small {
    display: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .nav,
  .header-action {
    display: none;
  }

  .mobile-member-action {
    display: inline-flex;
    margin-left: auto;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 60px;
    height: 49px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .container {
    width: min(100% - 32px, 560px);
  }

  .chart-section .container {
    width: min(100% - 32px, 560px);
  }

  .hero {
    gap: 26px;
    padding: 104px 18px 48px;
  }

  .hero h1 {
    max-width: 350px;
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-copy::before,
  .section-heading::before {
    width: 154px;
    margin-bottom: 22px;
  }

  .lede {
    color: color-mix(in srgb, var(--brand-plum) 92%, var(--night) 8%);
    font-size: 17px;
    font-weight: 560;
    line-height: 1.48;
  }

  .memoir-section p,
  .listen-section p,
  .themes-section p,
  .chart-section p,
  .about-section p,
  .updates-section p,
  .chapter-summary p,
  .instrument-card p,
  .chart-privacy,
  .chart-expand-note,
  .location-hint,
  .form-note {
    color: color-mix(in srgb, var(--brand-plum) 88%, var(--night) 12%);
    font-weight: 520;
  }

  .kicker,
  .eyebrow,
  .section-index,
  .orbit-link-label,
  .chart-form label,
  .chart-factor-list strong {
    color: color-mix(in srgb, var(--brand-purple) 82%, var(--brand-plum) 18%);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
  }

  .orbital-system {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 18px 0 0;
  }

  .orbit,
  .orbit-hub,
  .planet,
  .orbital-system::before,
  .orbital-system::after {
    display: none;
  }

  .orbit-link {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 58px;
    grid-template-columns: 44px 1fr;
    grid-template-rows: 1fr;
    justify-content: start;
    justify-items: start;
    gap: 10px;
    padding: 4px 0;
    font-size: 12px;
    text-align: left;
  }

  .orbit-link::before {
    left: 22px;
    top: 6px;
    width: 44px;
    height: 44px;
    filter: blur(6px);
  }

  .orbit-link::after {
    left: 22px;
    top: 7px;
    width: 42px;
    height: 42px;
  }

  .orbit-icon {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .orbit-icon svg {
    width: 16px;
    height: 16px;
  }

  .orbit-link-label {
    align-self: center;
    opacity: 0.94;
  }

  .orbit-member {
    grid-column: auto;
  }

  .hero-actions,
  .signup-row,
  .signup-grid,
  .chart-form-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .birth-picker {
    gap: 8px;
  }

  .birth-picker label,
  .birth-picker legend {
    font-size: 11px;
  }

  .birth-picker input,
  .birth-picker select {
    min-height: 48px;
    padding: 0 10px;
    font-size: 15px;
  }

  .chart-visual-custom {
    padding: 8px;
  }

  .stella-aspect-line {
    stroke-width: 0.95;
  }

  .stella-aspect-line.is-conjunction {
    stroke-width: 1.35;
  }

  .stella-conjunction-accent {
    stroke-width: 2.35;
    filter: drop-shadow(0 0 3px color-mix(in srgb, var(--chart-aspect-conjunction) 22%, transparent));
  }

  .stella-angle-axis {
    stroke-width: 0.86;
  }

  .stella-point-glyph {
    font-size: 39px;
    stroke-width: 3.2px;
  }

  .stella-chart-point.is-text-label .stella-point-glyph {
    font-size: 11px;
  }

  .stella-point-degree {
    font-size: 15.8px;
    stroke-width: 0;
  }

  .stella-point-degree.is-minute {
    font-size: 9.4px;
  }

  .stella-transit-degree {
    font-size: 15.8px;
  }

  .stella-transit-degree.is-minute {
    font-size: 9.4px;
  }

  .stella-point-retrograde {
    font-size: 9px;
  }

  .chart-placement-list {
    grid-template-columns: 1fr;
  }

  .chart-placement-list li {
    grid-template-columns: 26px minmax(82px, 0.7fr) minmax(0, 1fr);
  }

  .button,
  .signup-submit {
    width: 100%;
  }

  .signup-row {
    border-radius: 18px;
  }

  .signup-row input + input {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .interest-fieldset {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
    line-height: 1.06;
  }

  h3 {
    font-size: 25px;
  }

  .manifesto,
  .memoir-section,
  .listen-section,
  .themes-section,
  .chart-section,
  .about-section,
  .updates-section {
    padding: 58px 0;
  }

  .manifesto-grid {
    gap: 22px;
  }

  .manifesto h2 {
    font-size: 28px;
    line-height: 1.06;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .chapter-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .reader-echoes {
    gap: 16px;
    padding: 18px;
  }

  .reader-echoes-title-row,
  .reader-echoes-access,
  .reader-echoes-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .reader-echoes-count {
    width: max-content;
  }

  .reader-echoes-sign-in,
  .reader-echoes-submit {
    width: 100%;
  }

  .reading-room-info-card,
  .reading-room-overview-card,
  .chapter-card[data-content-id="prelude"],
  .chapter-card[data-content-id="chapter-01"],
  .chapter-card.is-expanded {
    grid-column: 1;
    grid-row: auto;
  }

  .reading-room-info-card {
    min-height: auto;
    grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 14px;
    border-radius: 20px;
    padding: 14px;
  }

  .reading-room-info-copy {
    border-top: 0;
    padding-top: 0;
  }

  .reading-room-info-cover img {
    max-height: 230px;
    border-radius: 14px;
  }

  .reading-room-overview-card {
    border-radius: 20px;
    padding: 16px;
  }

  .reading-room-info-copy h3,
  .reading-room-overview-card h3 {
    font-size: 24px;
    line-height: 1;
  }

  .reading-room-info-copy p,
  .reading-room-overview-card p {
    font-size: 14px;
  }

  .chapter-card {
    min-height: auto;
    border-radius: 20px;
    padding: 16px;
  }

  .chapter-summary {
    min-height: 190px;
  }

  .chapter-card.is-expanded .chapter-summary {
    min-height: 0;
  }

  .listen-toggle {
    width: 100%;
  }

  .chapter-stage {
    min-height: 0;
    gap: 12px;
    padding: 10px;
  }

  .chapter-audio {
    min-height: 0;
    gap: 10px;
    padding: 16px;
  }

  .audio-orbit {
    width: 168px;
    margin: 2px auto 4px;
  }

  .transcript-panel {
    min-height: 0;
  }

  .transcript-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .transcript-scroll {
    max-height: 280px;
    padding: 16px;
  }

  .transcript-line {
    font-size: 16px;
    line-height: 1.38;
  }

  .transcript-line,
  .music-cue,
  .video-cue {
    padding: 12px 0 12px 14px;
  }

  .premium-tease-grid {
    grid-template-columns: 1fr;
  }

  .music-cue {
    align-items: flex-start;
    border-radius: 0 18px 18px 0;
    flex-direction: column;
    gap: 8px;
  }

  .video-cue {
    --video-cue-indent: 17px;
    gap: 10px;
    border-radius: 0 16px 16px 0;
  }

  .inline-video {
    width: 100%;
  }

  .inline-video-mini {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .chapter-links {
    gap: 8px;
  }

  .chapter-links a {
    min-height: 54px;
    flex-basis: 100%;
  }

  body.reading-room-open {
    overflow: hidden;
  }

  body.reading-room-open .site-header {
    display: none;
  }

  .chapter-card.is-expanded {
    position: fixed;
    inset: 0;
    z-index: 80;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px;
    border: 0;
    border-radius: 0;
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
    overflow: hidden;
    background:
      radial-gradient(circle at 88% 12%, rgba(116, 178, 235, 0.12), transparent 32%),
      linear-gradient(180deg, #fffefd, var(--paper));
  }

  .chapter-card.is-expanded .chapter-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    align-items: start;
    min-height: 0;
    padding: 0;
  }

  .chapter-card.is-expanded .chapter-summary span,
  .chapter-card.is-expanded .chapter-summary h3,
  .chapter-card.is-expanded .chapter-summary p {
    grid-column: 1;
  }

  .chapter-card.is-expanded .chapter-summary h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.05;
  }

  .chapter-card.is-expanded .chapter-summary p {
    display: none;
  }

  .chapter-card.is-expanded .listen-toggle {
    grid-column: 2;
    grid-row: 1 / 3;
    width: auto;
    min-height: 38px;
    padding: 0 14px;
  }

  .chapter-card.is-expanded .chapter-player {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 8px;
    overflow: hidden;
  }

  .chapter-card.is-expanded .chapter-stage {
    min-height: 0;
    height: 100%;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 8px;
    overflow: hidden;
  }

  .chapter-card.is-expanded .chapter-audio {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    gap: 8px;
    padding: 10px;
  }

  .chapter-card.is-expanded .chapter-audio.has-section-visual {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .chapter-card.is-expanded .chapter-audio .eyebrow {
    grid-column: 1 / -1;
    margin: 0;
  }

  .chapter-card.is-expanded .audio-orbit {
    grid-column: 1;
    grid-row: 2;
    display: block;
    width: 54px;
    margin: 0;
  }

  .chapter-card.is-expanded .chapter-audio.has-section-visual .chapter-audio-visual {
    display: none;
  }

  .chapter-card.is-expanded .chapter-audio.has-section-visual .audio-orbit {
    display: block;
  }

  .chapter-card.is-expanded .chapter-audio audio {
    grid-column: 2;
    grid-row: 2;
    min-height: 40px;
  }

  .chapter-card.is-expanded .audio-rewind-control,
  .chapter-card.is-expanded .audio-speed-control {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    min-width: 54px;
    min-height: 30px;
    padding: 0 10px;
  }

  .chapter-card.is-expanded .audio-rewind-control {
    min-width: 78px;
  }

  .chapter-card.is-expanded .audio-speed-control {
    margin-left: 88px;
  }

  .chapter-card.is-expanded .section-jump-nav {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-content: flex-start;
    margin-top: 0;
  }

  .chapter-card.is-expanded .chapter-audio.has-section-visual audio {
    grid-column: 2;
    grid-row: 2;
  }

  .chapter-card.is-expanded .chapter-audio.has-section-visual .audio-rewind-control,
  .chapter-card.is-expanded .chapter-audio.has-section-visual .audio-speed-control {
    grid-column: 2;
    grid-row: 3;
  }

  .chapter-card.is-expanded .chapter-audio.has-section-visual .section-jump-nav {
    grid-row: 4;
  }

  .transcript-image-cue.is-audio-panel-visual {
    display: grid;
  }

  .transcript-image-cue.is-audio-panel-visual img {
    width: 100%;
    max-height: 46vh;
  }

  .chapter-card.is-expanded .transcript-panel {
    min-height: 0;
    overflow: hidden;
  }

  .chapter-card.is-expanded .transcript-heading {
    flex-direction: row;
    align-items: center;
    padding: 10px 12px;
  }

  .chapter-card.is-expanded .transcript-scroll {
    --transcript-scroll-buffer: clamp(170px, 32vh, 260px);
    height: 100%;
    max-height: none;
    padding: 14px;
  }

  .chapter-card.is-expanded .transcript-line {
    font-size: 16px;
    line-height: 1.38;
  }

  .chapter-card.is-expanded .music-cue {
    border-radius: 0 16px 16px 0;
  }

  .chapter-card.is-expanded .video-cue {
    border-radius: 0 16px 16px 0;
  }

  .chapter-card.is-expanded .chapter-links {
    display: none !important;
    max-height: 112px;
    overflow: auto;
    padding-right: 2px;
  }

  .chapter-card.is-expanded .chapter-links a {
    min-height: 44px;
  }

  .book-cover {
    width: min(100%, 300px);
  }

  .memoir-card {
    border-radius: 22px;
    padding: 22px;
  }

  .author-portrait-card {
    padding: 18px;
  }

  .chart-results-shell {
    min-height: 420px;
  }

  .chart-factor-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .chart-instrument {
    min-height: 420px;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 560px);
  }

  .chart-section .container {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    max-width: 230px;
  }

  .hero {
    padding-top: 98px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .listen-section h2 {
    font-size: 28px;
  }

  .manifesto,
  .memoir-section,
  .listen-section,
  .themes-section,
  .chart-section,
  .about-section,
  .updates-section {
    padding: 48px 0;
  }

  .manifesto h2 {
    font-size: 28px;
  }

  .split,
  .split.reverse,
  .cover-stack {
    gap: 24px;
  }

  .book-cover {
    width: min(100%, 250px);
    padding: 8px;
  }

  .book-cover figcaption {
    display: none;
  }

  .memoir-card {
    padding: 18px;
  }

  .chapter-card {
    padding: 14px;
  }

  .chapter-summary {
    min-height: 164px;
  }

  .chapter-card.is-expanded .chapter-summary {
    min-height: 0;
  }

  .chapter-stage {
    gap: 10px;
    padding: 8px;
  }

  .chapter-audio {
    padding: 14px;
  }

  .chapter-audio audio {
    min-height: 44px;
  }

  .audio-orbit {
    width: 128px;
  }

  .transcript-heading {
    padding: 12px 14px;
  }

  .transcript-scroll {
    max-height: 220px;
    padding: 14px;
  }

  .transcript-line {
    font-size: 15px;
  }

  .chapter-links a {
    min-height: 50px;
    padding: 10px 12px;
  }

  .author-portrait-card {
    width: min(100%, 320px);
  }

  .author-portrait-card img {
    width: min(100%, 190px);
  }

  .author-portrait-card span {
    font-size: 25px;
  }

  .chapter-card.is-expanded {
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }

  .chapter-card.is-expanded .chapter-summary h3 {
    font-size: 20px;
  }

  .chapter-card.is-expanded .chapter-stage {
    padding: 8px;
  }

  .chapter-card.is-expanded .transcript-line {
    font-size: 15px;
  }

  .chapter-card.is-expanded .chapter-links {
    max-height: 104px;
  }
}

@media (prefers-color-scheme: dark) {
  .coming-soon-book {
    border-top-color: rgba(238, 231, 255, 0.1);
    border-bottom-color: rgba(238, 231, 255, 0.1);
    background:
      radial-gradient(circle at 18% 18%, rgba(198, 173, 112, 0.14), transparent 30%),
      linear-gradient(135deg, rgba(18, 14, 26, 0.92), rgba(10, 7, 18, 0.96));
  }

  .coming-soon-cover {
    border-color: rgba(238, 231, 255, 0.16);
    background: rgba(27, 22, 36, 0.78);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.28),
      14px 18px 0 rgba(198, 173, 112, 0.08);
  }

  .coming-soon-cover::before {
    border-color: rgba(198, 173, 112, 0.22);
  }

  .coming-soon-cover figcaption,
  .coming-soon-book-copy p,
  .reading-room-list small {
    color: rgba(238, 231, 255, 0.76);
  }

  .reading-room-list li {
    border-top-color: rgba(238, 231, 255, 0.16);
  }
}

@media (max-width: 780px) {
  .chart-insight-tablist {
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    grid-template-columns: none;
    border-radius: 8px;
  }

  .chart-insight-tab {
    border-radius: 7px;
    font-size: 8.5px;
    padding: 7px 10px;
  }

  .chart-layer-toggle-grid-chart {
    grid-template-columns: repeat(4, minmax(112px, 1fr));
  }

  .chart-house-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .transit-date-controls {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .chart-grid.has-chart-results .chart-layer-footer .transit-date-controls:not([hidden]) {
    position: static;
    width: auto;
    box-shadow:
      0 10px 24px rgba(70, 29, 92, 0.1),
      inset 0 0 0 1px rgba(255, 254, 253, 0.74);
    backdrop-filter: none;
  }

  .transit-date-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .transit-date-mode,
  .transit-time-picker,
  .transit-location-field,
  .transit-update-button {
    grid-column: 1 / -1;
  }

  .transit-update-button {
    grid-row: auto;
    inline-size: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 430px) {
  .chart-aspect-legend {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 8px;
  }

  .chart-aspect-legend li {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 4px;
  }

  .aspect-legend-line {
    width: 18px;
    border-top-width: 2.4px;
  }

  .chart-aspect-legend strong {
    font-size: 8.4px;
  }

  .transit-date-fields {
    grid-template-columns: 1fr;
  }

  .transit-time-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-color-scheme: dark) and (max-width: 780px) {
  .about-section .split.reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .about-section .split.reverse > div {
    position: relative;
    z-index: 2;
    order: 1;
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .about-section .author-portrait-card {
    order: 2;
  }

  .about-section {
    background:
      radial-gradient(circle at 18% 0%, rgba(223, 162, 216, 0.16), transparent 34%),
      radial-gradient(circle at 88% 68%, rgba(139, 189, 232, 0.14), transparent 36%),
      linear-gradient(135deg, #080411 0%, #1a0d28 52%, #090612 100%);
  }

  .about-section .kicker {
    color: rgba(223, 162, 216, 0.96);
  }

  .about-section h2 {
    color: rgba(255, 254, 253, 0.96);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  }

  .about-section p {
    color: rgba(249, 248, 247, 0.88);
    font-weight: 560;
  }

  .author-portrait-card {
    border-color: rgba(249, 248, 247, 0.24);
    background:
      radial-gradient(circle at 72% 20%, rgba(139, 189, 232, 0.16), transparent 32%),
      rgba(249, 248, 247, 0.1);
  }

  .author-portrait-card span {
    color: rgba(255, 254, 253, 0.96);
  }

  .author-portrait-card small {
    color: rgba(249, 248, 247, 0.82);
  }
}

@media (max-width: 780px) {
  .about-section {
    background:
      radial-gradient(circle at 18% 0%, rgba(223, 162, 216, 0.18), transparent 34%),
      radial-gradient(circle at 88% 68%, rgba(139, 189, 232, 0.14), transparent 36%),
      linear-gradient(135deg, #0d0951 0%, #402e52 52%, #17101f 100%);
  }

  .about-section .kicker {
    color: #cfab72;
  }

  .about-section h2,
  .about-section p {
    color: #f9f8f7;
  }

  .about-section p {
    font-weight: 560;
    text-shadow: 0 2px 18px rgba(6, 4, 12, 0.28);
  }

  .about-section .author-portrait-card span {
    color: #f9f8f7;
  }

  .about-section .author-portrait-card small {
    color: rgba(249, 248, 247, 0.84);
  }
}

@media (prefers-color-scheme: dark) {
  .about-section {
    background:
      radial-gradient(circle at 18% 0%, rgba(223, 162, 216, 0.14), transparent 32%),
      radial-gradient(circle at 84% 68%, rgba(139, 189, 232, 0.12), transparent 34%),
      linear-gradient(135deg, #06040c 0%, #17101f 48%, #0d0951 100%);
    color: #f9f8f7;
  }

  .about-section .kicker {
    color: #cfab72;
  }

  .about-section h2,
  .about-section p,
  .about-section .author-portrait-card span {
    color: #f9f8f7;
  }

  .about-section p {
    text-shadow: 0 2px 18px rgba(6, 4, 12, 0.3);
  }

  .about-section .author-portrait-card small {
    color: rgba(249, 248, 247, 0.82);
  }
}

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

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

  .orbit:hover,
  .orbit:focus-visible {
    transform: rotate(var(--orbit-angle));
  }

  .orbit-link::before,
  .orbit-link::after,
  .orbit-icon::before {
    animation: none !important;
  }
}
