/* ===========================================================
   KAYLA TALK — Cosmic Glow Design System v2
   Palette: Void Indigo / Nebula Magenta / Aurora Violet /
            Celestial Gold / Starlight / Ember Rose
=========================================================== */

:root{
  --ink-void:        #0A0818;
  --ink-nebula:       #1D1140;
  --ink-nebula-2:    #33195E;
  --twilight:        #7B3FC4;
  --twilight-soft:   #A15FE0;
  --magenta:         #C13FAE;
  --magenta-soft:    #E166CC;
  --gold:            #D4AF37;
  --gold-soft:       #F0CD6E;
  --starlight:       #F7ECDD;
  --starlight-dim:   #C9BFD6;
  --ember:           #C97064;
  --ember-soft:      #E08F7E;
  --line:            rgba(212,175,55,0.2);
  --glass:           rgba(245,230,211,0.045);

  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 3px;
  --maxw: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden; max-width:100%;}
body{
  margin:0;
  background:var(--ink-void);
  color:var(--starlight);
  font-family:var(--sans);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100%;
}

/* === Starfield + glowing aurora backdrop === */
.starfield{
  position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden;
  background:
    radial-gradient(ellipse 65% 45% at 18% -5%, rgba(193,63,174,0.32), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 8%, rgba(123,63,196,0.38), transparent 60%),
    radial-gradient(ellipse 60% 45% at 92% 96%, rgba(201,112,100,0.18), transparent 60%),
    radial-gradient(ellipse 55% 40% at 4% 90%, rgba(212,175,55,0.10), transparent 60%),
    var(--ink-void);
}
.starfield .aurora{
  position:absolute; inset:-10%; opacity:.55; filter:blur(60px);
  background:
    radial-gradient(circle at 20% 20%, rgba(193,63,174,0.45), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(123,63,196,0.4), transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(212,175,55,0.22), transparent 45%);
  animation:auroraShift 26s ease-in-out infinite alternate;
}
@keyframes auroraShift{
  0%{ transform:translate3d(0,0,0) scale(1); }
  50%{ transform:translate3d(-2%,2%,0) scale(1.06); }
  100%{ transform:translate3d(2%,-1%,0) scale(1.02); }
}
.starfield::before, .starfield::after{
  content:""; position:absolute; inset:0;
  background-repeat:repeat; opacity:.6;
}
.starfield::before{
  background-image:
    radial-gradient(1.5px 1.5px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 90px 80px, #fff, transparent),
    radial-gradient(1.2px 1.2px at 150px 160px, var(--gold-soft), transparent),
    radial-gradient(1px 1px at 230px 60px, #fff, transparent),
    radial-gradient(1.4px 1.4px at 280px 200px, #fff, transparent),
    radial-gradient(1px 1px at 340px 120px, var(--starlight-dim), transparent);
  background-size:380px 380px;
}
.starfield::after{
  background-image:
    radial-gradient(1px 1px at 60px 110px, #fff, transparent),
    radial-gradient(1.3px 1.3px at 180px 40px, #fff, transparent),
    radial-gradient(1px 1px at 260px 180px, var(--magenta-soft), transparent),
    radial-gradient(1.5px 1.5px at 320px 90px, #fff, transparent);
  background-size:420px 420px;
  animation:drift 200s linear infinite;
}
@keyframes drift{ from{transform:translateY(0);} to{transform:translateY(-420px);} }
@media (prefers-reduced-motion: reduce){ .starfield::after, .starfield .aurora{animation:none;} }

main, header, footer{ position:relative; z-index:1; }

/* === Typography === */
h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:600;
  color:var(--starlight);
  margin:0 0 .4em;
  letter-spacing:.01em;
}
h1{ font-size:clamp(2.6rem,5.5vw,4.4rem); line-height:1.05; font-weight:600; }
h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); }
h3{ font-size:clamp(1.3rem,2vw,1.6rem); }
p{ color:var(--starlight-dim); margin:0 0 1em; }
a{ color:var(--gold-soft); text-decoration:none; }
.eyebrow{
  font-family:var(--sans); text-transform:uppercase; letter-spacing:.22em;
  font-size:.72rem; color:var(--gold); font-weight:600; margin-bottom:.9em; display:block;
}
.text-glow{ text-shadow:0 0 22px rgba(212,175,55,0.35), 0 0 46px rgba(193,63,174,0.18); }

/* === Layout helpers === */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
section{ padding:96px 0; position:relative; }
.divider{
  width:60px; height:1px; background:linear-gradient(90deg,var(--gold),transparent);
  margin:18px 0 28px;
}
.center{ text-align:center; }
.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns:1fr 1fr; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

/* === Header / Nav === */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(10,8,24,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:var(--maxw); margin:0 auto; padding:16px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--serif); font-size:1.5rem; color:var(--starlight); }
.brand .glyph{
  width:34px; height:34px; border-radius:50%;
  display:inline-block; flex:none; overflow:hidden;
  box-shadow:0 0 14px rgba(212,175,55,0.4);
  border:1px solid rgba(212,175,55,0.4);
}
.brand .glyph img{ width:100%; height:100%; object-fit:cover; display:block; }
.brand strong{ color:var(--gold-soft); font-weight:600; }
nav.links{ display:flex; gap:34px; align-items:center; }
nav.links a{
  color:var(--starlight-dim); font-family:var(--sans); font-size:.92rem; letter-spacing:.02em;
  position:relative; padding:4px 0;
}
nav.links a:hover, nav.links a.active{ color:var(--gold-soft); }
nav.links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px; background:var(--gold);
}
.nav-cta{ display:flex; gap:10px; align-items:center; }
.nav-toggle{ display:none; background:none; border:none; color:var(--starlight); font-size:1.6rem; cursor:pointer; }

@media (max-width:880px){
  nav.links{
    position:fixed; top:68px; left:0; right:0; bottom:0;
    background:var(--ink-void); flex-direction:column; justify-content:flex-start;
    padding:40px 28px; gap:26px; transform:translateX(100%); transition:transform .35s ease;
    z-index:49;
  }
  nav.links.open{ transform:translateX(0); }
  .nav-toggle{ display:block; }
  .nav-cta .btn-text{ display:none; }
}

@media (max-width:520px){
  .nav-inner{ padding:14px 16px; gap:8px; }
  .brand{ font-size:1.25rem; gap:6px; }
  .brand .glyph{ width:28px; height:28px; }
  .nav-cta{ gap:6px; }
  .nav-cta .btn{ padding:9px 12px; font-size:.82rem; white-space:nowrap; }
  #ktNavAuth{ padding:9px 10px !important; font-size:.8rem; }
  .nav-toggle{ font-size:1.4rem; padding:0 2px; }
}

@media (max-width:400px){
  /* At the narrowest widths, truncate the Login/user label instead of hiding it
     entirely, so a signed-in user can still see their name is showing. */
  #ktNavAuth{
    padding:9px 8px !important; max-width:78px; font-size:.78rem;
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  }
  .nav-cta .btn-primary{ padding:9px 10px; font-size:.78rem; }
}

