/* =============================================================
   MUHURTA — PRODUCTION STYLESHEET
   Editorial, dual-mode design with refined typography & motion
   Color contrast meets WCAG AA across all foreground/background
   ============================================================= */

:root {
  /* Obsidian (hero, pricing, result) */
  --ink:        #0B0815;
  --ink-2:      #15101F;
  --ink-3:      #1F1729;
  --wine:       #2A0F23;
  --burgundy:   #6B1E3D;

  /* Parchment (problem, methodology, faq) */
  --parchment:   #F5EBD3;
  --parchment-2: #EEDFC0;
  --parchment-3: #E5D2A8;
  --earth:       #2F2616;
  --earth-2:     #4A3D24;
  --earth-dim:   #6B5B43;

  /* Accent */
  --saffron:      #E89B4C;
  --saffron-deep: #C97525;
  --gold:         #B8923E;
  --gold-bright:  #E8C574;
  --amber:        #F2C674;

  /* Status */
  --good:    #5DAA68;
  --good-2:  #4A8754;
  --bad:     #B0464A;
  --bad-2:   #8E373B;

  /* Type */
  --display:    'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --sans:       'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:       'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
  --devanagari: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;

  /* Layout */
  --max-w: 1200px;
  --rad-lg: 22px;
  --rad-md: 14px;
  --rad-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   RESET & BASE
   ============================================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--parchment);
  line-height: 1.5;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11', 'tnum';
  min-height: 100vh;
}

/* Subtle film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

input {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
}

input::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(15deg);
  cursor: pointer;
  opacity: 0.6;
}

::selection {
  background: var(--saffron);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================
   ATMOSPHERE
   ============================================================= */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 5%, rgba(232, 155, 76, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 90% 95%, rgba(107, 30, 61, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(184, 146, 62, 0.04) 0%, transparent 75%);
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 4px currentColor;
  animation: twinkle 5s infinite ease-in-out;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50% { opacity: 0.85; transform: scale(1.1); }
}

/* =============================================================
   LAYOUT
   ============================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}
.section-no-top { padding-top: 0; }

.section-light {
  background: var(--parchment);
  color: var(--earth);
}
.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* =============================================================
   TYPOGRAPHY UTILITIES
   ============================================================= */
.devanagari { font-family: var(--devanagari); }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-light .eyebrow { color: var(--burgundy); }

code {
  font-family: var(--mono);
  font-size: 0.86em;
  padding: 0.08em 0.4em;
  background: rgba(107, 30, 61, 0.1);
  color: var(--burgundy);
  border-radius: 4px;
  font-weight: 500;
}

/* =============================================================
   PANCHANG STRIP
   ============================================================= */
.panchang-strip {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245, 235, 211, 0.08);
  font-size: 0.78rem;
  color: rgba(245, 235, 211, 0.85);
  position: relative;
  z-index: 5;
}
.panchang-strip .container {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.panchang-strip .container::-webkit-scrollbar { display: none; }

.strip-title { color: var(--gold); font-size: 0.92rem; }
.strip-item { display: inline-flex; align-items: baseline; gap: 0.4rem; }
.strip-item strong {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.strip-item.live { color: var(--good); }
.strip-item.live strong { color: var(--good); }
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--good);
  border-radius: 50%;
  margin-right: 0.35rem;
  box-shadow: 0 0 6px var(--good);
  animation: pulse-soft 2s infinite;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* =============================================================
   SITE HEADER
   ============================================================= */
.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(245, 235, 211, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--parchment);
  text-decoration: none;
}
.brand-text { line-height: 1; }
.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber) 0%, var(--saffron) 45%, var(--burgundy) 100%);
  box-shadow:
    0 0 20px rgba(232, 155, 76, 0.4),
    inset 0 -6px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.brand-mark::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
  transform: translate(-50%, -50%);
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: 0.9rem;
  color: rgba(245, 235, 211, 0.7);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--amber); }

