/* ═══════════════════════════════════════════════════════════════════
   AstroKamya™ · AWARD ENHANCEMENT LAYER
   "Best Web Design of the Year" — Complete Visual Overhaul

   Strategy: Every pixel matters. Every interaction is choreographed.
   No generic. No mediocre. Only cinematic excellence.
   ═══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   CSS CUSTOM PROPERTIES — ENHANCEMENT
   ══════════════════════════════════════ */
:root {
  /* Enhanced easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Enhanced colors */
  --gold-vivid: #FFC107;
  --gold-warm: #FF9F0A;
  --violet-electric: #A855F7;
  --rose-vivid: #F43F5E;
  --teal-electric: #06B6D4;

  /* Richer glow tokens */
  --glow-gold-strong: 0 0 20px rgba(255,184,0,0.35), 0 0 60px rgba(255,184,0,0.12), 0 0 100px rgba(255,184,0,0.05);
  --glow-violet-strong: 0 0 20px rgba(124,58,237,0.35), 0 0 60px rgba(124,58,237,0.12);
  --glow-rose-strong: 0 0 20px rgba(232,54,124,0.35), 0 0 60px rgba(232,54,124,0.12);

  /* Scroll progress bar */
  --scroll-progress: 0%;
}

/* ══════════════════════════════════════
   GLOBAL REFINEMENTS
   ══════════════════════════════════════ */

/* Smooth rendering */
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Premium text selection */
::selection {
  background: rgba(124, 58, 237, 0.4);
  color: #ffffff;
}

/* Scrollbar styling removed as per user request to drop colorful scrollbar */

/* ══════════════════════════════════════
   SCROLL PROGRESS — DISABLED GLOBALLY
   ══════════════════════════════════════ */
.scroll-progress {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* ══════════════════════════════════════
   URGENCY BANNER — REFINED PREMIUM
   ══════════════════════════════════════ */
#urgency-banner {
  background: linear-gradient(92deg, #5B21B6 0%, #7C3AED 30%, #E8367C 65%, #FFB800 100%);
  background-size: 200% 200%;
  animation: bannerPremium 5s ease-in-out infinite;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@keyframes bannerPremium {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ub-inner {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  gap: 14px;
}
.ub-timer {
  background: rgba(0,0,0,0.28);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.1);
}
.ub-cta {
  padding: 4px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.25s ease;
  border: 1px solid rgba(255,255,255,0.2);
}
.ub-cta:hover { background: rgba(255,255,255,0.28); }

/* ══════════════════════════════════════
   HERO SECTION — MAXIMALIST CINEMATIC
   ══════════════════════════════════════ */

/* Background ambient glow enhancement */
#hero::before {
  background: radial-gradient(ellipse at 28% 40%, rgba(124,58,237,0.1) 0%, rgba(255,184,0,0.04) 40%, transparent 70%);
  width: 75%;
  height: 80%;
}

/* Hero pill — elevated */
.hero-pill {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.22);
  padding: 7px 18px;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-pill:hover {
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 0 20px rgba(124,58,237,0.08);
}
.hero-pill strong {
  font-weight: 700;
  background: linear-gradient(135deg, #FFB800, #FFCB45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pill-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  box-shadow: 0 0 10px rgba(34,197,94,0.6), 0 0 20px rgba(34,197,94,0.2);
}
@keyframes pillPulseEnhanced {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(34,197,94,0.6); }
  50% { opacity: 0.7; transform: scale(1.5); box-shadow: 0 0 16px rgba(34,197,94,0.2); }
}
.pill-dot { animation: pillPulseEnhanced 2s ease-in-out infinite; }

/* Hero headline — bolder, more cinematic */
.hero-headline {
  font-size: clamp(46px, 6.2vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hh-line-1 {
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.82em;
  letter-spacing: -0.01em;
}
.hh-line-2 {
  color: var(--text-1);
  font-weight: 800;
}
.hh-accent {
  background: linear-gradient(135deg, #FFB800 0%, #FFCB45 25%, #FF9F0A 55%, #FFB800 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroAccentShimmer 4s ease-in-out infinite;
  position: relative;
}
@keyframes heroAccentShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero description — more readable */
.hero-desc {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(184, 176, 212, 0.9);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-desc-bold {
  color: var(--text-1);
  font-weight: 700;
  font-size: 1.05em;
}
.hero-desc-sub {
  color: var(--text-3);
  font-size: 0.93em;
}

/* Hero personalization pill */
.hero-personal {
  background: rgba(255,184,0,0.05);
  border: 1px solid rgba(255,184,0,0.14);
  border-radius: 16px;
  padding: 11px 20px;
}
.hp-icon {
  color: var(--gold);
  font-size: 14px;
  animation: hpStarRotate 3s ease-in-out infinite;
}
@keyframes hpStarRotate {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.7; }
  50% { transform: rotate(20deg) scale(1.2); opacity: 1; }
}
.hp-text {
  font-size: 13.5px;
  font-style: italic;
  color: rgba(184, 176, 212, 0.85);
}

/* Primary CTA button — magnetic */
.btn-primary-gold {
  padding: 16px 36px;
  font-size: 15.5px;
  border-radius: 14px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(255,184,0,0.3),
    0 8px 50px rgba(255,184,0,0.15),
    0 0 80px rgba(255,184,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.12);
}
.btn-primary-gold:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow:
    0 6px 30px rgba(255,184,0,0.4),
    0 16px 60px rgba(255,184,0,0.25),
    0 0 120px rgba(255,184,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary-gold:active {
  transform: scale(0.98) translateY(0px);
  transition-duration: 0.08s;
}

/* Ghost button — refined */
.btn-ghost-hero {
  padding: 15px 30px;
  font-size: 15px;
  border: 1px solid rgba(240,234,255,0.18);
  border-radius: 14px;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn-ghost-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-ghost-hero:hover::before { opacity: 1; }
.btn-ghost-hero:hover {
  border-color: rgba(255,184,0,0.3);
  color: var(--text-1);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Hero trust bar — refined */
.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 20px;
  background: rgba(240,234,255,0.03);
  border: 1px solid rgba(240,234,255,0.07);
  border-radius: 16px;
  font-size: 13px;
  color: var(--text-3);
  animation: hlReveal 0.9s cubic-bezier(0.16,1,0.3,1) 1.6s both;
  opacity: 0;
}
.htb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  font-size: 12.5px;
  white-space: nowrap;
}
.htb-item:first-child { padding-left: 0; }
.htb-item:last-child { padding-right: 0; }
.htb-item strong { color: var(--text-1); font-weight: 700; }
.htb-divider {
  width: 1px;
  height: 14px;
  background: rgba(240,234,255,0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTION DIVIDERS — AWARD-WINNING
   ══════════════════════════════════════ */
.section-divider {
  position: relative;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  overflow: hidden;
}
.divider-gold-line .divider-line {
  flex: 1;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.25), rgba(255,184,0,0.08), transparent);
}
.divider-gold-line .divider-line:last-child {
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.08), rgba(255,184,0,0.25), transparent);
}
.divider-star {
  font-size: 10px;
  color: var(--gold);
  opacity: 0.6;
  padding: 0 20px;
  letter-spacing: 4px;
  animation: dividerStar 4s ease-in-out infinite;
}
@keyframes dividerStar {
  0%, 100% { opacity: 0.4; transform: rotate(0deg); }
  50% { opacity: 0.8; transform: rotate(180deg); }
}

/* ══════════════════════════════════════
   SECTION SYSTEM — ENHANCED
   ══════════════════════════════════════ */
section {
  padding: 96px 0;
}

/* Section labels — more dramatic */
.sec-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sec-label::before,
.sec-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.5;
}
.sec-label::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Section headings */
h2 {
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  font-weight: 800;
}
h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #FFB800 0%, #FFCB45 40%, #FF9F0A 70%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   TRUST SECTION — ENHANCED PLANETS
   ══════════════════════════════════════ */
.trust-section {
  padding: 48px 0;
}

.trust-heading-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.planet-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-3);
  text-align: center;
  line-height: 1.4;
  transition: color 0.3s;
}
.planet-col:hover .planet-label {
  color: var(--text-2);
}