/* === Buttons === */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--sans); font-weight:600; font-size:.95rem; letter-spacing:.02em;
  padding:14px 30px; border-radius:var(--radius); cursor:pointer; border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, #B68F2C);
  color:var(--ink-void);
  box-shadow:0 6px 22px rgba(212,175,55,0.32), 0 0 34px rgba(212,175,55,0.14);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 10px 30px rgba(212,175,55,0.48), 0 0 50px rgba(212,175,55,0.22); }
.btn-ghost{
  background:transparent; color:var(--starlight); border-color:rgba(245,230,211,0.3);
}
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-soft); box-shadow:0 0 24px rgba(212,175,55,0.15); }
.btn-whatsapp{
  background:#1F2C28; color:#6CE3A6; border:1px solid rgba(108,227,166,0.35);
}
.btn-whatsapp:hover{ background:#223A30; box-shadow:0 6px 20px rgba(108,227,166,0.22); }
.btn-call{
  background:linear-gradient(135deg, #2A1A4A, #33195E); color:var(--starlight);
  border:1px solid rgba(161,95,224,0.5);
}
.btn-call:hover{ box-shadow:0 6px 22px rgba(123,63,196,0.35); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; flex:none; }

/* Floating action buttons */
.float-stack{
  position:fixed; right:22px; bottom:22px; z-index:60;
  display:flex; flex-direction:column; gap:14px; align-items:flex-end;
}
.float-btn{
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 26px rgba(0,0,0,0.45); cursor:pointer; border:none;
}
.float-whatsapp{
  background:#1F2C28; border:1px solid rgba(108,227,166,0.45);
  animation:pulse-wa 3.2s ease-in-out infinite;
}
.float-whatsapp svg{ width:28px; height:28px; }
@keyframes pulse-wa{
  0%,100%{ box-shadow:0 8px 26px rgba(0,0,0,0.45),0 0 0 0 rgba(108,227,166,0.35);}
  50%{ box-shadow:0 8px 26px rgba(0,0,0,0.45),0 0 0 10px rgba(108,227,166,0);}
}
.float-astro{
  background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--magenta) 65%, var(--twilight) 100%);
  border:1px solid rgba(212,175,55,0.5);
  animation:pulse-astro 3.6s ease-in-out infinite;
  font-size:1.5rem;
}
@keyframes pulse-astro{
  0%,100%{ box-shadow:0 8px 26px rgba(0,0,0,0.45),0 0 0 0 rgba(193,63,174,0.4);}
  50%{ box-shadow:0 8px 26px rgba(0,0,0,0.45),0 0 0 12px rgba(193,63,174,0);}
}
@media (prefers-reduced-motion: reduce){ .float-whatsapp, .float-astro{ animation:none; } }

/* === Cards === */
.card{
  background:linear-gradient(180deg, var(--glass), transparent);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 28px;
  position:relative;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.card:hover{ border-color:rgba(212,175,55,0.45); box-shadow:0 14px 40px rgba(123,63,196,0.18); transform:translateY(-3px); }

/* Glow-rim card variant for premium / featured content */
.card-glow{
  border-color:rgba(212,175,55,0.4);
  box-shadow:0 0 0 1px rgba(212,175,55,0.12) inset, 0 20px 60px rgba(123,63,196,0.22);
}

/* === Footer === */
footer.site{
  border-top:1px solid var(--line);
  padding:64px 0 28px;
  background:linear-gradient(180deg, transparent, rgba(51,25,94,0.28));
}
footer.site .wrap{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
footer.site h4{ font-family:var(--sans); text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; color:var(--gold); margin-bottom:16px;}
footer.site a{ color:var(--starlight-dim); display:block; margin-bottom:10px; font-size:.92rem; }
footer.site a:hover{ color:var(--gold-soft); }
.legal-bar{
  max-width:var(--maxw); margin:40px auto 0; padding:24px 28px 0; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:.8rem; color:var(--starlight-dim);
}
@media (max-width:860px){ footer.site .wrap{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ footer.site .wrap{ grid-template-columns:1fr; } }

/* === Orbit signature element === */
.orbit-wrap{
  position:relative; width:420px; height:420px; max-width:90vw; margin:0 auto;
  overflow:hidden; /* decorative rings can exceed 90vw box; clip so they never cause page-level horizontal scroll */
}
.orbit-ring{
  position:absolute; border:1px solid rgba(212,175,55,0.22); border-radius:50%;
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.orbit-core{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:96px; height:96px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--magenta) 55%, var(--twilight) 100%);
  box-shadow:0 0 60px rgba(212,175,55,0.5), 0 0 130px rgba(193,63,174,0.3);
  animation:coreGlow 4s ease-in-out infinite;
}
@keyframes coreGlow{
  0%,100%{ box-shadow:0 0 60px rgba(212,175,55,0.5), 0 0 130px rgba(193,63,174,0.3); }
  50%{ box-shadow:0 0 80px rgba(212,175,55,0.7), 0 0 160px rgba(193,63,174,0.45); }
}
.orbit-planet{
  position:absolute; width:14px; height:14px; border-radius:50%;
  background:var(--starlight); top:50%; left:50%;
  box-shadow:0 0 10px rgba(245,230,211,0.7);
}
.orbit-spin{ animation:spin linear infinite; }
@keyframes spin{ from{ transform:translate(-50%,-50%) rotate(0deg);} to{ transform:translate(-50%,-50%) rotate(360deg);} }
@media (prefers-reduced-motion: reduce){ .orbit-spin, .orbit-core{ animation:none; } }

/* === Forms === */
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.82rem; color:var(--starlight-dim); margin-bottom:7px; letter-spacing:.02em;}
.field input, .field select, .field textarea{
  width:100%; padding:13px 14px; background:rgba(245,230,211,0.05);
  border:1px solid rgba(245,230,211,0.18); border-radius:var(--radius);
  color:var(--starlight); font-family:var(--sans); font-size:.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(212,175,55,0.15);
}
.field textarea{ min-height:120px; resize:vertical; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold); outline-offset:2px;
}

