
:root {
  --gold: #c9a84c;
  --gold-light: #e8cc85;
  --gold-dim: #7a6230;
  --gold-shine: #FFE8A0;
  --gold-mid: #C9993A;


  --bg: #05060e;
  --bg2: #080b18;
  --fg: #e8e4d9;
  --fg-dim: #9a9480;
  --line: rgba(201, 168, 76, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

main {
  min-height: calc(100vh - 6rem);
}
b, strong {
  font-weight: 700;
}

a {
  /* text-decoration: none; */
  color: rgba(154, 148, 128, 1);
}
.text-primary {
  color: var(--gold)!important;
}
.text-light {
  color: var(--gold-light)!important;
}
.text-semiwhite {
  color: var(--fg)!important;
}
.btn {
  font-size: 1rem;
}
.btn-primary {
  border: 0;
  color: #181c2a;
  background: var(--gold);
  box-shadow: 0 2px 8px 0 rgba(201, 168, 76, 0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold-light);
  color: #000;
  box-shadow: 0 4px 18px 0 rgba(201, 168, 76, 0.13);
}

.cosmic-body {
  background: var(--bg);
  color: var(--fg);
  /* font-family: 'Lato', sans-serif; */
  font-weight: 300;
  overflow-x: hidden;
  color-scheme: dark;
}

input:not([type="hidden"]),
select,
textarea,
.form-control,
.form-select {
  background-color: rgba(8, 11, 24, 0.88);
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--fg);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

input:not([type="hidden"]):focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
  background-color: rgba(10, 15, 30, 0.96);
  border-color: rgba(232, 204, 133, 0.55);
  color: var(--fg);
  box-shadow: 0 0 0 0.18rem rgba(201, 168, 76, 0.12);
}

input:not([type="hidden"])::placeholder,
textarea::placeholder,
.form-control::placeholder {
  color: rgba(154, 148, 128, 0.78);
}

select option,
select optgroup {
  background: #0b1020;
  color: #e8e4d9;
}

textarea,
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--fg);
  -webkit-box-shadow: 0 0 0 1000px rgba(8, 11, 24, 0.95) inset;
}

#starCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cosmic-nav {
  z-index: 100;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  /* background: rgba(5, 6, 14, 0.62); */
  /* border-bottom: 1px solid rgba(201, 168, 76, 0.12); */
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  /* box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); */
}


/* Cosmic Flow Progress */
.cosmic-flow-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 220;
  pointer-events: none;
}

.cosmic-flow-progress__track {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(232, 204, 133, 0.12);
    overflow: hidden;
}

/* progress bar */
.cosmic-flow-progress__fill {
    position: relative;
    height: 100%;
    width: 25%; /* dynamic */

    /* background: linear-gradient(
        90deg,
        rgba(201, 168, 76, 0.85),
        rgba(255, 232, 160, 0.95)
    ); */
    background: linear-gradient(90deg, rgb(163 144 90 / 85%), rgba(255, 232, 160, 0.95));

    transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* 🌟 moving glowing head  */
.cosmic-flow-progress__fill::after {
    content: "";

    position: absolute;
    right: -6px;  
    top: 50%;

    width: 14px;
    height: 14px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 240, 180, 1) 0%,
        rgba(255, 210, 120, 0.8) 40%,
        rgba(201, 168, 76, 0) 70%
    );

    box-shadow:
        0 0 10px rgba(255, 232, 160, 0.8),
        0 0 22px rgba(201, 168, 76, 0.5);

    animation: pulse-head 1.2s ease-in-out infinite;
}

/* subtle breathing motion */
@keyframes pulse-head {
    0%, 100% {
        transform: translateY(-50%) scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-50%) scale(1.25);
        opacity: 1;
    }
}

.cosmic-flow-progress__fill::before {
    content: "";

    position: absolute;
    right: -20px;
    top: 0;

    width: 20px;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(255, 232, 160, 0.4),
        transparent
    );

    filter: blur(2px);
    opacity: 0.7;
}





.navbar-toggler,
.navbar-toggler:focus {
  border-color: var(--line);
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1) sepia(0.2) saturate(0.3);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.header-logo-img {
  /* height: 110px; */
  height: clamp(4rem, 8vw, 5rem);
  width: auto;
  display: block;
}

.nav-links {
  gap: 1.75rem;
}