/* ══════════════════════════════════════
   INFOGRAPHIC PANEL — ELEVATED
   ══════════════════════════════════════ */
.infographic-panel {
  background: rgba(17,11,46,0.6);
  border: 1px solid rgba(255,184,0,0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 36px 32px;
  transition: border-color 0.4s;
}
.infographic-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #7C3AED, #E8367C 45%, #FFB800);
  opacity: 0.7;
}
.infographic-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,184,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.infographic-panel:hover {
  border-color: rgba(255,184,0,0.2);
}

/* Step content cards — elevated */
.ig-content {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(240,234,255,0.03);
  border: 1px solid rgba(240,234,255,0.06);
  transition: all 0.4s var(--ease-out-expo);
  margin-bottom: 10px;
}
.ig-step:hover .ig-content {
  border-color: rgba(255,184,0,0.18);
  background: rgba(255,184,0,0.03);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.ig-content h4 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ig-content p {
  font-size: 13px;
  color: rgba(138, 126, 168, 0.8);
  line-height: 1.6;
}

/* Input card — elevated */
.input-card {
  background: rgba(17,11,46,0.75);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(240,234,255,0.03) inset;
}
.input-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.5), transparent);
}
.input-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.06), transparent 70%);
  pointer-events: none;
}

/* Form fields */
.fld label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.fld input {
  padding: 14px 18px;
  background: rgba(10,6,24,0.8);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 14px;
  color: var(--text-1);
  font-size: 14.5px;
  outline: none;
  transition: all 0.3s var(--ease-out-expo);
}
.fld input:focus {
  border-color: rgba(255,184,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.08), 0 4px 16px rgba(0,0,0,0.15);
  background: rgba(10,6,24,0.95);
}
.fld input::placeholder { color: rgba(110, 98, 138, 0.7); }

/* ══════════════════════════════════════
   CONCERN PANELS — ENHANCED
   ══════════════════════════════════════ */
.concern-panels-section {
  padding: 96px 0;
  position: relative;
}
.cp-panels {
  border-radius: 28px;
  overflow: hidden;
  gap: 3px;
}
.cp-panel {
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.12, 1);
}
.cp-panel.open { flex: 5; }

.cp-panel[data-c="l"] {
  background: linear-gradient(180deg, rgba(232,54,124,0.15) 0%, rgba(17,11,46,0.88) 50%, rgba(14,5,18,0.97) 100%);
}
.cp-panel[data-c="c"] {
  background: linear-gradient(180deg, rgba(255,184,0,0.14) 0%, rgba(17,11,46,0.88) 50%, rgba(14,12,5,0.97) 100%);
}
.cp-panel[data-c="w"] {
  background: linear-gradient(180deg, rgba(6,182,212,0.14) 0%, rgba(17,11,46,0.88) 50%, rgba(5,14,18,0.97) 100%);
}
.cp-panel[data-c="m"] {
  background: linear-gradient(180deg, rgba(124,58,237,0.15) 0%, rgba(17,11,46,0.88) 50%, rgba(10,5,28,0.97) 100%);
}

.cp-eq {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

/* ══════════════════════════════════════
   TESTIMONIALS — AWARD-WINNING
   ══════════════════════════════════════ */
#testimonials {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.2), transparent);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -8px;
}

.t-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(15,10,36,0.82) !important;
  border: 1px solid rgba(124,58,237,0.12);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
}
.t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.25), transparent);
  transition: opacity 0.4s;
  opacity: 0;
}
.t-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(255,184,0,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
.t-card:hover {
  border-color: rgba(255,184,0,0.22);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 40px rgba(255,184,0,0.04);
}
.t-card:hover::before { opacity: 1; }
.t-card:hover::after { opacity: 1; transform: translate(10%, 10%); }

/* Quote styling */
.t-card p {
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text-2);
  margin: 16px 0 24px;
  font-style: italic;
  position: relative;
}
.t-card p::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 48px;
  line-height: 1;
  color: rgba(255,184,0,0.12);
  font-family: var(--font-serif);
  font-style: normal;
}
.t-card p strong {
  color: var(--text-1);
  font-style: normal;
  font-weight: 700;
}

/* Stars */
.tc-stars {
  font-size: 13px;
  color: #FFB800;
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,184,0,0.5);
}