/* === Badges / pills === */
.pill{
  display:inline-block; padding:6px 14px; border:1px solid var(--line); border-radius:30px;
  font-size:.78rem; color:var(--starlight-dim); letter-spacing:.03em;
}

/* === Section tinted alt === */
.alt{ background:linear-gradient(180deg, rgba(51,25,94,0.25), transparent); }

/* === Utility === */
.mt-0{margin-top:0;} .mb-0{margin-bottom:0;}
.muted{ color:var(--starlight-dim); }
.gold{ color:var(--gold-soft); }
.magenta{ color:var(--magenta-soft); }
img{ max-width:100%; display:block; }

/* === Service / course card images === */
.svc-img, .course-img{
  width:calc(100% + 56px); margin:-32px -28px 22px; display:block;
  height:auto; max-height:420px; object-fit:contain; object-position:top center;
  background:var(--ink-nebula);
  border-bottom:1px solid var(--line);
}
.svc-card{ padding-top:0; overflow:hidden; }
.svc-card .svc-img{ border-radius:var(--radius) var(--radius) 0 0; }
.course-card{ overflow:hidden; }
.course-card .course-img{ width:calc(100% + 56px); margin:-32px -28px 18px; max-height:380px; }

/* === People photos (Kajal Sharma) === */
.people-photo{
  width:100%; height:auto; object-fit:contain;
  border-radius:var(--radius);
  box-shadow:0 18px 50px rgba(0,0,0,0.45), 0 0 60px rgba(193,63,174,0.12);
}
.people-photo-sm{
  width:180px; height:180px; border-radius:50%; object-fit:cover; object-position:top center;
  margin:0 auto 20px; display:block; border:2px solid var(--gold);
  box-shadow:0 0 40px rgba(212,175,55,0.32);
}

/* === Brand seal (logo lockup, larger contexts) === */
.brand-seal{
  width:120px; height:120px; border-radius:50%; object-fit:cover;
  border:1px solid var(--line); box-shadow:0 0 30px rgba(212,175,55,0.25);
  display:block;
}

/* === Testimonial / quote === */
blockquote{
  font-family:var(--serif); font-size:1.3rem; font-style:italic; color:var(--starlight);
  border-left:2px solid var(--gold); padding-left:20px; margin:0;
}

/* === Responsive section padding === */
@media (max-width:700px){
  section{ padding:64px 0; }
  footer.site{ padding:48px 0 24px; }
}

/* ===========================================================
   BOOKING CALENDAR WIDGET
=========================================================== */
.cal-card{
  background:var(--ink-nebula); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; max-width:520px; margin:0 auto;
}
.cal-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.cal-title{ font-family:var(--serif); font-size:1.3rem; color:var(--gold-soft); }
.cal-nav{
  background:transparent; border:1px solid var(--line); color:var(--starlight);
  width:34px; height:34px; border-radius:50%; cursor:pointer; font-size:1rem;
}
.cal-nav:hover{ border-color:var(--gold); color:var(--gold-soft); }
.cal-weekdays{ display:grid; grid-template-columns:repeat(7,1fr); margin-bottom:6px; }
.cal-weekdays span{ text-align:center; font-size:.74rem; color:var(--starlight-dim); letter-spacing:.06em; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:6px; }
.cal-cell{
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  background:rgba(245,230,211,0.03); border:1px solid transparent; border-radius:50%;
  color:var(--starlight); font-size:.88rem; cursor:pointer;
}
.cal-cell:hover:not(.cal-disabled):not(.cal-empty){ border-color:var(--gold); color:var(--gold-soft); }
.cal-disabled{ color:rgba(245,230,211,0.18); cursor:not-allowed; }
.cal-empty{ background:transparent; }
.cal-selected{ background:var(--gold); color:var(--ink-void) !important; font-weight:700; }
.cal-note{ font-size:.78rem; margin:14px 0 0; }
.cal-slots-head{ font-size:.85rem; color:var(--gold-soft); margin:18px 0 10px; letter-spacing:.02em; }
.cal-slots-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.cal-slot{
  padding:10px 6px; background:rgba(245,230,211,0.05); border:1px solid var(--line);
  border-radius:var(--radius); color:var(--starlight); font-size:.82rem; cursor:pointer;
}
.cal-slot:hover{ border-color:var(--gold); background:rgba(212,175,55,0.1); color:var(--gold-soft); }
@media (max-width:480px){ .cal-slots-grid{ grid-template-columns:repeat(2,1fr); } }

