/*
Theme Name: Bootscore
Theme URI: https://bootscore.me/
Author: Bootscore
Author URI: https://bootscore.me
Description: Flexible Bootstrap WordPress starter-theme for developers with full WooCommerce support. <a href="https://bootscore.me/category/documentation/" target="_blank">Documentation</a>
Version: 6.3.1
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 7.4
License: MIT License
License URI: https://github.com/bootscore/bootscore/blob/main/LICENSE
Text Domain: bootscore
Tags: featured-images, threaded-comments, translation-ready

Use this theme to make something cool, have fun, and share what you've learned with others.

Bootscore is based on Underscores https://underscores.me/, (C) 2012-2024 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* 
All style editing is done via /assets/scss/_bootscore-custom.scss
*/


/* menu top */
#masthead {
    border-bottom: 1px solid var(--line);
        background: radial-gradient(circle at 12% 0%, rgba(98, 240, 197, 0.13), transparent 32%), radial-gradient(circle at 90% 80%, rgba(109, 61, 242, 0.2), transparent 36%), linear-gradient(180deg, #05091a 0%, #030713 100%);
    
}

.navbar-brand .logo {
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    line-height: 1.05;
    font-weight: 950;
}
.navbar-brand .logo {
  color: transparent;

  background-image: linear-gradient(
    105deg,
    #f4f7ff 0%,
    #f4f7ff 38%,
    #71efd0 47%,
    #ffffff 52%,
    #9db8ff 57%,
    #f4f7ff 66%,
    #f4f7ff 100%
  );

  background-size: 250% 100%;
  background-position: 100% center;
  background-clip: text;
  -webkit-background-clip: text;

  animation: arcania-logo-shimmer 4s linear infinite;
}

@keyframes arcania-logo-shimmer {
  /* Небольшая пауза */
  0%,
  35% {
    background-position: 100% center;
  }

  /* Медленное движение блика */
  75%,
  100% {
    background-position: 0 center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-brand .logo {
    animation: none;
    color: #f4f7ff;
    background: none;
  }
}

html,
body {
  min-height: 100%;
}

#page.site {
  min-height: 100vh;
  min-height: 100dvh;
}

#content.site-content {
  flex: 1 0 auto;
}



#footer {
  --footer-text: #f8fbff;
  --footer-muted: #a7afc2;
  --footer-accent: #62f0c5;
  --footer-line: rgba(255, 255, 255, 0.12);
  --footer-surface: rgba(255, 255, 255, 0.035);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) 0 24px;
  color: var(--footer-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(98, 240, 197, 0.13), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(109, 61, 242, 0.2), transparent 36%),
    linear-gradient(180deg, #05091a 0%, #030713 100%);
  border-top: 1px solid var(--footer-line);
}

#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

#footer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(620px, 80vw);
  height: 1px;
  z-index: -1;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    var(--footer-accent),
    transparent
  );
  box-shadow: 0 0 28px rgba(98, 240, 197, 0.65);
}

#footer .footer-shell {
  position: relative;
  z-index: 1;
}

#footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(30px, 5vw, 72px);
}

#footer .footer-grid > * {
  min-width: 0;
}

#footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footer .footer-description {
  max-width: 390px;
  margin: 20px 0 0;
  color: var(--footer-muted);
  font-size: 15px;
  line-height: 1.75;
}

#footer .footer-brand-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--footer-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#footer .footer-brand-note span,
#footer .footer-language span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--footer-accent);
  box-shadow: 0 0 12px rgba(98, 240, 197, 0.8);
}

#footer .footer-brand-note span {
  animation: footer-pulse 2.4s ease-in-out infinite;
}

#footer .footer-column {
  padding-left: clamp(18px, 2.5vw, 34px);
  border-left: 1px solid var(--footer-line);
}

#footer .footer-column h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 13px;
  color: var(--footer-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#footer .footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: var(--footer-accent);
  box-shadow: 0 0 12px rgba(98, 240, 197, 0.55);
}

#footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

#footer .footer-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

#footer .footer-nav-link::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

#footer .footer-nav-link:hover {
  color: var(--footer-accent);
  transform: translateX(4px);
}

#footer .footer-nav-link:hover::before {
  opacity: 1;
  box-shadow: 0 0 9px var(--footer-accent);
}

#footer .footer-nav-link:focus-visible {
  color: var(--footer-accent);
  outline: 2px solid var(--footer-accent);
  outline-offset: 5px;
  border-radius: 3px;
}

#footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: 22px;
  color: var(--footer-muted);
  font-size: 12px;
  border-top: 1px solid var(--footer-line);
}

#footer .footer-language {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: var(--footer-text);
  background: var(--footer-surface);
  border: 1px solid var(--footer-line);
  border-radius: 999px;
}

@keyframes footer-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

@media (max-width: 991px) {
  #footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  #footer .footer-brand,
  #footer .footer-column {
    padding: 25px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
    border: 1px solid var(--footer-line);
    border-radius: 22px;
  }
}

@media (max-width: 620px) {
  #footer {
    padding-top: 42px;
  }

  #footer .footer-grid {
    grid-template-columns: 1fr;
  }

  #footer .footer-brand,
  #footer .footer-column {
    padding: 22px;
  }

  #footer .footer-description {
    margin-top: 16px;
  }

  #footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #footer .footer-brand-note span {
    animation: none;
  }

  #footer .footer-nav-link {
    transition: none;
  }
}











.top-button {
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #dfe7f5;
  background: rgba(255, 255, 255, .04);
}

:root {
  --bg: #030713;
  --panel: #0b1020;
  --panel-2: #11182b;
  --line: rgba(255, 255, 255, .12);
  --text: #f8fbff;
  --muted: #a7afc2;
  --mint: #62f0c5;
  --mint-2: #20b98e;
  --purple: #6d3df2;
  --gold: #ffd45f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 240, 197, .16), transparent 34rem),
    radial-gradient(circle at 86% 42%, rgba(109, 61, 242, .26), transparent 32rem),
    linear-gradient(180deg, #030713 0%, #060817 48%, #030713 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.navbar-brand img {
  height: 45px;
  width: 45px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--mint);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 950;
}

.eyebrow {
  padding: .62rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  letter-spacing: 0;
  text-transform: none;
}

.section-heading p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.65;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .62rem .82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dce4f2;
  background: rgba(255,255,255,.04);
  font-weight: 900;
  font-size: .92rem;
}

.hero-tags i { color: var(--mint); }

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 24px;
}

.panel-head h2 {
  max-width: 360px;
  margin: .7rem 0 0;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.05;
  font-weight: 950;
}

textarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  padding: 1rem;
  color: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  background: rgba(255,255,255,.055);
}

textarea::placeholder { color: rgba(218,224,238,.45); }
textarea:focus { border-color: rgba(98,240,197,.46); box-shadow: 0 0 0 .2rem rgba(98,240,197,.1); }

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 1rem 0 .8rem;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.04;
  font-weight: 950;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 20px;
}

.card-head span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 950;
}

.card-head i { color: var(--mint); }

.card-head small {
  color: var(--mint);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 24px;
}

.result-meta span {
  padding: .48rem .72rem;
  border-radius: 999px;
  color: #dce5f4;
  background: rgba(255,255,255,.06);
  font-size: .88rem;
  font-weight: 900;
}

.horoscope-page {
  position: relative;
}

.astro-hero,
.astro-systems-section,
.zodiac-directory-section,
.forecast-section,
.astro-tools-section,
.astro-calendar-section {
  position: relative;
  padding: 74px 0;
}

.astro-hero {
  padding-top: 132px;
  overflow: hidden;
}

.astro-hero::before,
.forecast-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.2) 1px, transparent 1.5px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 150px 150px, 100% 190px;
  opacity: .16;
}

.astro-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.astro-hero-grid-focus {
  grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr);
  align-items: start;
}

.astro-hero-copy h1 {
  max-width: 820px;
  margin: 28px 0 18px;
  font-size: clamp(3rem, 4.3vw, 5.1rem);
  line-height: 1.02;
  font-weight: 950;
}

.astro-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.65;
}

.hero-sign-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  max-width: 720px;
  margin-top: 28px;
}

.hero-sign-chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .55rem;
  min-height: 48px;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #eaf0fb;
  background: rgba(255,255,255,.045);
  font: inherit;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.hero-sign-chip span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, rgba(109,61,242,.68), rgba(98,240,197,.22));
  font-size: 1.15rem;
}

.hero-sign-chip:hover,
.hero-sign-chip.active {
  transform: translateY(-2px);
  border-color: rgba(98,240,197,.44);
  background: rgba(98,240,197,.09);
}

.astro-today-card,
.system-detail-card,
.forecast-control-panel,
.main-forecast-card,
.sphere-card,
.astro-tool-card,
.astro-calendar-card,
.calendar-result-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.058), rgba(255,255,255,.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 70px rgba(0,0,0,.24);
}

