/* style.css — consume los tokens de tokens.css; no redefine ninguno. */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.75 var(--sans);
  overflow-x: hidden;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}
button {
  color: inherit;
}
::selection {
  background: #ae915e;
  color: #080c14;
}
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath filter='url(%23n)' opacity='.5' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
.header {
  max-width: 1440px;
  margin: auto;
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  font: 500 31px/1 var(--serif);
  letter-spacing: 7px;
  display: block;
  position: relative;
  white-space: nowrap;
}
.brand-star {
  color: var(--gold);
  font-size: 40px;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
  transition: transform 1s;
}
.brand:hover .brand-star {
  transform: rotate(90deg);
}
.brand-sub {
  display: block;
  font: 9px/2 var(--sans);
  letter-spacing: 2.2px;
  padding-left: 46px;
  margin-top: 7px;
  color: var(--muted);
}
nav {
  display: flex;
  gap: 35px;
}
nav a {
  font-size: 14px;
  color: #aaaebb;
  position: relative;
  padding: 10px 0;
}
nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s;
}
nav a:hover,
nav a.active {
  color: var(--gold-light);
}
nav a.active:after,
nav a:hover:after {
  width: 100%;
}
.profile-button {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  font-size: 13px;
  transition: 0.3s;
}
.profile-button span:first-child {
  color: var(--gold);
  font-size: 20px;
  margin-right: 8px;
}
.profile-button:hover {
  background: var(--panel2);
  border-color: var(--gold);
}
main {
  max-width: 1280px;
  margin: auto;
  padding: 0 45px;
}
.date-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0 0;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.sky-status {
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.7px;
}
.tiny-orbit {
  color: var(--gold);
  font-size: 19px;
}
.hero {
  min-height: 445px;
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  align-items: center;
  position: relative;
  margin: 0 0 25px;
}
.hero-copy {
  z-index: 1;
  padding: 40px 0 32px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1.8;
  display: block;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 22px 0;
}
em {
  font-weight: 400;
  color: var(--gold-light);
}
.hero-copy p {
  color: var(--muted);
  max-width: 410px;
  font-size: 14px;
  line-height: 1.9;
  margin: 25px 0 30px;
}
.hero-action {
  display: flex;
  align-items: center;
  gap: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 15px 22px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.gold {
  background: var(--gold);
  color: #101420;
}
.gold:hover {
  background: var(--gold-light);
  box-shadow: 0 5px 30px #c8ad7920;
  transform: translateY(-2px);
}
.outline {
  background: transparent;
  color: var(--gold-light);
}
.outline:hover {
  background: #c8ad7910;
}
.quiet {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 16px;
}
.hero-art {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.hero-art img {
  width: 115%;
  height: auto;
  max-width: 560px;
  position: absolute;
  mix-blend-mode: screen;
  animation: celestial-in 2s ease both;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 72%);
}
.art-caption {
  font-size: 9px;
  letter-spacing: 4px;
  color: #c8ad797d;
  position: absolute;
  bottom: 16px;
}
.hero-mark {
  color: var(--gold);
  position: absolute;
  right: 10px;
  top: 90px;
  font-size: 13px;
  animation: twinkle 4s infinite;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 23px;
}
.section-heading h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 9px 0 0;
}
.small-muted {
  font-size: 12px;
  color: var(--muted);
}
.zodiac-section {
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.zodiac {
  padding: 16px 3px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  position: relative;
}
.zodiac .symbol {
  font-family: Georgia, serif;
  font-size: 29px;
  line-height: 1.5;
  color: #b6ab96;
  transition:
    transform 0.4s,
    color 0.4s;
}
.zodiac .sign-label {
  font-size: 10px;
  margin-top: 4px;
  color: var(--muted);
}
.zodiac:hover {
  border-color: #c8ad7970;
  transform: translateY(-4px);
  background: var(--panel);
}
.zodiac:hover .symbol {
  transform: scale(1.12);
  color: var(--gold-light);
}
.zodiac.selected {
  background: linear-gradient(160deg, #a58a4f22, #ac935b08);
  border-color: var(--gold);
}
.zodiac.selected .symbol,
.zodiac.selected .sign-label {
  color: var(--gold-light);
}
.zodiac.selected:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 35%;
  right: 35%;
  height: 2px;
  background: var(--gold-light);
  box-shadow: 0 0 12px #d0b57488;
}
.reading-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 23px;
}
.reading-card,
.sky-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(120deg, #151c2b88, #10172555);
}
.reading-card {
  padding: 30px 32px;
}
.reading-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.edition {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #9298a4;
}
.reading-title {
  display: flex;
  gap: 18px;
  align-items: center;
}
.large-symbol {
  font: 48px Georgia;
  color: var(--gold);
}
.reading-title h2 {
  font-size: 35px;
  line-height: 1;
  margin: 0 0 6px;
}
.element-tag {
  margin-left: auto;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 3px 11px;
  font-size: 10px;
  border-radius: 20px;
}
.reading-card h3 {
  font-size: 29px;
  line-height: 1.25;
  margin: 26px 0 14px;
}
.reading-card > p {
  font-size: 14px;
  line-height: 1.85;
  color: #acb1bd;
}
.reading-tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  margin: 22px 0 18px;
}
.reading-tabs button {
  border: 0;
  background: none;
  color: var(--muted);
  padding: 8px 0 12px;
  font-size: 12px;
  border-bottom: 1px solid transparent;
}
.reading-tabs button[aria-selected='true'] {
  border-bottom-color: var(--gold);
  color: var(--gold-light);
}
#area-reading {
  font-size: 14px;
  line-height: 1.9;
  color: #b2b6c0;
  min-height: 83px;
  animation: fade-up 0.5s ease;
}
.ritual {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 22px;
  display: flex;
  gap: 17px;
}
.ritual > span {
  color: var(--gold);
  font-size: 22px;
}
.ritual p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  color: #d7d1c5;
  margin: 7px 0 0;
}
.reading-card .reading-note {
  font-size: 10px;
  color: #9298a4;
  margin: 18px 0 0;
}
.sky-card {
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 20%, #3b334d30, transparent 65%), var(--panel);
}
.sky-card > .eyebrow {
  font-size: 10px;
}
.moon-icon {
  display: block;
  font: 100px/1.35 var(--serif);
  color: var(--gold-light);
  margin: 16px 0 0;
  text-shadow: 0 0 32px #c8ad7925;
  animation: moon-glow 6s ease-in-out infinite;
}
.sky-card h3 {
  font-size: 28px;
  margin: 4px 0 8px;
}
.sky-card > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.sky-details {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 13px;
}
.sky-details > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 11px;
  padding: 10px 0;
  gap: 8px;
  color: var(--muted);
}
.sky-details strong {
  font-weight: 500;
  color: #e1d2b5;
}
.sky-foot {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  display: block;
  margin-top: 18px;
}
.personal-invitation {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 50px 0;
  padding: 31px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.invite-icon {
  font-size: 59px;
  color: var(--gold);
  margin: 0 10px;
}
.personal-invitation h2 {
  font-size: 32px;
  margin: 6px 0;
}
.personal-invitation p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.personal-invitation .button {
  margin-left: auto;
  flex-shrink: 0;
}
.text-link {
  color: var(--gold-light);
  font-size: 12px;
  padding-bottom: 4px;
}
.text-link span {
  padding-left: 12px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-card {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0;
  text-align: left;
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.4s,
    border-color 0.4s;
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: #c8ad7966;
}
.article-visual {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #76643b26, transparent 65%), #101722;
  position: relative;
  overflow: hidden;
}
.article-visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 1s;
}
.article-card:hover .article-visual img {
  transform: scale(1.07);
}
.article-visual > span {
  position: relative;
  font-family: var(--serif);
  font-size: 73px;
  color: var(--gold-light);
  text-shadow: 0 0 25px #c8ad7950;
}
.article-card:nth-child(3n + 2) .article-visual {
  background: radial-gradient(ellipse at center, #566b7b26, transparent 65%), #121b28;
}
.article-card:nth-child(3n) .article-visual {
  background: radial-gradient(ellipse at center, #75547425, transparent 65%), #171823;
}
.article-body {
  padding: 23px;
}
.article-body .eyebrow {
  font-size: 9px;
  letter-spacing: 1.5px;
}
.article-body h3 {
  font-size: 27px;
  line-height: 1.15;
  margin: 10px 0 15px;
}
.article-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}
.article-bottom span:last-child {
  color: var(--gold);
}
.journal-preview {
  margin-bottom: 65px;
}
footer {
  max-width: 1350px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 30px 5%;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.footer-brand {
  font-size: 23px;
  color: var(--gold-light);
  letter-spacing: 4px;
}
.footer-note {
  margin-left: auto;
  max-width: 235px;
  font-size: 10px;
}
footer small {
  font-size: 10px;
}
.view {
  display: none;
}
.view.active {
  display: block;
  animation: fade-up 0.7s ease both;
}
.page-intro {
  padding: 65px 0 45px;
  text-align: center;
}
.page-intro h1 {
  font-size: 60px;
  line-height: 1.15;
}
.page-intro p {
  color: var(--muted);
  font-size: 16px;
}
.birth-layout {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 30px;
}
.form-card,
.natal-card {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.form-card h2 {
  font-size: 37px;
  margin: 7px 0 24px;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #c2c3ca;
  gap: 8px;
  margin-bottom: 18px;
}
input,
select {
  background: #0b111e;
  border: 1px solid #c8ad792f;
  border-radius: 3px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  width: 100%;
  transition: border-color 0.3s;
}
input:hover,
select:hover {
  border-color: #c8ad7960;
}
input::placeholder {
  color: #6e7689;
}
.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-help,
.method-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.form-card > .button {
  width: 100%;
  margin: 10px 0 18px;
}
.form-message {
  font-size: 13px;
  color: var(--gold-light);
  margin: 0 0 10px;
}
.method-note {
  max-width: 850px;
  margin: 25px auto 60px;
  text-align: center;
}
.method-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.empty-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 650px;
}
.empty-star {
  font: 140px/1.4 var(--serif);
  color: var(--gold);
  animation: moon-glow 6s infinite;
}
.empty-chart h2 {
  font-size: 49px;
  line-height: 1.1;
  margin: 20px 0;
}
.empty-chart p {
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
}
.chart-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
}
.natal-card h2 {
  font-size: 34px;
  margin: 7px 0;
}
.natal-wheel {
  width: 100%;
  max-height: 370px;
  display: block;
  margin: 15px auto;
}
.big-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.big-three > div {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  text-align: center;
}
.big-three span {
  font-size: 10px;
  color: var(--muted);
  display: block;
}
.big-three strong {
  font: 23px var(--serif);
  color: var(--gold-light);
}
.natal-interpretation {
  font-size: 14px;
  color: #b0b6c2;
  line-height: 1.8;
  margin-top: 25px;
}
.planet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.planet-table td,
.planet-table th {
  padding: 8px 4px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.planet-table th {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
}
.planet-table td:last-child {
  text-align: right;
  color: var(--muted);
}
.filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.filter-row button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--muted);
  transition: 0.3s;
}
.filter-row button.active,
.filter-row button:hover {
  background: #c8ad7910;
  border-color: var(--gold);
  color: var(--gold-light);
}
.universe-grid {
  margin-bottom: 70px;
  row-gap: 30px;
}
.universe-grid .article-visual {
  height: 200px;
}
dialog {
  background: #111926;
  color: var(--text);
  border: 1px solid #c8ad7955;
  border-radius: 8px;
  max-width: 640px;
  width: calc(100% - 32px);
  padding: 45px;
  max-height: 88vh;
  box-shadow: 0 30px 100px #0008;
}
dialog[open] {
  animation: fade-up 0.3s ease;
}
dialog::backdrop {
  background: #030611c9;
  backdrop-filter: blur(8px);
}
dialog h2 {
  font-size: 43px;
  line-height: 1.1;
  margin: 15px 0 25px;
}
dialog h3 {
  font-size: 27px;
  margin: 24px 0 10px;
}
dialog p {
  font-size: 15px;
  color: #b1b6c1;
}
.close-dialog {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: 0;
  font-size: 29px;
  color: var(--muted);
  padding: 3px 8px;
}
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.delete-button {
  background: none;
  border: 0;
  color: var(--muted);
  text-decoration: underline;
  font-size: 12px;
  padding: 12px 0;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: #202737;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: 0.3s;
  width: max-content;
  max-width: 90vw;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.skip {
  position: fixed;
  top: -70px;
  left: 10px;
  padding: 12px;
  background: var(--gold);
  color: var(--bg);
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.article-reading-body strong {
  color: var(--gold-light);
  font-weight: 500;
}
.article-reading-body p {
  line-height: 1.9;
}
.article-source {
  font-size: 12px !important;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.article-source a {
  text-decoration: underline;
}
.fade-content {
  animation: fade-up 0.45s ease;
}
.saved-indicator {
  font-size: 11px;
  color: var(--gold);
  margin-top: 15px;
}
.form-help a {
  color: var(--gold);
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes celestial-in {
  from {
    opacity: 0;
    transform: scale(0.96) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes moon-glow {
  0%,
  100% {
    text-shadow: 0 0 15px #c8ad7910;
  }
  50% {
    text-shadow: 0 0 40px #c8ad7950;
  }
}
@media (min-width: 1500px) {
  main {
    max-width: 1320px;
  }
  .hero {
    min-height: 490px;
  }
  .hero-art img {
    max-width: 600px;
  }
  .header {
    max-width: 1500px;
  }
}
@media (max-width: 1050px) {
  main {
    padding: 0 30px;
  }
  .header {
    padding: 22px 30px;
  }
  nav {
    gap: 22px;
  }
  .zodiac-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .zodiac {
    padding: 11px 4px;
  }
  .zodiac .symbol {
    font-size: 27px;
  }
  .reading-layout {
    grid-template-columns: 1fr 270px;
  }
  .reading-tabs {
    gap: 15px;
  }
  .hero-action .quiet {
    display: none;
  }
  .personal-invitation {
    gap: 16px;
  }
  .invite-icon {
    display: none;
  }
  .personal-invitation h2 {
    font-size: 29px;
  }
  .birth-layout {
    grid-template-columns: 360px 1fr;
  }
  .form-card,
  .natal-card {
    padding: 25px;
  }
  .brand {
    font-size: 28px;
  }
  .brand-sub {
    font-size: 8px;
  }
  .footer-note {
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  main {
    padding: 0 22px;
  }
  .header {
    padding: 19px 22px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .brand {
    font-size: 25px;
  }
  .brand-star {
    font-size: 31px;
  }
  .brand-sub {
    padding-left: 37px;
    font-size: 7px;
  }
  .profile-button {
    margin-left: auto;
    padding: 7px 12px;
    font-size: 11px;
  }
  nav {
    order: 3;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    padding-top: 7px;
  }
  nav a {
    font-size: 12px;
  }
  .date-strip {
    font-size: 9px;
    letter-spacing: 0.7px;
    gap: 10px;
    padding-top: 18px;
  }
  .sky-status {
    font-size: 9px;
    gap: 5px;
    letter-spacing: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 0;
  }
  .hero-copy {
    padding: 32px 0 30px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.6px;
  }
  .hero h1 {
    font-size: 58px;
    max-width: 470px;
  }
  .hero-copy p {
    font-size: 14px;
    max-width: 80%;
  }
  .hero-art {
    position: absolute;
    inset: 0 -80px 0 40%;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
  }
  .hero-art img {
    width: 450px;
    max-width: none;
  }
  .art-caption {
    display: none;
  }
  .hero-mark {
    display: none;
  }
  .hero-action .button {
    font-size: 12px;
    padding: 14px 17px;
  }
  .hero-action .quiet {
    display: block;
    font-size: 14px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
  }
  .zodiac-section {
    padding-top: 24px;
  }
  .section-heading {
    gap: 10px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .section-heading .small-muted {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .zodiac-grid {
    gap: 7px;
    margin-bottom: 24px;
  }
  .zodiac .sign-label {
    font-size: 9px;
  }
  .reading-layout {
    grid-template-columns: 1fr;
  }
  .reading-card {
    padding: 25px 22px;
  }
  .reading-card h3 {
    font-size: 28px;
  }
  .reading-title h2 {
    font-size: 32px;
  }
  .reading-tabs {
    justify-content: space-between;
    gap: 10px;
  }
  .reading-tabs button {
    font-size: 11px;
    min-height: 44px;
  }
  .sky-card {
    padding: 25px;
  }
  .sky-card .moon-icon {
    font-size: 75px;
    margin: 0;
    line-height: 1.2;
  }
  .sky-details {
    max-width: 340px;
    margin: 18px auto 0;
  }
  .sky-details > div {
    font-size: 12px;
  }
  .sky-card > p {
    max-width: 330px;
    margin: auto;
  }
  .personal-invitation {
    margin: 35px 0;
    flex-direction: column;
    text-align: center;
    padding: 28px 5px;
    gap: 22px;
  }
  .personal-invitation .button {
    margin: auto;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    display: grid;
    grid-template-columns: 115px 1fr;
  }
  .article-visual,
  .universe-grid .article-visual {
    height: 100%;
    min-height: 155px;
  }
  .article-body {
    padding: 20px;
  }
  .article-body h3 {
    font-size: 25px;
  }
  .article-visual > span {
    font-size: 55px;
  }
  .text-link {
    font-size: 10px;
    max-width: 95px;
    text-align: right;
  }
  .section-heading .eyebrow {
    font-size: 8px;
  }
  .journal-preview {
    margin-bottom: 40px;
  }
  .page-intro {
    padding: 45px 0 25px;
  }
  .page-intro h1 {
    font-size: 47px;
    letter-spacing: -1px;
  }
  .page-intro p {
    font-size: 14px;
  }
  .birth-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .empty-chart {
    min-height: 390px;
  }
  .empty-star {
    font-size: 100px;
  }
  .method-note {
    font-size: 11px;
  }
  .form-card,
  .natal-card {
    padding: 25px 20px;
  }
  .filter-row {
    gap: 8px;
  }
  .filter-row button {
    font-size: 11px;
    padding: 9px 14px;
  }
  .universe-grid {
    gap: 16px;
  }
  .footer-brand {
    width: 100%;
  }
  footer {
    padding: 25px 22px;
    gap: 12px;
  }
  footer > span {
    width: 100%;
  }
  .footer-note {
    max-width: 100%;
  }
  dialog {
    padding: 38px 25px;
  }
  .big-three strong {
    font-size: 21px;
  }
  .big-three > div {
    padding: 10px 5px;
  }
  .reading-note {
    line-height: 1.7;
  }
  .edition {
    font-size: 8px;
  }
  .element-tag {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Comfortable reading sizes across every screen. */
.hero-copy p,
.reading-card > p,
#area-reading,
.natal-interpretation,
dialog p {
  font-size: 16px;
}
.eyebrow,
.hero .eyebrow,
.sky-card > .eyebrow,
.section-heading .eyebrow {
  font-size: 12px;
  letter-spacing: 1.7px;
}
.date-strip,
.sky-status,
.small-muted,
.edition,
.art-caption,
.reading-card .reading-note,
.form-help,
.method-note,
.chart-note,
.article-bottom,
.article-body .eyebrow {
  font-size: 12px;
}
.zodiac .sign-label {
  font-size: 12px;
}
.zodiac-grid {
  gap: 7px;
}
.reading-tabs button,
.button,
.profile-button,
.text-link,
.filter-row button,
nav a,
label {
  font-size: 14px;
}
.sky-card > p,
.sky-details > div,
.personal-invitation p,
.planet-table {
  font-size: 14px;
}
.element-tag,
.planet-table th,
.big-three span {
  font-size: 12px;
}
.reading-top {
  gap: 12px;
  align-items: flex-start;
}
.edition {
  text-align: right;
  white-space: nowrap;
}
.personal-invitation .eyebrow {
  font-size: 11px;
}
.article-body .eyebrow {
  font-size: 11px;
}
.article-card,
.reading-card,
.sky-card,
.personal-invitation {
  transition:
    border-color 0.4s,
    transform 0.5s,
    opacity 0.7s;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(20px);
}
@media (max-width: 1050px) {
  .reading-tabs {
    gap: 12px;
  }
  .reading-tabs button {
    font-size: 13px;
  }
  .personal-invitation .button {
    gap: 12px;
    padding: 14px;
  }
  .personal-invitation p {
    max-width: 440px;
  }
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy p {
    max-width: 90%;
  }
  .hero-action .quiet {
    display: none;
  }
  .date-strip,
  .sky-status {
    font-size: 11px;
  }
  .date-strip {
    align-items: flex-start;
  }
  .sky-status {
    max-width: 46%;
    text-align: right;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-copy .eyebrow .line {
    width: 18px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
  }
  .zodiac .sign-label {
    font-size: 11px;
  }
  .reading-top .eyebrow,
  .edition {
    font-size: 10px;
  }
  .reading-tabs button {
    font-size: 12px;
  }
  .sky-details > div {
    font-size: 14px;
  }
  .text-link {
    font-size: 12px;
  }
  .profile-button,
  nav a {
    font-size: 13px;
  }
  .filter-row button {
    font-size: 13px;
  }
  .big-three span {
    font-size: 10px;
  }
  .personal-invitation .eyebrow {
    font-size: 10px;
  }
  .article-bottom {
    font-size: 11px;
  }
  .art-caption {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero .eyebrow {
    letter-spacing: 1px;
  }
  .reading-tabs {
    gap: 6px;
  }
  .reading-tabs button {
    font-size: 11px;
  }
  .two-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .article-card {
    grid-template-columns: 85px 1fr;
  }
  .reading-card {
    padding: 20px 17px;
  }
}
