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

: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;
  --brand-blue: var(--brand-sky);
  --brand-gold: var(--golden);
  --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);
}

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

.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: clamp(58px, 7.8vw, 112px);
  line-height: 0.92;
}

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

.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: 235px;
  right: 242px;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 35%, rgba(249, 248, 247, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(70, 29, 92, 0.92), rgba(109, 62, 140, 0.72) 58%, rgba(116, 178, 235, 0.16));
  color: var(--paper);
  text-align: center;
  box-shadow: var(--violet-shadow);
}

.orbit-hub span {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.orbit-hub small {
  display: block;
  margin-top: -42px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-link {
  z-index: 4;
  width: 78px;
  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: 850;
  text-decoration: none;
  text-align: center;
  filter: drop-shadow(0 14px 26px rgba(70, 29, 92, 0.12));
  isolation: isolate;
  transition: transform 220ms ease, color 220ms ease, filter 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;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.78;
  text-shadow: 0 1px 12px rgba(255, 254, 253, 0.68);
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease, text-shadow 220ms ease;
}

.orbit-book { --token-accent: var(--brand-purple); }
.orbit-work { --token-accent: var(--brand-blue); }
.orbit-archive { --token-accent: var(--brand-gold); }
.orbit-circles { --token-accent: var(--brand-pink); }
.orbit-chart { --token-accent: var(--brand-violet); }
.orbit-member { --token-accent: var(--brand-sky); }

.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) scale(1.045);
  color: var(--token-accent, var(--brand-purple));
  filter: drop-shadow(0 18px 30px color-mix(in srgb, var(--token-accent, var(--brand-purple)) 24%, transparent));
  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 0 18px color-mix(in srgb, var(--token-accent, var(--brand-purple)) 44%, transparent);
}

.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: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.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: clamp(42px, 6vw, 74px);
  line-height: 0.98;
}

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: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.chapter-card {
  min-height: 330px;
  border-radius: 28px;
  border-top-width: 4px;
  padding: 26px;
  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;
  gap: 24px;
  box-shadow: var(--violet-shadow);
}

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

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

.chapter-card:nth-child(1) {
  border-top-color: var(--brand-pink);
  background: linear-gradient(180deg, rgba(228, 164, 223, 0.1), rgba(255, 254, 253, 0.9));
}

.chapter-card:nth-child(2) {
  border-top-color: var(--brand-sky);
  background: linear-gradient(180deg, rgba(116, 178, 235, 0.1), rgba(255, 254, 253, 0.9));
}

.chapter-card:nth-child(3) {
  border-top-color: var(--brand-violet);
  background: linear-gradient(180deg, rgba(146, 103, 254, 0.09), rgba(255, 254, 253, 0.9));
}

.chapter-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--brand-purple);
  font-weight: 850;
  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: 850;
  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%, 260px);
  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 .eyebrow {
  order: 1;
  color: var(--brand-sky);
}

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

.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(--brand-plum);
  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 p,
.transcript-heading span {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.transcript-heading span {
  color: rgba(70, 29, 92, 0.54);
}

.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 {
  max-height: 430px;
  overflow: auto;
  scroll-behavior: auto;
  padding: clamp(20px, 3vw, 32px);
}

.transcript-line,
.music-cue,
.video-cue {
  border-left: 3px solid transparent;
  margin: 0;
  padding: 16px 0 16px 18px;
  color: rgba(70, 29, 92, 0.72);
  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;
}

.transcript-line em,
.transcript-line cite {
  font-style: italic;
  font-weight: inherit;
}

.transcript-line strong {
  color: rgba(70, 29, 92, 0.9);
  font-family: var(--font-display);
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.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;
  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 {
  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: clamp(380px, 92%, 680px);
  max-width: 100%;
  justify-self: start;
}

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

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

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

.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"
    "form transit summary";
  grid-template-columns: minmax(292px, 0.32fr) minmax(700px, 1fr) minmax(350px, 0.4fr);
  gap: clamp(22px, 3vw, 42px) clamp(24px, 3.6vw, 50px);
  align-items: start;
}

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

.chart-copy {
  display: contents;
}

.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: 14px;
  margin-top: 0;
}

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

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

