/* Custom Styles */
        body {
            background-color: #0B0B15;
            color: white;
            overflow: hidden;
            height: 100vh;
            perspective: 1000px;
        }

        .stars-container {
            position: fixed;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            z-index: -1;
            pointer-events: none;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0.8;
            animation: twinkle var(--duration) ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.2; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            transform-style: preserve-3d;
            will-change: transform;
        }

        .input-glass{
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.22);
            transition: all .25s ease;
        }

        .input-glass::placeholder{
            color: rgba(255,255,255,0.55);
        }

        .input-glass:focus{
            outline: none;
            border-color: rgba(212,175,55,0.85);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 0 0 4px rgba(212,175,55,0.14), inset 0 0 0 1px rgba(0,0,0,0.16);
        }

        .text-gold-gradient {
            background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 4s linear infinite;
        }

        @keyframes shine {
            to { background-position: 200% center; }
        }

        select option { background-color: #0B0B15; color: #D4AF37; }
        ::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.5; cursor: pointer; }
        
        .scrollable-content {
            overflow-y: auto;
            max-height: 85vh;
            scrollbar-width: none;
        }
        .scrollable-content::-webkit-scrollbar { display: none; }

        /* Zodiac Wheel Background on Landing */
        .zodiac-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            opacity: 0.05;
            animation: rotateWheel 60s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

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

/* =========================================================
   Landing page upgrades (keeps the original visual language)
   ========================================================= */

html { scroll-behavior: smooth; }

/* Allow scrolling on the Home page (other pages stay "card-like") */
body[data-page="landing"] {
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
}

/* Sticky header blur */
.nav-blur {
  background: linear-gradient(to bottom, rgba(11, 11, 21, 0.75), rgba(11, 11, 21, 0.0));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Custom cursor (desktop only) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(243, 229, 171, 0.95);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (pointer: fine) {
  body[data-page="landing"] { cursor: none; }
  body[data-page="landing"] a,
  body[data-page="landing"] button { cursor: none; }
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* Decorative floating orbs */
.nebula-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 9999px;
  filter: blur(18px);
  opacity: 0.18;
  background: radial-gradient(circle at 30% 30%, rgba(243, 229, 171, 0.7), rgba(212, 175, 55, 0.0) 60%),
              radial-gradient(circle at 70% 70%, rgba(26, 16, 60, 0.95), rgba(11, 11, 21, 0.0) 65%);
  animation: floaty 10s ease-in-out infinite;
}

.orb-1 { left: -180px; top: 20vh; animation-duration: 12s; }
.orb-2 { right: -220px; top: 10vh; width: 620px; height: 620px; animation-duration: 14s; }
.orb-3 { left: 20vw; bottom: -260px; width: 680px; height: 680px; animation-duration: 16s; opacity: 0.14; }

@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.03); }
}

/* Reveal helper (JS animates, but this keeps first paint clean) */
.reveal {
  will-change: transform, opacity;
}

/* Anchor offset for fixed header */
#hero, #about, #process, #cta { scroll-margin-top: 90px; }

/* Cursor: revert to normal (custom cursor disabled) */
body[data-page="landing"] { cursor: auto !important; }
body[data-page="landing"] a,
body[data-page="landing"] button { cursor: pointer !important; }
.cursor-dot, .cursor-ring { display: none !important; }

#download-report-btn{
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}
#download-report-btn i{
  color: #000000 !important;
}

.form-card-bright{
  background: rgba(26,16,60,0.62);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.60);
}
