:root {
  --astral-navy: #004a7f;
  --astral-deep: #051f32;
  --astral-ink: #102b3c;
  --astral-blue: #006fba;
  --astral-pink: #e93b82;
  --astral-pink-dark: #b91f62;
  --astral-gold: #f5b544;
  --astral-cloud: #f3f7fa;
  --astral-line: #d9e6ed;
  --astral-muted: #5c7080;
  --astral-white: #fff;
  --astral-shadow: 0 24px 60px rgba(5, 23, 37, .14);
}

.sport-site .astral-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(233, 59, 130, .3), transparent 24rem),
    radial-gradient(circle at 78% 12%, rgba(0, 148, 255, .23), transparent 25rem),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 28px),
    linear-gradient(145deg, #051f32, #004a7f 60%, #06304d);
}

.sport-site .astral-hero::before {
  background: conic-gradient(from 210deg, transparent, rgba(255, 255, 255, .11), transparent 34%);
}

.sport-site .sport-orbit {
  border-style: dashed;
  animation: sport-orbit-pulse 5.5s ease-in-out infinite;
}

.sport-site .sport-orbit > img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(5, 31, 50, .24));
}

.sport-site .sport-strip img,
.sport-site .sport-profile-visual img {
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 74, 127, .16));
}

.sport-site .sport-profile-visual img {
  width: 104px;
  height: 104px;
}

.sport-site .sport-profile-visual {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .96), rgba(231, 243, 250, .84) 43%, transparent 44%),
    linear-gradient(145deg, #dcecf5, #f8fbfd);
}

.sport-tool-suggestions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.sport-tool-suggestions a {
  display: grid;
  gap: 3px;
  padding: 15px;
  color: var(--astral-navy);
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 14px;
  text-decoration: none;
}

.sport-tool-suggestions a:hover {
  color: var(--astral-pink-dark);
  border-color: var(--astral-pink);
  transform: translateY(-2px);
}

.sport-tool-suggestions span {
  color: var(--astral-muted);
  font-size: .78rem;
}

@keyframes sport-orbit-pulse {
  0%, 100% { transform: translateZ(0) scale(1); }
  50% { transform: translateZ(0) scale(1.035); }
}

@media (max-width: 620px) {
  .sport-tool-suggestions { grid-template-columns: 1fr; }
  .sport-site .sport-orbit > img { width: 92px; height: 92px; }
}

@media (prefers-reduced-motion: reduce) {
  .sport-site .sport-orbit { animation: none; }
}

.astral-site,
.astral-site * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.astral-site {
  margin: 0;
  color: var(--astral-ink);
  background: var(--astral-cloud);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.astral-site img {
  max-width: 100%;
}

.astral-site a {
  color: inherit;
}

.astral-site :focus-visible {
  outline: 3px solid var(--astral-gold);
  outline-offset: 3px;
}

.astral-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff !important;
  background: var(--astral-pink-dark);
  border-radius: 10px;
  transform: translateY(-150%);
}

.astral-skip:focus {
  transform: translateY(0);
}

.astral-topline {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6vw, 70px);
  padding: 7px 18px;
  color: rgba(255, 255, 255, .78);
  background: var(--astral-deep);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.astral-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(180px, 315px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 10px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 59, 92, .1);
  box-shadow: 0 9px 32px rgba(5, 23, 37, .07);
  backdrop-filter: blur(18px);
}

.astral-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.astral-brand img {
  display: block;
  width: min(260px, 100%);
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.astral-header nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.astral-header nav a {
  padding: 9px 11px;
  color: var(--astral-navy);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}

.astral-header nav a:hover {
  color: var(--astral-pink-dark);
  background: #fff2f7;
}

.astral-header-cta,
.astral-primary-cta,
.astral-final-cta > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--astral-pink), var(--astral-pink-dark));
  border-radius: 13px;
  box-shadow: 0 13px 28px rgba(185, 31, 98, .25);
  font-weight: 850;
  text-decoration: none;
}

.astral-header-cta:hover,
.astral-primary-cta:hover,
.astral-final-cta > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(185, 31, 98, .3);
}

.astral-breadcrumbs {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 10px;
  color: var(--astral-muted);
  font-size: .84rem;
}