.chart-form input,
.chart-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 254, 253, 0.86);
  color: var(--brand-plum);
  padding: 0 14px;
  outline: none;
  font: 17px/1.4 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: 10px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

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

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

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

.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 {
  grid-column: 1 / -1;
  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-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;
}

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

.location-option {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--brand-plum);
  cursor: pointer;
  padding: 10px 12px;
  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: 15px;
  font-weight: 850;
}

.location-option small,
.location-hint,
.location-empty {
  color: rgba(70, 29, 92, 0.64);
  font-size: 12px;
  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: 12px;
  font-size: 14px;
}

.chart-submit {
  width: 100%;
  min-height: 52px;
  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 20px;
  font: inherit;
  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;
}

.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 rgba(70, 29, 92, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 20%, rgba(116, 178, 235, 0.14), transparent 24%),
    rgba(255, 254, 253, 0.82);
  padding: clamp(10px, 2vw, 18px);
  box-shadow: 0 22px 62px rgba(70, 29, 92, 0.12);
}

.chart-grid.has-chart-results .chart-visual {
  grid-column: 2;
  grid-area: visual;
  width: min(100%, 900px);
  justify-self: center;
  margin-top: 0;
}

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

.chart-visual-custom {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 254, 253, 0.96), rgba(228, 164, 223, 0.12) 56%, rgba(116, 178, 235, 0.08)),
    rgba(255, 254, 253, 0.84);
}

.stella-native-chart {
  color: #461d5c;
  overflow: visible;
}

.stella-chart-field {
  fill: url("#stella-chart-glow");
  filter: url("#stella-chart-soft-shadow");
  stroke: rgba(70, 29, 92, 0.2);
  stroke-width: 1.35;
}

.stella-chart-zodiac-band {
  fill: none;
  stroke: rgba(228, 164, 223, 0.11);
  stroke-width: 42;
}

.stella-chart-inner-glow {
  fill: rgba(255, 254, 253, 0.46);
  stroke: rgba(183, 154, 85, 0.2);
  stroke-width: 1;
}

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

.stella-chart-zodiac-outer {
  stroke: rgba(70, 29, 92, 0.42);
  stroke-width: 2.15;
}

.stella-chart-zodiac-inner {
  stroke: rgba(183, 154, 85, 0.46);
  stroke-width: 1.1;
}

.stella-chart-house-ring {
  stroke: rgba(70, 29, 92, 0.16);
  stroke-width: 0.9;
}

.stella-chart-planet-track {
  fill: none;
  stroke: rgba(183, 154, 85, 0.22);
  stroke-dasharray: 1 12;
  stroke-linecap: round;
  stroke-width: 1;
}

.stella-chart-aspect-ring {
  stroke: rgba(70, 29, 92, 0.48);
  stroke-width: 1.5;
}

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

.stella-house-slice.is-base {
  fill: rgba(255, 254, 253, 0.12);
}

.stella-house-slice.is-alt {
  fill: rgba(146, 103, 254, 0.045);
}

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

.stella-degree-tick {
  stroke: rgba(70, 29, 92, 0.11);
  stroke-width: 0.38;
}

.stella-degree-tick.is-medium {
  stroke: rgba(70, 29, 92, 0.17);
  stroke-width: 0.5;
}

.stella-degree-tick.is-major {
  stroke: rgba(70, 29, 92, 0.24);
  stroke-width: 0.76;
}

.stella-degree-tick.is-sign-boundary,
.stella-sign-boundary {
  stroke: rgba(183, 154, 85, 0.5);
  stroke-width: 1.1;
}

.stella-house-cusp {
  stroke: rgba(70, 29, 92, 0.16);
  stroke-width: 0.75;
}

.stella-house-cusp.is-cardinal,
.stella-angle-axis {
  stroke: rgba(70, 29, 92, 0.34);
  stroke-width: 1.12;
}

.stella-aspect-line {
  opacity: 0.9;
  stroke-linecap: round;
  stroke-width: 2.45;
}

.stella-aspect-line.is-harmonious {
  stroke: rgba(48, 91, 218, 0.94);
}

.stella-aspect-line.is-dynamic {
  stroke: rgba(213, 45, 92, 0.92);
}