/* Testimonial footer */
.tc-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(240,234,255,0.06);
}
.tc-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,184,0,0.25);
  box-shadow: 0 0 12px rgba(255,184,0,0.1);
  transition: border-color 0.3s;
}
.t-card:hover .tc-photo {
  border-color: rgba(255,184,0,0.5);
  box-shadow: 0 0 20px rgba(255,184,0,0.2);
}
.tc-foot div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
  font-family: var(--font);
}
.tc-foot div span {
  font-size: 12px;
  color: var(--text-3);
  display: block;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   PRICING — DRAMATIC REDESIGN
   ══════════════════════════════════════ */
#pricing { padding: 96px 0; }

.price-subtitle {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 440px;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}

/* Price card base
   visual-polish.css overrides with !important — we beat it here */
.pc {
  position: relative;
  padding: 32px 28px;
  background: rgba(15,10,36,0.85) !important;
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.pc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.pc:hover::before { opacity: 1; }
.pc::after {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 120%; height: 80%;
  background: radial-gradient(circle, rgba(124,58,237,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.pc:hover {
  border-color: rgba(124,58,237,0.22);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.25);
}

.pc h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
}

.pc-price {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pc-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0;
}

.pc-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

.pc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pc ul li {
  font-size: 13.5px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pc ul li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='rgba(124,58,237,0.4)' stroke-width='1'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%237C3AED' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.8;
}

/* Popular card — dramatic highlight */
.pc-pop {
  background: linear-gradient(145deg, rgba(124,58,237,0.12) 0%, rgba(17,11,46,0.8) 50%, rgba(10,6,24,0.9) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.08), 0 16px 48px rgba(124,58,237,0.12);
  transform: translateY(-8px);
}
.pc-pop::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
}
.pc-pop::after {
  background: radial-gradient(circle at 50% 0%, rgba(124,58,237,0.12) 0%, transparent 60%);
  opacity: 1;
}
.pc-pop:hover {
  transform: translateY(-14px);
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.12), 0 24px 64px rgba(124,58,237,0.18);
}
.pc-pop ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' fill='rgba(124,58,237,0.15)' stroke='%237C3AED' stroke-width='1'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%239B6DFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 1;
}

/* Popular badge */
.pop-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #7C3AED, #9B6DFF);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
  width: fit-content;
}

/* Impulse tag */
.pc-impulse-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  /* Use an opaque background to hide the card border, layered with the amber tint */
  background: linear-gradient(0deg, rgba(255,184,0,0.15), rgba(255,184,0,0.15)), #0A0818;
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 16px;
  font-size: 10.5px;
  font-weight: 700;
  color: #FFB800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

/* Value badge */
.pc-value-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #22C55E;
  letter-spacing: 0.04em;
  width: fit-content;
}

/* Tier icons */
.pc-tier-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.pc:hover .pc-tier-icon {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(124,58,237,0.14);
}
.pc-pop .pc-tier-icon {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.3);
}

/* CTA buttons in pricing */
.btn-outline {
  padding: 13px 24px;
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
  transition: all 0.35s var(--ease-out-expo);
  display: block;
}
.btn-outline:hover {
  border-color: rgba(255,184,0,0.35);
  color: var(--text-1);
  background: rgba(255,184,0,0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-glow {
  padding: 15px 24px;
  font-size: 14.5px;
  border-radius: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pc-guarantee {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

/* Comparison note */
.pc-comparison {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid rgba(240,234,255,0.05);
}

/* ══════════════════════════════════════
   LIFETIME CARD — SHOWSTOPPER ENHANCED
   ══════════════════════════════════════ */
.lifetime-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,184,0,0.22);
  box-shadow:
    0 0 0 1px rgba(255,184,0,0.06),
    0 32px 80px rgba(0,0,0,0.4),
    0 0 60px rgba(255,184,0,0.06);
}

/* ══════════════════════════════════════
   HOW IT WORKS — PROCESS REFINEMENT
   ══════════════════════════════════════ */
.step-item {
  background: rgba(17,11,46,0.5);
  border: 1px solid rgba(240,234,255,0.06);
  border-radius: 20px;
  transition: all 0.45s var(--ease-out-expo);
  padding: 32px 24px;
}
.step-item::before {
  height: 2px;
  background: linear-gradient(90deg, #FFB800, #E8367C);
  opacity: 0.4;
  border-radius: 24px 24px 0 0;
}
.step-item:hover::before { opacity: 0.9; }
.step-item:hover {
  border-color: rgba(255,184,0,0.18);
  background: rgba(17,11,46,0.7);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 40px rgba(255,184,0,0.04);
}

.si-num {
  width: 48px;
  height: 48px;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(255,184,0,0.3), 0 0 40px rgba(255,184,0,0.1);
  transition: transform 0.4s var(--ease-spring);
}
.step-item:hover .si-num {
  transform: scale(1.1) rotate(-5deg);
}

.si-content h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.si-content p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   INTENT CARDS — ENHANCED
   ══════════════════════════════════════ */
.intent-card {
  padding: 30px 34px;
  border-radius: 22px;
  background: rgba(17,11,46,0.45);
  border: 1px solid rgba(240,234,255,0.07);
  transition: all 0.5s var(--ease-out-expo);
}
.intent-card:hover {
  transform: translateY(-10px);
  background: rgba(17,11,46,0.65);
}
.ic-svg {
  width: 60px;
  height: 60px;
}
.ic-label {
  font-size: 16px;
  letter-spacing: -0.015em;
}
.ic-hint {
  font-size: 12.5px;
  color: var(--text-3);
}

/* ══════════════════════════════════════
   FAQ SECTION — ELEVATED ACCORDION
   ══════════════════════════════════════ */
/* The FAQ has its own inline styles; enhance what we can */

/* ══════════════════════════════════════
   FOOTER — AWARD-WINNING REDESIGN
   visual-polish.css sets footer to #0A0818 !important
   We override with a richer treatment
   ══════════════════════════════════════ */
footer,
footer.footer,
#footer {
  position: relative !important;
  background: linear-gradient(180deg, #09061A 0%, #060415 40%, #040210 100%) !important;
  border-top: 1px solid rgba(124,58,237,0.12) !important;
  padding: 80px 0 0 !important;
  overflow: hidden !important;
}

/* Footer cosmic ambient */
footer::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), rgba(255,184,0,0.2), rgba(232,54,124,0.15), transparent);
}