.form-status{ margin-top:14px; font-size:.88rem; padding:10px 14px; border-radius:var(--radius); display:none; }
.form-status.success{ display:block; background:rgba(108,227,166,0.1); color:#8FE3B6; border:1px solid rgba(108,227,166,0.3); }
.form-status.error{ display:block; background:rgba(201,112,100,0.12); color:var(--ember-soft); border:1px solid rgba(201,112,100,0.35); }

/* ===========================================================
   ASTRO CHATBOT WIDGET
=========================================================== */
.astro-chat-panel{
  position:fixed; right:22px; bottom:92px; z-index:70;
  width:360px; max-width:92vw; height:520px; max-height:72vh;
  background:linear-gradient(180deg, var(--ink-nebula-2), var(--ink-void));
  border:1px solid rgba(212,175,55,0.35); border-radius:14px;
  box-shadow:0 24px 70px rgba(0,0,0,0.55), 0 0 60px rgba(193,63,174,0.15);
  display:none; flex-direction:column; overflow:hidden;
}
.astro-chat-panel.open{ display:flex; }
.astro-chat-head{
  padding:16px 18px; display:flex; align-items:center; gap:12px;
  background:linear-gradient(135deg, rgba(212,175,55,0.14), rgba(193,63,174,0.1));
  border-bottom:1px solid var(--line);
}
.astro-chat-head img{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(212,175,55,0.5); }
.astro-chat-head .info{ flex:1; }
.astro-chat-head .info strong{ display:block; font-family:var(--serif); font-size:1.05rem; color:var(--starlight); }
.astro-chat-head .info span{ font-size:.72rem; color:#8FE3B6; }
.astro-chat-head .status-dot{ width:8px; height:8px; border-radius:50%; background:#6CE3A6; display:inline-block; margin-right:5px; box-shadow:0 0 8px #6CE3A6; }
.astro-chat-close{ background:none; border:none; color:var(--starlight-dim); font-size:1.3rem; cursor:pointer; line-height:1; }
.astro-chat-close:hover{ color:var(--gold-soft); }
.astro-chat-body{
  flex:1; overflow-y:auto; padding:16px 16px 8px; display:flex; flex-direction:column; gap:12px;
}
.astro-msg{ max-width:85%; font-size:.87rem; line-height:1.5; padding:10px 13px; border-radius:12px; }
.astro-msg.bot{
  align-self:flex-start; background:rgba(245,230,211,0.06); color:var(--starlight);
  border:1px solid var(--line); border-bottom-left-radius:2px;
}
.astro-msg.user{
  align-self:flex-end; background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  color:var(--ink-void); font-weight:500; border-bottom-right-radius:2px;
}
.astro-msg.cta{
  align-self:stretch; max-width:100%;
  background:linear-gradient(160deg, rgba(193,63,174,0.16), rgba(212,175,55,0.08));
  border:1px solid rgba(212,175,55,0.4); border-radius:10px; padding:14px;
}
.astro-msg.cta p{ margin:0 0 10px; color:var(--starlight); font-size:.85rem; }
.astro-msg.cta .cta-row{ display:flex; gap:8px; flex-wrap:wrap; }
.astro-msg.cta .cta-row a{
  flex:1; text-align:center; padding:9px 10px; border-radius:6px; font-size:.78rem; font-weight:600;
}
.astro-chip-row{ display:flex; flex-wrap:wrap; gap:8px; padding:4px 16px 14px; }
.astro-chip{
  background:rgba(245,230,211,0.06); border:1px solid var(--line); color:var(--starlight-dim);
  font-size:.76rem; padding:7px 12px; border-radius:20px; cursor:pointer;
}
.astro-chip:hover{ border-color:var(--gold); color:var(--gold-soft); }
.astro-chat-foot{
  display:flex; gap:8px; padding:12px 14px; border-top:1px solid var(--line);
  background:rgba(255,255,255,0.02);
}
.astro-chat-foot input{
  flex:1; background:rgba(245,230,211,0.05); border:1px solid rgba(245,230,211,0.18);
  border-radius:20px; padding:10px 16px; color:var(--starlight); font-size:.85rem;
}
.astro-chat-foot input:focus{ outline:none; border-color:var(--gold); }
.astro-chat-foot button{
  width:38px; height:38px; border-radius:50%; border:none; cursor:pointer;
  background:linear-gradient(135deg, var(--gold-soft), var(--gold)); color:var(--ink-void);
  display:flex; align-items:center; justify-content:center; flex:none;
}
@media (max-width:480px){
  .astro-chat-panel{ right:10px; left:10px; width:auto; bottom:86px; }
}

/* ===========================================================
   PANCHANG / KUNDLI CALCULATOR TOOL
=========================================================== */
.panchang-tool{
  background:linear-gradient(165deg, rgba(51,25,94,0.35), rgba(10,8,24,0.6));
  border:1px solid rgba(212,175,55,0.3); border-radius:14px;
  padding:36px; box-shadow:0 0 60px rgba(123,63,196,0.15);
}
.panchang-result{ margin-top:28px; display:none; }
.panchang-result.show{ display:block; }
.pn-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:14px; margin:20px 0; }
.pn-stat{
  background:rgba(245,230,211,0.045); border:1px solid var(--line); border-radius:10px;
  padding:16px; text-align:center;
}
.pn-stat .pn-label{ font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:6px; }
.pn-stat .pn-value{ font-family:var(--serif); font-size:1.25rem; color:var(--starlight); }
.kundli-chart{ margin:24px auto 0; display:block; max-width:360px; }
.kundli-house-list{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:10px; margin-top:20px; }
.kundli-house-list .kh{
  background:rgba(245,230,211,0.04); border:1px solid var(--line); border-radius:8px;
  padding:10px 14px; font-size:.82rem; display:flex; justify-content:space-between; gap:8px;
}
.kundli-house-list .kh b{ color:var(--gold-soft); font-weight:600; }
.panchang-disclaimer{
  margin-top:22px; padding:14px 16px; border-radius:8px; font-size:.8rem;
  background:rgba(212,175,55,0.06); border:1px solid var(--line); color:var(--starlight-dim);
}
.pn-loading{ text-align:center; padding:20px; color:var(--gold-soft); font-family:var(--serif); font-size:1.1rem; display:none; }
.pn-loading.show{ display:block; }

/* Call button emphasis block on contact page */
.contact-action-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:640px){ .contact-action-grid{ grid-template-columns:1fr; } }

/* ===========================================================
   CLASSROOM ENGINE
=========================================================== */
.classroom-tabs{
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px;
}
.classroom-tab{
  flex:1; min-width:150px; display:flex; flex-direction:column; align-items:center; gap:4px;
  padding:14px 12px; border-radius:10px; cursor:pointer;
  background:rgba(245,230,211,0.035); border:1px solid var(--line); color:var(--starlight-dim);
  transition:all .25s ease;
}
.classroom-tab .ct-title{ font-family:var(--serif); font-size:1rem; color:var(--starlight); }
.classroom-tab .ct-progress{ font-size:.72rem; letter-spacing:.06em; color:var(--starlight-dim); }
.classroom-tab.active{
  border-color:var(--tab-accent); background:color-mix(in srgb, var(--tab-accent) 12%, transparent);
  box-shadow:0 0 24px color-mix(in srgb, var(--tab-accent) 30%, transparent);
}
.classroom-tab.active .ct-progress{ color:var(--tab-accent); font-weight:700; }
.classroom-tab:hover{ border-color:var(--tab-accent); }

.classroom-header{
  text-align:center; max-width:680px; margin:0 auto 40px;
  padding:32px 28px; border-radius:14px;
  background:linear-gradient(165deg, var(--course-accent-soft), transparent);
  border:1px solid color-mix(in srgb, var(--course-accent) 35%, transparent);
}
.classroom-progress-bar{ margin-top:20px; }
.cpb-track{ height:8px; border-radius:6px; background:rgba(245,230,211,0.08); overflow:hidden; }
.cpb-fill{ height:100%; border-radius:6px; transition:width .4s ease; }
.cpb-label{ display:block; margin-top:8px; font-size:.78rem; color:var(--starlight-dim); letter-spacing:.02em; }

.classroom-modules{ display:flex; flex-direction:column; gap:14px; max-width:820px; margin:0 auto; }
.classroom-module{
  border:1px solid var(--line); border-radius:12px; overflow:hidden;
  background:rgba(245,230,211,0.025); transition:border-color .25s ease, box-shadow .25s ease;
}
.classroom-module.open{
  border-color:color-mix(in srgb, var(--course-accent) 50%, transparent);
  box-shadow:0 14px 40px color-mix(in srgb, var(--course-accent) 18%, transparent);
}
.classroom-module.done .cm-title{ color:var(--starlight-dim); text-decoration:line-through; text-decoration-color:rgba(245,230,211,0.3); }
.cm-head{
  display:flex; align-items:center; gap:14px; padding:18px 20px; cursor:pointer;
}
.cm-check{ position:relative; flex:none; width:22px; height:22px; }
.cm-check input{ position:absolute; opacity:0; width:22px; height:22px; margin:0; cursor:pointer; }
.cm-check span{
  display:block; width:22px; height:22px; border-radius:50%; border:1.5px solid var(--line);
  background:rgba(245,230,211,0.04);
}
.cm-check input:checked + span{
  background:var(--course-accent); border-color:var(--course-accent);
  box-shadow:0 0 12px color-mix(in srgb, var(--course-accent) 60%, transparent);
}
.cm-title-wrap{ flex:1; min-width:0; }
.cm-index{ display:block; font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color:var(--course-accent); margin-bottom:3px; }
.cm-title{ margin:0; font-size:1.05rem; }
.cm-meta{ flex:none; font-size:.76rem; color:var(--starlight-dim); white-space:nowrap; }
.cm-chevron{ flex:none; color:var(--starlight-dim); transition:transform .25s ease; }
.classroom-module.open .cm-chevron{ transform:rotate(180deg); color:var(--course-accent); }
.cm-body{
  padding:0 20px 24px 56px; color:var(--starlight-dim); font-size:.92rem; line-height:1.75;
}
.cm-mentor-btn{ margin-top:18px; display:inline-flex; }

@media (max-width:700px){
  .classroom-tabs{ flex-direction:column; }
  .cm-body{ padding:0 16px 20px 16px; }
  .cm-meta{ display:none; }
}

/* ===========================================================
   AUTH — login modal + nav user badge
=========================================================== */
.kt-auth-overlay{
  position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center;
  background:rgba(6,4,16,0.72); backdrop-filter:blur(6px); padding:20px;
}
.kt-auth-overlay.open{ display:flex; }
.kt-auth-modal{
  width:420px; max-width:100%; max-height:90vh; overflow-y:auto;
  background:linear-gradient(180deg, #170F30, #0E0920);
  border:1px solid rgba(212,175,55,0.35); border-radius:18px; padding:30px 26px 26px;
  position:relative; box-shadow:0 30px 80px rgba(0,0,0,0.6), 0 0 50px rgba(138,95,194,0.28);
  animation:chatIn .3s ease;
}
.kt-auth-close{
  position:absolute; top:16px; right:16px; background:none; border:none;
  color:var(--starlight-dim); font-size:1.3rem; cursor:pointer;
}
.kt-auth-head{ text-align:center; margin-bottom:22px; }
.kt-auth-glow{
  display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px;
  border-radius:50%; background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--twilight) 80%);
  font-size:1.3rem; margin-bottom:10px; box-shadow:0 0 24px rgba(212,175,55,0.4);
}
.kt-auth-head h3{ margin:0 0 4px; font-size:1.3rem; }
.kt-auth-btn{
  width:100%; display:flex; align-items:center; justify-content:center; gap:10px;
  padding:12px; border-radius:10px; border:1px solid rgba(245,230,211,0.25);
  background:#fff; color:#1a1a2e; font-weight:600; font-size:.92rem; cursor:pointer; font-family:var(--sans);
}
.kt-auth-btn:hover{ box-shadow:0 6px 20px rgba(255,255,255,0.15); }
.kt-auth-divider{ display:flex; align-items:center; gap:12px; margin:18px 0; color:var(--starlight-dim); font-size:.78rem; }
.kt-auth-divider::before, .kt-auth-divider::after{ content:""; flex:1; height:1px; background:var(--line); }
.kt-auth-tabtoggle{ display:flex; gap:8px; margin-bottom:16px; }
.kt-auth-tab{
  flex:1; padding:9px; border-radius:8px; border:1px solid var(--line); background:transparent;
  color:var(--starlight-dim); font-size:.84rem; cursor:pointer; font-family:var(--sans);
}
.kt-auth-tab.active{ background:rgba(212,175,55,0.14); border-color:var(--gold); color:var(--gold-soft); }
.kt-auth-row{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:6px; }
@media (max-width:400px){ .kt-auth-row{ grid-template-columns:1fr; } }