.stella-aspect-line.is-neutral {
  stroke: rgba(183, 154, 85, 0.94);
}

.stella-aspect-line.is-adjustment {
  stroke: rgba(146, 103, 254, 0.88);
  stroke-dasharray: 5 6;
}

.chart-aspect-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 8px 12px;
  margin: 12px 0 0;
  border-top: 1px solid rgba(70, 29, 92, 0.1);
  padding: 12px 0 0;
  list-style: none;
}

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

.aspect-legend-line {
  display: block;
  width: 34px;
  height: 0;
  border-top: 3px solid rgba(183, 154, 85, 0.94);
  border-radius: 999px;
}

.aspect-legend-line.is-harmonious {
  border-top-color: rgba(28, 78, 255, 0.92);
}

.aspect-legend-line.is-dynamic {
  border-top-color: rgba(235, 38, 78, 0.9);
}

.aspect-legend-line.is-neutral {
  border-top-color: rgba(183, 154, 85, 0.94);
}

.aspect-legend-line.is-adjustment {
  border-top-color: rgba(146, 103, 254, 0.88);
  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: rgba(70, 29, 92, 0.8);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chart-aspect-legend small {
  color: rgba(70, 29, 92, 0.56);
  font-size: 11px;
  font-weight: 750;
}

.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: rgba(70, 29, 92, 0.9);
  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-house-number {
  fill: rgba(70, 29, 92, 0.58);
  font: 850 11px var(--font-ui);
}

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

.stella-angle-degree {
  fill: rgba(70, 29, 92, 0.68);
  font: 800 8px var(--font-ui);
}

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

.stella-point-guide {
  opacity: 0.7;
  stroke: rgba(70, 29, 92, 0.5);
  stroke-linecap: round;
  stroke-width: 0.9;
}

.stella-point-anchor {
  fill: #461d5c;
  opacity: 0.72;
  stroke: rgba(255, 254, 253, 0.92);
  stroke-width: 0.85;
}

.stella-chart-point.is-clustered .stella-point-degree {
  fill: rgba(70, 29, 92, 0.84);
}

.stella-point-glyph {
  fill: #461d5c;
  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: 700;
  transition:
    fill 160ms ease,
    filter 160ms ease,
    font-size 160ms ease,
    font-weight 160ms ease,
    stroke 160ms ease,
    stroke-width 160ms ease;
}

.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: rgba(70, 29, 92, 0.74);
  dominant-baseline: central;
  font: 850 7.4px var(--font-ui);
  letter-spacing: 0.02em;
  paint-order: stroke;
  stroke: rgba(255, 254, 253, 0.82);
  stroke-width: 1.4px;
  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: rgba(70, 29, 92, 0.62);
  font-size: 6.8px;
  font-weight: 800;
}

.stella-chart-point:hover .stella-point-glyph,
.stella-chart-point:focus-visible .stella-point-glyph {
  fill: #9267fe;
  filter: drop-shadow(0 5px 8px rgba(70, 29, 92, 0.24));
  paint-order: stroke;
  stroke: rgba(255, 254, 253, 0.92);
  stroke-width: 2.4px;
  font-size: 33px;
  font-weight: 760;
}

.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: #461d5c;
  filter: drop-shadow(0 4px 7px rgba(70, 29, 92, 0.18));
  font-size: 8.8px;
  font-weight: 900;
  stroke: rgba(255, 254, 253, 0.92);
  stroke-width: 2px;
}

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

.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: rgba(70, 29, 92, 0.78);
}

.stella-chart-point:hover .stella-point-anchor,
.stella-chart-point:focus-visible .stella-point-anchor {
  fill: #9267fe;
}

.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%;
  max-height: min(76vh, 920px);
  align-self: start;
  margin-top: 0;
  overflow: auto;
}

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

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

.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-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-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(82px, max-content) minmax(0, 1fr);
  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;
}

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

.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 small {
  grid-column: 2 / -1;
  color: rgba(70, 29, 92, 0.58);
  font-size: 11px;
  font-weight: 750;
}