.astral-breadcrumbs a {
  color: var(--astral-blue);
  font-weight: 750;
  text-decoration: none;
}

.astral-breadcrumbs span + span,
.astral-breadcrumbs a + span {
  margin-left: 9px;
}

.astral-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 26px;
  padding: clamp(36px, 6vw, 74px);
  overflow: hidden;
  color: rgba(255, 255, 255, .86);
  background:
    radial-gradient(circle at 15% 18%, rgba(233, 59, 130, .28), transparent 25rem),
    radial-gradient(circle at 82% 3%, rgba(245, 181, 68, .2), transparent 22rem),
    linear-gradient(145deg, #061b2b 0%, var(--astral-navy) 58%, #082c45 100%);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(5, 23, 37, .24);
}

.astral-hero::before,
.astral-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.astral-hero::before {
  right: -160px;
  bottom: -260px;
  width: 570px;
  height: 570px;
}

.astral-hero::after {
  right: 90px;
  bottom: -190px;
  width: 390px;
  height: 390px;
}

.astral-hero-copy {
  align-self: center;
}

.astral-kicker,
.astral-card-label {
  margin: 0 0 12px;
  color: var(--astral-pink-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.astral-hero .astral-kicker {
  color: #ffc2dc;
}

.astral-hero h1,
.astral-hero h2,
.astral-site h1,
.astral-site h2,
.astral-site h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.astral-hero h1 {
  max-width: 770px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2.35rem, 5.2vw, 4.65rem);
}

.astral-lead {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: clamp(1.03rem, 1.8vw, 1.24rem);
}

.astral-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.astral-reassurance li {
  padding: 7px 10px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 720;
}

.astral-primary-cta {
  gap: 14px;
  min-height: 56px;
  padding: 15px 23px;
}

.astral-signup-card {
  position: relative;
  align-self: center;
  min-width: 0;
  padding: 30px;
  color: var(--astral-ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 28px;
  box-shadow: var(--astral-shadow);
}

.astral-signup-card h2 {
  max-width: 390px;
  margin: 0 0 10px;
  color: var(--astral-ink);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.astral-signup-card > p:not(.astral-card-label) {
  margin: 0 0 16px;
  color: var(--astral-muted);
}

.astral-signup-card small {
  display: block;
  margin-top: 10px;
  color: var(--astral-muted);
  font-size: .76rem;
}

.astral-signup-card #formuser {
  min-height: 176px;
}

.astral-signup-card #formuser input,
.astral-signup-card #formuser select,
.astral-signup-card #formuser button {
  max-width: 100%;
  min-height: 46px;
  border-radius: 11px !important;
}

.astral-signup-card #formuser button,
.astral-signup-card #formuser input[type="submit"] {
  color: #fff !important;
  background: var(--astral-pink) !important;
  border-color: var(--astral-pink-dark) !important;
  font-weight: 800 !important;
}

.astral-signup-card > div[align="center"] a {
  color: var(--astral-blue);
  font-size: .82rem;
  font-weight: 750;
}

.astral-orbit {
  position: absolute;
  top: -41px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--astral-gold);
  background: var(--astral-deep);
  border: 1px solid rgba(245, 181, 68, .55);
  border-radius: 50%;
  box-shadow: 0 15px 32px rgba(5, 23, 37, .28);
}

.astral-orbit::before {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px dashed rgba(245, 181, 68, .55);
  border-radius: 50%;
  animation: astral-spin 18s linear infinite;
}

.astral-orbit > span {
  position: absolute;
  font-size: .72rem;
}

.astral-orbit > span:nth-child(1) { top: 6px; left: 12px; }
.astral-orbit > span:nth-child(2) { right: 8px; bottom: 15px; }
.astral-orbit > span:nth-child(3) { bottom: 4px; left: 19px; }
.astral-orbit img { width: 48px; height: 48px; object-fit: contain; }
.astral-orbit strong { font-size: 1.7rem; }

.astral-sign-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(66px, 1fr));
  gap: 8px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(5, 23, 37, .07);
}

.astral-sign-strip a {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 8px 3px;
  color: var(--astral-navy);
  border-radius: 13px;
  font-size: .71rem;
  font-weight: 780;
  text-decoration: none;
}

