:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: #0b1222;
  --accent: #0ea5e9;
  --accent-2: #f4b400;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --pill: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.14), transparent 25%),
              radial-gradient(circle at 80% 10%, rgba(244, 180, 0, 0.18), transparent 28%),
              linear-gradient(135deg, #0b1222, #0f172a 60%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text);
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.topline {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.topline__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 18, 34, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #0b1222;
  box-shadow: var(--shadow);
}

.brand__name {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand__sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.nav__link {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
  background: var(--pill);
}

.cta {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1222;
  border: none;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
}

.cta--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  padding: 40px 0 20px;
  align-items: center;
}

.hero__content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 10px 0 12px;
}

.hero__content .lede {
  color: var(--muted);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.hero__meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
  min-height: 280px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 24px;
  box-shadow: var(--shadow);
}

.orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(14, 165, 233, 0.2), #0b1222 70%);
  position: absolute;
  top: 20px;
  left: 30px;
  filter: blur(0.3px);
}

.rings {
  width: 220px;
  height: 220px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  right: 20px;
  box-shadow: inset 0 0 30px rgba(14, 165, 233, 0.18);
}

.hero__visual .card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  color: var(--text);
  backdrop-filter: blur(6px);
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 700;
}

.section-head {
  margin: 60px 0 24px;
}

.section-head h2,
.section-head h1 {
  font-family: "Playfair Display", serif;
  margin: 10px 0;
}

.section-lede {
  color: var(--muted);
  max-width: 720px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.pillar-card,
.zodiac-card,
.contact__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.pillar-card h3 {
  margin: 10px 0 6px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.zodiacs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.zodiac-card h3 {
  margin: 8px 0;
}

.note {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 600;
}

.cta-band {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(244, 180, 0, 0.14));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  color: var(--muted);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.site-footer__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.footer-label {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.site-footer__legal {
  grid-column: 1 / -1;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 24px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(11, 18, 34, 0.96);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 40;
}

.cookie-banner__text {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 18px;
  color: var(--muted);
}

.legal__block {
  margin: 26px 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

.contact-form label {
  font-weight: 600;
}

.contact-form button {
  justify-self: start;
}

.form-hint {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-wrap: wrap;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