.nav-links .nav-link {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8c2ae;
  padding-right: 0;
  padding-left: 0;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus {
  color: var(--gold-light);
}

.hero {
  position: relative;
  z-index: 1;
  /* min-height: calc(100vh - 7rem); */
  min-height: calc(100vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 0rem 1rem 4rem; */
}

.orrery {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(82vw, 700px);
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 30%;
  height: 30%;
  border-color: rgba(201, 168, 76, 0.18);
  animation: spin 40s linear infinite;
}

.ring-2 {
  width: 52%;
  height: 52%;
  border-color: rgba(201, 168, 76, 0.1);
  animation: spin 70s linear infinite reverse;
}

.ring-3 {
  width: 80%;
  height: 80%;
  border-color: rgba(201, 168, 76, 0.06);
  animation: spin 120s linear infinite;
}

.ring-4 {
  width: 100%;
  height: 100%;
  border-color: rgba(201, 168, 76, 0.04);
}

.ring-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(201, 168, 76, 0.6);
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.ring-dot-sm {
  width: 4px;
  height: 4px;
  top: -2px;
  box-shadow: 0 0 8px 2px rgba(201, 168, 76, 0.4);
}

.ring-dot-bottom {
  top: auto;
  bottom: -2px;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero-cta {
  /* font-family: 'Cinzel', serif;
  font-size: 0.75rem; */
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #0c0d18;
  background: var(--gold);
  border: 0;
  border-radius: 0;
  padding: 0.85rem 2rem;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
  width: fit-content;
}

.hero-cta:hover,
.hero-cta:focus {
  background: var(--gold-light);
  color: #0c0d18;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.zodiac-grid {
    max-width: 868px;
    margin-left: auto;
    margin-right: auto;
}


.divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem 1rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  max-width: 200px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.divider-glyph {
  color: var(--gold);
  opacity: 0.6;
}

.divider-gem {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--gold-shine), var(--gold-mid));
    transform: rotate(45deg);
    flex-shrink: 0;
}

.zodiac-section {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 10rem;
  scroll-margin-top: 30px;
}

@media (max-width: 575.98px) {
  .zodiac-section {
    scroll-margin-top: 0px;
  }
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 3.5vw, 36px);
  font-weight: 400;
  /* letter-spacing: 0.08em; */
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-shine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.section-title em {
  color: var(--gold-light);
}

.section-desc {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  line-height: 1.8;
}

.zodiac-card {
  position: relative;
  max-width: 184px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.08);
  color: var(--fg);
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.2rem;
}

.zodiac-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}

.zodiac-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.zodiac-card:hover,
.zodiac-card:focus {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

.zodiac-card:hover::before,
.zodiac-card:focus::before,
.zodiac-card:hover::after,
.zodiac-card:focus::after {
  opacity: 1;
}

.bg-num {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  transition: color 0.35s;
}

.zodiac-card:hover .bg-num,
.zodiac-card:focus .bg-num {
  color: rgba(201, 168, 76, 0.12);
}

.zodiac-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  position: relative;
  transition: filter 0.4s, transform 0.4s;
}

.zodiac-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.zodiac-card:hover .zodiac-icon,
.zodiac-card:focus .zodiac-icon {
  filter: drop-shadow(0 0 10px rgba(200, 215, 255, 0.7)) drop-shadow(0 0 22px rgba(180, 200, 255, 0.4));
  transform: scale(1.1);
}

.zodiac-dates {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
@media (max-width: 575.98px) {
  .zodiac-dates {
    letter-spacing: 0.1em;
  }
  .zodiac-icon {
    margin: 0 auto;
  }
}
.zodiac-card:hover .zodiac-dates,
.zodiac-card:focus .zodiac-dates {
  color: var(--gold);
}

.zodiac-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}

.zodiac-card:hover .zodiac-name,
.zodiac-card:focus .zodiac-name {
  color: var(--gold-light);
}

.zodiac-element {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 400;
}
.footer-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 1rem;
  align-items: center;
  color: rgba(154, 148, 128, 1);
}
.footer-bank-text {
    max-width: 600px;
    margin: 0 auto 0.75rem;
    font-size: 0.85rem;
}

@media (max-width: 575.98px) {
  .footer-bank-text {
    font-size: 0.75rem;
  }
}
.footer-tems a {
  text-decoration: none;
  color: rgba(154, 148, 128, 1);
}

.footer-tems a:hover {
  color: rgba(154, 148, 128, 0.8);
}
.footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg-dim);
  margin-bottom: 0;
  max-width: 540px;
}

.footer-copy {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  /* text-align: right; */
  margin-bottom: 0;
}

.cosmic-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 6, 14, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cosmic-modal.is-open {
  display: flex;
}

.cosmic-modal-panel {
  max-width: 500px;
  width: 100%;
  padding: 3rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  background: rgba(7, 9, 20, 0.94);
}

.cosmic-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--gold-dim);
  font-size: 1.2rem;
  cursor: pointer;
  font-family: 'Cinzel', serif;
}

.cosmic-modal-dates {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  margin-bottom: 0.8rem;
}

.cosmic-modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.cosmic-modal-element {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--fg-dim);
  margin-bottom: 1.6rem;
}