/* Nav user badge + dropdown */
.kt-user-menu{
  position:absolute; top:calc(100% + 10px); left:0; z-index:60; min-width:180px;
  background:#170F30; border:1px solid rgba(212,175,55,0.35); border-radius:12px; padding:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
.kt-user-name{ font-size:.85rem; color:var(--starlight); margin-bottom:10px; word-break:break-word; }
.kt-user-signout{
  width:100%; padding:8px; border-radius:8px; border:1px solid var(--line); background:transparent;
  color:var(--ember-soft); font-size:.82rem; cursor:pointer; font-family:var(--sans);
}
.kt-user-signout:hover{ background:rgba(201,112,100,0.12); }

/* ===========================================================
   GEMSTONES PAGE
=========================================================== */
.gems-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:26px; }
.gem-card{
  border:1px solid var(--line); border-radius:18px; overflow:hidden;
  background:linear-gradient(180deg, rgba(245,230,211,0.035), transparent);
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.gem-card:hover{ transform:translateY(-4px); border-color:color-mix(in srgb, var(--ga) 55%, transparent);
  box-shadow:0 20px 55px color-mix(in srgb, var(--ga) 22%, transparent); }
.gem-media{ position:relative; aspect-ratio:4/3; overflow:hidden;
  background:radial-gradient(ellipse at center, color-mix(in srgb, var(--ga) 14%, #0B0B1F), #0B0B1F); }
.gem-media img{ width:100%; height:100%; object-fit:cover; object-position:center 42%;
  user-select:none; -webkit-user-drag:none; pointer-events:none; }
.gem-planet{
  position:absolute; top:12px; left:12px; padding:5px 12px; border-radius:20px; font-size:.72rem;
  background:rgba(11,11,31,0.75); border:1px solid color-mix(in srgb, var(--ga) 55%, transparent);
  color:var(--starlight); letter-spacing:.04em; backdrop-filter:blur(4px);
}
.gem-soon{
  position:absolute; bottom:12px; right:12px; padding:4px 10px; border-radius:14px; font-size:.68rem;
  background:rgba(11,11,31,0.8); color:var(--starlight-dim); border:1px solid var(--line);
}
.gem-head{ padding:18px 20px 6px; }
.gem-head h3{ margin:0 0 4px; font-size:1.35rem; }
.gem-hindi{ color:var(--ga); font-size:1rem; }
.gem-tagline{ font-size:.88rem; color:var(--starlight-dim); margin:0 0 8px; }
.gem-from{ font-size:.85rem; color:var(--starlight-dim); margin:0; }
.gem-from strong{ color:var(--ga); font-family:var(--serif); font-size:1.15rem; }

.gem-story-btn{
  margin:12px 20px 0; padding:10px 14px; border-radius:10px; cursor:pointer; text-align:left;
  background:color-mix(in srgb, var(--ga) 10%, transparent); color:var(--starlight);
  border:1px dashed color-mix(in srgb, var(--ga) 45%, transparent); font-size:.84rem; font-family:var(--sans);
}
.gem-story{ display:none; padding:16px 20px 4px; }
.gem-story.open{ display:block; animation:chatIn .3s ease; }
.gs-text{ font-size:.9rem; line-height:1.75; color:var(--starlight-dim); }
.gs-facts{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:14px 0; }
.gs-facts div{ font-size:.82rem; color:var(--starlight); padding:9px 12px; border:1px solid var(--line); border-radius:9px; background:rgba(11,11,31,0.35); }
.gs-facts span{ display:block; font-size:.66rem; text-transform:uppercase; letter-spacing:.1em; color:var(--ga); margin-bottom:2px; }
.gs-who{ font-size:.85rem; color:var(--starlight-dim); }
.gs-caution{ font-size:.8rem; color:var(--ember-soft); border-left:2px solid var(--ember); padding-left:10px; }

.gem-calc{ padding:14px 20px 20px; margin-top:auto; border-top:1px solid var(--line); }
.gc-label{ display:block; font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color:var(--starlight-dim); margin:12px 0 8px; }
.gc-opts{ display:grid; gap:8px; }
.gc-opt{
  display:flex; justify-content:space-between; align-items:center; padding:10px 14px; border-radius:10px;
  background:rgba(245,230,211,0.04); border:1px solid var(--line); color:var(--starlight-dim);
  cursor:pointer; font-size:.84rem; font-family:var(--sans);
}
.gc-opt span{ color:var(--ga); font-weight:600; }
.gc-opt.active{ border-color:var(--ga); color:var(--starlight);
  background:color-mix(in srgb, var(--ga) 14%, transparent); box-shadow:0 0 18px color-mix(in srgb, var(--ga) 25%, transparent); }
.gc-slider{ width:100%; accent-color:var(--ga); margin:4px 0 12px; }
.gem-calc-rows{ border:1px solid var(--line); border-radius:12px; padding:12px 14px; background:rgba(11,11,31,0.4); }
.gcr{ display:flex; justify-content:space-between; gap:12px; font-size:.84rem; color:var(--starlight-dim); padding:5px 0; }
.gcr strong{ color:var(--starlight); }
.gcr.discount span, .gcr.discount strong{ color:#7FE3A8; }
.gcr.muted-row span, .gcr.muted-row strong{ color:var(--starlight-dim); font-size:.78rem; }
.gcr.total{ border-top:1px solid var(--line); margin-top:6px; padding-top:10px; font-size:1rem; }
.gcr.total strong{ color:var(--ga); font-family:var(--serif); font-size:1.35rem; }
.gem-consent{ display:flex; gap:10px; align-items:flex-start; margin:14px 0; cursor:pointer; }
.gem-consent input{ margin-top:3px; accent-color:var(--ga); width:16px; height:16px; flex:none; }
.gem-consent span{ font-size:.78rem; color:var(--starlight-dim); line-height:1.5; }
.gem-order:disabled{ opacity:.45; cursor:not-allowed; }

/* CSS-rendered gems for missing photos */
.css-gem{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.css-gem span{ display:block; border-radius:22% 60% 40% 55%; width:52%; aspect-ratio:1;
  transform:rotate(-8deg); position:relative; }
.css-gem.gomed span{
  background:radial-gradient(circle at 32% 28%, #F5D9A0 0%, #E0A85C 30%, #B5722E 62%, #7A4416 100%);
  box-shadow:0 0 60px rgba(224,168,92,0.5), inset -14px -18px 40px rgba(80,40,8,0.55), inset 10px 12px 30px rgba(255,235,190,0.5);
}
.css-gem.catseye span{
  border-radius:50%;
  background:radial-gradient(circle at 34% 30%, #E8EFC0 0%, #C9CF7E 28%, #8F9A45 60%, #4F5722 100%);
  box-shadow:0 0 60px rgba(201,207,126,0.45), inset -14px -18px 40px rgba(40,45,10,0.6), inset 10px 12px 28px rgba(245,250,210,0.5);
}
.css-gem.catseye span::after{
  content:""; position:absolute; left:50%; top:6%; bottom:6%; width:7%; transform:translateX(-50%);
  background:linear-gradient(180deg, transparent, rgba(255,255,255,0.95) 18%, rgba(255,255,255,0.98) 50%, rgba(255,255,255,0.95) 82%, transparent);
  border-radius:50%; filter:blur(1.5px);
}

/* Gem page hero + trust strip */
.gem-hero-badges{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:22px; }
.gem-hero-badges .pill{ font-size:.8rem; }
@media (max-width:700px){ .gems-grid{ grid-template-columns:1fr; } }

/* ===========================================================
   CLASSROOM v2 — XP, quiz, confetti
=========================================================== */
.classroom-xpbar{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:20px;
  padding:12px 18px; border:1px solid var(--line); border-radius:40px;
  background:linear-gradient(90deg, rgba(212,175,55,0.08), rgba(107,63,160,0.10)); }
.cxp-level{ font-family:var(--serif); font-size:1.05rem; color:var(--gold-soft); white-space:nowrap; }
.cxp-track{ flex:1; min-width:120px; height:8px; border-radius:20px; background:rgba(245,230,211,0.1); overflow:hidden; }
.cxp-fill{ height:100%; border-radius:20px; background:linear-gradient(90deg,var(--gold-soft),var(--twilight-soft)); transition:width .5s ease; }
.cxp-num{ font-size:.78rem; color:var(--starlight-dim); white-space:nowrap; }
.classroom-complete{ margin-top:12px; padding:10px 14px; border:1px dashed var(--gold); border-radius:10px;
  color:var(--gold-soft); font-size:.9rem; text-align:center; }
.cm-intro{ color:var(--starlight-dim); line-height:1.75; font-size:.93rem; }
.cm-panels{ display:grid; gap:10px; margin:16px 0; }
.cm-panel{ display:flex; gap:12px; align-items:flex-start; padding:13px 15px; border-radius:11px;
  background:rgba(11,11,31,0.45); border:1px solid var(--line); border-left:3px solid var(--course-accent,var(--gold));
  opacity:0; animation:panelIn .5s ease forwards; }
@keyframes panelIn{ from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }
.cmp-ic{ color:var(--course-accent,var(--gold)); flex:none; margin-top:2px; }
.cmp-head{ display:block; color:var(--starlight); font-size:.92rem; margin-bottom:2px; }
.cmp-body{ color:var(--starlight-dim); font-size:.88rem; line-height:1.65; }
.cm-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }

.cm-quiz{ margin-top:18px; padding:16px 18px; border-radius:13px;
  border:1px dashed color-mix(in srgb, var(--course-accent,var(--gold)) 55%, transparent);
  background:color-mix(in srgb, var(--course-accent,var(--gold)) 7%, transparent); }
.cm-quiz.solved{ border-style:solid; }
.cmq-head{ font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; color:var(--course-accent,var(--gold));
  font-weight:700; display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; }
.cmq-badge{ font-size:.7rem; padding:3px 10px; border-radius:14px; background:rgba(212,175,55,0.15); color:var(--gold-soft); letter-spacing:.02em; }
.cmq-q{ color:var(--starlight); font-size:.95rem; margin:10px 0 12px; line-height:1.55; }
.cmq-opts{ display:grid; gap:8px; }
.cmq-opt{ text-align:left; padding:11px 14px; border-radius:10px; cursor:pointer; font-family:var(--sans); font-size:.87rem;
  background:rgba(245,230,211,0.05); border:1px solid var(--line); color:var(--starlight-dim); transition:all .2s ease; }
.cmq-opt:hover:not(:disabled){ border-color:var(--course-accent,var(--gold)); color:var(--starlight); }
.cmq-opt.right{ background:rgba(108,227,166,0.15); border-color:#6CE3A6; color:#8FE3B6; }
.cmq-opt.wrong{ background:rgba(201,112,100,0.15); border-color:var(--ember); color:var(--ember-soft); animation:shake .4s ease; }
@keyframes shake{ 0%,100%{transform:translateX(0);} 25%{transform:translateX(-6px);} 75%{transform:translateX(6px);} }
.cmq-opt:disabled{ cursor:default; opacity:.75; }
.cmq-opt.right:disabled{ opacity:1; }
.cmq-why{ margin-top:12px; font-size:.84rem; color:var(--starlight); font-style:italic; line-height:1.6;
  border-left:2px solid var(--course-accent,var(--gold)); padding-left:12px; }

.kt-confetti{ position:fixed; bottom:38vh; width:9px; height:9px; border-radius:2px; z-index:300; pointer-events:none;
  animation:confetti 1.5s cubic-bezier(.2,.8,.4,1) forwards; }
@keyframes confetti{
  from{ transform:translate(0,0) rotate(0); opacity:1; }
  to{ transform:translate(var(--dx,0), var(--dy,-200px)) rotate(var(--rot,360deg)); opacity:0; }
}

/* ===========================================================
   30-DAY TRIAL — pill, banner, paywall
=========================================================== */
.kt-trial-pill{ position:fixed; left:18px; bottom:18px; z-index:80; padding:10px 18px; border-radius:30px;
  font-size:.82rem; color:var(--starlight); font-family:var(--sans);
  background:linear-gradient(135deg, rgba(212,175,55,0.18), rgba(107,63,160,0.25));
  border:1px solid rgba(212,175,55,0.5); backdrop-filter:blur(8px);
  box-shadow:0 8px 26px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.2); }
.kt-trial-pill.expired{ border-color:var(--ember); }
.kt-trial-pill a{ color:var(--gold-soft); font-weight:700; }
.kt-trial-banner{ display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap;
  padding:16px 22px; margin:0 auto 26px; max-width:760px; border-radius:16px; text-align:center;
  background:linear-gradient(135deg, rgba(212,175,55,0.14), rgba(201,112,100,0.10));
  border:1px solid rgba(212,175,55,0.45); color:var(--starlight); font-size:.92rem; }
.kt-locked{ filter:blur(7px) saturate(.7); pointer-events:none; user-select:none; }
.kt-paywall{ position:absolute; inset:0; z-index:40; display:flex; align-items:flex-start; justify-content:center; padding:60px 20px; }
.kt-paywall-card{ max-width:480px; text-align:center; padding:36px 30px; border-radius:20px;
  background:linear-gradient(180deg,#1A102F,#0E0920); border:1px solid rgba(212,175,55,0.5);
  box-shadow:0 30px 80px rgba(0,0,0,0.65), 0 0 60px rgba(138,95,194,0.3); }
.kt-paywall-ic{ font-size:2.2rem; display:block; margin-bottom:10px; }
.kt-paywall-card h3{ font-size:1.35rem; margin-bottom:10px; }
.kt-paywall-card p{ font-size:.9rem; }
.kt-paywall-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top:18px; }
@media (max-width:520px){ .kt-trial-pill{ left:10px; bottom:10px; font-size:.74rem; padding:8px 13px; } }

/* ===========================================================
   COSMIC CTA v2 — leader-grade task buttons (AstroTalk-class)
=========================================================== */
.btn-primary{
  position:relative; overflow:hidden; isolation:isolate;
  background:linear-gradient(120deg,#D4AF37 0%, #E8C766 28%, #B98BE0 62%, #8A5FC2 100%);
  background-size:220% 100%;
  border:1px solid rgba(232,199,102,0.7);
  box-shadow:0 6px 22px rgba(212,175,55,0.28), 0 0 0 0 rgba(212,175,55,0.35);
  transition:background-position .5s ease, transform .15s ease, box-shadow .3s ease;
}
.btn-primary:hover{
  background-position:95% 0;
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(138,95,194,0.4), 0 0 24px rgba(212,175,55,0.35);
}
.btn-primary:active{ transform:translateY(0) scale(.985); }
.btn-primary::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform:translateX(-120%); transition:transform .6s ease;
}
.btn-primary:hover::after{ transform:translateX(120%); }
.btn-primary:focus-visible{ outline:2px solid var(--gold-soft); outline-offset:3px; }
@media (prefers-reduced-motion: reduce){
  .btn-primary, .btn-primary::after{ transition:none; }
}

/* Trust strip — leader pattern */
.trust-strip{
  display:flex; gap:22px; justify-content:center; flex-wrap:wrap;
  padding:18px 24px; margin:0 auto; max-width:900px;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.trust-strip span{
  display:flex; align-items:center; gap:8px;
  font-size:.84rem; color:var(--starlight-dim); letter-spacing:.02em;
}
.trust-strip b{ color:var(--gold-soft); font-weight:600; }

/* Fair pricing compare card */
.fair-price{
  display:grid; grid-template-columns:1fr 1fr; gap:0; max-width:840px; margin:26px auto 0;
  border:1px solid var(--line); border-radius:18px; overflow:hidden;
}
.fair-price > div{ padding:26px 28px; }
.fp-market{ background:rgba(245,230,211,0.03); }
.fp-kayla{ background:linear-gradient(160deg, rgba(212,175,55,0.10), rgba(107,63,160,0.12));
  border-left:1px solid rgba(212,175,55,0.4); }
.fair-price h4{ margin:0 0 10px; font-size:1.05rem; }
.fp-kayla h4{ color:var(--gold-soft); }
.fair-price li{ font-size:.88rem; color:var(--starlight-dim); margin:8px 0; list-style:none; }
.fair-price li::before{ content:"— "; color:var(--starlight-dim); }
.fp-kayla li::before{ content:"✓ "; color:var(--gold-soft); }
.fair-price ul{ padding:0; margin:0; }
@media (max-width:640px){ .fair-price{ grid-template-columns:1fr; } .fp-kayla{ border-left:none; border-top:1px solid rgba(212,175,55,0.4);} }