.nav-cta {
  padding: 0.6rem 1.25rem;
  background: var(--parchment);
  color: var(--ink);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  display: inline-block;
}
.nav-cta:hover {
  background: var(--amber);
  transform: translateY(-1px);
}
.result-view .nav-cta {
  background: transparent;
  border: 1px solid rgba(245, 235, 211, 0.2);
  color: var(--parchment);
}
.result-view .nav-cta:hover {
  background: rgba(232, 155, 76, 0.1);
  border-color: var(--saffron);
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(232, 155, 76, 0.32);
  background: rgba(232, 155, 76, 0.06);
  border-radius: 100px;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(4px);
}
.pulse-dot {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--saffron);
  animation: pulse-soft 2s infinite;
}
.hero-eyebrow .devanagari { color: var(--gold); font-size: 0.95rem; }
.hero-eyebrow .sep { opacity: 0.4; color: var(--gold); }
.hero-eyebrow .txt {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4.5rem; }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--parchment);
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--amber) 20%, var(--saffron) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.hero-lead {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1.45;
  color: rgba(245, 235, 211, 0.9);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-lead em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 235, 211, 0.1);
}
@media (min-width: 540px) {
  .hero-trust { flex-direction: row; flex-wrap: wrap; gap: 1.5rem 2rem; }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  flex: 1 1 200px;
  min-width: 0;
}
.trust-item .ico {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-item strong {
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.3;
}
.trust-item span {
  font-size: 0.78rem;
  color: rgba(245, 235, 211, 0.7);
  line-height: 1.4;
}

/* =============================================================
   CALCULATOR CARD
   ============================================================= */
.calc-wrap {
  position: relative;
}
.calc-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--rad-lg);
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 30%, var(--burgundy) 70%, var(--saffron) 100%);
  background-size: 300% 300%;
  opacity: 0.55;
  filter: blur(20px);
  z-index: -1;
  animation: shimmer 14s infinite linear;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.calc {
  background: linear-gradient(170deg, var(--ink-2) 0%, var(--ink-3) 100%);
  border: 1px solid rgba(232, 155, 76, 0.18);
  border-radius: var(--rad-lg);
  padding: 2rem;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(245, 235, 211, 0.06);
}

.calc-header {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(245, 235, 211, 0.08);
  margin-bottom: 1.4rem;
}
.calc-header .eyebrow { margin-bottom: 0.4rem; }
.calc-header h3 {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--parchment);
  letter-spacing: -0.01em;
}
.calc-header h3 em { font-style: italic; color: var(--amber); }

.field { margin-bottom: 1.1rem; }
.field-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.field-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(11, 8, 21, 0.55);
  border: 1px solid rgba(245, 235, 211, 0.12);
  border-radius: var(--rad-sm);
  font-size: 1rem;
  color: var(--parchment);
  transition: all 0.25s var(--ease);
  color-scheme: dark;
}
.field-input:focus {
  outline: none;
  border-color: var(--saffron);
  background: rgba(232, 155, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(232, 155, 76, 0.12);
}
.field-input::placeholder { color: rgba(245, 235, 211, 0.32); }
.field-input:invalid { border-color: rgba(176, 70, 74, 0.4); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 50%, var(--amber) 100%);
  color: var(--ink);
  border: none;
  border-radius: var(--rad-md);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease);
  box-shadow: 0 0 0 0 rgba(232, 155, 76, 0);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--saffron) 50%, var(--amber) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(232, 155, 76, 0.5);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-cta {
  display: inline-flex;
  width: auto;
  padding: 1.2rem 2.5rem;
  border-radius: 100px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(245, 235, 211, 0.2);
  border-radius: var(--rad-md);
  color: var(--parchment);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover {
  background: rgba(232, 155, 76, 0.08);
  border-color: var(--saffron);
  color: var(--amber);
}

.calc-privacy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(245, 235, 211, 0.45);
  text-align: center;
  line-height: 1.5;
}
.lock {
  vertical-align: -1px;
  margin-right: 0.3rem;
  color: var(--gold);
}

.calc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(245, 235, 211, 0.08);
  font-size: 0.78rem;
  color: rgba(245, 235, 211, 0.55);
}
.calc-live { display: inline-flex; align-items: center; }
.calc-counter { font-family: var(--mono); }
.calc-counter span { color: var(--amber); font-weight: 500; }

/* =============================================================
   SECTION HEAD
   ============================================================= */
.section-head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.section-head h2 em { font-style: italic; color: var(--saffron); }
.section-light .section-head h2 em { color: var(--burgundy); }

.section-head p {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto;
}