.astral-sign-strip a:hover {
  color: var(--astral-pink-dark);
  background: #fff2f7;
  transform: translateY(-3px);
}

.astral-sign-strip img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.astral-editorial,
.astral-profiles,
.astral-directory,
.astral-partners,
.astral-faq,
.astral-final-cta {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.astral-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
  margin-bottom: 82px;
}

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

.astral-article-grid article {
  position: relative;
  min-height: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 23px;
  box-shadow: 0 16px 40px rgba(5, 23, 37, .07);
}

.astral-section-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--astral-pink-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.astral-article-grid h2 {
  margin: 0 0 14px;
  color: var(--astral-ink);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.astral-article-grid p {
  margin: 0 0 11px;
  color: #536a79;
}

.astral-article-grid p:last-child {
  margin-bottom: 0;
}

.astral-article-grid a {
  color: var(--astral-blue);
  font-weight: 750;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

.astral-steps {
  position: sticky;
  top: 116px;
  padding: 32px;
  color: rgba(255, 255, 255, .82);
  background: linear-gradient(155deg, var(--astral-navy), var(--astral-deep));
  border-radius: 24px;
  box-shadow: var(--astral-shadow);
}

.astral-steps .astral-kicker { color: #ffc2dc; }
.astral-steps h2 { margin: 0 0 20px; color: #fff; font-size: 1.85rem; }
.astral-steps ol { display: grid; gap: 13px; margin: 0 0 24px; padding: 0; list-style: none; counter-reset: astral-step; }
.astral-steps li { display: grid; grid-template-columns: 31px 1fr; align-items: center; gap: 10px; counter-increment: astral-step; }
.astral-steps li::before { display: grid; place-items: center; width: 31px; height: 31px; content: counter(astral-step); color: var(--astral-deep); background: var(--astral-gold); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.astral-steps > a { display: inline-flex; gap: 10px; color: #fff; font-weight: 850; text-decoration: none; }

.astral-profiles {
  margin-bottom: 82px;
}

.astral-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.astral-section-heading h2,
.astral-directory h2,
.astral-partners h2,
.astral-faq h2 {
  margin: 0;
  color: var(--astral-ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.astral-section-heading > a {
  color: var(--astral-pink-dark);
  font-weight: 850;
  text-decoration: none;
}

.astral-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.astral-profile-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 23px;
  box-shadow: 0 18px 46px rgba(5, 23, 37, .09);
  opacity: 0;
  transform: translateY(24px) rotate(.4deg);
  transition: opacity .55s ease, transform .55s ease, box-shadow .25s ease;
  transition-delay: calc(var(--profile-index) * 60ms);
}

.astral-profile-card.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.astral-profile-card:hover {
  box-shadow: 0 25px 60px rgba(5, 23, 37, .15);
  transform: translateY(-5px);
}

.astral-profile-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 155px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 35%, rgba(245, 181, 68, .45), transparent 28%),
    radial-gradient(circle at 75% 75%, rgba(233, 59, 130, .42), transparent 34%),
    linear-gradient(145deg, #082b42, var(--astral-deep));
}

.astral-profile-visual::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.astral-profile-visual img {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .28));
}

.astral-profile-age {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 5px 9px;
  color: #fff;
  background: rgba(5, 23, 37, .75);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
}

.astral-profile-body {
  padding: 20px;
}

.astral-profile-body > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.astral-profile-body h3 {
  margin: 0;
  color: var(--astral-ink);
  font-size: 1.35rem;
}

.astral-profile-body > div:first-child span,
.astral-profile-body > p {
  color: var(--astral-muted);
  font-size: .82rem;
}

.astral-profile-body > p {
  margin: 10px 0 16px;
}

.astral-profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.astral-profile-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 11px;
  font-size: .76rem;
  font-weight: 830;
  text-align: center;
  text-decoration: none;
}

.astral-profile-filter {
  color: var(--astral-blue) !important;
  background: #edf7fc;
  border: 1px solid #cce5f1;
}

.astral-profile-link {
  color: #fff !important;
  background: var(--astral-pink-dark);
  border: 1px solid var(--astral-pink-dark);
}

.astral-directory {
  margin-bottom: 82px;
  padding: clamp(30px, 5vw, 56px);
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 30px;
  box-shadow: 0 18px 46px rgba(5, 23, 37, .08);
}

.astral-directory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}

.astral-directory-grid > div {
  padding: 24px;
  background: var(--astral-cloud);
  border: 1px solid var(--astral-line);
  border-radius: 19px;
}

.astral-directory-grid h3 { margin: 0 0 16px; color: var(--astral-navy); font-size: 1.25rem; }
.astral-link-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.astral-link-cloud a { padding: 7px 10px; color: var(--astral-blue); background: #fff; border: 1px solid var(--astral-line); border-radius: 999px; font-size: .8rem; font-weight: 760; text-decoration: none; }
.astral-link-cloud a:hover { color: #fff; background: var(--astral-blue); border-color: var(--astral-blue); }

.astral-partners {
  margin-bottom: 82px;
}

.astral-partners > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 25px;
}

.astral-partners a {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px;
  color: var(--astral-ink);
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 18px;
  text-decoration: none;
}

.astral-partners a:hover { border-color: var(--astral-pink); transform: translateY(-3px); }
.astral-partners strong { color: var(--astral-blue); }
.astral-partners span { color: var(--astral-muted); font-size: .82rem; }

.astral-faq {
  margin-bottom: 82px;
}

.astral-faq > div {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.astral-faq details {
  padding: 0 22px;
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 16px;
}

.astral-faq summary {
  padding: 18px 30px 18px 0;
  color: var(--astral-ink);
  cursor: pointer;
  font-weight: 820;
}

.astral-faq details p { margin: 0 0 18px; color: var(--astral-muted); }

.astral-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 80px;
  padding: clamp(30px, 5vw, 54px);
  color: rgba(255, 255, 255, .8);
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 59, 130, .28), transparent 20rem),
    linear-gradient(145deg, var(--astral-navy), var(--astral-deep));
  border-radius: 28px;
  box-shadow: var(--astral-shadow);
}

.astral-final-cta .astral-kicker { color: #ffc2dc; }
.astral-final-cta h2 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(1.7rem, 4vw, 3rem); }
.astral-final-cta > a { flex: 0 0 auto; }

.astral-footer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px 55px;
  padding: 50px max(22px, calc((100vw - 1120px) / 2)) 28px;
  color: rgba(255, 255, 255, .72);
  background: var(--astral-deep);
}