.cosmic-modal-desc {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.step-section {
  position: relative;
  z-index: 1;
  padding-top: 14rem;
  padding-bottom: 5rem;
}

.step-section.with-top-message {
  padding: 0px;
}
.small-gap-start.step-section {
  padding-top: 8rem;
}
@media (max-width: 575.98px) {
  .step-section, .small-gap-start.step-section {
    padding-top: 5rem;
  }
}

.step-panel {
  max-width: 960px;
  background: rgba(7, 9, 20, 0.32);
  border: 1px solid rgba(201, 168, 76, 0.14);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.step-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 575.98px) {
  .step-title {
    font-size: 1.5rem;
  }
}
.step-copy {
  text-align: center;
  /* font-size: 0.9rem; */
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

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

.birth-stage {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.birth-stage.is-active {
  opacity: 1;
  transform: translateY(0);
}

.birth-stage.is-exit {
  opacity: 0;
  transform: translateY(-8px);
}

.birth-grid {
  align-items: stretch;
}

.birth-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.2rem;
}

.birth-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .birth-label {
    font-size: 0.75rem;
  }
}

.birth-inline-selects .form-select,
.birth-inline-selects .cosmic-select,
.cosmic-input {
  min-height: 52px;
}

.birth-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.birth-check .form-check-input {
  margin-top: 0;
  background-color: rgba(8, 11, 24, 0.88);
  border-color: rgba(201, 168, 76, 0.35);
}

.birth-check .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.birth-check .form-check-label {
  color: var(--fg-dim);
}

.place-note {
  color: var(--fg-dim);
  font-size: 0.76rem;
  line-height: 1.7;
}

.cosmic-select,
.form-select,
.form-control {
  min-height: 52px;
}

.form-select,
.cosmic-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c9a84c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-position: right 0.9rem center;
  background-size: 14px 10px;
  padding-right: 2.5rem;
}

.cosmic-select.is-invalid,
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #d9534f;
}

.birth-help {
  min-height: 1.2rem;
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: #ff7b7b;
  opacity: 0;
}

.birth-help.is-visible {
  opacity: 1;
}

.birth-error-box {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(217, 83, 79, 0.12);
  border: 1px solid rgba(217, 83, 79, 0.35);
  color: #ff9a9a;
  padding: 0.8rem 1rem;
}

.step-next-btn {
  min-width: 200px;
}

.social-proof-host {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1200;
  pointer-events: none;
}

.social-proof-popup {
  width: min(340px, calc(100vw - 2rem));
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(14, 20, 35, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
  padding: 0.8rem 0.9rem;
  color: var(--fg);
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: auto;
}

.social-proof-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0d1322;
  background: linear-gradient(140deg, #e9cb83, #c9a84c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.social-proof-content {
  flex: 1;
  min-width: 0;
}

.social-proof-name {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #f0e9d7;
  line-height: 1.3;
}

.social-proof-action {
  margin: 0.15rem 0 0;
  font-size: 0.76rem;
  color: #d8d1bf;
  line-height: 1.35;
}

.social-proof-time {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.social-proof-close {
  border: 0;
  background: transparent;
  color: rgba(232, 228, 217, 0.75);
  font-size: 1.05rem;
  line-height: 1;
  padding: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.05rem;
  cursor: pointer;
}

.social-proof-close:hover,
.social-proof-close:focus {
  color: #ffffff;
}

.social-proof-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.trust-pill {
  display: inline-block;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.15rem;
}

.article-panel {
  max-width: 980px;
  margin-top: 12px;
}

.cosmic-article {
  max-width: 760px;
}

.article-copy {
  text-align: left;
  max-width: none;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}

.article-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gold-light);
  margin-top: 2rem;
  margin-bottom: 1.1rem;
}

.article-image-wrap {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.article-inline-media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.article-inline-media-left {
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
}

.media-image-left .article-inline-visual {
  order: 1;
}

.media-image-left .article-inline-copy {
  order: 2;
}

/* .article-inline-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.article-inline-copy .article-copy:last-child {
  margin-bottom: 0;
}

.article-hero-image-wrap,
.article-wide-image-wrap {
  text-align: center;
}

.article-inline-visual {
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.35rem;
  min-width: 200px;
}

.article-feature-image {
  max-width: 72%;
  margin-inline: auto;
}

.cosmic-result-image {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.16);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.08);
  object-fit: cover;
}

.article-inline-visual .cosmic-result-image {
  /* width: min(100%, 220px); */
  max-height: 276px;
  min-height: 0;
  object-fit: cover;
}

.proof-image-wrapper {
  max-width: 74px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.16);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.08);
  margin-bottom: 1rem;
}

.proof-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.proof-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.proof-name {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 0;
}

