@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS Custom Properties & Design Tokens
   Daniela San Martin - Astrology & Cosmic Guidance
   ========================================================================== */
:root {
  --bg-space: #070913;
  --bg-surface: #0e1224;
  --bg-card: rgba(18, 24, 46, 0.78);
  --bg-card-hover: rgba(26, 34, 66, 0.9);
  --bg-glass: rgba(14, 18, 36, 0.65);
  --bg-input: rgba(10, 13, 28, 0.85);

  --gold-100: #fff6cc;
  --gold-200: #fde68a;
  --gold-300: #facc15;
  --gold-400: #eab308;
  --gold-500: #ca8a04;
  --gold-glow: rgba(250, 204, 21, 0.22);
  --gold-gradient: linear-gradient(135deg, #fff3b0 0%, #eab308 50%, #9a6b07 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(250, 204, 21, 0.12) 0%, rgba(14, 18, 36, 0.5) 100%);

  --purple-glow: rgba(147, 51, 234, 0.18);
  --blue-glow: rgba(59, 130, 246, 0.15);
  --cosmic-gradient: radial-gradient(circle at 50% 0%, rgba(120, 50, 200, 0.18), transparent 70%),
                     radial-gradient(circle at 80% 30%, rgba(40, 110, 230, 0.12), transparent 60%),
                     radial-gradient(circle at 10% 70%, rgba(200, 150, 40, 0.08), transparent 50%);

  --border-subtle: rgba(234, 179, 8, 0.18);
  --border-glow: rgba(250, 204, 21, 0.45);
  --border-glass: rgba(255, 255, 255, 0.08);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-gold: #fde047;

  --font-serif: 'Cinzel', Georgia, serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px rgba(234, 179, 8, 0.2);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1240px;
}

/* ==========================================================================
   Reset & Global Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-space);
  background-image: var(--cosmic-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Starfield Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 140px 80px, #fde68a, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 280px 190px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 400px 320px, #fef08a, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 580px 90px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 720px 240px, #fde68a, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 900px 140px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 1080px 380px, #fde68a, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 600px 600px;
  opacity: 0.45;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

a:hover {
  color: var(--gold-100);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 9, 19, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 9, 19, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-link {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.04em;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold-200);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-300);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #121526;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.28);
}

.btn-primary:hover {
  color: #080a14;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.42);
}

.btn-outline {
  background: rgba(234, 179, 8, 0.06);
  border-color: var(--border-subtle);
  color: var(--gold-200);
}

.btn-outline:hover {
  background: rgba(234, 179, 8, 0.14);
  border-color: var(--gold-300);
  color: var(--gold-100);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-200);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  height: calc(100vh - 84px);
  background: rgba(7, 9, 19, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.2rem;
  z-index: 99;
  overflow-y: auto;
  border-top: 1px solid var(--border-subtle);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--text-secondary);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile a.active {
  color: var(--gold-300);
}

/* ==========================================================================
   Google Ads Compliance Disclaimer Banner & Trust Topbar
   ========================================================================== */
.compliance-topbar {
  background: #04050b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.45rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.compliance-topbar span {
  color: var(--gold-300);
  font-weight: 600;
}

.legal-notice-box {
  background: rgba(14, 18, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 2.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.legal-notice-box .badge {
  background: rgba(234, 179, 8, 0.15);
  color: var(--gold-300);
  border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--gold-200);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.2rem;
}

.hero-title .text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(250, 204, 21, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-300);
  flex-shrink: 0;
}

/* ==========================================================================
   Cards, Grids & Sections
   ========================================================================== */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Feature 4-Tool Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}

.tool-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.tool-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-300);
}

.tool-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.tool-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.tool-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-300);
}

.tool-card:hover .tool-card-cta {
  color: var(--gold-100);
  transform: translateX(4px);
}

/* ==========================================================================
   Author & About Section
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-portrait-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-subtle);
}

.about-portrait {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #14182e;
}

.author-badge-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: rgba(14, 18, 36, 0.95);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.author-badge-card .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.author-badge-card .lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content h2 {
  margin-bottom: 1.2rem;
}

.about-content p {
  margin-bottom: 1.2rem;
}

.credentials-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.credentials-list li svg {
  color: var(--gold-300);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-400);
  background: rgba(22, 29, 56, 0.9);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-btn:hover {
  color: var(--gold-200);
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-300);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-body-inner {
  padding: 0 1.8rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Footer & Legal Compliance
   ========================================================================== */
.site-footer {
  background: #05060d;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin: 1.2rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--gold-200);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-col ul a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-info a {
  color: var(--text-secondary);
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-newsletter-form input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.65rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-400);
}

/* Mandatory Google Ads Disclaimer Box in Footer */
.footer-disclaimer-box {
  background: rgba(10, 13, 26, 0.9);
  border: 1px solid rgba(234, 179, 8, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  margin-bottom: 2.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-disclaimer-box strong {
  color: var(--gold-300);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--gold-300);
}

/* ==========================================================================
   Cookie Consent Banner (CCPA & Google Ads Required)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(14, 18, 36, 0.96);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Standard Content Pages (About, Contact, Legal)
   ========================================================================== */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(14, 18, 36, 0.6) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-glass);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold-300);
}

.legal-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  backdrop-filter: blur(16px);
  margin: 3rem auto;
  max-width: 900px;
}

.legal-content-card h2 {
  margin: 2.2rem 0 1rem;
  color: var(--gold-200);
}

.legal-content-card h3 {
  margin: 1.6rem 0 0.8rem;
}

.legal-content-card p,
.legal-content-card ul,
.legal-content-card ol {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content-card ul,
.legal-content-card ol {
  padding-left: 1.5rem;
}

.legal-content-card li {
  margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-portrait {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-cta-group .btn-outline {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .legal-content-card {
    padding: 2rem 1.5rem;
  }
}