.astral-footer-brand img { display: block; width: 235px; height: auto; filter: brightness(0) invert(1); opacity: .88; }
.astral-footer-brand p { margin: 12px 0 0; font-size: .84rem; }
.astral-footer nav { display: flex; flex-wrap: wrap; align-content: start; gap: 8px; }
.astral-footer nav a { padding: 8px 10px; color: rgba(255, 255, 255, .82); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; font-size: .78rem; font-weight: 720; text-decoration: none; }
.astral-footer nav a:hover { color: #fff; border-color: var(--astral-pink); }
.astral-footer > p { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .75rem; }

.astral-mobile-cta {
  display: none;
}

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

@media (max-width: 980px) {
  .astral-header { grid-template-columns: minmax(180px, 1fr) auto; }
  .astral-header nav { display: none; }
  .astral-hero { grid-template-columns: 1fr; }
  .astral-signup-card { width: min(560px, 100%); }
  .astral-sign-strip { grid-template-columns: repeat(6, minmax(66px, 1fr)); }
  .astral-editorial { grid-template-columns: 1fr; }
  .astral-steps { position: static; }
  .astral-profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .astral-partners > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body.astral-site { padding-bottom: 64px; }
  .astral-topline { justify-content: space-between; gap: 8px; padding-inline: 12px; font-size: .58rem; }
  .astral-topline span:nth-child(2) { display: none; }
  .astral-header { min-height: 72px; padding: 8px 14px; }
  .astral-brand img { width: 190px; height: 55px; }
  .astral-header-cta { display: none; }
  .astral-breadcrumbs { width: calc(100% - 28px); padding-top: 14px; }
  .astral-hero { width: calc(100% - 20px); margin-bottom: 18px; padding: 30px 20px 24px; border-radius: 24px; }
  .astral-hero h1 { font-size: clamp(2rem, 11vw, 3.15rem); }
  .astral-reassurance { display: grid; }
  .astral-primary-cta { width: 100%; }
  .astral-signup-card { padding: 27px 18px 20px; border-radius: 20px; }
  .astral-orbit { top: -34px; right: 15px; width: 68px; height: 68px; }
  .astral-orbit img { width: 40px; height: 40px; }
  .astral-sign-strip { display: flex; width: calc(100% - 20px); margin-bottom: 52px; overflow-x: auto; border-radius: 17px; scroll-snap-type: x mandatory; }
  .astral-sign-strip a { flex: 0 0 69px; scroll-snap-align: start; }
  .astral-editorial,
  .astral-profiles,
  .astral-directory,
  .astral-partners,
  .astral-faq,
  .astral-final-cta { width: calc(100% - 24px); }
  .astral-editorial,
  .astral-profiles,
  .astral-directory,
  .astral-partners,
  .astral-faq { margin-bottom: 58px; }
  .astral-article-grid { grid-template-columns: 1fr; }
  .astral-article-grid article { min-height: 0; padding: 24px 20px; }
  .astral-steps { padding: 26px 22px; border-radius: 20px; }
  .astral-section-heading { align-items: start; flex-direction: column; }
  .astral-profile-grid { grid-template-columns: 1fr; }
  .astral-profile-visual { min-height: 142px; }
  .astral-directory { padding: 27px 18px; border-radius: 22px; }
  .astral-directory-grid { grid-template-columns: 1fr; }
  .astral-directory-grid > div { padding: 19px; }
  .astral-partners > div { grid-template-columns: 1fr; }
  .astral-partners a { min-height: 0; }
  .astral-final-cta { align-items: stretch; flex-direction: column; margin-bottom: 58px; padding: 29px 22px; border-radius: 22px; }
  .astral-final-cta > a { width: 100%; }
  .astral-footer { grid-template-columns: 1fr; gap: 26px; padding: 40px 20px 28px; }
  .astral-footer > p { grid-column: auto; }
  .astral-mobile-cta { position: fixed; right: 10px; bottom: 9px; left: 10px; z-index: 50; display: flex; align-items: center; justify-content: center; min-height: 50px; color: #fff !important; background: linear-gradient(135deg, var(--astral-pink), var(--astral-pink-dark)); border-radius: 13px; box-shadow: 0 12px 34px rgba(5, 23, 37, .3); font-weight: 870; text-decoration: none; transition: opacity .2s ease, transform .2s ease; }
  .astral-mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(120%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .astral-site *, .astral-site *::before, .astral-site *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .astral-profile-card { opacity: 1; transform: none; }
}

body.astral-utility {
  margin: 0;
  color: var(--astral-ink);
  background: var(--astral-cloud);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.astral-utility,
.astral-utility * {
  box-sizing: border-box;
}

.astral-utility .wrapper {
  width: 100%;
}

.astral-utility .col0 {
  min-height: 12px;
  background: var(--astral-deep);
}

.astral-utility .col0 br,
.astral-utility .col0 #topbar > div {
  display: none;
}

.astral-utility .col1 {
  background: #fff;
  border-bottom: 1px solid var(--astral-line);
  box-shadow: 0 9px 32px rgba(5, 23, 37, .07);
}

.astral-utility #header {
  max-width: 1120px;
  min-height: 92px;
  margin: 0 auto;
  padding: 12px 22px;
}

.astral-utility #header > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
}

.astral-utility #header br {
  display: none;
}