/* Footer grid */
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: start;
}

/* Brand column */
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.foot-brand .logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.foot-brand .logo-astro { color: #F0EAFF; }
.foot-brand .logo-kamya { color: #FFB800; }
.foot-brand .tm {
  font-size: 10px;
  color: var(--text-3);
  vertical-align: super;
  font-weight: 400;
}

.foot-mandala {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px rgba(124,58,237,0.4));
  animation: footMandalaFloat 6s ease-in-out infinite;
  transition: filter 0.3s;
}
.foot-mandala:hover {
  filter: drop-shadow(0 0 16px rgba(255,184,0,0.5));
}
@keyframes footMandalaFloat {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

.foot-tagline {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 320px;
}
.foot-brand > p:not(.foot-tagline) {
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Social links */
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(240,234,255,0.04);
  border: 1px solid rgba(240,234,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all 0.3s var(--ease-out-expo);
}
.foot-social a svg {
  width: 16px;
  height: 16px;
}
.foot-social a:hover {
  background: rgba(255,184,0,0.1);
  border-color: rgba(255,184,0,0.3);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,184,0,0.1);
}

/* Footer link columns */
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.foot-cols > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-cols h4 {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.foot-cols h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.foot-cols a {
  font-size: 13.5px;
  color: var(--text-3);
  transition: all 0.25s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.foot-cols a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  transition: width 0.3s var(--ease-out-expo);
}
.foot-cols a:hover {
  color: var(--text-2);
  transform: translateX(4px);
}
.foot-cols a:hover::before {
  width: 100%;
}

/* Footer trust bar */
.foot-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(240,234,255,0.05);
  border-bottom: 1px solid rgba(240,234,255,0.05);
  flex-wrap: wrap;
}
.foot-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.foot-trust-item:hover { opacity: 1; }

/* Footer bottom */
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
}
.foot-bottom p {
  font-size: 12.5px;
  color: var(--text-3);
  opacity: 0.6;
}
.foot-bottom p a:hover { opacity: 1; color: var(--text-2); }

/* ══════════════════════════════════════
   GLOBAL REVEAL ANIMATIONS — ENHANCED
   ══════════════════════════════════════ */
.r {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
}
.r.v {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered children reveal */
.test-grid .t-card:nth-child(1) { transition-delay: 0.0s; }
.test-grid .t-card:nth-child(2) { transition-delay: 0.1s; }
.test-grid .t-card:nth-child(3) { transition-delay: 0.2s; }

.price-row .pc:nth-child(1) { transition-delay: 0.0s; }
.price-row .pc:nth-child(2) { transition-delay: 0.08s; }
.price-row .pc:nth-child(3) { transition-delay: 0.16s; }
.price-row .pc:nth-child(4) { transition-delay: 0.24s; }

/* ══════════════════════════════════════
   MACRO ANIMATIONS — PAGE ATMOSPHERE
   ══════════════════════════════════════ */

/* Parallax helper class (JS controlled via transform) */
.parallax-slow { will-change: transform; }
.parallax-mid { will-change: transform; }
.parallax-fast { will-change: transform; }

/* Re-enable mesh orbs with a refined palette — visual-polish.css hides them
   but as the last-loaded CSS we can safely restore with controlled intensities */
.mesh-orb,
.orb-1, .orb-2, .orb-3, .orb-4, .orb-5 {
  display: block !important;
}

/* Refined orbs — subtler than original, no pink haze */
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(255,184,0,0.06) !important;
  filter: blur(100px) !important;
  top: -10%; left: -8%;
  animation: orbFloat1Enhanced 28s ease-in-out infinite;
}
.orb-2 {
  width: 550px; height: 550px;
  background: rgba(124,58,237,0.09) !important;
  filter: blur(120px) !important;
  top: 10%; right: -8%;
  animation: orbFloat2Enhanced 34s ease-in-out infinite;
}
.orb-3 {
  width: 420px; height: 420px;
  background: rgba(6,182,212,0.055) !important;
  filter: blur(100px) !important;
  bottom: 15%; left: 30%;
  animation: orbFloat3Enhanced 24s ease-in-out infinite;
}
.orb-4 {
  width: 380px; height: 380px;
  background: rgba(124,58,237,0.05) !important;
  filter: blur(110px) !important;
  top: 50%; left: -5%;
  animation: orbFloat2Enhanced 30s ease-in-out infinite reverse;
}
.orb-5 {
  width: 460px; height: 460px;
  background: rgba(155,109,255,0.04) !important;
  filter: blur(130px) !important;
  bottom: -8%; right: 5%;
  animation: orbFloat1Enhanced 38s ease-in-out infinite reverse;
}

@keyframes orbFloat1Enhanced {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(70px, -45px) scale(1.1); }
  50% { transform: translate(-25px, 55px) scale(0.94); }
  75% { transform: translate(45px, 18px) scale(1.05); }
}
@keyframes orbFloat2Enhanced {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-55px, 35px) scale(0.9); }
  66% { transform: translate(80px, -25px) scale(1.15); }
}
@keyframes orbFloat3Enhanced {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, -60px) scale(1.1); }
}

/* Noise texture overlay for premium depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════
   CTA SECTION — CONVERSION BOOSTER
   ══════════════════════════════════════ */