.summary-card {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cosmic-benefits {
  padding-left: 1.2rem;
  color: var(--fg-dim);
}

.cosmic-benefits li {
  margin-bottom: 6px;
  line-height: 1.8;
  font-size: 1.2rem;
}

@media (max-width: 575.98px) {
  .cosmic-benefits li {
    font-size: 1rem;
  }
}
.article-major-title {
  text-align: left;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 3.25rem;
  margin-bottom: 1.4rem;
  text-align: center;
}

/* .offer-callout, */
.offer-cta-block {
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.4rem 1rem;
}

.offer-price-intro {
  letter-spacing: 0.04em;
  color: var(--fg);
}

.offer-price-script {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--gold-light);
}

.offer-value,
.offer-guarantee {
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

.offer-price-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--fg);
}



/* .bonus-total-section {
  background: linear-gradient(135deg, rgba(255,200,50,0.08), rgba(255,150,0,0.05));
  border: 1px solid rgba(255, 200, 50, 0.4);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 200, 50, 0.15),
              inset 0 0 30px rgba(255, 200, 50, 0.05);
}

.bonus-total-section .label {
  font-size: 1rem;
  color: #f0c040;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.bonus-total-section .value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 200, 50, 0.6);
  margin: 6px 0;
}

.bonus-total-section .free-text {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 6px;
} */
 .bonus-total-section {
  text-align: center;
  padding: 20px;
  position: relative;
}

.bonus-total-section::before,
.bonus-total-section::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
  margin: 12px auto;
  width: 80%;
}

.bonus-total-section .value {
  font-size: 2.8rem;
  color: var(--gold-light);;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}



.pricing-compare {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-title {
  margin-bottom: 2rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: rgba(9, 12, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.pricing-card:hover {
  border-color: rgba(201, 168, 76, 1);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2), 0 14px 34px rgba(0, 0, 0, 0.3);
}

.pricing-card-standard {
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card-vip {
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2), 0 14px 34px rgba(0, 0, 0, 0.3);
}
#vip_option {
  scroll-margin-top: 210px;
}

@media (max-width: 575.98px) {
 #vip_option {
    scroll-margin-top: 92px;
  }
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  min-width: 224px;
  transform: translate(-50%, 0px);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: linear-gradient(135deg, #7a6230, #c8a84b);
  color: white;
  border-radius: 18px;
}

.pricing-tier {
  text-align: center;
  margin: 0;
  font-size: 1.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #f2efe7;
}

.pricing-price {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 700;
  color: var(--gold-light);
}

.pricing-subtitle {
  text-align: center;
  margin: -0.25rem 0 0.35rem;
  color: var(--fg-dim);
  font-size: 1rem;
}

.pricing-group-title {
  margin: 0.25rem 0 0;
  color: #f3eee0;
  font-size: 1.08rem;
  font-weight: 700;
}
.pricing-group-title-plus {
  animation: pulse-glow 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(99, 179, 237, 0.4); }
  50%       { text-shadow: 0 0 30px rgba(99, 179, 237, 1); }
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.pricing-list li {
  position: relative;
  margin: 0;
  padding: 0.65rem 0 0.65rem 1.2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  color: #d9d3c5;
  font-size: 1rem;
  line-height: 1.45;
}

.pricing-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.66rem;
  color: var(--gold-light);
  font-weight: 700;
}

.pricing-list-bonus li {
  font-weight: 700;
}

.pricing-value {
  display: block;
  margin-top: 0.15rem;
  color: var(--gold-light);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.pricing-btn {
  width: 100%;
  margin-top: auto;
  border-radius: 0;
  padding: 0.95rem 1rem;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.pricing-btn-standard {
  /* background: transparent; */
  color: #f2efe7;
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.25);
}

.pricing-btn-standard:hover,
.pricing-btn-standard:focus {
  color: #0c0d18;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.pricing-btn-vip {
  background: var(--gold);
  color: #11131f;
  border-color: var(--gold);
}

.pricing-btn-vip:hover,
.pricing-btn-vip:focus {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #11131f;
}

.pricing-trust {
  margin-top: 1.2rem;
  color: var(--fg-dim);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

@media (max-width: 575.98px) {
  .pricing-card {
    padding: 2rem 1.1rem 1.1rem;
  }

  .pricing-tier {
    font-size: 1.55rem;
  }

  .pricing-list li {
    font-size: 0.93rem;
  }

  .pricing-btn {
    font-size: 0.93rem;
  }
}

.testimonial-avatar {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 1rem;
}

.testimonial-location {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.loading-panel {
  max-width: 860px;
}

.reading-stage {
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reading-stage-active {
  opacity: 1;
  /* transform: translateY(0); */
}

@media (max-width: 575.98px) {
  .social-proof-host {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.85rem;
  }

  .social-proof-popup {
    width: 100%;
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
  }
}

.reading-stage-fade-out {
  opacity: 0;
  transform: translateY(-12px);
}

.video-stage-panel {
  display: none;
}

.result-intro-copy {
  max-width: 760px;
  margin: 0 auto;
}

.video-intro-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.spinner-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-image {
  max-width: 400px;
  width: 70%;
  height: auto;
  animation: spinLoader 9s linear infinite;
  filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.22));
}

.loading-subtext {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  margin-bottom: 0;
}

.cosmic-video-frame {
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(7, 9, 20, 0.82);
  overflow: hidden;
}

/* .video-thumbnail-frame {
  min-height: 320px;
} */

.video-thumbnail-overlay {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 9, 20, 0.9);
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}

.video-play-button {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(232, 204, 133, 0.5);
  background: rgba(5, 6, 14, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.video-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.4);

}

.video-play-triangle {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--gold-light);
  margin-left: 4px;
}