.astral-utility #header img {
  display: block;
  width: min(270px, 72vw);
  height: auto;
}

.astral-utility .col3 {
  min-height: 64vh;
  padding: clamp(34px, 6vw, 76px) 20px;
  background:
    radial-gradient(circle at 8% 8%, rgba(233, 59, 130, .12), transparent 25rem),
    radial-gradient(circle at 92% 3%, rgba(245, 181, 68, .2), transparent 23rem),
    var(--astral-cloud);
}

.astral-utility #homecontent {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.astral-utility h1,
.astral-utility h2,
.astral-utility h3 {
  margin-top: 0;
  color: var(--astral-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.astral-utility h1 { margin-bottom: 24px; font-size: clamp(2rem, 5vw, 3.3rem); }
.astral-utility h2 { margin: 38px 0 16px; font-size: clamp(1.35rem, 3vw, 2rem); }
.astral-utility h3 { margin: 25px 0 10px; font-size: 1.08rem; }
.astral-utility a { color: var(--astral-blue); text-underline-offset: .16em; }
.astral-utility :focus-visible { outline: 3px solid var(--astral-gold); outline-offset: 3px; }

.astral-login #homecontent {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: 24px;
  align-items: start;
}

.astral-login #position_cadre_homeG,
.astral-login #position_cadre_homeD {
  float: none;
  width: auto;
  max-width: none;
  margin: 0;
  padding: clamp(29px, 5vw, 50px);
  border-radius: 26px;
  box-shadow: var(--astral-shadow);
}