/* =============================================================
   PROBLEM CARDS
   ============================================================= */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.problem-card {
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(107, 30, 61, 0.12);
  border-radius: var(--rad-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 155, 76, 0.4);
}
.problem-card .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--saffron-deep);
  opacity: 0.8;
  margin-bottom: 0.9rem;
}
.problem-card h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
  color: var(--earth);
}
.problem-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--earth-2);
}
.problem-card p em {
  font-style: italic;
  color: var(--burgundy);
  font-family: var(--display);
  font-size: 1.05em;
}

/* =============================================================
   HOW STEPS
   ============================================================= */
.how-steps {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
.how-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.how-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 3.25rem;
  font-weight: 400;
  color: var(--burgundy);
  opacity: 0.45;
  line-height: 0.9;
}
.how-body h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 1.95rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}
.how-body h3 em { font-style: italic; color: var(--burgundy); }
.how-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--earth-2);
  margin-bottom: 1rem;
}
.how-body p em {
  font-style: italic;
  font-family: var(--display);
  color: var(--burgundy);
  font-size: 1.05em;
}
.how-body .detail {
  margin-top: 1rem;
  padding: 1.1rem 1.3rem;
  background: rgba(107, 30, 61, 0.06);
  border-left: 2px solid var(--burgundy);
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--earth-2);
}
.how-body .detail strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

/* =============================================================
   PRICING
   ============================================================= */
.section-pricing {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: rgba(245, 235, 211, 0.03);
  border: 1px solid rgba(245, 235, 211, 0.1);
  border-radius: var(--rad-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 155, 76, 0.3);
}

.pricing-popular {
  background: linear-gradient(170deg, var(--ink-2) 0%, var(--wine) 200%);
  border: 1px solid rgba(232, 155, 76, 0.35);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  transform: scale(1);
}
@media (min-width: 880px) {
  .pricing-popular { transform: scale(1.04); }
  .pricing-popular:hover { transform: scale(1.04) translateY(-4px); }
}

.popular-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--saffron), var(--amber));
  color: var(--ink);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tier-name {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.tier-price .amount {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--parchment);
}
.tier-price .period {
  font-size: 0.95rem;
  color: rgba(245, 235, 211, 0.6);
}
.tier-desc {
  font-size: 0.95rem;
  color: rgba(245, 235, 211, 0.75);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(245, 235, 211, 0.08);
}

.tier-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.93rem;
  color: var(--parchment);
  line-height: 1.45;
}
.tier-features li.muted { color: rgba(245, 235, 211, 0.4); }
.tier-features li strong {
  color: var(--amber);
  font-weight: 500;
}
.check, .cross {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  font-weight: 600;
  margin-top: 0.05em;
}
.check { color: var(--good); }
.cross { color: rgba(245, 235, 211, 0.3); }

.tier-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: center;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.tier-btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--amber) 100%);
  color: var(--ink);
  border: none;
}
.tier-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(232, 155, 76, 0.5);
}
.tier-btn-secondary {
  background: var(--parchment);
  color: var(--ink);
  border: none;
}
.tier-btn-secondary:hover {
  background: var(--amber);
  transform: translateY(-2px);
}
.tier-btn-ghost {
  background: transparent;
  border: 1px solid rgba(245, 235, 211, 0.2);
  color: var(--parchment);
}
.tier-btn-ghost:hover {
  background: rgba(232, 155, 76, 0.08);
  border-color: var(--saffron);
  color: var(--amber);
}

.tier-fine {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(245, 235, 211, 0.5);
}

/* Promise band */
.promise {
  max-width: 720px;
  margin: 4rem auto 0;
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(232, 155, 76, 0.06);
  border: 1px solid rgba(232, 155, 76, 0.25);
  border-radius: var(--rad-lg);
  flex-wrap: wrap;
}
.promise-seal { flex-shrink: 0; }
.promise-seal svg { animation: rotate 60s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.promise-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--parchment);
}
.promise-text strong {
  color: var(--amber);
  font-weight: 500;
  margin-right: 0.4em;
}
.promise-text em {
  font-style: italic;
  font-family: var(--display);
  color: var(--gold-bright);
}
.promise-text .muted {
  color: rgba(245, 235, 211, 0.55);
  font-size: 0.88em;
}

