:root {
  --ink: #fbf4ff;
  --charcoal: #dfcff0;
  --muted: #b7a6c7;
  --paper: #12071f;
  --white: #ffffff;
  --sage: #2b1d46;
  --sage-deep: #c9a7ff;
  --coral: #d86dea;
  --coral-dark: #ffb1e6;
  --sky: #24103b;
  --gold: #f2c86d;
  --line: rgba(251, 244, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 109, 234, 0.28), transparent 26%),
    radial-gradient(circle at 12% 30%, rgba(104, 62, 196, 0.3), transparent 28%),
    radial-gradient(circle at 48% 72%, rgba(242, 200, 109, 0.1), transparent 22%),
    linear-gradient(180deg, #07000f 0%, var(--paper) 48%, #190b2a 100%);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  width: 100%;
  height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 max(22px, calc((100vw - 1140px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(251, 244, 255, 0.14);
  border-radius: 0;
  background: rgba(18, 7, 31, 0.62);
  box-shadow: none;
  backdrop-filter: blur(26px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.48rem);
  font-weight: 650;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--gold);
  font-size: 1.22rem;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a,
.signin {
  color: rgba(248, 242, 232, 0.78);
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #1a0724;
  background: linear-gradient(135deg, #f7d37c, #f6a6ef 52%, #b58cff);
  box-shadow: 0 12px 30px rgba(216, 109, 234, 0.26);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.35rem;
}

/* Shared global navigation: a compact, luminous control bar that lets each page breathe. */
.global-header-page .site-header {
  isolation: isolate;
  top: 18px;
  width: min(1220px, calc(100% - 40px));
  height: 68px;
  padding: 0 13px 0 18px;
  gap: 16px;
  border: 1px solid rgba(251, 244, 255, 0.17);
  border-radius: 20px;
  background: linear-gradient(112deg, rgba(27, 11, 46, 0.86), rgba(18, 7, 31, 0.68));
  box-shadow: 0 16px 42px rgba(3, 0, 10, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(135%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.global-header-page .site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 12% 0%, rgba(242, 200, 109, 0.13), transparent 31%),
    radial-gradient(circle at 87% 100%, rgba(216, 109, 234, 0.14), transparent 36%);
  content: "";
}

.global-header-page .brand {
  gap: 9px;
  font-size: clamp(1.14rem, 1.6vw, 1.38rem);
  transition: color 180ms ease, transform 180ms ease;
}

.global-header-page .brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  transition: filter 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.global-header-page .desktop-nav {
  position: absolute;
  left: 50%;
  gap: 2px;
  padding: 4px;
  transform: translateX(-50%);
  border: 1px solid rgba(251, 244, 255, 0.09);
  border-radius: 13px;
  background: rgba(6, 1, 13, 0.24);
  font-size: 0.76rem;
  white-space: nowrap;
}

.global-header-page .desktop-nav a {
  position: relative;
  padding: 8px 10px;
  border-radius: 9px;
  color: rgba(251, 244, 255, 0.72);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.global-header-page .desktop-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), #f6a6ef, transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.global-header-page .desktop-nav a:hover,
.global-header-page .desktop-nav a:focus-visible {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(242, 200, 109, 0.13), rgba(216, 109, 234, 0.12));
  outline: none;
  transform: translateY(-1px);
}

.global-header-page .desktop-nav a:focus-visible,
.global-header-page .signin:focus-visible {
  box-shadow: 0 0 0 2px rgba(242, 200, 109, 0.85);
}

.global-header-page .desktop-nav a:hover::after,
.global-header-page .desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.global-header-page .desktop-nav a.active {
  color: var(--ink);
  background: rgba(251, 244, 255, 0.08);
}

.global-header-page .desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* The home header is deliberately a small set of choices. Each choice opens a
   generous preview panel, so visitors can understand the promise before they
   leave the page. */
.home-page.global-header-page .desktop-nav {
  gap: 0;
  padding: 4px;
}

.home-page .nav-dropdown {
  position: relative;
}

.home-page .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 0;
  border-radius: 9px;
  color: rgba(251, 244, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.home-page .nav-trigger i {
  color: var(--gold);
  font-size: 0.65rem;
  transition: transform 220ms ease;
}

.home-page .nav-dropdown:hover .nav-trigger,
.home-page .nav-dropdown:focus-within .nav-trigger,
.home-page .nav-dropdown.is-open .nav-trigger {
  color: var(--ink);
  background: rgba(251, 244, 255, 0.09);
}

.home-page .nav-dropdown:hover .nav-trigger i,
.home-page .nav-dropdown:focus-within .nav-trigger i,
.home-page .nav-dropdown.is-open .nav-trigger i {
  transform: rotate(180deg);
}

.home-page .nav-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: 540px;
  padding: 12px;
  border: 1px solid rgba(251, 244, 255, 0.19);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(31, 15, 51, 0.98), rgba(14, 6, 27, 0.98));
  box-shadow: 0 27px 65px rgba(2, 0, 10, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 170ms ease, transform 210ms cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: normal;
}

.home-page .nav-dropdown:hover .nav-mega,
.home-page .nav-dropdown:focus-within .nav-mega,
.home-page .nav-dropdown.is-open .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.home-page .nav-dropdown-explore .nav-mega {
  right: 0;
  left: auto;
  transform: translate(0, -8px) scale(0.98);
  transform-origin: top right;
}

.home-page .nav-dropdown-explore:hover .nav-mega,
.home-page .nav-dropdown-explore:focus-within .nav-mega,
.home-page .nav-dropdown-explore.is-open .nav-mega {
  transform: translate(0, 0) scale(1);
}

.home-page .nav-mega-feature {
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: stretch;
  width: 545px;
}

.home-page .nav-mega-feature > img {
  width: 100%;
  min-height: 205px;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
  object-position: center;
}

.home-page .nav-mega-feature > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 10px 12px 9px 0;
}

.home-page .nav-kicker {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .nav-mega h2 {
  margin: 0;
  color: #fff9ee;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.home-page .nav-mega p:not(.nav-kicker) {
  margin: 10px 0 18px;
  color: rgba(251, 244, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.55;
}

.home-page .nav-panel-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: #ffe0a0;
  font-size: 0.77rem;
  font-weight: 700;
}

.home-page .nav-panel-link i {
  transition: transform 160ms ease;
}

.home-page .nav-panel-link:hover i,
.home-page .nav-panel-link:focus-visible i {
  transform: translateX(3px);
}

.home-page .nav-mega-signs {
  width: 600px;
  grid-template-columns: 1fr;
  gap: 13px;
  padding: 22px;
}

.home-page .nav-mega-signs .nav-panel-heading h2 {
  max-width: 400px;
}

.home-page .nav-mega-signs .nav-panel-heading p:not(.nav-kicker) {
  margin: 7px 0 0;
}

.home-page .nav-sign-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  align-content: center;
}

.home-page .nav-sign-grid a {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 8px 7px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: rgba(251, 244, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 650;
}

.home-page .nav-sign-grid a span {
  color: var(--gold);
  font-size: 1rem;
}

.home-page .nav-sign-grid a:hover,
.home-page .nav-sign-grid a:focus-visible {
  border-color: rgba(242, 200, 109, 0.3);
  color: var(--ink);
  background: rgba(242, 200, 109, 0.12);
  outline: none;
}

.home-page .nav-mega-explore {
  width: 610px;
  padding: 22px;
}

.home-page .nav-mega-explore .nav-panel-heading h2 {
  max-width: none;
  margin-bottom: 17px;
}

.home-page .nav-explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.home-page .nav-explore-grid a {
  display: grid;
  grid-template-columns: 29px 1fr 14px;
  gap: 9px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(251, 244, 255, 0.08);
  border-radius: 11px;
  color: var(--ink);
  background: rgba(251, 244, 255, 0.035);
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.home-page .nav-explore-grid a > i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  color: #31132f;
  background: linear-gradient(135deg, #f4d17c, #eaa9e6);
  font-size: 0.72rem;
}

.home-page .nav-explore-grid strong,
.home-page .nav-explore-grid small {
  display: block;
}

.home-page .nav-explore-grid strong {
  font-size: 0.7rem;
}

.home-page .nav-explore-grid small {
  margin-top: 2px;
  color: rgba(251, 244, 255, 0.57);
  font-size: 0.61rem;
  font-weight: 500;
  line-height: 1.35;
}

.home-page .nav-explore-grid b {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 160ms ease;
}

.home-page .nav-explore-grid a:hover,
.home-page .nav-explore-grid a:focus-visible {
  border-color: rgba(242, 200, 109, 0.28);
  background: rgba(242, 200, 109, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.home-page .nav-explore-grid a:hover b,
.home-page .nav-explore-grid a:focus-visible b {
  transform: translateX(3px);
}

/* At laptop widths, the content navigation remains visible while the duplicate
   header CTA yields space. This prevents the controls from colliding before
   the compact menu takes over. */
@media (min-width: 981px) and (max-width: 1320px) {
  .home-page.global-header-page .site-header {
    justify-content: flex-start;
  }

  .home-page.global-header-page .header-actions {
    display: none;
  }

  .home-page.global-header-page .desktop-nav {
    position: static;
    margin-left: auto;
    transform: none;
  }
}

.global-header-page .header-actions {
  margin-left: auto;
  gap: 9px;
  font-size: 0.79rem;
}

.global-header-page .signin {
  padding: 8px 9px;
  border-radius: 9px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.global-header-page .signin:hover,
.global-header-page .signin:focus-visible {
  color: var(--ink);
  background: rgba(251, 244, 255, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.global-header-page .nav-cta {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(125deg, #f5d27d 0%, #f2a5ec 51%, #ae8bff 100%);
  background-size: 145% 145%;
  background-position: 0% 50%;
  box-shadow: 0 10px 25px rgba(216, 109, 234, 0.23);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background-position 260ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.global-header-page .nav-cta::before {
  display: inline-block;
  margin-right: 7px;
  color: rgba(26, 7, 36, 0.68);
  content: "✦";
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.global-header-page .nav-cta:hover,
.global-header-page .nav-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background-position: 100% 50%;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 34px rgba(216, 109, 234, 0.4), 0 0 0 4px rgba(242, 200, 109, 0.08);
  outline: none;
}

.global-header-page .nav-cta:hover::before,
.global-header-page .nav-cta:focus-visible::before {
  transform: rotate(18deg) scale(1.16);
}

@media (hover: hover) and (pointer: fine) {
  .global-header-page .site-header:hover {
    border-color: rgba(251, 244, 255, 0.24);
    box-shadow: 0 19px 46px rgba(3, 0, 10, 0.33), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .global-header-page .brand:hover {
    color: #ffffff;
    transform: translateX(2px);
  }

  .global-header-page .brand:hover .brand-mark {
    filter: drop-shadow(0 0 8px rgba(242, 200, 109, 0.56));
    transform: rotate(-8deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-header-page .brand,
  .global-header-page .brand-mark,
  .global-header-page .desktop-nav a,
  .global-header-page .desktop-nav a::after,
  .global-header-page .signin,
  .global-header-page .nav-cta,
  .global-header-page .nav-cta::before {
    transition: none;
  }
}

.mobile-menu,
.mobile-nav {
  display: none;
}

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

.hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  background: var(--sky);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/amazing-astrology-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(216, 109, 234, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(18, 7, 31, 0.94) 0%, rgba(23, 10, 42, 0.78) 35%, rgba(39, 17, 66, 0.2) 67%, rgba(18, 7, 31, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 7, 31, 0.38) 0%, rgba(18, 7, 31, 0.16) 54%, rgba(18, 7, 31, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1140px, calc(100% - 40px));
  min-height: 735px;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 76px;
  margin: 0 auto;
  padding: 132px 0 70px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow,
.form-kicker,
.reading-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4rem, 6.9vw, 6.75rem);
  font-weight: 650;
  line-height: 0.93;
}

.hero-intro {
  max-width: 510px;
  margin-bottom: 30px;
  color: var(--charcoal);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 25px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #1a0724;
  background: linear-gradient(135deg, #f7d37c 0%, #f6a6ef 48%, #a987ff 100%);
  box-shadow: 0 18px 38px rgba(216, 109, 234, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffe08f 0%, #ffc0f3 48%, #b99cff 100%);
}

.button-secondary {
  border-color: rgba(251, 244, 255, 0.42);
  color: var(--ink);
  background: rgba(251, 244, 255, 0.06);
}

.chart-form {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(251, 244, 255, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(50, 25, 82, 0.72), rgba(19, 8, 32, 0.72));
  box-shadow: 0 20px 54px rgba(4, 0, 11, 0.34);
  backdrop-filter: blur(24px);
}

.form-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.form-heading-row .form-kicker {
  margin-bottom: 0;
}

.example-values-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(242, 200, 109, 0.28);
  border-radius: 999px;
  color: #ead59f;
  background: rgba(242, 200, 109, 0.07);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.example-values-button:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 200, 109, 0.55);
  background: rgba(242, 200, 109, 0.13);
}

.example-values-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.chart-form h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.08;
}

.form-copy {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.chart-form label {
  display: block;
  margin-bottom: 10px;
}

.chart-form span {
  display: block;
  margin-bottom: 7px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
}

.chart-form input {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(251, 244, 255, 0.24);
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.chart-form input:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note,
.success-message {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.success-message {
  color: var(--sage-deep);
  font-weight: 700;
}

.pathways {
  position: relative;
  padding: 58px 20px 70px;
  background: transparent;
}

.zodiac-library {
  width: min(1140px, calc(100% - 44px));
  margin: 0 auto;
  padding: 20px 0 86px;
}

.zodiac-library .section-heading {
  max-width: 660px;
}

.zodiac-library .section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.zodiac-library-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.zodiac-library-links a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(251, 244, 255, 0.04);
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.zodiac-library-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 109, 0.52);
  background: rgba(242, 200, 109, 0.09);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.sample h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.06;
}

.pathway-grid {
  display: grid;
  width: min(1080px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pathway-card {
  padding: 30px 32px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pathway-card:last-child {
  border-right: 0;
}

.pathway-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  font-size: 1.05rem;
}

.pathway-icon.love {
  color: #ffb1e6;
  background: rgba(216, 109, 234, 0.15);
}

.pathway-icon.career {
  color: #c9a7ff;
  background: rgba(132, 91, 218, 0.18);
}

.pathway-icon.timing {
  color: #f2c86d;
  background: rgba(242, 200, 109, 0.14);
}

.pathway-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.pathway-card p {
  min-height: 82px;
  color: var(--muted);
  line-height: 1.55;
}

.pathway-card a,
.reading-panel a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
}

.sample {
  display: grid;
  width: min(1080px, calc(100% - 40px));
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0 104px;
}

.sample-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.reading-panel {
  padding: 0 0 0 30px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reading-panel h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.12;
}

.reading-panel p:not(.reading-label) {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .global-header-page .mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .global-header-page .menu-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(251, 244, 255, 0.16);
    border-radius: 12px;
    color: var(--ink);
    background: rgba(251, 244, 255, 0.07);
    cursor: pointer;
    list-style: none;
    transition: background 160ms ease, transform 160ms ease;
  }

  .global-header-page .menu-button::-webkit-details-marker {
    display: none;
  }

  .global-header-page .mobile-menu[open] .menu-button {
    background: rgba(242, 200, 109, 0.16);
    transform: rotate(90deg);
  }

  .global-header-page .mobile-nav {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    display: grid;
    width: min(345px, calc(100vw - 40px));
    padding: 9px;
    border: 1px solid rgba(251, 244, 255, 0.15);
    border-radius: 18px;
    background: rgba(20, 8, 34, 0.96);
    box-shadow: 0 22px 54px rgba(3, 0, 10, 0.42);
    backdrop-filter: blur(24px);
  }

  .global-header-page .mobile-nav > a {
    padding: 12px 13px;
    border-radius: 10px;
    color: rgba(251, 244, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .global-header-page .mobile-nav > a:hover,
  .global-header-page .mobile-nav > a:focus-visible {
    background: rgba(251, 244, 255, 0.09);
    outline: none;
  }

  .global-header-page .mobile-nav-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 5px 3px 3px;
    padding: 11px 1px 1px;
    border-top: 1px solid rgba(251, 244, 255, 0.12);
  }

  .global-header-page .mobile-nav-footer .nav-cta {
    min-height: 39px;
  }

  .global-header-page .mobile-nav-footer .signin {
    color: rgba(251, 244, 255, 0.76);
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.9) 0%, rgba(255, 250, 242, 0.48) 36%, rgba(255, 250, 242, 0.72) 66%, rgba(255, 250, 242, 0.98) 100%),
      linear-gradient(90deg, rgba(255, 250, 242, 0.84) 0%, rgba(255, 250, 242, 0.16) 100%);
  }

  .hero-content {
    width: min(680px, calc(100% - 32px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 112px 0 48px;
  }

  h1 {
    max-width: 460px;
    font-size: clamp(3.05rem, 16vw, 4.2rem);
  }

  .hero-intro {
    max-width: 420px;
  }

  .hero-buttons {
    display: grid;
    max-width: 430px;
  }

  .button {
    width: 100%;
  }

  .chart-form {
    width: min(100%, 430px);
    margin-top: 8px;
    padding: 22px;
  }

  .pathway-grid,
  .sample {
    grid-template-columns: 1fr;
  }

  .sample {
    gap: 28px;
  }

  .pathway-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 18px;
    align-items: start;
  }

  .pathway-icon {
    grid-row: span 3;
    margin: 0;
  }

  .pathway-card p {
    min-height: auto;
  }
}

/* The home navigation now has four deliberate entry points, so it can remain
   useful on ordinary laptop widths and only becomes a menu at the shared
   compact breakpoint. */
@media (max-width: 980px) {
  .home-page.global-header-page .desktop-nav,
  .home-page.global-header-page .header-actions {
    display: none;
  }

  .home-page.global-header-page .mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .home-page.global-header-page .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(251, 244, 255, 0.16);
    border-radius: 12px;
    color: var(--ink);
    background: rgba(251, 244, 255, 0.07);
    cursor: pointer;
    list-style: none;
  }

  .home-page.global-header-page .mobile-nav {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    display: grid;
    width: min(345px, calc(100vw - 40px));
    padding: 9px;
    border: 1px solid rgba(251, 244, 255, 0.15);
    border-radius: 18px;
    background: rgba(20, 8, 34, 0.96);
    box-shadow: 0 22px 54px rgba(3, 0, 10, 0.42);
    backdrop-filter: blur(24px);
  }

  .home-page.global-header-page .mobile-nav > a {
    padding: 12px 13px;
    border-radius: 10px;
    color: rgba(251, 244, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 600;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    transform: none;
    border-width: 0 0 1px;
    border-radius: 0;
    padding: 0 14px;
  }

  .brand {
    gap: 6px;
    font-size: 1.02rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
  }

  .global-header-page .site-header {
    top: 10px;
    left: 50%;
    width: calc(100% - 24px);
    height: 60px;
    padding: 0 9px 0 13px;
    border-radius: 16px;
    transform: translateX(-50%);
  }

  .global-header-page .brand {
    gap: 6px;
    font-size: 1.08rem;
  }

  .global-header-page .brand-mark {
    width: 28px;
    height: 28px;
  }

  .global-header-page .menu-button {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

  .global-header-page .menu-button::marker {
    content: "";
  }

  .global-header-page .mobile-nav {
    width: min(330px, calc(100vw - 24px));
  }

  .hero-media {
    background-position: 61% top;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 92px 0 36px;
  }

  .eyebrow,
  .form-kicker,
  .reading-label {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 3.15rem;
  }

  .hero-intro {
    margin-bottom: 24px;
    font-size: 1.03rem;
  }

  .chart-form h2 {
    font-size: 1.65rem;
  }

  .pathways {
    padding: 50px 14px 58px;
  }

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

  .section-heading h2,
  .sample h2 {
    font-size: 2.25rem;
  }

  .pathway-grid {
    gap: 10px;
  }

  .pathway-card {
    grid-template-columns: 50px 1fr;
    gap: 10px 14px;
    padding: 16px;
  }

  .pathway-icon {
    width: 50px;
    height: 50px;
    font-size: 1.12rem;
  }

  .pathway-card h3 {
    margin-bottom: 6px;
    font-size: 1.18rem;
  }

  .pathway-card p {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .sample {
    width: calc(100% - 28px);
    padding: 56px 0 72px;
  }

  .reading-panel {
    padding: 22px;
  }

  .reading-panel h3 {
    font-size: 1.55rem;
  }

  .zodiac-library {
    width: calc(100% - 28px);
    padding-bottom: 58px;
  }

  .zodiac-library-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .zodiac-library-links a {
    padding: 14px;
  }
}