.astral-login #position_cadre_homeG {
  color: rgba(255, 255, 255, .84);
  background: linear-gradient(145deg, var(--astral-navy), var(--astral-deep));
}

.astral-login #position_cadre_homeG h1 { color: #fff; }
.astral-login #position_cadre_homeD { background: #fff; border: 1px solid var(--astral-line); }
.astral-login .fieldset_home2 { margin: 0 !important; padding: 0; color: inherit; background: transparent; border: 0; box-shadow: none; }
.astral-login .iconesH { display: none; }
.astral-login #loguser { min-height: 90px; }
.astral-login #homecontent > br.clear { display: none; }

.astral-legal #homecontent {
  max-width: 900px;
  padding: clamp(30px, 6vw, 68px);
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 28px;
  box-shadow: var(--astral-shadow);
}

.astral-utility .col4,
.astral-utility .col5,
.astral-utility #footer,
.astral-utility #copyright {
  color: rgba(255, 255, 255, .78);
  background: var(--astral-deep);
}

.astral-utility .col4 a,
.astral-utility .col5 a,
.astral-utility #footer a,
.astral-utility #copyright a {
  color: #fff;
}

@media (max-width: 760px) {
  .astral-utility .col3 { padding: 28px 13px 48px; }
  .astral-login #homecontent { grid-template-columns: 1fr; }
  .astral-login #position_cadre_homeG,
  .astral-login #position_cadre_homeD,
  .astral-legal #homecontent { padding: 25px 19px; border-radius: 20px; }
}

/* Interactive astrology tools and compatibility clusters */
[hidden] {
  display: none !important;
}

.astral-header nav {
  flex-wrap: wrap;
}

.astral-orbit-pair {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 48px;
}

.astral-orbit-pair img {
  position: absolute;
  width: 42px !important;
  height: 42px !important;
  padding: 4px;
  background: rgba(5, 23, 37, .92);
  border: 1px solid rgba(245, 181, 68, .42);
  border-radius: 50%;
}

.astral-orbit-pair img:first-child { left: 0; transform: rotate(-7deg); }
.astral-orbit-pair img:last-child { right: 0; transform: rotate(7deg); }

.astral-tool-shell,
.astral-pair-summary,
.astral-related {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.astral-tool-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  margin-top: -28px;
  margin-bottom: 72px;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 30px;
  box-shadow: var(--astral-shadow);
}

.astral-tool-shell::before {
  position: absolute;
  top: -190px;
  left: -180px;
  z-index: -1;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(233, 59, 130, .14), rgba(233, 59, 130, 0) 68%);
  border-radius: 50%;
}