.astro-today-card {
  border-color: rgba(98,240,197,.22);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 18%, rgba(98,240,197,.18), transparent 14rem),
    radial-gradient(circle at 10% 100%, rgba(109,61,242,.22), transparent 18rem),
    rgba(8,13,30,.86);
}

.astro-orbit {
  display: grid;
  place-items: center;
  width: clamp(170px, 22vw, 240px);
  aspect-ratio: 1;
  margin: 28px auto;
  border: 1px solid rgba(98,240,197,.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(98,240,197,.22), rgba(109,61,242,.08) 50%, transparent 72%),
    conic-gradient(from 90deg, rgba(98,240,197,.45), rgba(109,61,242,.35), rgba(255,212,95,.35), rgba(98,240,197,.45));
}

.astro-orbit span {
  display: grid;
  place-items: center;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: rgba(3,7,19,.78);
  box-shadow: inset 0 0 34px rgba(98,240,197,.16);
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 950;
}

.astro-mini-stats {
  display: grid;
  gap: .7rem;
  margin-top: 22px;
}

.astro-mini-stats span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  padding: .78rem .9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dfe6f4;
  background: rgba(255,255,255,.045);
  font-weight: 900;
}

.astro-mini-stats i {
  grid-row: span 2;
  color: var(--mint);
}

.astro-mini-stats small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.1;
}

.astro-mini-stats strong {
  color: white;
  line-height: 1.15;
}

.astro-mini-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.compact-heading {
  margin-bottom: 22px;
}

.compact-heading h2 {
  margin-top: 8px;
}

.system-helper-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 0 0 16px;
}

.system-helper-strip span,
.field-hint,
.system-result-helper {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.system-helper-strip span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .62rem .82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.system-helper-strip i,
.system-result-helper i {
  color: var(--mint);
}

.astro-system-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(118px, 1fr));
  gap: .85rem;
}

.astro-system-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 142px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #dfe7f5;
  background: rgba(255,255,255,.04);
  font: inherit;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.astro-system-card:hover,
.astro-system-card.active {
  transform: translateY(-3px);
  border-color: rgba(98,240,197,.42);
  background: rgba(98,240,197,.08);
}

.system-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--mint);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), transparent 42%),
    linear-gradient(135deg, rgba(98,240,197,.18), rgba(109,61,242,.24));
  font-size: 1.7rem;
}

.astro-system-card strong {
  color: white;
  font-size: .96rem;
  line-height: 1.15;
}

.astro-system-card small {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 800;
  font-size: .78rem;
}

.astro-system-card em {
  margin-top: 10px;
  padding: .28rem .48rem;
  border: 1px solid rgba(98,240,197,.2);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(98,240,197,.07);
  font-style: normal;
  font-weight: 900;
  font-size: .72rem;
}

.system-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-top: 18px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 24px;
}

.system-detail-card h3,
.main-forecast-card h3 {
  margin: 8px 0 12px;
  color: white;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  font-weight: 950;
  line-height: 1.08;
}

.system-detail-card p,
.main-forecast-card p,
.sphere-card p,
.tool-result p,
.calendar-result-card p {
  color: #d8dfef;
  line-height: 1.65;
}

.system-meta {
  min-width: 220px;
  padding: .85rem 1rem;
  border-radius: 16px;
  color: var(--mint);
  background: rgba(98,240,197,.08);
  font-weight: 900;
  text-align: right;
}

.system-result-helper {
  display: inline-flex;
  align-items: flex-start;
  gap: .55rem;
  margin-top: 16px;
  padding: .75rem .9rem;
  border: 1px solid rgba(98,240,197,.2);
  border-radius: 14px;
  background: rgba(98,240,197,.06);
}

.field-hint {
  margin: 10px 0 0;
  font-size: .9rem;
}

.zodiac-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.zodiac-sign-card {
  display: grid;
  justify-items: start;
  min-height: 245px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: #eaf0fb;
  background:
    radial-gradient(circle at 20% 0%, rgba(98,240,197,.12), transparent 13rem),
    rgba(255,255,255,.035);
  font: inherit;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.zodiac-sign-card:hover,
.zodiac-sign-card.active {
  transform: translateY(-4px);
  border-color: rgba(98,240,197,.44);
  background:
    radial-gradient(circle at 20% 0%, rgba(98,240,197,.18), transparent 13rem),
    rgba(98,240,197,.07);
}

.zodiac-glyph {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.2), transparent 40%),
    linear-gradient(135deg, rgba(109,61,242,.65), rgba(98,240,197,.25));
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
  font-size: 2.55rem;
  font-weight: 950;
}