/* =============================================================
   METHODOLOGY
   ============================================================= */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .method-grid { grid-template-columns: repeat(3, 1fr); }
}
.method-item {
  padding: 2rem 1.75rem;
  border-top: 1px solid rgba(58, 46, 30, 0.18);
  border-right: 1px solid rgba(58, 46, 30, 0.18);
}
@media (min-width: 720px) {
  .method-item:nth-child(2n) { border-right: none; }
}
@media (min-width: 1024px) {
  .method-item:nth-child(2n) { border-right: 1px solid rgba(58, 46, 30, 0.18); }
  .method-item:nth-child(3n) { border-right: none; }
}

.method-num {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  margin-bottom: 0.85rem;
}
.method-item h4 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  line-height: 1.2;
  color: var(--earth);
}
.method-item h4 em { font-style: italic; color: var(--burgundy); }
.method-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--earth-2);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(107, 30, 61, 0.12);
  border-radius: var(--rad-lg);
}
.testimonial .stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--earth);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.testimonial footer {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(107, 30, 61, 0.12);
  font-size: 0.86rem;
  color: var(--earth-dim);
}
.testimonial footer strong {
  display: block;
  color: var(--earth);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid rgba(58, 46, 30, 0.15);
  padding: 1.4rem 0;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(58, 46, 30, 0.15);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--earth);
  letter-spacing: -0.01em;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--burgundy);
  transition: transform 0.3s var(--ease);
  line-height: 1.2;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding-top: 1rem;
  color: var(--earth-2);
  line-height: 1.7;
  font-size: 0.98rem;
}
.faq-body p { margin-bottom: 0.7rem; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body em {
  font-style: italic;
  font-family: var(--display);
  color: var(--burgundy);
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.section-cta {
  padding-top: 6rem;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.cta-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-wrap h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.cta-wrap h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--amber), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-wrap p {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: rgba(245, 235, 211, 0.85);
  margin-bottom: 2.75rem;
  line-height: 1.5;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(245, 235, 211, 0.08);
  font-size: 0.86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.brand-footer {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.footer-tag {
  color: rgba(245, 235, 211, 0.6);
  font-size: 0.86rem;
  line-height: 1.55;
  max-width: 280px;
}
.site-footer h5 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a {
  color: rgba(245, 235, 211, 0.7);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.site-footer a:hover { color: var(--amber); }

.footer-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 235, 211, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(245, 235, 211, 0.5);
  font-size: 0.8rem;
}
.footer-bar .devanagari {
  color: var(--gold);
  font-style: italic;
}

/* =============================================================
   LOADING VIEW
   ============================================================= */
.loading-view {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.loading-view.active { display: flex; animation: fadeIn 0.4s var(--ease); }

.chakra { margin-bottom: 2.5rem; }
.chakra .ring {
  transform-origin: center;
}
.chakra .r1 { animation: spin 8s linear infinite; }
.chakra .r2 { animation: spin 6s linear infinite reverse; }
.chakra .r3 { animation: spin 4s linear infinite; }
.chakra .petals { animation: spin 12s linear infinite; transform-origin: center; transform-box: fill-box; }
.chakra .core {
  filter: drop-shadow(0 0 16px var(--saffron));
  animation: pulse-core 1.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-core {
  0%, 100% { opacity: 0.85; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

.loading-text {
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--parchment);
  text-align: center;
  min-height: 2.5rem;
  transition: opacity 0.3s var(--ease);
}
.loading-sub {
  margin-top: 0.75rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(245, 235, 211, 0.5);
  text-align: center;
}

/* =============================================================
   RESULT VIEW
   ============================================================= */
.result-view {
  display: none;
  min-height: 100vh;
}
.result-view.active { display: block; animation: fadeIn 0.5s var(--ease); }

.result-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(245, 235, 211, 0.08);
}

.result-hero {
  padding: 3rem 0 4rem;
}

.result-greeting {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.result-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--parchment);
}
.result-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--amber), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.25rem 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(245, 235, 211, 0.08);
  border-bottom: 1px solid rgba(245, 235, 211, 0.08);
  font-family: var(--mono);
  font-size: 0.86rem;
}
.result-meta > span {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: rgba(245, 235, 211, 0.7);
}
.meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.result-meta strong {
  color: var(--amber);
  font-weight: 500;
}

.chart-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(245, 235, 211, 0.04);
  border: 1px solid rgba(245, 235, 211, 0.1);
  border-radius: var(--rad-md);
  margin-bottom: 2.5rem;
}
.chart-strip .cs-l {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 235, 211, 0.55);
  margin-bottom: 0.4rem;
}
.chart-strip .cs-v {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--amber);
}