/* Enhanced CTA button globally */
.cta-btn {
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 14px;
  letter-spacing: -0.005em;
  box-shadow:
    0 4px 20px rgba(255,184,0,0.25),
    0 8px 40px rgba(255,184,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.cta-btn:hover {
  transform: scale(1.05) translateY(-2px);
}
.cta-btn:active {
  transform: scale(0.98);
  transition-duration: 0.08s;
}

/* ══════════════════════════════════════
   DEMO SECTION — CHAT PREVIEW ENHANCED
   ══════════════════════════════════════ */
.ai-preview-wrap {
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.ai-preview {
  border-radius: 22px;
  background: rgba(10,6,24,0.95);
}
.aip-body {
  border-radius: 6px 18px 18px 18px;
  font-size: 13.5px;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   FORM TRUST CHIPS — ENHANCED
   ══════════════════════════════════════ */
.form-trust {
  gap: 12px;
  font-size: 12.5px;
  color: rgba(110, 98, 138, 0.7);
}

/* Discover items — enhanced */
.discover-item {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(240,234,255,0.05);
  transition: all 0.35s var(--ease-out-expo);
}
.discover-item:hover {
  border-color: rgba(255,184,0,0.18);
  background: rgba(255,184,0,0.03);
  transform: translateX(6px);
}

/* ══════════════════════════════════════
   GLASS CARD SYSTEM — CRISP (NO BLUR)
   ══════════════════════════════════════ */
.glass-card {
  background: rgba(17,11,46,0.65);
  border: 1px solid rgba(124,58,237,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(240,234,255,0.04);
  transition: all 0.4s var(--ease-out-expo);
}
.glass-card:hover {
  border-color: rgba(124,58,237,0.24);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(240,234,255,0.06);
  transform: translateY(-4px);
}

/* ══════════════════════════════════════
   RESULT CARDS — PREDICTION PREVIEW
   ══════════════════════════════════════ */
.res-item {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(124,58,237,0.1);
  transition: all 0.35s var(--ease-out-expo);
}
.res-item:hover {
  border-color: rgba(124,58,237,0.2);
  transform: translateX(4px);
}
.res-item.gold {
  border-color: rgba(255,184,0,0.2);
  background: linear-gradient(135deg, rgba(255,184,0,0.06), rgba(17,11,46,0.6));
}

/* ══════════════════════════════════════
   LOADER — CINEMATIC RINGS
   ══════════════════════════════════════ */
.loader-ring {
  position: relative;
}
.lr1 { border-top-color: var(--gold); box-shadow: 0 0 20px rgba(255,184,0,0.2); }
.lr2 { inset: 10px; border-right-color: var(--rose); box-shadow: 0 0 16px rgba(232,54,124,0.2); }
.lr3 { inset: 20px; border-bottom-color: var(--violet); box-shadow: 0 0 12px rgba(124,58,237,0.2); }

/* ══════════════════════════════════════
   RESPONSIVE OVERRIDES
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .price-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pc-pop {
    transform: none;
    grid-column: span 1;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .foot-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero-headline { font-size: clamp(36px, 10vw, 58px); }
  .test-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pc-pop { transform: none; }
  .foot-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .foot-trust {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .hero-headline { font-size: clamp(32px, 11vw, 48px); }
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .foot-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ══════════════════════════════════════
   UTILITY: PREMIUM INTERACTION HINTS
   ══════════════════════════════════════ */

/* Focus visible — accessible premium */
:focus-visible {
  outline: 2px solid rgba(255,184,0,0.5);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Image enhancement */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* ══════════════════════════════════════
   KEYFRAME LIBRARY — SHARED ATOMS
   ══════════════════════════════════════ */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,184,0,0.2); }
  50% { box-shadow: 0 0 40px rgba(255,184,0,0.4), 0 0 80px rgba(255,184,0,0.1); }
}

/* ══════════════════════════════════════
   BONUS: SECTION HEADINGS — ENHANCED
   ══════════════════════════════════════ */

/* Gradient heading enhancement */
#testimonials h2,
#pricing h2,
#intent h2,
#birth-input h2,
#how-it-works h2 {
  letter-spacing: -0.035em;
  line-height: 1.06;
}

/* Highlight em tags in headings */
#testimonials h2 em,
#pricing h2 em,
#intent h2 em {
  background: linear-gradient(135deg, #FFB800 0%, #FFCB45 30%, #FF9F0A 65%, #FFB800 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroAccentShimmer 5s ease-in-out infinite;
}

/* ══════════════════════════════════════
   BONUS: ORBITAL HOW-IT-WORKS NODES
   ══════════════════════════════════════ */
.orbital-node {
  background: rgba(13, 10, 26, 0.9) !important;
  border: 1px solid rgba(124,58,237,0.18);
  transition: all 0.4s var(--ease-out-expo);
}
.orbital-node:hover {
  border-color: rgba(255,184,0,0.3);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255,184,0,0.12);
}

/* ══════════════════════════════════════
   BONUS: LIVE ACTIVITY FEED
   ══════════════════════════════════════ */
.la-item {
  border-radius: 12px;
  background: rgba(240,234,255,0.025);
  border: 1px solid rgba(240,234,255,0.04);
  transition: all 0.3s;
}
.la-item:hover {
  background: rgba(255,184,0,0.04);
  border-color: rgba(255,184,0,0.1);
}

/* ══════════════════════════════════════
   BONUS: RESULT PREVIEW — ENHANCED
   ══════════════════════════════════════ */
.result-glyph {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(255,184,0,0.25);
}

/* ══════════════════════════════════════
   BONUS: SCANNING ANIMATION ELEMENTS
   ══════════════════════════════════════ */
.ig-scanner-fill {
  background: linear-gradient(90deg, #E8367C, #FFB800, #FFD700);
  height: 100%;
  border-radius: 4px;
}
.ig-conf-fill {
  background: linear-gradient(90deg, #7C3AED, #9B6DFF, #06B6D4);
}

/* ══════════════════════════════════════
   BONUS: STEP ITEM NUMBERS — PREMIUM
   ══════════════════════════════════════ */
.si-num {
  background: linear-gradient(135deg, #E5A600, #FFB800, #FFCB45);
  box-shadow: 0 4px 20px rgba(255,184,0,0.35), 0 0 40px rgba(255,184,0,0.08);
}

/* ══════════════════════════════════════
   BONUS: MINI TAG CHIPS — ENHANCED
   ══════════════════════════════════════ */
.ig-mini {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(255,184,0,0.07);
  border: 1px solid rgba(255,184,0,0.14);
  color: rgba(184,176,212,0.8);
  letter-spacing: 0.03em;
  transition: all 0.25s;
}
.ig-mini:hover {
  background: rgba(255,184,0,0.12);
  color: var(--text-2);
}

/* ══════════════════════════════════════
   BONUS: DESTINY TEASER
   ══════════════════════════════════════ */
.destiny-teaser {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,140,0,0.07), rgba(232,54,124,0.04));
  border: 1px solid rgba(255,140,0,0.16);
}
.dt-text {
  font-size: 13.5px;
  color: rgba(255,179,71,0.9);
  font-weight: 500;
}

/* ══════════════════════════════════════
   BONUS: DISCOVER ITEMS BADGE
   ══════════════════════════════════════ */
.di-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.di-gold { background: rgba(255,184,0,0.12); color: #FFB800; border: 1px solid rgba(255,184,0,0.18); }
.di-rose { background: rgba(232,54,124,0.12); color: #E8367C; border: 1px solid rgba(232,54,124,0.18); }
.di-teal { background: rgba(6,182,212,0.12); color: #06B6D4; border: 1px solid rgba(6,182,212,0.18); }

/* ══════════════════════════════════════
   BONUS: FORM NOTE TEXT
   ══════════════════════════════════════ */
.note {
  font-size: 12px;
  color: rgba(110, 98, 138, 0.65);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   BONUS: LOADING STEPS
   ══════════════════════════════════════ */
.ls {
  font-size: 13.5px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ls.done {
  color: #22C55E;
  font-weight: 500;
}
.ls.done::before {
  content: '✓';
  font-size: 12px;
  font-weight: 800;
  color: #22C55E;
}

/* ══════════════════════════════════════
   BONUS: LIFETIME CARD ENHANCED
   ══════════════════════════════════════ */
.lt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lt-badge-save {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(34,197,94,0.3);
  color: #22C55E;
  box-shadow: 0 0 20px rgba(34,197,94,0.1);
}

.lt-current-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.lt-rupee {
  font-size: 28px;
  font-weight: 600;
  color: #FFB800;
  margin-top: 8px;
}
.lt-amount {
  font-family: var(--font);
  font-size: 72px;
  font-weight: 800;
  color: #FFB800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #E5A600, #FFB800, #FFCB45, #FFB800);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroAccentShimmer 4s ease-in-out infinite;
}

/* ══════════════════════════════════════
   BONUS: NAV ACTIVE STATE
   ══════════════════════════════════════ */
.nav-link.nav-active,
.nav-link-icon.nav-active {
  color: var(--text-1);
}
.nav-link.nav-active::after,
.nav-link-icon.nav-active::after {
  width: 60%;
}

/* ══════════════════════════════════════
   BONUS: MOBILE NAV DRAWER
   ══════════════════════════════════════ */
.mobile-nav-drawer {
  background: rgba(10,6,24,0.98) !important;
  border-left: 1px solid rgba(124,58,237,0.15);
}

/* ══════════════════════════════════════
   BONUS: URGENCY BANNER REFINEMENT
   ══════════════════════════════════════ */
#urgency-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

/* ══════════════════════════════════════
   BONUS: SPLASH SCREEN POLISH
   ══════════════════════════════════════ */
.splash-screen {
  background: linear-gradient(135deg, #06030F, #0D0A1A) !important;
}
.splash-text {
  font-family: var(--font);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
}
.splash-astro { color: #F0EAFF; }
.splash-kamya { color: #FFB800; }

/* ══════════════════════════════════════
   BONUS: OVERALL PAGE GLOW
   Ambient light from cosmic elements
   ══════════════════════════════════════ */
#hero .wrap {
  position: relative;
}
#hero .wrap::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 40%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════
   BONUS: BOTTOM SECTION GRADIENT
   Seamless page ending
   ══════════════════════════════════════ */
#pricing::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(6,3,15,0.5));
  pointer-events: none;
}

/* ══════════════════════════════════════
   BONUS: CONCERN PANEL ORACLE CARD
   ══════════════════════════════════════ */
.cp-oracle {
  background: rgba(14,10,30,0.92) !important;
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 24px;
}
.cp-oracle.vis {
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.06);
}

/* ══════════════════════════════════════
   BONUS: SCROLL REVEAL SPEED BOOST
   ══════════════════════════════════════ */
.r {
  transition-duration: 0.75s !important;
}

/* Fine-tune reveal for cards (they get their own delay) */
.t-card.r,
.pc.r,
.fb-card.r {
  transition-duration: 0.65s !important;
}

/* ══════════════════════════════════════
   FINAL: BODY ATMOSPHERE
   ══════════════════════════════════════ */

/* Subtle gradient body bg — richer than flat black */
html, body {
  background: #09061A !important;
}

/* Mesh bg — richer deep cosmic */
#mesh-bg {
  background: radial-gradient(
    ellipse at 60% 30%,
    #160E38 0%,
    #0E0826 22%,
    #080518 55%,
    #040210 100%
  ) !important;
}

/* ══════════════════════════════════════════════════════════════
   POLISH V2 — TARGETED PRECISION ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */

/* ── 1. PRICE BADGE FIX — overflow:hidden was clipping badges ── */
.pc {
  overflow: visible !important;
}
.price-row {
  padding-top: 24px !important;
}

/* CRITICAL: styles-v2.css .pc::after aurora had box-shadow that bleeds
   onto adjacent cards when overflow:visible is set. Reset ALL properties
   to keep ::after contained within card bounds. */
.pc::after {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: radial-gradient(circle at 50% -15%, rgba(124,58,237,0.05) 0%, transparent 55%) !important;
  filter: none !important;
  opacity: 1 !important;
  animation: none !important;
  box-shadow: none !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  transform: none !important;
}
/* Kill aurora hover glow — was causing amber bleed onto adjacent cards */
.pc:hover::after {
  opacity: 1 !important;
  filter: none !important;
  box-shadow: none !important;
}

/* ── 2. CTA BUTTONS — Width fix + Cosmic Pill Redesign ── */
/* display:flex (block-level) was causing full-width stretch */
.btn-glow:not(.full) {
  display: inline-flex !important;
  width: auto !important;
  padding: 15px 44px !important;
  border-radius: 100px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  /* Cosmic glass overlay inside the gold */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 6px 28px rgba(255,160,0,0.35),
    0 0 60px rgba(255,184,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.38),
    inset 0 -1px 0 rgba(200,120,0,0.25) !important;
  position: relative !important;
  overflow: hidden !important;
}
/* Macro shimmer sweep — wider, more visible */
.btn-glow:not(.full)::before {
  content: '' !important;
  position: absolute !important;
  top: -20% !important;
  left: -140% !important;
  width: 80% !important;
  height: 140% !important;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.32) 50%,
    rgba(255,255,255,0.08) 65%,
    transparent 100%
  ) !important;
  transform: skewX(-18deg) !important;
  animation: ctaSweepV2 4s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: 2 !important;
}
@keyframes ctaSweepV2 {
  0%   { left: -140%; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 200%; opacity: 0; }
}
/* Outer pulse ring — cosmic glow breath */
.btn-glow:not(.full)::after {
  content: '' !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: 100px !important;
  background: transparent !important;
  border: 1px solid rgba(255,184,0,0.45) !important;
  animation: ctaRingPulse 2.8s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
@keyframes ctaRingPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.12); }
}

.btn-glow.btn-xl:not(.full) {
  padding: 17px 52px !important;
  font-size: 16px !important;
}

/* ── 3. SCANNER CARDS — Gravitational Float + Enhanced Volumetric Haze ── */
.scs-wrapper {
  animation: scsGravityFloat 8s ease-in-out infinite !important;
  will-change: transform;
}
.scs-wrapper:nth-child(2n)  { animation-duration: 10s !important; animation-delay: -4s !important; }
.scs-wrapper:nth-child(3n)  { animation-duration: 12s !important; animation-delay: -7s !important; }
.scs-wrapper:nth-child(4n)  { animation-duration: 9.5s !important; animation-delay: -2s !important; }
.scs-wrapper:nth-child(5n)  { animation-duration: 11s !important; animation-delay: -5.5s !important; }

@keyframes scsGravityFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  20%  { transform: translateY(-6px) rotate(0.25deg); }
  45%  { transform: translateY(-10px) rotate(0.4deg); }
  65%  { transform: translateY(-4px) rotate(-0.15deg); }
  80%  { transform: translateY(5px) rotate(-0.3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Minimal particle drama — micro-dust shimmer on card surfaces */
.scs-normal::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle 1px at 18% 22%, rgba(255,255,255,0.5), transparent 1.5px),
    radial-gradient(circle 1px at 67% 14%, rgba(167,139,250,0.4), transparent 1.5px),
    radial-gradient(circle 1px at 44% 78%, rgba(255,184,0,0.35), transparent 1.5px),
    radial-gradient(circle 0.8px at 82% 55%, rgba(255,255,255,0.3), transparent 1.2px),
    radial-gradient(circle 0.8px at 33% 88%, rgba(167,139,250,0.25), transparent 1.2px) !important;
  animation: cardDust 5s ease-in-out infinite alternate !important;
  pointer-events: none !important;
  z-index: 15 !important;
  border-radius: 18px !important;
  opacity: 0.7 !important;
}
@keyframes cardDust {
  0%   { opacity: 0.3; transform: translate(0,0) scale(1); }
  50%  { opacity: 0.8; transform: translate(1px,-1px) scale(1.02); }
  100% { opacity: 0.4; transform: translate(-0.5px,0.5px) scale(0.99); }
}

/* Enhanced volumetric beam haze */
.scs-scanner-line::after {
  width: 260px !important;
  height: 96% !important;
  background: radial-gradient(
    ellipse at center,
    rgba(167,139,250,0.50) 0%,
    rgba(139,92,246,0.30) 22%,
    rgba(109,40,217,0.16) 45%,
    rgba(88,28,135,0.07) 65%,
    transparent 80%
  ) !important;
  filter: blur(22px) !important;
  mix-blend-mode: screen !important;
}

/* Outer atmospheric nebula — wide atmospheric diffusion */
.scs-scanner-line {
  box-shadow:
    0 0  14px rgba(255,255,255,1),
    0 0  36px rgba(255,255,255,0.9),
    0 0  72px rgba(167,139,250,1),
    0 0 140px rgba(139,92,246,0.98),
    0 0 280px rgba(124,58,237,0.75),
    0 0 480px rgba(109,40,217,0.55),
    0 0 800px rgba(88,28,135,0.30) !important;
  animation: scsBeamV2 1.6s infinite alternate ease-in-out !important;
}
@keyframes scsBeamV2 {
  0% {
    box-shadow:
      0 0  18px rgba(255,255,255,1),
      0 0  45px rgba(255,255,255,0.95),
      0 0  88px rgba(167,139,250,1),
      0 0 180px rgba(139,92,246,1),
      0 0 360px rgba(124,58,237,0.88),
      0 0 580px rgba(109,40,217,0.65),
      0 0 1000px rgba(88,28,135,0.40);
  }
  100% {
    box-shadow:
      0 0  12px rgba(255,255,255,0.95),
      0 0  30px rgba(255,255,255,0.85),
      0 0  60px rgba(167,139,250,0.95),
      0 0 120px rgba(139,92,246,0.90),
      0 0 240px rgba(124,58,237,0.65),
      0 0 400px rgba(109,40,217,0.45),
      0 0 700px rgba(88,28,135,0.22);
  }
}

/* ── 4. TERMINAL PILL — Macro Sparkling Cosmic Redesign ── */

/* Full pill shape */
.scs-terminal-inner {
  padding: 10px 22px !important;
  border-radius: 100px !important;
  min-width: 200px !important;
  background: linear-gradient(
    135deg,
    rgba(8, 5, 24, 0.94) 0%,
    rgba(20, 11, 46, 0.90) 60%,
    rgba(10, 6, 26, 0.94) 100%
  ) !important;
  border: 1px solid rgba(124, 58, 237, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.10),
    0 0 0 4px rgba(124,58,237,0.04),
    0 6px 28px rgba(0,0,0,0.55),
    0 0 40px rgba(124,58,237,0.14),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.25) !important;
  backdrop-filter: blur(28px) saturate(220%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(220%) !important;
  overflow: hidden !important;
}

/* Sweeping macro shimmer beam through the pill */
.scs-terminal-inner::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -250% !important;
  width: 150% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124,58,237,0.08) 25%,
    rgba(255,255,255,0.22) 46%,
    rgba(255,184,0,0.12) 54%,
    rgba(124,58,237,0.06) 72%,
    transparent 100%
  ) !important;
  animation: pillSweepV3 3.2s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: 3 !important;
}
@keyframes pillSweepV3 {
  0%   { left: -250%; opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 250%; opacity: 0; }
}