.cosmic-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  width: 100%;
  height: 100%;
  min-height: 320px;
  color: var(--fg-dim);
  padding: 1.5rem;
}

.video-fallback h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
}

@keyframes spinLoader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .nav-links {
    gap: 0.25rem;
    padding-top: 0.8rem;
  }

  .nav-links .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .article-inline-media,
  .article-inline-media-left {
    grid-template-columns: 1fr;
  }

  .article-feature-image {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-eyebrow {
    letter-spacing: 0.1em;
  }

  .hero-sub {
    letter-spacing: 0.08em;
    font-size: 1rem;
  }

  .hero-eyebrow, .section-label, .section-desc, .step-copy {
    font-size: 0.9rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .cosmic-body,
  .hero-cta,
  .zodiac-card,
  .cosmic-modal-close {
    cursor: auto;
  }
}


/* Download pages */
.download-page, .step-section.with-top-message {
  margin-top: 108px;
}
.step-section.with-top-message {
  padding-top: 0rem;
  width: 100%;
  max-width: none;
}
.step-section.with-top-message .step-panel {
  margin-top: 4rem;
}

@media (max-width: 767.98px) {
  .step-section .step-panel {
    margin-top: 14px;
    padding: 1rem
  }
  .step-section .step-panel .section-title {
    font-size: 1.7rem;
  }
}

.billing-info {
  position: relative;
  /* background: linear-gradient(180deg, rgba(20, 16, 5, 0.0) 0%, rgba(201, 153, 58, 0.02) 100%, rgba(201, 153, 58, 0.07) 100%); */
  padding: 12px 20px;
  text-align: center;
  font-size: 1rem;
  backdrop-filter: blur(14px) saturate(140%);
}

.billing-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(201, 153, 58, 0.25) 30%, 
    rgba(201, 153, 58, 0.5) 50%, 
    rgba(201, 153, 58, 0.25) 70%, 
    transparent 100%
  );
}

.billing-info::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(201, 153, 58, 0.5) 25%, 
    rgba(245, 217, 138, 0.95) 50%, 
    rgba(201, 153, 58, 0.5) 75%, 
    transparent 100%
  );
  /*   */
  box-shadow: 0 0 8px 1px rgba(201, 153, 58, 0.35);
}
@media (max-width: 575.98px) {
  .download-page,   .step-section.with-top-message {
    margin-top: 92px;
  }
  .billing-info {
    font-size: 0.8rem;
  }
}
.download-page .container {
  max-width: 960px;
  position: relative;
  padding: 5rem 1rem 5rem;
  margin: 0 auto;
  z-index: 2;
}

@media (max-width:578px) {
  .download-page .container {
    padding-top: 1rem;
  }
}

.download-header {
    text-align: center;
    margin-bottom: 2.2em;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}
.download-header h1 {
    /* font-family: Cinzel, serif; */
    font-size: 2.1em;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 12px #1a1a2a;
    line-height: 1.4em;
    letter-spacing: 1px;
    font-style: italic;
}
.download-user-info {
    color: #bdbdbd;
    font-size: 1em;
    margin-bottom: 0.2em;
}
.download-user-info span {
    margin-right: 1.2em;
}
.download-main-sign-image-row {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5em;
}
.download-main-img-large {
    width: 210px;
    height: auto;
    /* filter:
    drop-shadow(0 0 4px  rgba(212, 168, 67, 1))
    drop-shadow(0 0 16px rgba(212, 168, 67, 0.7))
    drop-shadow(0 0 40px rgba(180, 130, 30, 0.4)); */
    filter:
        drop-shadow(0 0 2px rgba(212, 168, 67, 0.8))
        drop-shadow(0 0 5px rgba(212, 168, 67, 0.5))
        drop-shadow(0 0 10px rgba(180, 130, 30, 0.25));
}
.download-section {
    margin-bottom: 2.2em;
}
@media (max-width: 768px) {
    .download-main-sign-image-row {
        padding: 1rem 0;
        overflow: visible;
    }
    
    .download-main-img-large {
        filter:
        drop-shadow(0 0 2px rgba(212, 168, 67, 0.8))
        drop-shadow(0 0 5px rgba(212, 168, 67, 0.5))
        drop-shadow(0 0 10px rgba(180, 130, 30, 0.25));
    }
}