.chart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.chart-meta span {
  border: 1px solid rgba(70, 29, 92, 0.12);
  border-radius: 999px;
  background: rgba(230, 227, 217, 0.52);
  color: rgba(70, 29, 92, 0.68);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

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

.signup-paused-panel .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 {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--brand-plum);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
}

.signup-paused-panel p {
  max-width: 560px;
}

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

.site-footer .brand small {
  color: var(--ivory);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ivory: #d9d1c1;
    --taupe: #9f93a7;
    --golden: #c6ad70;
    --lilac: #c8bddc;
    --lavender: #cfc4e2;
    --blue: #090817;
    --paper: #100e18;
    --white: #191522;
    --night: #07040f;
    --brand-pink: #f0a7e7;
    --brand-sky: #8cc8ff;
    --brand-violet: #ad8dff;
    --brand-purple: #c99df2;
    --brand-plum: #eee7ff;
    --plum-ink: #080411;
    --pink-veil: rgba(240, 167, 231, 0.16);
    --sky-veil: rgba(140, 200, 255, 0.13);
    --violet-veil: rgba(173, 141, 255, 0.15);
    --purple-wash: rgba(201, 157, 242, 0.14);
    --electric-blue: #8cc8ff;
    --line: rgba(238, 231, 255, 0.18);
    --soft-line: rgba(238, 231, 255, 0.14);
    --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,
  .transcript-line,
  .music-cue,
  .video-cue,
  .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));
  }

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

  .signup-paused-panel .panel-label {
    color: rgba(228, 164, 223, 0.9);
  }

  .signup-paused-panel 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,
  .instrument-card {
    border-color: var(--line);
    background: rgba(27, 22, 36, 0.78);
    box-shadow: var(--shadow);
  }

  .chapter-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(240, 167, 231, 0.12), rgba(27, 22, 36, 0.86));
  }

  .chapter-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(140, 200, 255, 0.12), rgba(27, 22, 36, 0.86));
  }

  .chapter-card:nth-child(3) {
    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);
  }

  .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,
  .chart-meta span,
  .music-cue span,
  .video-cue > span,
  .transcript-heading span,
  .transcript-line strong,
  .book-cover figcaption {
    color: var(--brand-plum);
  }

  .location-option:hover,
  .location-option:focus-visible,
  .location-option.is-active,
  .music-cue,
  .video-cue,
  .aspect-chip {
    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,
  .chart-meta span {
    color: rgba(238, 231, 255, 0.62);
  }

  .transcript-panel {
    border-color: rgba(238, 231, 255, 0.18);
    background: rgba(18, 14, 26, 0.92);
    color: var(--brand-plum);
  }

  .transcript-heading {
    border-bottom-color: var(--line);
  }

  .transcript-progress {
    background: rgba(238, 231, 255, 0.1);
  }

  .inline-video,
  .chapter-links a,
  .chart-meta span {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.06);
  }

  .chart-factor-list li {
    border-top-color: var(--line);
  }

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

@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 {
    grid-column: auto;
    grid-area: auto;
    width: min(100%, 820px);
    max-height: none;
    justify-self: center;
    margin-top: 0;
    overflow: visible;
  }

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

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 60px;
    height: 49px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    max-width: 250px;
    color: color-mix(in srgb, var(--brand-plum) 78%, var(--brand-purple) 22%);
    font-size: 10px;
    font-weight: 850;
    line-height: 1.25;
  }

  .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: 48px;
    line-height: 0.98;
  }

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

  .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: 38px;
    line-height: 1.02;
  }

  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: 36px;
    line-height: 1.02;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .chapter-list {
    grid-template-columns: 1fr;
    gap: 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;
  }

  .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: min(88vw, 680px);
    max-width: none;
    margin-left: calc(var(--video-cue-indent) * -1);
  }

  .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 .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 audio {
    grid-column: 2;
    grid-row: 2;
    min-height: 40px;
  }

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

  h2 {
    font-size: 34px;
  }

  .listen-section h2 {
    font-size: 36px;
  }

  .manifesto,
  .memoir-section,
  .listen-section,
  .themes-section,
  .chart-section,
  .about-section,
  .updates-section {
    padding: 48px 0;
  }

  .manifesto h2 {
    font-size: 31px;
  }

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