:root {
  --bg: #0f1020;
  --bg-soft: #15172b;
  --surface: #ffffff;
  --surface-soft: #f7f7fc;
  --text: #1b1c2a;
  --text-soft: #5a5c74;
  --muted: #8a8ca6;
  --border: #e7e7f2;
  --primary: #6d5efc;
  --primary-dark: #5847e0;
  --accent: #ff7eb3;
  --accent-2: #ffb25e;
  --green: #34d399;
  --blue: #5ec8ff;
  --grad-hero: linear-gradient(135deg, #6d5efc 0%, #a06bff 45%, #ff7eb3 100%);
  --grad-soft: linear-gradient(135deg, #f5f3ff 0%, #fef1f7 100%);
  --grad-warm: linear-gradient(135deg, #ffb25e 0%, #ff7eb3 100%);
  --grad-cool: linear-gradient(135deg, #5ec8ff 0%, #6d5efc 100%);
  --shadow-sm: 0 4px 14px rgba(28, 27, 66, 0.08);
  --shadow-md: 0 14px 34px rgba(28, 27, 66, 0.12);
  --shadow-lg: 0 24px 60px rgba(28, 27, 66, 0.18);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --space: clamp(56px, 8vw, 110px);
  --font: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-soft);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: var(--space) 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(109, 94, 252, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--grad-hero);
  color: #fff;
  box-shadow: 0 12px 26px rgba(109, 94, 252, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(109, 94, 252, 0.45);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad-hero);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(109, 94, 252, 0.4);
}

.logo span {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 9px 14px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(109, 94, 252, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding: clamp(70px, 11vw, 130px) 0 clamp(90px, 13vw, 150px);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.4;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.25);
  top: -120px;
  right: -60px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: rgba(255, 178, 94, 0.4);
  bottom: -120px;
  left: -40px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.7rem);
  margin-bottom: 18px;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 38px;
}

.hero-stats div strong {
  display: block;
  font-size: 1.7rem;
}

.hero-stats div span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card-stack {
  position: relative;
  display: grid;
  gap: 16px;
}

.float-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: floaty 5s ease-in-out infinite;
}

.float-card:nth-child(2) {
  animation-delay: 0.8s;
  margin-left: 32px;
}

.float-card:nth-child(3) {
  animation-delay: 1.6s;
}

.float-card .fc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.fc-1 { background: var(--grad-warm); }
.fc-2 { background: var(--grad-cool); }
.fc-3 { background: var(--grad-hero); }

.float-card h4 {
  font-size: 1rem;
}

.float-card p {
  font-size: 0.85rem;
  margin: 0;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(109, 94, 252, 0.3);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 11px;
}

.bg-1 { background: var(--grad-hero); color: #fff; }
.bg-2 { background: var(--grad-warm); color: #fff; }
.bg-3 { background: var(--grad-cool); color: #fff; }
.bg-4 { background: linear-gradient(135deg, #34d399 0%, #5ec8ff 100%); color: #fff; }
.bg-soft { background: var(--grad-soft); }

.alt-bg {
  background: var(--grad-soft);
}

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

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature .f-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(109, 94, 252, 0.1);
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.9rem;
}

.motivation-banner {
  background: var(--grad-warm);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.motivation-banner .quote-mark {
  font-size: 4rem;
  opacity: 0.4;
  line-height: 0.6;
}

.motivation-banner blockquote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  max-width: 760px;
  margin: 10px auto 16px;
  letter-spacing: -0.02em;
}

.motivation-banner cite {
  font-style: normal;
  font-weight: 600;
  opacity: 0.9;
}

.motivation-banner .btn {
  margin-top: 26px;
}

.faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(109, 94, 252, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.96rem;
}

.newsletter {
  background: var(--grad-cool);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 60px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.newsletter h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 auto 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .btn {
  background: var(--text);
  color: #fff;
}

.newsletter-form .btn:hover {
  background: #000;
  transform: translateY(-3px);
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  min-height: 20px;
}

.cta-final {
  text-align: center;
  background: var(--grad-hero);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 80px);
  box-shadow: var(--shadow-lg);
}

.cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}

.page-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 9vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  top: -120px;
  right: -60px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.horoscope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.zodiac-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zodiac-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.zodiac-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.zodiac-symbol {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
}

.zodiac-head h3 {
  font-size: 1.2rem;
}

.zodiac-head span {
  font-size: 0.82rem;
  color: var(--muted);
}

.zodiac-card .daily-msg {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.zodiac-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.zodiac-meta div {
  text-align: center;
}

.zodiac-meta .label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.zodiac-meta .value {
  font-weight: 700;
  font-size: 0.95rem;
}

.color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.quiz-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.quiz-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

.quiz-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 26px;
}

.quiz-progress .bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad-hero);
  transition: width 0.4s ease;
}

.quiz-step-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.quiz-question {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 26px;
}

.quiz-options {
  display: grid;
  gap: 14px;
}

.quiz-option {
  text-align: left;
  background: var(--surface-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quiz-option:hover {
  border-color: var(--primary);
  background: rgba(109, 94, 252, 0.06);
  transform: translateX(4px);
}

.quiz-option .opt-letter {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(109, 94, 252, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.quiz-result {
  text-align: center;
}

.quiz-result .result-emoji {
  font-size: 3.4rem;
  margin-bottom: 14px;
}

.quiz-result h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quiz-result p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.quiz-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.quiz-pick {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-pick:hover,
.quiz-pick.active {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quiz-pick .pick-emoji {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.quiz-pick h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.quiz-pick p {
  font-size: 0.88rem;
}

.trivia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

.fact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.fact-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tag-nature { background: rgba(52, 211, 153, 0.15); color: #0f9e6e; }
.tag-space { background: rgba(109, 94, 252, 0.15); color: var(--primary); }
.tag-history { background: rgba(255, 178, 94, 0.18); color: #d4860f; }
.tag-human { background: rgba(255, 126, 179, 0.18); color: #d6437f; }

.fact-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.fact-card p {
  font-size: 0.94rem;
}

.didyouknow {
  background: var(--grad-soft);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 50px);
  display: grid;
  gap: 16px;
}

.dyk-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.dyk-item .dyk-icon {
  font-size: 1.5rem;
}

.dyk-item p {
  font-size: 0.96rem;
  margin: 0;
}

.trivia-quiz {
  max-width: 720px;
  margin: 0 auto;
}

.positivity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.quote-card {
  border-radius: var(--radius);
  padding: 30px;
  color: #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform 0.25s ease;
}

.quote-card:hover {
  transform: translateY(-6px);
}

.quote-card .q-mark {
  font-size: 3rem;
  line-height: 0.5;
  opacity: 0.5;
}

.quote-card p {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 14px 0;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.88rem;
  opacity: 0.9;
}

.quote-of-day {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.quote-of-day .qod-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.85;
}

.quote-of-day blockquote {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 800;
  max-width: 720px;
  margin: 18px auto;
}

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

.tip {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.tip:hover {
  transform: translateX(5px);
}

.tip h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.tip p {
  font-size: 0.92rem;
}

.habit-tracker {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.habit {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}

.habit:hover {
  background: var(--surface-soft);
}

.habit .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: #fff;
  font-size: 0.9rem;
}

.habit.done .check {
  background: var(--green);
  border-color: var(--green);
}

.habit.done .habit-text {
  text-decoration: line-through;
  color: var(--muted);
}

.habit-text {
  font-weight: 600;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.test-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.test-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.test-card .test-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.test-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.test-card p {
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}

.test-card .test-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-info .info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-info .info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info .info-card p {
  font-size: 0.92rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-soft);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field .error {
  display: block;
  color: #e0476f;
  font-size: 0.82rem;
  margin-top: 6px;
  min-height: 16px;
}

.field input.invalid,
.field textarea.invalid {
  border-color: #e0476f;
}

.form-success {
  display: none;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #0f9e6e;
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 600;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 34px 0 14px;
}

.legal h3 {
  font-size: 1.1rem;
  margin: 22px 0 10px;
}

.legal p,
.legal li {
  color: var(--text-soft);
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.legal ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal .updated {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.callout {
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 24px 0;
}

.callout strong {
  color: var(--text);
}

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

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card .v-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.94rem;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-band .stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 18px;
  box-shadow: var(--shadow-sm);
}

.stat-band .stat strong {
  display: block;
  font-size: 2.2rem;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-band .stat span {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.disclaimer-bar {
  background: rgba(255, 178, 94, 0.14);
  border: 1px solid rgba(255, 178, 94, 0.4);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: 0.92rem;
  color: #8a5a16;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.site-footer {
  background: var(--bg);
  color: #c8caea;
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .logo span {
  -webkit-text-fill-color: #fff;
}

.footer-brand p {
  color: #9092b8;
  font-size: 0.92rem;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #9092b8;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-news p {
  color: #9092b8;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-news form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-news input {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: inherit;
  outline: none;
}

.footer-news input::placeholder {
  color: #7c7ea4;
}

.footer-news button {
  padding: 12px 22px;
  font-size: 0.9rem;
}

.footer-news .form-note {
  color: #9092b8;
  text-align: left;
}

.footer-disclaimer {
  padding: 26px 0 0;
  font-size: 0.85rem;
  color: #7c7ea4;
  max-width: 820px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: #7c7ea4;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom .legal-links a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--grad-hero);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 90;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split img,
.media-card {
  border-radius: var(--radius-lg);
}

.media-card {
  background: var(--grad-soft);
  border: 1px solid var(--border);
  padding: 40px;
  display: grid;
  gap: 18px;
}

.media-card .mc-row {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.media-card .mc-row span.emoji {
  font-size: 1.5rem;
}

.media-card .mc-row strong {
  display: block;
  font-size: 0.98rem;
}

.media-card .mc-row small {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

.mt-30 {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card-stack {
    margin-top: 20px;
  }
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 22px 26px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 14px 12px;
    font-size: 1rem;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta .btn:not(.nav-toggle) {
    display: none;
  }
  .hero-stats {
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .zodiac-meta {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }
  .zodiac-meta div {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }
}