.download-desc {
    font-style: italic;
    letter-spacing: 0.08em;
    font-size: 1.4rem;
    line-height: 1.7;
    max-width: 730px;
    margin: 0 auto;
    animation: fadeUp 0.9s 0.65s ease forwards;
}

.download-instruction {
    font-size: 1.2em;
    color: var(--gold-light);
    
    font-style: italic;
    text-align: center;
    margin-bottom: 0.2em;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.download-thumbs {
    display: flex;
    justify-content: center;
}
.download-thumb-list {
    display: flex;
    gap: 2.2em;
    flex-wrap: wrap;
    justify-content: center;
}
.thumb-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
}
.thumb-img {
    margin-bottom: 0.7em;
    transition: box-shadow 0.18s, border 0.18s, transform 0.18s;   
    height: 145px;
    width: auto;
}

.each-reading-card .thumb-img {
  width: 200px;
  height: auto;
}

.thumb-label {
  display: none;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 14px;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .thumb-label {
    font-size: 1em;
  }
    .download-main-sign-image-row {
        margin-bottom: 1.2em;
    }
    .download-thumb-list {
        gap: 1em;
    }
    .thumb-img, .main-thumb {
        width: 70px;
        height: 90px;
    }
}

/* Resource Summary (dark card) */
.download-resource-summary.dark-card {
  background: var(--bg2);
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(201,168,76,0.07);
  border: 1.5px solid var(--line);
  padding: 2.2em 1.5em 1.7em 1.5em;
  margin: 2.2em 0 2.5em 0;
  color: var(--fg);
}
.download-resource-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45em;
  color: var(--gold-light);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.1em;
  letter-spacing: 0.02em;
}
.download-resource-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}
.download-resource-list li {
  font-size: 1.07em;
  color: var(--gold);
  margin-bottom: 0.5em;
  /* display: flex; */
  align-items: center;
}
.download-check {
  color: var(--gold);
  font-weight: bold;
  margin-right: 0.5em;
  font-size: 1.1em;
}
.download-highlight {
  color: var(--gold-light);
  margin-left: 0.2em;
}
.download-bonus-tag {
  color: var(--gold-dim);
  font-size: 0.97em;
  margin-left: 0.2em;
}
.download-resource-descs {
  margin-top: 1.7em;
}
.download-resource-desc {
  border-top: 1px solid var(--line);
  padding-top: 1.1em;
  margin-bottom: 1.2em;
}
.download-resource-desc-title {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.08em;
  margin-bottom: 0.3em;
}
.download-resource-desc-text {
  color: var(--fg-dim);
  font-size: 1em;
  line-height: 1.7;
}
@media (max-width: 700px) {
  .download-resource-summary.dark-card {
    padding: 1.1em 0.5em 1.1em 0.5em;
  }
}

.download-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s ease forwards;
}
.download-title .accent {
  background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold-light) 40%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.special-access-section {
    margin-top: 3.2em;
    margin-bottom: 2.5em;
    color: var(--fg);
    text-align: center;
}
.special-access-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    letter-spacing: 0.5em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s ease forwards;
}
@media (max-width: 575.98px) {
  .special-access-title {
    font-size: 12px;
  }
}
.special-access-desc {
    color: var(--gold-mid);
    font-style: italic;
    font-size: 1.4em;
    margin-bottom: 2.1em;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.special-access-em {
    color: var(--gold-light);
    font-weight: 600;
}
.special-zodiac-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em 2.2em;
    justify-content: center;
    margin-top: 0.5em;
}
.special-zodiac-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
    margin-bottom: 0.7em;
}
.special-thumb {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* border-radius: 10px; */
    margin-bottom: 1rem;
    transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}
.special-zodiac-thumb:hover .special-thumb {
    box-shadow: 0 6px 32px 0 #ffe08a, 0 2px 18px 0 #181c2a;
    border: 2.5px solid #fff7c2;
    transform: scale(1.07);
}
.special-zodiac-thumb .thumb-label {
    font-size: 1em;
    color: #ffe08a;
    font-weight: 600;
    text-align: center;
    margin-top: 0.1em;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 6px #181c2a;
}
@media (max-width: 700px) {
    .special-zodiac-list {
        gap: 0.7em 0.7em;
    }
}
.special-access-fullpack {
    margin-top: 2.8em;
    text-align: center;
}
.special-access-fullpack-desc {
    color: var(--gold-light);
    font-size: 1.13em;
    margin-bottom: 2em;
    letter-spacing: 0.01em;
}
.special-access-fullpack-img-wrap {
    margin-bottom: 1.7em;
}
.special-access-fullpack-img {
    max-width: 550px;
    width: 90%;
}