/* ⚡ Electric Macro Animation — plasma arc streaks (matches hero-final-polish.css) */
.scs-terminal-inner::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  border-radius: inherit !important;
  background:
    /* Primary cyan bolt */
    linear-gradient(92deg,
      transparent 0%, transparent 38%,
      rgba(6,182,212,0.0) 39%,
      rgba(6,182,212,0.7) 41%,
      rgba(103,232,249,0.9) 42%,
      rgba(255,255,255,1.0) 42.5%,
      rgba(103,232,249,0.9) 43%,
      rgba(6,182,212,0.7) 44%,
      rgba(6,182,212,0.0) 46%,
      transparent 47%, transparent 100%
    ),
    /* Secondary violet bolt */
    linear-gradient(88deg,
      transparent 0%, transparent 58%,
      rgba(139,92,246,0.0) 59%,
      rgba(139,92,246,0.6) 61%,
      rgba(196,181,253,0.8) 62%,
      rgba(255,255,255,0.9) 62.5%,
      rgba(196,181,253,0.8) 63%,
      rgba(139,92,246,0.6) 64%,
      rgba(139,92,246,0.0) 66%,
      transparent 67%, transparent 100%
    ),
    /* Tertiary white spark */
    linear-gradient(95deg,
      transparent 0%, transparent 72%,
      rgba(255,255,255,0.0) 73%,
      rgba(255,255,255,0.5) 74.5%,
      rgba(255,255,255,0.9) 75%,
      rgba(255,255,255,0.5) 75.5%,
      rgba(255,255,255,0.0) 77%,
      transparent 78%, transparent 100%
    ) !important;
  background-size: 400% 100%, 500% 100%, 600% 100% !important;
  animation: electricArcSweep 1.8s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: 3 !important;
  opacity: 0.65 !important;
  mix-blend-mode: screen !important;
}