.zodiac-name {
  color: white;
  font-size: 1.45rem;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(98,240,197,.45);
  text-underline-offset: 5px;
}

.zodiac-range {
  margin-top: 9px;
  color: var(--muted);
  font-weight: 700;
}

.zodiac-text {
  margin-top: 12px;
  color: #dce3f1;
  line-height: 1.5;
}

.forecast-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.forecast-layout-primary {
  grid-template-columns: 320px minmax(0, 1fr);
}

.forecast-control-panel,
.main-forecast-card,
.astro-tool-card,
.astro-calendar-card {
  border-radius: 24px;
  padding: clamp(22px, 3vw, 30px);
  min-width: 0;
}

@media (min-width: 992px) {
  .forecast-control-panel {
    position: sticky;
    top: 94px;
  }
}

.period-control {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin: 22px 0;
}

.period-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dfe7f5;
  background: rgba(255,255,255,.045);
  font: inherit;
  font-weight: 900;
}

.period-button.active {
  border-color: rgba(98,240,197,.44);
  color: white;
  background: rgba(98,240,197,.12);
}

.sign-profile {
  display: grid;
  gap: 18px;
}

.profile-glyph {
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: rgba(98,240,197,.1);
  font-size: 4.4rem;
  font-weight: 950;
}

.sign-profile dl {
  display: grid;
  gap: .75rem;
  margin: 0;
}

.sign-profile dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}

.sign-profile dt {
  color: var(--muted);
  font-weight: 800;
}

.sign-profile dd {
  margin: 0;
  color: white;
  font-weight: 950;
}

.forecast-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.oracle-strip {
  display: grid;
  gap: .45rem;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(98,240,197,.22);
  border-radius: 16px;
  color: #eaf3ff;
  background: rgba(98,240,197,.08);
}

.oracle-strip i {
  color: var(--mint);
}

.tone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 20px;
}

.tone-grid span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .25rem .65rem;
  align-items: start;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.tone-grid i {
  grid-row: span 2;
  color: var(--mint);
  font-size: 1.1rem;
}

.tone-grid strong {
  color: white;
  line-height: 1.15;
}

.tone-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.sphere-grid,
.astro-tools-grid,
.calendar-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.forecast-spheres-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.sphere-card,
.astro-tool-card,
.calendar-result-card {
  border-radius: 20px;
  padding: 22px;
}

.sphere-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--mint);
  background: rgba(98,240,197,.1);
  font-size: 1.25rem;
}

.sphere-card h3,
.astro-tool-card h3,
.calendar-result-card h3 {
  color: white;
  font-weight: 950;
}

.tool-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

.astro-tool-card input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.6);
  opacity: .92;
}

.tool-result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tool-result strong {
  color: white;
}

.compat-score {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: 8px;
}

.compat-score strong {
  color: var(--mint);
  font-size: 2rem;
}

.compat-score span {
  color: var(--muted);
  font-weight: 900;
}

.astro-calendar-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(109,61,242,.18), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,.058), rgba(255,255,255,.016));
}

.calendar-result-grid {
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.calendar-result-card span {
  color: var(--mint);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
}

.calendar-result-card h3 {
  margin-top: 8px;
}

.oracle-strip {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(98,240,197,.3);
  border-radius: 18px;
  color: rgba(255,255,255,.84);
  background: rgba(98,240,197,.08);
}

.oracle-strip i,
.oracle-strip strong {
  color: var(--mint);
}

@media (max-width: 991.98px) {
  .astro-hero-grid,
  .astro-hero-grid-focus,
  .forecast-layout,
  .forecast-layout-primary,
  .system-detail-card {
    grid-template-columns: 1fr;
  }
  .astro-system-rail,
  .zodiac-map-grid,
  .sphere-grid,
  .tone-grid,
  .astro-tools-grid,
  .calendar-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .system-meta {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .astro-hero { padding-top: 112px; }
  .astro-hero-copy h1 { font-size: clamp(2.55rem, 10vw, 3.45rem); }
  .hero-sign-picker,
  .astro-system-rail,
  .zodiac-map-grid,
  .sphere-grid,
  .tone-grid,
  .astro-tools-grid,
  .calendar-result-grid,
  .period-control,
  .tool-row {
    grid-template-columns: 1fr;
  }
  .astro-system-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .astro-system-card {
    min-height: 132px;
    padding: 14px 10px;
  }
  .system-detail-card {
    display: block;
  }
  .system-meta {
    min-width: 0;
    margin-top: 16px;
    text-align: left;
  }
}