.fullreport-title {
  font-size: 2em;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px #1a1a2a;
  text-align: center;
}
.fullreport-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em 2.2em;
    justify-content: center;
    margin-top: 0.5em;
}

.fullreport-sign {
  text-align: center;
}
.fullreport-sign-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.fullreport-sign-img {
  width: auto;
  height: 150px;
  border-radius: 10px;
  margin-bottom: 0.7em;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}
.fullreport-sign-link:hover .fullreport-sign-img {
  box-shadow: 0 6px 32px 0 #ffe08a, 0 2px 18px 0 #181c2a;
  border: 2.5px solid #fff7c2;
  transform: scale(1.07);
}
.fullreport-sign-label {
  font-size: 1em;
  color: #ffe08a;
  font-weight: 600;
  text-align: center;
  margin-top: 0.1em;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px #181c2a;
}
.fullreport-cta-wrap {
  text-align: center;
  margin-top: 2.5em;
}
.fullreport-cta-btn.cta-btn {
  display: inline-block;
  padding: 1em 2.8em;
  font-size: 1.18em;
  font-weight: 700;
  color: #181c2a;
  background: linear-gradient(90deg, #ffe08a 0%, #c9a84c 100%);
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 18px 0 rgba(201,168,76,0.13);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.fullreport-cta-btn.cta-btn:hover {
  background: linear-gradient(90deg, #ffe08a 0%, #e8cc85 100%);
  color: #000;
  box-shadow: 0 8px 32px 0 rgba(201,168,76,0.18);
}
@media (max-width: 900px) {
  .fullreport-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.2em 0.7em;
  }
}
@media (max-width: 700px) {
  .fullreport-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7em 0.7em;
  }
  .fullreport-sign-img {
    width: 48px;
    height: 62px;
  }
}
@media (max-width: 480px) {
  .fullreport-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Special Zodiac Card (Download Pages) */
.special-zodiac-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.7em;
  min-width: 184px;
  max-width: 200px;
  /* box-shadow: 0 2px 12px 0 rgba(201,168,76,0.04);
  background: linear-gradient(160deg, rgba(20, 28, 50, 0.95) 0%, rgba(10, 14, 28, 0.98) 100%);
  border: 0.5px solid rgba(201, 153, 58, 0.18);
  border-radius: 2px;
  padding: 28px 10px 8px; */
  padding: 12px 0 0;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.special-zodiac-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 153, 58, 0.5), transparent);
  transition: opacity 0.3s ease;
  opacity: 0;
} 

.special-zodiac-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(201, 153, 58, 0.45);
}

.zodiac-card:hover::before, .zodiac-card:hover::after {
    opacity: 1;
}
.special-zodiac-desc {
  color: var(--fg-dim);
  text-align: center;
  padding: 0.4em 0.5em 0.5em 0.5em;
  min-height: 2.2em;
  font-size: 18px;
}
.special-zodiac-download {
  display: block;
  border-radius: 0px;
  width: 100%;
  padding: 10px 0;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  border: 0.5px solid rgba(201, 153, 58, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.special-zodiac-download:hover,
.special-zodiac-download:focus {
  border-color: rgba(201, 153, 58, 0.7);
  color: var(--gold-shine);
  box-shadow: inset 0 0 20px rgba(201, 153, 58, 0.08), 0 0 15px rgba(201, 153, 58, 0.12);
}




.special-instant-download {
  contain: paint;
  -webkit-appearance: none;
  appearance: none;

  display: block;
  position: relative;
  overflow: hidden;

  width: 100%;
  padding: 14px 0;

  border-radius: 0;
  border: 1px solid rgba(201, 153, 58, 0.6);

  background: transparent;
  color: var(--gold-light);

  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;

  box-shadow: 0 0 12px rgba(201, 153, 58, 0.1);

  /* Safari/iOS fix */
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  isolation: isolate;
}

.special-instant-download::before {
  content: '';

  position: absolute;
  top: 0;
  left: 0;

  width: 50%;
  height: 100%;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 153, 58, 0.22),
    transparent
  );

  /* 핵심 */
  transform: translateX(-220%);
  -webkit-transform: translateX(-220%);

  will-change: transform;

  animation: shimmer-gold 2.4s linear infinite;
  -webkit-animation: shimmer-gold 2.4s linear infinite;
}

.special-instant-download:hover {
  border-color: rgba(201, 153, 58, 0.9);
  box-shadow: 0 0 28px rgba(201, 153, 58, 0.25);
  color: #fff;
}

@-webkit-keyframes shimmer-gold {
  from {
    -webkit-transform: translateX(-220%);
    transform: translateX(-220%);
  }

  to {
    -webkit-transform: translateX(320%);
    transform: translateX(320%);
  }
}

@keyframes shimmer-gold {
  from {
    -webkit-transform: translateX(-220%);
    transform: translateX(-220%);
  }

  to {
    -webkit-transform: translateX(320%);
    transform: translateX(320%);
  }
}




