/* Mobile is the baseline. Wider layouts are an enhancement at 900px. */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}
a {
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: var(--on-accent);
}
.wrap {
  width: calc(100% - 40px);
  max-width: 1240px;
  margin-inline: auto;
}
.skip {
  position: absolute;
  top: -100px;
}
.skip:focus {
  top: 10px;
  left: 10px;
  z-index: 90;
  background: var(--panel);
  padding: 12px;
}
.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.1;
  text-decoration: none;
  letter-spacing: -0.055em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: none;
}
.phone-menu {
  border: 0;
  padding: 0;
  margin: 0;
}
.phone-menu > summary {
  list-style: none;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.phone-menu > summary::-webkit-details-marker {
  display: none;
}
.phone-menu > summary span {
  width: 17px;
  height: 1px;
  background: currentColor;
}
.phone-menu[open] > summary span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.phone-menu[open] > summary span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.phone-menu nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  padding: 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 40px #00000012;
  display: grid;
}
.phone-menu nav a {
  display: block;
  min-height: 52px;
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 17px;
}
.phone-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.phone-nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  text-decoration: none;
  font-size: 10px;
  color: var(--muted);
  border-radius: 12px;
}
.phone-nav svg {
  width: 21px;
  height: 21px;
}
.phone-nav a[aria-current="page"] {
  background: var(--panel);
  color: var(--ink);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: var(--heading-weight, 400);
  text-wrap: balance;
}
h1 {
  font-size: clamp(43px, 12.8vw, 59px);
  line-height: 1.015;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}