/* Active state — gold signal burst */
#scs-status-terminal.active .scs-terminal-inner {
  border-color: rgba(255,184,0,0.55) !important;
  box-shadow:
    0 0 0 1px rgba(255,184,0,0.18),
    0 0 0 4px rgba(255,184,0,0.06),
    0 6px 32px rgba(0,0,0,0.55),
    0 0 50px rgba(255,184,0,0.18),
    0 0 100px rgba(255,184,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.10) !important;
  background: linear-gradient(
    135deg,
    rgba(14, 8, 32, 0.94) 0%,
    rgba(30, 16, 58, 0.90) 60%,
    rgba(14, 8, 32, 0.94) 100%
  ) !important;
}
/* ⚡ Active electric arcs — gold/amber bolts, faster */
#scs-status-terminal.active .scs-terminal-inner::after {
  background:
    /* Primary gold bolt */
    linear-gradient(91deg,
      transparent 0%, transparent 36%,
      rgba(255,184,0,0.0) 37%,
      rgba(255,184,0,0.8) 39.5%,
      rgba(255,220,100,1.0) 40.5%,
      rgba(255,255,255,1.0) 41%,
      rgba(255,220,100,1.0) 41.5%,
      rgba(255,184,0,0.8) 42.5%,
      rgba(255,184,0,0.0) 45%,
      transparent 46%, transparent 100%
    ),
    /* Secondary white-gold bolt */
    linear-gradient(87deg,
      transparent 0%, transparent 55%,
      rgba(255,240,180,0.0) 56%,
      rgba(255,240,180,0.7) 58%,
      rgba(255,255,255,1.0) 59%,
      rgba(255,240,180,0.7) 60%,
      rgba(255,240,180,0.0) 62%,
      transparent 63%, transparent 100%
    ),
    /* Tertiary amber micro-spark */
    linear-gradient(94deg,
      transparent 0%, transparent 70%,
      rgba(255,160,0,0.0) 71%,
      rgba(255,184,0,0.6) 73%,
      rgba(255,255,255,0.8) 73.5%,
      rgba(255,184,0,0.6) 74%,
      rgba(255,160,0,0.0) 76%,
      transparent 77%, transparent 100%
    ) !important;
  background-size: 350% 100%, 450% 100%, 550% 100% !important;
  opacity: 0.9 !important;
  animation: electricArcSweepActive 1.2s ease-in-out infinite !important;
  mix-blend-mode: screen !important;
}