@media (max-width: 700px) {
  .special-zodiac-card {
    min-width: 140px;
    max-width: 160px;
    padding: 0.7em 0.3em 0.3em 0.3em;
  }
  .special-zodiac-desc {
    min-height: 1.5em;
  }
}

.each-reading-card {
  text-align: center;
  height: 100%;
  background: var(--bg2);
  border: 1px solid rgba(201, 168, 76, 0.10);
  border-radius: 12px;
  padding: 1.2em 0.4em 1em;
  margin-bottom: 0.7em;
  box-shadow: 0 2px 12px 0 rgba(201, 168, 76, 0.04);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.products {
  margin-top: 3.4em;
  padding: clamp(1.3rem, 2.6vw, 2.2rem);
  border-radius: 14px;
  background:
    radial-gradient(circle at 14% -12%, rgba(232, 204, 133, 0.16), transparent 45%),
    radial-gradient(circle at 88% 110%, rgba(201, 153, 58, 0.12), transparent 45%),
    linear-gradient(165deg, rgba(8, 11, 24, 0.97) 0%, rgba(5, 8, 17, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.products-header {
  max-width: 860px;
  margin: 0 auto 2rem;
}

.products-eyebrow {
  margin-bottom: 0.45rem;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.products-title {
  margin-bottom: 0.7rem;
  color: #f7edd0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.products-subtitle {
  margin: 0 auto;
  color: var(--fg-dim);
  max-width: 700px;
  font-size: 1.03rem;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(150deg, rgba(15, 20, 35, 0.94), rgba(9, 12, 22, 0.98));
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 12px;
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 204, 133, 0.45);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.42), 0 0 26px rgba(201, 168, 76, 0.09);
}

.product-image {
  width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.16);
}

.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1rem 1.1rem;
}

.product-name {
  margin-bottom: 0.6rem;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #f2dd9a;
  text-transform: uppercase;
}

.product-description {
  color: #b8b09a;
  line-height: 1.6;
  font-size: 0.98rem;
  margin-bottom: 1rem;
  flex: 1;
}

.product-cta {
  align-self: flex-start;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.09);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  padding: 0.58rem 1.05rem;
  transition: all 0.24s ease;
}

.product-cta:hover,
.product-cta:focus {
  background: rgba(232, 204, 133, 0.17);
  border-color: rgba(232, 204, 133, 0.6);
  color: #fff3cc;
}

@media (max-width: 991.98px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .products {
    margin-top: 2.4em;
    padding: 1rem;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .product-description {
    font-size: 0.93rem;
  }
}

.help-section {
  margin-top: 2.3em;
  margin-bottom: 1em;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 204, 133, 0.12), transparent 44%),
    radial-gradient(circle at 95% 100%, rgba(201, 153, 58, 0.11), transparent 42%),
    linear-gradient(168deg, rgba(8, 12, 22, 0.97) 0%, rgba(6, 9, 18, 0.99) 100%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.help-inner {
  padding: clamp(1.1rem, 2.2vw, 2rem);
}

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

.help-kicker {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.98rem, 2.1vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4e3a8;
  margin-bottom: 0.95rem;
}

.help-copy {
  color: #c7c0ab;
  line-height: 1.75;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.help-list {
  list-style: none;
  margin: 0 0 0.95rem;
  padding: 0;
}

.help-list li {
  position: relative;
  color: #ddd5bc;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1.15rem;
  margin-bottom: 0.38rem;
}

.help-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.03rem;
  color: rgba(232, 204, 133, 0.9);
  font-size: 0.68rem;
}

.help-list a {
  color: #f0d88a;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 204, 133, 0.38);
}

.help-list a:hover,
.help-list a:focus {
  color: #fff1c4;
  border-bottom-color: rgba(255, 237, 181, 0.8);
}

.help-label {
  color: #f5e5ad;
  font-weight: 600;
  margin-right: 0.35rem;
}

.help-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.45rem auto;
  color: rgba(232, 204, 133, 0.82);
}

.help-divider::before,
.help-divider::after {
  content: '';
  display: block;
  width: min(33vw, 280px);
  border-top: 1px solid rgba(201, 168, 76, 0.26);
}

.help-divider span {
  font-size: 0.82rem;
}

.help-checklist li {
  margin-bottom: 0.48rem;
}

@media (max-width: 575.98px) {
  .help-kicker {
    letter-spacing: 0.08em;
  }

  .help-copy {
    font-size: 0.95rem;
  }

  .help-list li {
    font-size: 0.93rem;
    padding-left: 1rem;
  }
}


/* UPsell page */

.drop-cap {
  font-size: 4.5em;
  float: left;
  line-height: 0.1;
  margin-right: 2px;
  font-family: serif;
}