.insight-hero {
  position: relative;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(232, 155, 76, 0.1) 0%, rgba(107, 30, 61, 0.18) 100%);
  border: 1px solid rgba(232, 155, 76, 0.3);
  border-radius: var(--rad-lg);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.insight-hero::before {
  content: '✦';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
}
.insight-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}
.insight-text {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  line-height: 1.45;
  color: var(--parchment);
}
.insight-text em {
  font-style: italic;
  color: var(--amber);
}

.windows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .windows { grid-template-columns: 1fr 1fr; }
}
.window {
  padding: 1.75rem;
  border: 1px solid;
  border-radius: var(--rad-md);
}
.window-good {
  background: linear-gradient(135deg, rgba(93, 170, 104, 0.08), rgba(93, 170, 104, 0.03));
  border-color: rgba(93, 170, 104, 0.32);
}
.window-bad {
  background: linear-gradient(135deg, rgba(176, 70, 74, 0.08), rgba(176, 70, 74, 0.03));
  border-color: rgba(176, 70, 74, 0.32);
}
.window-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.window-good .window-tag {
  background: rgba(93, 170, 104, 0.18);
  color: #9FCFA8;
}
.window-bad .window-tag {
  background: rgba(176, 70, 74, 0.18);
  color: #DF9CA0;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-good { background: var(--good); box-shadow: 0 0 6px var(--good); }
.dot-bad { background: var(--bad); box-shadow: 0 0 6px var(--bad); }
.window-time {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.55rem;
  color: var(--parchment);
}
.window-name {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
}
.window-note {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 235, 211, 0.85);
}
.window-note em {
  font-style: italic;
  color: var(--amber);
}

.panchang-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  border: 1px solid rgba(245, 235, 211, 0.1);
  border-radius: var(--rad-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.panchang-full > div {
  padding: 1.2rem;
  border-right: 1px solid rgba(245, 235, 211, 0.08);
  border-bottom: 1px solid rgba(245, 235, 211, 0.08);
}
.panchang-full .pf-l {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 235, 211, 0.5);
  margin-bottom: 0.35rem;
}
.panchang-full .pf-v {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--parchment);
  line-height: 1.3;
}

/* Result paywall */
.result-paywall {
  margin-top: 3rem;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(170deg, rgba(107, 30, 61, 0.18) 0%, rgba(42, 15, 35, 0.4) 100%);
  border: 1px solid rgba(232, 155, 76, 0.25);
  border-radius: var(--rad-lg);
  position: relative;
  overflow: hidden;
}
.result-paywall::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(232, 155, 76, 0.13) 0%, transparent 60%);
  pointer-events: none;
}
.rp-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.rp-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(232, 155, 76, 0.12);
  border: 1px solid rgba(232, 155, 76, 0.35);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.rp-content h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.rp-content h3 em { font-style: italic; color: var(--amber); }
.rp-content > p {
  color: rgba(245, 235, 211, 0.8);
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.rp-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 480px) {
  .rp-buttons { flex-direction: row; justify-content: center; }
  .rp-buttons .btn-primary { width: auto; max-width: 320px; }
}
.rp-fine {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(245, 235, 211, 0.55);
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.action-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(245, 235, 211, 0.05);
  border: 1px solid rgba(245, 235, 211, 0.15);
  border-radius: 100px;
  color: var(--parchment);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.action-btn:hover {
  background: rgba(232, 155, 76, 0.1);
  border-color: var(--saffron);
  color: var(--amber);
}

/* =============================================================
   TOAST
   ============================================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 1rem 1.5rem;
  background: var(--ink-2);
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--amber);
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease-bounce), opacity 0.3s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
[data-anim="rise"] {
  opacity: 0;
  transform: translateY(28px);
}
[data-anim="rise"].in {
  animation: rise 0.9s var(--ease) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============================================================
   RESPONSIVE TWEAKS
   ============================================================= */
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .calc { padding: 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .promise { padding: 1.5rem; }
  .how-step { gap: 1rem; }
  .how-num { font-size: 2.5rem; }
  .insight-hero { padding: 2rem 1.5rem; }
  .panchang-full > div { padding: 1rem 0.85rem; }
}