/* Signal text — bolder, more atmospheric */
.scs-signal-text {
  font-size: 9px !important;
  letter-spacing: 0.20em !important;
  font-weight: 700 !important;
  color: rgba(167,139,250,0.75) !important;
  position: relative !important;
  z-index: 4 !important;
}
#scs-status-terminal.active .scs-signal-text {
  color: rgba(255,184,0,1.0) !important;
  text-shadow:
    0 0 8px rgba(255,184,0,0.5),
    0 0 22px rgba(255,184,0,0.20) !important;
  animation: signalFlicker 0.8s ease-in-out infinite alternate !important;
}
@keyframes signalFlicker {
  0%   { opacity: 0.85; }
  30%  { opacity: 1.00; }
  70%  { opacity: 0.92; }
  100% { opacity: 1.00; }
}

/* Progress bar — bolder in active state */
.scs-bar-wrap {
  position: relative !important;
  z-index: 4 !important;
}
.scs-bar-wrap .prc {
  font-size: 8px !important;
  font-weight: 700 !important;
  position: relative !important;
  z-index: 4 !important;
}
#scs-status-terminal.active .tk-bar {
  background: linear-gradient(90deg, rgba(255,160,0,0.75), rgba(255,220,80,0.85)) !important;
  box-shadow: 0 0 8px rgba(255,184,0,0.5) !important;
}

/* ── 5. FINAL POLISH TOUCHES ── */

/* Concern panel CTA — pin it at center */
#cp-cbtn {
  margin-left: auto;
  margin-right: auto;
}

/* CTA section — ensure btn is centered */
.big-cta + p + .btn-glow,
.cta-sub + .btn-glow,
.btn-glow.btn-xl {
  display: inline-flex !important;
}

/* Scroll-reveal: slightly faster for hero elements */
.hero-pill, .hero-headline, .hero-personal {
  transition-duration: 0.6s !important;
}

/* Pricing card — tighter badge spacing */
.pc-impulse-tag,
.pop-label {
  margin-bottom: 4px;
}

/* Hero trust bar — sharper */
.htb-item strong {
  color: rgba(255,230,150,0.95);
}

/* Section headings — tighter tracking */
h2 {
  letter-spacing: -0.025em;
}

/* Concern cards — subtle depth glow on hover */
.intent-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 30px rgba(124,58,237,0.06) !important;
}

/* FAQ items — slightly more elevated */
.faq2-item {
  transition: box-shadow 0.3s ease !important;
}
.faq2-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
}