.astral-tool-intro h2 {
  margin: 0 0 14px;
  color: var(--astral-navy);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.astral-tool-intro > p:last-child {
  margin: 0;
  color: var(--astral-muted);
}

.astral-tool-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
  padding: 25px;
  background: linear-gradient(145deg, #f3f8fb, #fff);
  border: 1px solid var(--astral-line);
  border-radius: 23px;
}

.astral-tool-field {
  display: grid;
  gap: 7px;
}

.astral-tool-field-wide {
  grid-column: 1 / -1;
}

.astral-tool-field label {
  color: var(--astral-navy);
  font-size: .82rem;
  font-weight: 850;
}

.astral-tool-field label span {
  color: var(--astral-muted);
  font-size: .72rem;
  font-weight: 650;
}

.astral-tool-field input,
.astral-tool-field select {
  width: 100%;
  min-height: 52px;
  padding: 10px 13px;
  color: var(--astral-ink);
  background: #fff;
  border: 1px solid #bfd1dc;
  border-radius: 12px;
  font: inherit;
}

.astral-tool-field input:hover,
.astral-tool-field select:hover {
  border-color: var(--astral-blue);
}

.astral-tool-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.astral-tool-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--astral-pink), var(--astral-pink-dark));
  border: 0;
  border-radius: 13px;
  box-shadow: 0 13px 28px rgba(185, 31, 98, .22);
  cursor: pointer;
  font: inherit;
  font-weight: 880;
}

.astral-tool-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(185, 31, 98, .3);
}

.astral-tool-actions [data-tool-error] {
  margin: 0;
  color: #a31b50;
  font-size: .82rem;
  font-weight: 760;
}

.astral-tool-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  margin-top: 4px;
  padding: clamp(24px, 4vw, 38px);
  color: rgba(255, 255, 255, .84);
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 181, 68, .2), transparent 18rem),
    linear-gradient(145deg, var(--astral-deep), var(--astral-navy));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.astral-tool-result.is-visible {
  opacity: 1;
  transform: none;
}

.astral-result-score {
  display: grid;
  place-content: center;
  min-height: 170px;
  padding: 18px;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(245, 181, 68, .38);
  border-radius: 50%;
}

.astral-result-score strong {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.astral-result-score span {
  color: var(--astral-gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.astral-result-copy .astral-kicker { color: var(--astral-gold); }
.astral-result-copy h3 { margin: 0 0 8px; color: #fff; font-size: clamp(1.45rem, 3vw, 2.25rem); }
.astral-result-copy > p { margin-top: 0; }

.astral-result-axes,
.astral-pair-axes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.astral-result-axes > div > span,
.astral-pair-axes > div > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  font-size: .76rem;
  font-weight: 780;
}

.astral-result-axes > div > div,
.astral-pair-axes > div > div {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
  border-radius: 999px;
}

.astral-result-axes i,
.astral-pair-axes i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--astral-pink), var(--astral-gold));
  border-radius: inherit;
}

.astral-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.astral-result-actions a {
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 11px;
  font-size: .84rem;
  font-weight: 820;
  text-decoration: none;
}

.astral-result-actions a:first-child {
  color: var(--astral-deep);
  background: var(--astral-gold);
  border-color: var(--astral-gold);
}

.astral-pair-summary {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(250px, 1fr) minmax(340px, 1.25fr);
  gap: 28px;
  align-items: center;
  margin-top: -28px;
  margin-bottom: 70px;
  padding: clamp(28px, 5vw, 48px);
  color: rgba(255, 255, 255, .84);
  background: linear-gradient(145deg, var(--astral-deep), var(--astral-navy));
  border-radius: 28px;
  box-shadow: var(--astral-shadow);
}

.astral-pair-signs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.astral-pair-signs > span {
  color: var(--astral-gold);
  font-size: 1.5rem;
  font-weight: 900;
}