h2 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
h3 {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 15px 22px;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
  border-radius: var(--button-radius, 5px);
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.button span {
  font-size: 19px;
}
.button:hover {
  filter: brightness(1.1);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-height: 48px;
  text-underline-offset: 6px;
  font-size: 13px;
}
.quiet {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.small-note {
  font-size: 11px;
  color: var(--muted);
  margin: 14px 0 0;
}
.photo {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero {
  position: relative;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero .button {
  width: 100%;
}
.hero-intro {
  padding-top: 30px;
}
.hero-summary {
  padding-top: 23px;
  padding-bottom: 36px;
}
.hero-summary .lede {
  margin-bottom: 24px;
}
.section {
  padding-block: 54px;
}
.section-heading > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 26px;
}
.section-heading h2 {
  margin-bottom: 18px;
}
.topic-rows {
  border-top: 1px solid var(--line);
}
.topic-rows > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 106px;
  padding: 23px 2px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.topic-rows h3 {
  margin: 0 0 9px;
}
.topic-rows p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.topic-rows > a > span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  flex: none;
}
.feature-section {
  background: var(--panel);
}
.feature-image {
  aspect-ratio: 1.12;
  overflow: hidden;
}
.feature-copy {
  padding-block: 36px 42px;
}
.feature-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.feature-copy .feature-lede {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.55;
}
.feature-copy h2 {
  margin-bottom: 22px;
}
.closing-section {
  text-align: center;
  padding-block: 64px;
}
.closing-section .button {
  display: flex;
  max-width: 360px;
  margin: 30px auto 10px;
  justify-content: center;
}
.closing-section h2 {
  font-size: 39px;
}
.footer {
  padding: 38px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  gap: 28px;
}
.footer-top p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 450px;
  margin: 20px 0 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.footer-links a {
  font-size: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.footer-bottom a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.page-heading {
  padding-block: 35px 20px;
}
.page-heading h1 {
  font-size: clamp(40px, 11.7vw, 54px);
}
.page-heading .lede {
  font-size: 15px;
}
.journal-heading {
  position: relative;
}
.journal-intro-image {
  width: 91px;
  height: 112px;
  border-radius: 44px 44px 4px 4px;
  float: right;
  margin: 0 0 18px 15px;
}
.journal-heading h1 {
  clear: both;
  padding-top: 10px;
}
.search {
  display: flex;
  margin: 30px 0 18px;
  border-bottom: 1px solid var(--ink);
  clear: both;
}
.search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 16px 0;
  font-size: 16px;
  color: var(--ink);
}
.search button {
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 13px;
  min-width: 58px;
  cursor: pointer;
}
.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px 0 10px;
  scrollbar-width: thin;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  white-space: nowrap;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  text-decoration: none;
}
.chip.active {
  background: var(--ink);
  color: var(--bg);
}
.reading-grid {
  display: grid;
  gap: 24px;
}
.reading-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.reading-card h2 {
  font-size: 32px;
}
.reading-card p {
  color: var(--muted);
  font-size: 14px;
}
.empty {
  padding: 20px 0 50px;
  max-width: 580px;
}
.empty h2 {
  font-size: 31px;
}
.empty p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.design-note {
  font-size: 10px;
  line-height: 1.5;
  padding: 10px 20px;
  text-align: center;
  background: var(--panel);
  color: var(--muted);
}
.article-opening {
  padding-top: 32px;
  padding-bottom: 30px;
}
.article-opening h1 {
  font-size: clamp(41px, 11.5vw, 54px);
  line-height: 1.07;
}
.article-deck {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 650px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
}
.article-visual {
  width: 100%;
  aspect-ratio: 1.2;
  max-width: 1240px;
  overflow: hidden;
}
.article-grid {
  padding-block: 26px 50px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.contents {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.contents > summary {
  font-size: 13px;
  min-height: 52px;
  padding: 14px 17px;
  cursor: pointer;
}
.contents nav {
  padding: 0 17px 15px;
}
.contents a {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  padding: 13px 0;
  text-decoration: none;
  color: var(--muted);
  border-top: 1px solid var(--line);
  min-height: 44px;
}
.article-body {
  min-width: 0;
  font-size: 17px;
  line-height: 1.8;
}
.article-body section {
  margin-bottom: 43px;
  scroll-margin-top: 95px;
}
.article-body h2 {
  font-size: 32px;
  line-height: 1.16;
}
.article-body p {
  color: var(--muted);
  margin-bottom: 22px;
}
.answer {
  padding: 24px;
  background: var(--panel);
  border-radius: 6px;
  margin-bottom: 38px;
}
.answer strong {
  font: 500 11px var(--sans);
  display: block;
  margin-bottom: 14px;
}
.answer p {
  margin: 0;
  font-size: 16px;
}
.pullquote {
  padding: 25px 0;
  margin: 30px 0;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.3;
  border-block: 1px solid var(--line);
}
.story-image {
  margin: 30px 0;
}
.story-image .photo {
  aspect-ratio: 1.1;
}
.story-image figcaption {
  font: 11px/1.6 var(--sans);
  color: var(--muted);
  margin-top: 10px;
}
.article-end {
  padding: 28px;
  background: var(--panel);
  border-radius: 8px;
}
.article-end h2 {
  font-size: 32px;
}
.article-end .button {
  width: 100%;
}
details:not(.phone-menu):not(.contents) {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
details:not(.phone-menu):not(.contents) > summary {
  font-size: 16px;
  cursor: pointer;
  min-height: 44px;
  line-height: 1.5;
}
details:not(.phone-menu):not(.contents) p {
  font-size: 15px;
  margin-top: 16px;
}
.checker-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 42px;
}
.checker-layout > div {
  display: contents;
}
.checker-layout > div > .lede {
  order: 0;
  font-size: 15px;
}
.checker-panel {
  order: 1;
  padding: 25px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.checker-panel h2 {
  font-size: 30px;
}
.sign-fields {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.sign-fields label {
  font-size: 12px;
  font-weight: 500;
}
.sign-fields select {
  display: block;
  width: 100%;
  padding: 14px 13px;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 5px;
  min-height: 53px;
  margin-top: 8px;
}
.checker-panel .button {
  width: 100%;
  margin-top: 25px;
  justify-content: center;
}
.checker-note {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  margin: 18px 0 0;
}
.checker-result:empty {
  display: none;
}
.checker-result {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.checker-result h3 {
  font-size: 28px;
}
.checker-result p {
  font-size: 14px;
  color: var(--muted);
}
.feature-art {
  order: 2;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
}
.principles {
  display: grid;
  gap: 25px;
}
.principles > div {
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.principles h3 {
  font-size: 25px;
  margin-bottom: 14px;
}
.principles p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 50px;
}
.about-mark {
  height: 310px;
  overflow: hidden;
  border-radius: 4px;
}
.about-copy {
  font-size: 16px;
  line-height: 1.8;
}
.about-copy p {
  color: var(--muted);
}
.about-copy h2 {
  font-size: 31px;
  margin: 34px 0 20px;
}
.legal {
  max-width: 750px;
  padding-bottom: 60px;
}
.legal h2 {
  font-size: 28px;
}
.legal p {
  font-size: 15px;
  color: var(--muted);
}
@media (min-width: 600px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-intro h1 {
    font-size: 66px;
  }
  .sign-fields {
    grid-template-columns: 1fr 1fr;
  }
  .reading-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-opening h1,
  .page-heading h1 {
    font-size: 64px;
  }
  .article-grid {
    max-width: 760px;
  }
  .feature-image {
    max-height: 520px;
  }
  .journal-intro-image {
    width: 145px;
    height: 170px;
  }
  .journal-heading h1 {
    clear: none;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
  }
  .footer-links {
    align-content: start;
    justify-content: end;
  }
}
@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
  .wrap {
    width: calc(100% - 96px);
  }
  .phone-nav,
  .phone-menu {
    display: none;
  }
  .masthead {
    position: relative;
  }
  .nav {
    height: 88px;
  }
  .brand {
    font-size: 28px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 13px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links a:last-child {
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 10px 22px;
  }
  h1 {
    font-size: 86px;
  }
  h2 {
    font-size: 53px;
  }
  .hero .button {
    width: auto;
    min-width: 250px;
  }
  .section {
    padding-block: 86px;
  }
  .topic-section {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 100px;
  }
  .topic-rows {
    align-self: center;
  }
  .topic-rows h3 {
    font-size: 32px;
  }
  .topic-rows > a {
    min-height: 116px;
  }
  .feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .feature-image {
    height: 680px;
    max-height: none;
    aspect-ratio: auto;
  }
  .feature-copy {
    width: auto;
    max-width: 530px;
    padding: 60px;
    margin-inline: 0;
  }
  .feature-copy h2 {
    font-size: 53px;
  }
  .feature-copy > p {
    font-size: 16px;
  }
  .feature-copy .feature-lede {
    font-size: 21px;
  }
  .closing-section h2 {
    font-size: 58px;
  }
  .footer {
    padding-top: 60px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    gap: 35px;
  }
  .page-heading {
    padding-top: 70px;
    max-width: 1120px;
  }
  .page-heading h1 {
    font-size: 75px;
  }
  .page-heading .lede {
    font-size: 18px;
  }
  .journal-intro-image {
    width: 210px;
    height: 245px;
    margin-left: 60px;
  }
  .search {
    max-width: 650px;
  }
  .filters {
    margin-top: 22px;
  }
  .reading-card {
    padding: 34px 0;
  }
  .reading-card h2 {
    font-size: 39px;
  }
  .article-opening {
    padding-top: 65px;
    max-width: 1100px;
  }
  .article-opening h1 {
    font-size: 78px;
    max-width: 1000px;
  }
  .article-deck {
    font-size: 20px;
  }
  .article-visual {
    width: calc(100% - 96px);
    height: 520px;
    aspect-ratio: auto;
  }
  .article-grid {
    display: grid;
    grid-template-columns: 210px minmax(0, 720px);
    justify-content: space-between;
    gap: 80px;
    max-width: 1240px;
    padding-top: 45px;
  }
  .contents {
    position: sticky;
    top: 30px;
    align-self: start;
    border: 0;
  }
  .contents > summary {
    list-style: none;
    padding: 0 0 18px;
    min-height: 0;
  }
  .contents > summary::-webkit-details-marker {
    display: none;
  }
  .contents nav {
    display: block !important;
    content-visibility: visible !important;
    padding: 0;
  }
  .contents:not([open]) > nav {
    display: block;
  }
  .article-body {
    font-size: 18px;
    line-height: 1.85;
  }
  .article-body h2 {
    font-size: 40px;
  }
  .article-body section {
    margin-bottom: 64px;
  }
  .article-end {
    padding: 40px;
  }
  .article-end .button {
    width: auto;
  }
  .story-image .photo {
    aspect-ratio: 1.35;
  }
  .checker-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    max-width: 1120px;
    padding-block: 20px 70px;
  }
  .checker-layout > div {
    display: block;
  }
  .checker-layout > div > .lede {
    margin-bottom: 28px;
  }
  .checker-panel {
    align-self: start;
    padding: 35px;
  }
  .checker-panel h2 {
    font-size: 35px;
  }
  .feature-art {
    height: 400px;
  }
  .principles {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }
  .about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 80px;
    padding-block: 30px 100px;
    max-width: 1120px;
  }
  .about-mark {
    height: 650px;
  }
  .about-copy {
    font-size: 18px;
  }
  .about-copy h2 {
    font-size: 39px;
  }
  .legal {
    padding-top: 25px;
  }
  .footer-bottom {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

:root {
  --bg: #f8fafb;
  --panel: #e9eff5;
  --ink: #18374d;
  --muted: #586e7d;
  --line: #cedae2;
  --accent: #315fbc;
  --on-accent: #fff;
  --sans: "Avenir Next", Avenir, Arial, sans-serif;
  --display: "Avenir Next", Avenir, Arial, sans-serif;
  --heading-weight: 550;
  --button-radius: 9px;
}
.brand {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.wordmark-symbol {
  font-size: 34px;
  font-weight: 400;
  color: var(--accent);
}
.optical-hero .hero-intro {
  padding-top: 35px;
}
.optical-hero h1 {
  font-size: 45px;
  line-height: 1.04;
  letter-spacing: -0.065em;
}
.optical-hero .lede {
  font-size: 15px;
  margin-bottom: 24px;
}
.optical-hero .hero-image {
  aspect-ratio: 1.06;
  border-radius: 18px;
  background: #eaf0f5;
}
.optical-hero .hero-image .photo {
  height: 100%;
}
.optical-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f6f9fcdf;
  backdrop-filter: blur(8px);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
  color: #3c5d76;
  border-top: 1px solid #d1dce6;
}
.optical-hero .hero-summary {
  padding-top: 22px;
}
.optical-hero .small-note {
  text-align: center;
}
.topic-section {
  border-top: 1px solid var(--line);
}
.topic-section h2 {
  font-size: 34px;
}
.topic-rows h3 {
  font-size: 24px;
  font-weight: 500;
}
.feature-section {
  background: #eef2f6;
}
.feature-image {
  aspect-ratio: 1.05;
}
.feature-copy h2 {
  font-size: 35px;
  letter-spacing: -0.06em;
}
.closing-section h2 {
  font-size: 34px;
}
.checker-panel {
  background: #fff;
  box-shadow: 0 10px 38px #23486c08;
}
.article-opening h1 {
  font-size: 40px;
  letter-spacing: -0.055em;
}
.article-visual {
  width: calc(100% - 40px);
  border-radius: 14px;
  aspect-ratio: 1.2;
}
.article-body h2 {
  font-size: 29px;
  letter-spacing: -0.04em;
}
.pullquote {
  font-size: 25px;
}
.article-end h2 {
  font-size: 29px;
}
.journal-intro-image {
  border-radius: 14px;
}
.page-heading h1 {
  font-size: 39px;
}
.about-mark {
  border-radius: 14px;
}
.about-copy h2 {
  font-size: 29px;
}
@media (min-width: 600px) {
  .optical-hero h1 {
    font-size: 67px;
  }
  .optical-hero .hero-image {
    max-height: 500px;
  }
  .article-opening h1,
  .page-heading h1 {
    font-size: 59px;
  }
}
@media (min-width: 900px) {
  .brand {
    font-size: 19px;
  }
  .wordmark-symbol {
    font-size: 42px;
  }
  .optical-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 60px;
    padding-block: 65px 80px;
    align-items: center;
  }
  .optical-hero .hero-intro {
    grid-column: 1;
    align-self: end;
    padding: 0;
  }
  .optical-hero h1 {
    font-size: 78px;
  }
  .optical-hero .lede {
    font-size: 18px;
    max-width: 450px;
  }
  .optical-hero .hero-image {
    grid-column: 2;
    grid-row: 1/3;
    height: 640px;
    max-height: none;
    aspect-ratio: auto;
  }
  .optical-hero .hero-summary {
    width: 100%;
    align-self: start;
    padding: 15px 0 0;
  }
  .optical-hero .small-note {
    text-align: left;
  }
  .optical-caption {
    padding: 20px;
    font-size: 11px;
  }
  .topic-section h2 {
    font-size: 52px;
  }
  .topic-rows h3 {
    font-size: 31px;
  }
  .feature-copy h2 {
    font-size: 52px;
  }
  .closing-section h2 {
    font-size: 53px;
  }
  .article-opening h1 {
    font-size: 71px;
  }
  .article-body h2 {
    font-size: 37px;
  }
  .article-visual {
    width: calc(100% - 96px);
  }
  .page-heading h1 {
    font-size: 67px;
  }
  .about-copy h2 {
    font-size: 38px;
  }
}

/* A personal overview: clear inputs, inspectable output, no invented prediction. */
[hidden] {
  display: none !important;
}
.assessment-heading {
  padding-top: 38px;
  padding-bottom: 28px;
}
.assessment-heading h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  max-width: 850px;
}
.assessment-heading .lede {
  max-width: 650px;
}
.assessment-layout {
  display: grid;
  gap: 28px;
  padding-bottom: 70px;
}
.assessment {
  padding: 24px 20px;
  background: var(--surface, #eceff4);
  border: 1px solid var(--line, #ccc);
  border-radius: 12px;
  min-width: 0;
}
.assessment h2 {
  font-size: 30px;
  line-height: 1.15;
  margin: 28px 0 20px;
}
.assessment label {
  display: block;
}
.assessment select {
  display: block;
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  margin-bottom: 22px;
  padding: 12px;
  background: var(--paper, #fff);
  color: inherit;
  border: 1px solid var(--line, #aaa);
  border-radius: 6px;
  font: inherit;
  font-size: 16px;
}
.assessment fieldset {
  border: 0;
  padding: 0;
  margin: 20px 0;
}
.assessment legend {
  margin-bottom: 16px;
}
.answer-choice {
  display: flex !important;
  gap: 14px;
  align-items: center;
  padding: 17px 12px;
  border-top: 1px solid var(--line, #bbb);
  cursor: pointer;
}
.answer-choice input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent, #3456ab);
  flex-shrink: 0;
}
.answer-choice small {
  display: block;
  margin-top: 3px;
  opacity: 0.75;
  font-size: 13px;
}
.flow-progress {
  font-size: 13px;
}
.flow-progress progress {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 15px;
  accent-color: var(--accent, #3456ab);
}
.flow-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.flow-actions .button {
  flex: 1;
}
.observation {
  padding: 16px 0 0;
  border-top: 1px solid var(--line, #bbb);
}
.method-note {
  padding: 18px;
  border-left: 3px solid var(--accent, #3456ab);
  font-size: 14px;
  line-height: 1.65;
  background: color-mix(in srgb, currentColor 4%, transparent);
}
.method-note p {
  margin-bottom: 0;
}
.assessment-aside .photo {
  max-height: 260px;
  overflow: hidden;
  border-radius: 8px;
}
.assessment-aside .photo img {
  height: 260px;
  object-fit: cover;
}
.report-teaser {
  padding: 24px 0;
}
.report-teaser h2 {
  font-size: 36px;
  line-height: 1.1;
}
.report-teaser dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line, #bbb);
}
.report-teaser dd {
  margin: 4px 0 0;
  opacity: 0.7;
  font-size: 14px;
}
.personal-report {
  grid-column: 1/-1;
  grid-row: 1;
  padding: 26px 20px;
  background: var(--surface, #edf1f5);
  border: 1px solid var(--line, #ccc);
  border-radius: 12px;
}
.personal-report h2 {
  font-size: 38px;
  line-height: 1.1;
}
.dimension-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line, #bbb);
  gap: 10px;
}
.dimension-row h3 {
  font-size: 19px;
  margin: 0;
}
.dimension-row meter {
  width: 100%;
  height: 18px;
  grid-column: 1/-1;
  accent-color: var(--accent, #3456ab);
}
.dimension-row p {
  grid-column: 1/-1;
  margin: 0;
  font-size: 14px;
}
.journey-invite {
  padding: 32px 22px;
  margin-top: 35px;
  margin-bottom: 35px;
  border: 1px solid var(--line, #bbb);
  border-radius: 12px;
}
.journey-invite h2 {
  font-size: 34px;
  line-height: 1.1;
}
.journey-invite p {
  max-width: 600px;
}
.journey-invite .small-note {
  margin-top: 12px;
}
.celestial .assessment,
.celestial .personal-report {
  background: #20283d;
}
.celestial .assessment select {
  background: #171e2e;
  color: #f4eef8;
}
.magazine .assessment,
.magazine .personal-report {
  background: #f2e5e2;
}
.magazine .assessment select {
  background: #fff8f5;
}
@media (min-width: 900px) {
  .assessment-heading {
    padding-top: 65px;
  }
  .assessment-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 65px;
  }
  .assessment {
    padding: 35px;
  }
  .assessment-aside {
    grid-column: 2;
    grid-row: 1;
  }
  .personal-report {
    grid-column: 1;
    grid-row: 1;
    padding: 35px;
  }
  .journey-invite {
    padding: 45px;
  }
}

.personal-report {
  scroll-margin-top: 88px;
}
.dimension-row strong {
  font-size: 15px;
  text-align: right;
}
.dimension-row meter::-webkit-meter-bar {
  background: #dce3e9;
  border: 0;
}
.dimension-row meter::-webkit-meter-optimum-value {
  background: var(--accent, #3456ab);
}
/* Celestial atlas: warm engraved artwork, quiet editorial typography. */
.reference {
  --accent: #9e7741;
  --paper: #f5f1e9;
  --surface: #ece7dc;
  --line: #d5ccbc;
  background: #f5f1e9;
  color: #192b3e;
}
.reference h1,
.reference h2,
.reference h3 {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.reference .masthead {
  background: #101c32;
  color: #eee7d8;
  border-color: #394151;
}
.reference .brand {
  color: inherit;
}
.reference .wordmark-symbol {
  color: #cfb07b;
}
.reference .phone-menu[open] {
  background: #101c32;
}
.reference .phone-menu nav {
  background: #101c32;
  color: #eee7d8;
}
.reference .phone-nav {
  background: #101c32;
  color: #eee7d8;
  border-color: #394151;
}
.reference .phone-nav a[aria-current] {
  background: #263247;
  color: #e6c590;
}
.reference .button {
  background: #192d44;
  color: #f6ecd9;
  border-radius: 5px;
}
.reference .eyebrow {
  color: inherit;
}
.reference .footer {
  background: #101c32;
  color: #e5dfd4;
}
.zodiac-hero {
  background: #101c32;
  color: #f0e9dd;
  overflow: hidden;
}
.zodiac-layout {
  display: grid;
  padding-top: 30px;
  padding-bottom: 32px;
  gap: 18px;
}
.zodiac-intro h1 {
  font-size: clamp(42px, 6.5vw, 86px);
  line-height: 1.04;
  margin: 15px 0;
}
.zodiac-intro .lede {
  font-size: 15px;
  line-height: 1.65;
  color: #bbbfc8;
  margin-bottom: 0;
}
.zodiac-intro .eyebrow {
  font-size: 11px;
  color: #d4bd93;
}
.zodiac-wheel {
  margin: 0;
  min-width: 0;
}
.zodiac-wheel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
}
.zodiac-wheel figcaption {
  text-align: center;
  font-size: 10px;
  color: #b1afad;
  margin-top: 12px;
}
.zodiac-action {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
}
.zodiac-action .button {
  background: #dbc395;
  color: #142137;
  text-align: center;
}
.zodiac-action .text-link {
  text-align: center;
  color: #eee6d8;
  font-size: 13px;
}
.zodiac-action .small-note {
  font-size: 11px;
  color: #aaaeb7;
  text-align: center;
  margin: 0;
}
.celestial-key {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 12px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #d5ccbc;
}
.celestial-key span {
  font-size: 12px;
  color: #677078;
}
.celestial-key b {
  font-weight: 500;
  color: #23374b;
  margin: 0 4px;
}
.chart-guide {
  display: grid;
  gap: 28px;
  padding-top: 45px;
  padding-bottom: 45px;
  scroll-margin-top: 90px;
}
.guide-heading h2 {
  font-size: 43px;
  line-height: 1.02;
  margin: 15px 0;
}
.guide-heading p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}
.planet-readings details {
  padding: 0;
  border-top: 1px solid #d5ccbc;
}
.planet-readings summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 21px;
  font-family: "Iowan Old Style", serif;
}
.planet-readings summary::-webkit-details-marker {
  display: none;
}
.planet-readings summary::after {
  content: "+";
  margin-left: auto;
  font-family: system-ui;
  font-size: 20px;
  color: #947345;
}
.planet-readings details[open] summary::after {
  content: "−";
}
.planet-symbol {
  font-family: serif;
  font-size: 34px;
  width: 38px;
  text-align: center;
  color: #9b7b48;
}
.planet-readings small {
  display: block;
  font-family: "Avenir Next", sans-serif;
  font-size: 11px;
  color: #687580;
  margin-top: 4px;
}
.planet-readings details p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 24px 58px;
}
.source-note {
  font-size: 11px;
  line-height: 1.7;
  color: #72767a;
  margin-top: 22px;
}
.source-note a {
  text-decoration: underline;
}
.atlas-feature {
  display: grid;
  background: #eae3d6;
}
.atlas-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center 38%;
}
.atlas-copy {
  padding: 35px 22px 42px;
}
.atlas-copy h2 {
  font-size: 45px;
  line-height: 1.04;
  margin: 20px 0;
}
.atlas-copy p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 440px;
}
.atlas-copy .small-note {
  font-size: 11px;
}
.reference .article-opening h1 {
  font-size: clamp(40px, 6vw, 78px);
}
.reference .article-visual {
  max-width: 650px;
}
.reference .article-visual img {
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  background: #101c32;
}
.reference .assessment select {
  background: #faf7f0;
}
.reference .assessment-aside .photo img {
  object-position: center 25%;
}
.reference .dimension-row {
  display: block;
}
.reference .dimension-row h3 {
  font-size: 27px;
  margin-bottom: 12px;
}
.reference .personal-report h2 {
  font-size: 42px;
}
.reference .about-mark img {
  object-fit: cover;
}
.reference .journal-intro-image img {
  object-position: center 30%;
}
@media (min-width: 600px) {
  .zodiac-wheel {
    max-width: 520px;
    justify-self: center;
  }
  .celestial-key {
    grid-template-columns: repeat(4, 1fr);
  }
  .atlas-copy {
    padding: 45px;
  }
}
@media (min-width: 900px) {
  .zodiac-layout {
    grid-template-columns: 1fr 1.12fr;
    column-gap: 50px;
    row-gap: 25px;
    padding-top: 58px;
    padding-bottom: 58px;
    align-items: center;
  }
  .zodiac-intro {
    grid-column: 1;
    align-self: end;
  }
  .zodiac-wheel {
    grid-column: 2;
    grid-row: 1/3;
    max-width: none;
  }
  .zodiac-action {
    grid-column: 1;
    align-self: start;
    align-items: flex-start;
  }
  .zodiac-action .button {
    min-width: 235px;
  }
  .zodiac-intro .lede {
    font-size: 18px;
    max-width: 490px;
  }
  .zodiac-action .small-note,
  .zodiac-action .text-link {
    text-align: left;
  }
  .celestial-key {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .chart-guide {
    grid-template-columns: 1fr 1.25fr;
    gap: 100px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .guide-heading h2 {
    font-size: 60px;
  }
  .atlas-feature {
    grid-template-columns: 1fr 1fr;
  }
  .atlas-image img {
    height: 650px;
  }
  .atlas-copy {
    align-self: center;
    padding: 60px;
  }
  .atlas-copy h2 {
    font-size: 62px;
  }
}

@media (max-width: 599px) {
  .zodiac-wheel {
    width: 100%;
    max-width: 290px;
    justify-self: center;
  }
  .zodiac-intro h1 {
    font-size: 44px;
  }
  .zodiac-layout {
    padding-top: 24px;
    gap: 14px;
  }
  .zodiac-intro .lede {
    font-size: 14px;
  }
  .zodiac-wheel figcaption {
    font-size: 9px;
  }
  .zodiac-action {
    gap: 12px;
  }
}

.article-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.article-sources {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.article-sources li {
  margin: 12px 0;
}
.reference .article-visual .article-photo img {
  border-radius: 8px;
  aspect-ratio: auto;
}
.article-body .article-photo img {
  max-height: none;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.article-tags .chip {
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Search library: keep each publication's inherited type, palette and rhythm. */
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--bg);
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.knowledge-layout,
.policy-copy {
  max-width: 860px;
  padding-bottom: 72px;
}
.knowledge-layout > section,
.knowledge-layout > aside,
.policy-copy h2 {
  margin-top: 40px;
}
.knowledge-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.knowledge-links a {
  padding: 17px 0;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 1.1rem;
}
.knowledge-links a:hover {
  text-decoration: underline;
}
.concept-answer p,
.policy-copy p {
  max-width: 65ch;
}
.pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-size: 0.9rem;
  margin: 24px 0;
}
.pair-directory summary {
  cursor: pointer;
  padding: 16px 0;
}
.pair-grid span {
  opacity: 0.65;
}
.angle-tool {
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid currentColor;
}
.angle-tool form {
  display: grid;
  gap: 18px;
}
.angle-tool label {
  display: grid;
  gap: 8px;
}
.angle-tool input {
  width: 100%;
  min-height: 48px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 12px;
}
.angle-result {
  margin-top: 24px;
}
.table-scroll {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th,
td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid currentColor;
}
caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 12px;
}
.pagination {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0;
}
.related-reading {
  margin-top: 48px;
  border-top: 1px solid currentColor;
  padding-top: 24px;
}
.article-shortcuts,
.section-sources {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.6;
}
.section-sources {
  opacity: 0.8;
}
.policy-copy {
  line-height: 1.8;
}
.article-sources li p {
  font-size: 0.9rem;
}
.celestial .knowledge-links a {
  border-color: #ffffff30;
}
.reference .knowledge-links a {
  border-color: #d0ba8640;
}
.magazine .knowledge-links a {
  border-color: #742c3735;
}
@media (min-width: 700px) {
  .knowledge-links {
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
  }
  .pair-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .angle-tool form {
    grid-template-columns: 1fr 1fr;
  }
  .angle-tool button {
    align-self: end;
  }
}

.reference .phone-nav a {
  color: #eee7d8;
}
.reference .footer {
  --muted: #c3bdaf;
}

.monthly-evidence {
  margin: 24px 0 48px;
}
.monthly-evidence td {
  min-width: 140px;
}
.article-opening .answer {
  max-width: 760px;
  text-align: left;
  margin: 24px 0;
}

.placement-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
  padding: 20px 0;
  border: 0;
  border-top: 1px solid var(--line, #ccd0d8);
}
.placement-row legend {
  font-size: 22px;
  padding: 0 8px 0 0;
}
.placement-row label {
  display: block;
  margin-bottom: 18px;
}
.placement-row input {
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  border: 1px solid #a5aebd;
  border-radius: 6px;
  padding: 10px;
  background: transparent;
  color: inherit;
  font: inherit;
}
.placement-row small {
  display: block;
  font-size: 12px;
  margin: 6px 0;
  opacity: 0.75;
}
.report-prompt {
  font-style: italic;
}
.assessment-heading h1 {
  overflow-wrap: break-word;
}
@media (max-width: 600px) {
  .placement-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .assessment-heading h1 {
    font-size: clamp(36px, 10vw, 58px);
  }
}

.personal-report {
  scroll-margin-top: 96px;
}