.astral-pair-signs > div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.astral-pair-signs img { width: 62px; height: 62px; object-fit: contain; }
.astral-pair-signs strong { color: #fff; }
.astral-pair-signs div span { color: rgba(255, 255, 255, .65); font-size: .68rem; }
.astral-pair-score .astral-kicker { color: var(--astral-gold); }
.astral-pair-score h2 { margin: 0 0 9px; color: #fff; font-size: 1.45rem; }
.astral-pair-score h2 strong { font-size: 2.25rem; }
.astral-pair-score h2 span { color: var(--astral-gold); font-size: .86rem; }
.astral-pair-score p:last-child { margin: 0; font-size: .9rem; }

.astral-related {
  margin-bottom: 78px;
}

.astral-related .astral-section-heading h2 {
  margin: 0;
  color: var(--astral-ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.astral-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.astral-related-grid > a {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 138px;
  padding: 21px 45px 21px 20px;
  background: #fff;
  border: 1px solid var(--astral-line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(5, 23, 37, .06);
  text-decoration: none;
}

.astral-related-grid > a:hover {
  border-color: rgba(233, 59, 130, .48);
  transform: translateY(-3px);
}

.astral-related-grid strong { color: var(--astral-navy); line-height: 1.28; }
.astral-related-grid span { color: var(--astral-muted); font-size: .8rem; }
.astral-related-grid b { position: absolute; right: 18px; bottom: 17px; color: var(--astral-pink-dark); font-size: 1.2rem; }
.astral-link-cloud-compact a { font-size: .73rem; }

.sport-context {
  width: min(1180px, calc(100% - 44px));
  margin: 24px auto 72px;
  padding: 30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(233, 59, 130, .10), transparent 32%),
    linear-gradient(145deg, #fff, #f5f9fc);
  border: 1px solid var(--astral-line);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(5, 23, 37, .08);
}

.sport-context-city {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.sport-context-copy h2 {
  max-width: 720px;
  margin: 4px 0 22px;
  color: var(--astral-ink);
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  line-height: 1.08;
}

.sport-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sport-context-city .sport-fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.sport-fact-grid > div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 105px;
  padding: 17px;
  background: #fff;
  border: 1px solid rgba(0, 74, 127, .12);
  border-radius: 16px;
}

.sport-fact-grid span {
  color: var(--astral-pink-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sport-fact-grid strong { color: var(--astral-navy); font-size: .95rem; line-height: 1.35; }

.sport-map-card {
  min-height: 390px;
  overflow: hidden;
  background: var(--astral-navy);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(5, 23, 37, .16);
}

.sport-map-card iframe {
  display: block;
  width: 100%;
  height: 315px;
  border: 0;
  filter: saturate(.78) contrast(1.04);
}

.sport-map-card p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 17px 20px;
  color: rgba(255, 255, 255, .72);
  font-size: .8rem;
}

.sport-map-card strong { color: #fff; font-size: 1rem; }

@media (max-width: 1080px) {
  .astral-header nav a { padding-inline: 7px; font-size: .8rem; }
  .astral-pair-summary { grid-template-columns: minmax(220px, .75fr) 1fr; }
  .astral-pair-axes { grid-column: 1 / -1; }
  .astral-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sport-context-city { grid-template-columns: 1fr; }
  .sport-fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .astral-tool-shell,
  .astral-pair-summary,
  .astral-related { width: calc(100% - 24px); }
  .astral-tool-shell { grid-template-columns: 1fr; margin-top: -25px; margin-bottom: 56px; padding: 26px 18px; border-radius: 23px; }
  .astral-tool-form { grid-template-columns: 1fr; padding: 19px 15px; }
  .astral-tool-field-wide { grid-column: auto; }
  .astral-tool-actions { align-items: stretch; flex-direction: column; }
  .astral-tool-actions button { width: 100%; }
  .astral-tool-result { grid-template-columns: 1fr; gap: 22px; padding: 23px 18px; }
  .astral-result-score { width: 150px; min-height: 150px; margin: 0 auto; }
  .astral-result-axes,
  .astral-pair-axes { grid-template-columns: 1fr; }
  .astral-result-actions { display: grid; }
  .astral-result-actions a { text-align: center; }
  .astral-pair-summary { grid-template-columns: 1fr; margin-top: -25px; margin-bottom: 56px; padding: 27px 19px; border-radius: 22px; }
  .astral-pair-score { text-align: center; }
  .astral-related { margin-bottom: 56px; }
  .astral-related-grid { grid-template-columns: 1fr; }
  .astral-related-grid > a { min-height: 0; }
  .sport-context { width: calc(100% - 24px); margin-bottom: 50px; padding: 22px 16px; border-radius: 22px; }
  .sport-fact-grid,
  .sport-context-city .sport-fact-grid { grid-template-columns: 1fr 1fr; }
  .sport-fact-grid > div { min-height: 92px; padding: 14px; }
  .sport-map-card { min-height: 335px; }
  .sport-map-card iframe { height: 270px; }
  .sport-map-card p { align-items: flex-start; flex-direction: column; gap: 3px; }
}
