/* ============================================================
   Kundali.One — Design tokens
   Palette: Deep Indigo Night (#0F1729), Ink Navy (#161F38),
   Marigold Gold (#D4A017), Sindoor Red (#A6323A),
   Parchment Ivory (#F7F1E3), Muted Sand (#C9BFA8)
   Type: Fraunces (display) / IBM Plex Sans (body) / IBM Plex Mono (utility)
   ============================================================ */

:root{
  --night: #0F1729;
  --navy: #161F38;
  --navy-2: #1E2A4A;
  --gold: #D4A017;
  --gold-soft: #E8C463;
  --sindoor: #A6323A;
  --sindoor-2: #8C2530;
  --ivory: #F7F1E3;
  --ivory-2: #EFE7D2;
  --sand: #C9BFA8;
  --ink: #1B1A17;
  --ink-soft: #4A473F;

  --font-display: 'Fraunces', serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 4px;
  --max-width: 1180px;
  --ease: cubic-bezier(.22,.68,0,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; letter-spacing: -0.01em; }
p{ margin: 0 0 1em; }
ul{ margin:0; padding:0; }
.wrap{ max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

:focus-visible{ outline: 2px solid var(--sindoor); outline-offset: 3px; }

.grain-overlay{
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius); border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
}
.btn-primary{ background: var(--sindoor); color: var(--ivory); }
.btn-primary:hover{ background: var(--sindoor-2); transform: translateY(-2px); }
.btn-ghost{ background: transparent; border-color: currentColor; color: var(--night); }
.btn-ghost:hover{ background: var(--night); color: var(--ivory); }
.btn-block{ width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,23,41,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,160,23,0.25);
}
.header-inner{ display:flex; align-items:center; justify-content: space-between; height: 76px; }
.brand{ display:flex; align-items:center; gap:10px; color: var(--ivory); }
.brand-mark{ width: 26px; height: 26px; color: var(--gold); }
.brand-text{ font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: .01em; }
.brand-dot{ color: var(--sindoor); }

.main-nav{ display:flex; align-items:center; gap: 32px; }
.main-nav a{ color: var(--sand); font-size: 14.5px; font-weight: 500; transition: color .2s; }
.main-nav a:hover{ color: var(--gold-soft); }
.nav-cta{
  background: var(--gold); color: var(--night) !important; padding: 9px 18px; border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover{ background: var(--gold-soft); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding: 8px; }
.nav-toggle span{ width: 22px; height: 2px; background: var(--gold); display:block; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background: radial-gradient(120% 100% at 15% 0%, #17213E 0%, var(--night) 55%);
  color: var(--ivory);
  padding: 88px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-inner{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items:center; }
.eyebrow{
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .14em; font-size: 12px;
  color: var(--gold-soft); margin-bottom: 18px; display:block;
}
.hero h1{ font-size: clamp(34px, 4.4vw, 54px); line-height: 1.08; color: var(--ivory); }
.hero-accent{ color: var(--gold-soft); font-style: italic; }
.hero-sub{ font-size: 17px; color: var(--sand); max-width: 52ch; }
.hero-actions{ display:flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 44px; }
.hero .btn-ghost{ color: var(--ivory); }
.hero .btn-ghost:hover{ background: var(--ivory); color: var(--night); }

.hero-trust{ display:flex; gap: 40px; border-top: 1px solid rgba(201,191,168,.25); padding-top: 24px; }
.trust-item{ display:flex; flex-direction:column; }
.trust-num{ font-family: var(--font-display); font-size: 24px; color: var(--gold-soft); }
.trust-label{ font-size: 12.5px; color: var(--sand); }

.hero-chart{ position: relative; }
.hero-chart svg{ width: 100%; height: auto; overflow: visible; }
.chart-square{ fill: none; stroke: rgba(201,191,168,.5); stroke-width: 1.2; }
.chart-line, .chart-diamond{ fill: none; stroke: var(--gold); stroke-width: 1; opacity: .85; }
.chart-diamond{ animation: chart-pulse 7s ease-in-out infinite; }
.chart-center-dot{ fill: var(--sindoor); }
.house-glyph text{
  font-family: var(--font-mono); font-size: 15px; fill: var(--sand);
  text-anchor: middle; dominant-baseline: middle;
}
.house-glyph{ transition: opacity .3s; }
.chart-caption{ text-align:center; font-family: var(--font-mono); font-size: 11.5px; color: var(--sand); opacity:.7; margin-top: 12px; letter-spacing: .04em; }

@keyframes chart-pulse{
  0%,100%{ opacity: .85; }
  50%{ opacity: .45; }
}

/* ---------- Marquee strip ---------- */
.strip{ background: var(--gold); overflow: hidden; padding: 12px 0; border-top: 1px solid var(--night); border-bottom: 1px solid var(--night); }
.strip-track{ display:flex; gap: 14px; white-space: nowrap; width: max-content; animation: strip-scroll 34s linear infinite; }
.strip-track span{ font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--night); letter-spacing: .03em; }
@keyframes strip-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section{ padding: 96px 0; }
.section-head{ max-width: 640px; margin: 0 0 48px; }
.section-head h2{ font-size: clamp(26px, 3vw, 38px); color: var(--night); }
.section-sub{ color: var(--ink-soft); font-size: 16px; }
.section .eyebrow{ color: var(--sindoor); }

/* ============================================================
   KUNDALI FORM
   ============================================================ */
.form-section{ background: var(--ivory-2); }
.kundali-card{
  background: var(--ivory); border: 1px solid var(--sand); border-radius: 6px;
  padding: 40px; max-width: 720px;
  box-shadow: 6px 6px 0 rgba(15,23,41,0.06);
}
.ledger-row{ display:flex; gap: 20px; margin-bottom: 20px; }
.field{ flex:1; display:flex; flex-direction:column; gap:6px; }
.field-wide{ flex: 1 1 100%; }
.field label{ font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing:.06em; color: var(--ink-soft); }
.field input, .field select, .field textarea{
  font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
  border: 1px solid var(--sand); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--sindoor); }
.form-note{ font-size: 13px; color: var(--ink-soft); margin: 14px 0 0; }
.form-note a{ color: var(--sindoor); text-decoration: underline; }

.kundali-success{
  background: var(--night); color: var(--ivory); border-radius: 6px; padding: 48px; max-width: 720px; text-align:center;
}
.success-icon{ width: 52px; height:52px; margin: 0 auto 18px; color: var(--gold-soft); }
.kundali-success h3{ color: var(--ivory); font-size: 22px; }
.kundali-success p{ color: var(--sand); }

/* ============================================================
   SERVICES — HOUSE GRID
   ============================================================ */
.houses-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand); border: 1px solid var(--sand); }
.house-card{ background: var(--ivory); padding: 32px; }
.house-num{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--sindoor); text-transform: uppercase; }
.house-card h3{ font-size: 19px; margin: 10px 0 8px; color: var(--night); }
.house-card p{ font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section{ background: var(--night); color: var(--ivory); }
.how-section .eyebrow{ color: var(--gold-soft); }
.how-section .section-head h2{ color: var(--ivory); }
.how-track{ display:grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.how-step{ border-top: 2px solid var(--gold); padding-top: 18px; }
.how-index{ font-family: var(--font-mono); font-size: 12.5px; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .06em; }
.how-step h3{ color: var(--ivory); font-size: 18px; margin: 10px 0 8px; }
.how-step p{ color: var(--sand); font-size: 14.5px; margin:0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-wrap{ display:grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items:center; }
.about-copy p{ color: var(--ink-soft); font-size: 16px; }
.about-stats{ display:flex; gap: 36px; margin-top: 28px; }
.about-stats strong{ display:block; font-family: var(--font-display); font-size: 26px; color: var(--sindoor); }
.about-stats span{ font-size: 12.5px; color: var(--ink-soft); }
.about-visual svg{ width: 100%; max-width: 320px; margin: 0 auto; }
.orbit-ring{ fill:none; stroke: var(--sand); stroke-width: 1; }
.orbit-dot{ fill: var(--sindoor); }
.orbit-sun{ fill: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section{ background: var(--ivory-2); }
.testimonial-track{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card{ background: var(--ivory); border-left: 3px solid var(--gold); padding: 28px; margin:0; }
.testimonial-card p{ font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--night); }
.testimonial-card footer{ font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap{ max-width: 760px; }
.faq-list{ border-top: 1px solid var(--sand); }
.faq-item{ border-bottom: 1px solid var(--sand); padding: 20px 0; }
.faq-item summary{ cursor:pointer; font-family: var(--font-display); font-size: 18px; color: var(--night); list-style: none; display:flex; justify-content: space-between; align-items:center; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content: '+'; font-family: var(--font-mono); color: var(--sindoor); font-size: 20px; }
.faq-item[open] summary::after{ content: '−'; }
.faq-item p{ color: var(--ink-soft); margin: 14px 0 0; font-size: 15px; }
.faq-item p a{ color: var(--sindoor); text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns: 1.3fr .7fr; gap: 40px; }
.contact-card{ background: var(--ivory-2); border: 1px solid var(--sand); border-radius: 6px; padding: 36px; }
.contact-card textarea{ resize: vertical; }
.contact-info{ background: var(--night); color: var(--ivory); border-radius: 6px; padding: 32px; display:flex; flex-direction:column; gap: 24px; height: fit-content; }
.contact-info-item{ display:flex; flex-direction:column; gap:4px; }
.ci-label{ font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing:.08em; color: var(--gold-soft); }
.contact-info-item a{ color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--night); color: var(--sand); padding: 64px 0 0; }
.footer-inner{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p{ font-size: 14px; color: var(--sand); margin-top: 10px; max-width: 30ch; }
.footer-col h4{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-soft); margin-bottom: 14px; }
.footer-col{ display:flex; flex-direction:column; gap: 10px; }
.footer-col a{ font-size: 14px; color: var(--sand); transition: color .2s; }
.footer-col a:hover{ color: var(--ivory); }
.footer-bottom{ border-top: 1px solid rgba(201,191,168,.2); padding: 22px 0; display:flex; justify-content: space-between; gap: 20px; font-size: 12.5px; color: var(--sand); }
.footer-disclaimer{ max-width: 46ch; text-align:right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px){
  .hero-inner, .about-wrap, .contact-grid{ grid-template-columns: 1fr; }
  .hero-chart{ order: -1; max-width: 340px; margin: 0 auto 20px; }
  .houses-grid{ grid-template-columns: repeat(2,1fr); }
  .how-track{ grid-template-columns: repeat(2,1fr); }
  .testimonial-track{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-bottom{ flex-direction: column; }
  .footer-disclaimer{ text-align: left; }
}

@media (max-width: 720px){
  .main-nav{
    position: absolute; top: 76px; left:0; right:0; background: var(--night);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 28px 20px;
    border-bottom: 1px solid rgba(212,160,23,.25);
    display: none;
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ width:100%; padding: 12px 0; border-bottom: 1px solid rgba(201,191,168,.12); }
  .nav-cta{ margin-top: 10px; text-align:center; }
  .nav-toggle{ display:flex; }
  .ledger-row{ flex-direction: column; }
  .houses-grid{ grid-template-columns: 1fr; }
  .how-track{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .section{ padding: 64px 0; }
  .hero{ padding: 56px 0 40px; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero{ background: var(--night); color: var(--ivory); padding: 64px 0 40px; }
.legal-hero h1{ color: var(--ivory); font-size: clamp(28px,3.4vw,40px); }
.legal-hero p{ color: var(--sand); font-family: var(--font-mono); font-size: 13px; }
.legal-body{ padding: 56px 0 96px; max-width: 760px; margin: 0 auto; }
.legal-body h2{ font-size: 21px; color: var(--night); margin-top: 40px; }
.legal-body p, .legal-body li{ color: var(--ink-soft); font-size: 15.5px; }
.legal-body ul{ padding-left: 20px; margin-bottom: 1em; }
.legal-body li{ margin-bottom: 8px; }
.back-link{ display:inline-block; margin-bottom: 24px; font-family: var(--font-mono); font-size: 13px; color: var(--sindoor); }

/* ============================================================
   PAGE HERO (About / Contact standalone pages)
   ============================================================ */
.page-hero{
  background: radial-gradient(120% 100% at 15% 0%, #17213E 0%, var(--night) 55%);
  color: var(--ivory); padding: 72px 0 56px;
}
.page-hero h1{ color: var(--ivory); font-size: clamp(30px,4vw,46px); max-width: 20ch; }
.page-hero-sub{ color: var(--sand); font-size: 16.5px; max-width: 56ch; }
.page-hero .eyebrow{ color: var(--gold-soft); }

/* ============================================================
   NAVAGRAHA GRID
   ============================================================ */
.navagraha-section{ background: var(--ivory-2); }
.navagraha-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--sand); border: 1px solid var(--sand); }
.graha-card{ background: var(--ivory); padding: 28px; text-align:center; }
.graha-sym{ display:block; font-size: 30px; color: var(--sindoor); font-family: var(--font-display); margin-bottom: 10px; }
.graha-card h3{ font-size: 17px; margin: 0 0 8px; color: var(--night); }
.graha-card h3 em{ font-style: normal; color: var(--ink-soft); font-size: 14px; font-family: var(--font-mono); }
.graha-card p{ font-size: 13.5px; color: var(--ink-soft); margin:0; }

/* ============================================================
   DASHA BAR CHART
   ============================================================ */
.dasha-section{ background: var(--ivory); }
.dasha-wrap{ max-width: 780px; }
.dasha-chart{ display:flex; flex-direction:column; gap: 12px; }
.dasha-row{ display:grid; grid-template-columns: 84px 1fr 52px; align-items:center; gap: 14px; }
.dasha-planet{ font-family: var(--font-mono); font-size: 13.5px; color: var(--night); font-weight: 600; }
.dasha-bar-track{ background: var(--ivory-2); border: 1px solid var(--sand); border-radius: 2px; height: 16px; overflow: hidden; }
.dasha-bar{ height: 100%; width: calc(var(--v) / 20 * 100%); background: linear-gradient(90deg, var(--gold), var(--sindoor)); }
.dasha-years{ font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); text-align:right; }
.chart-footnote{ font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-top: 22px; }

/* ============================================================
   RASHI CHAKRA WHEEL
   ============================================================ */
.rashi-section{ background: var(--night); color: var(--ivory); }
.rashi-section .eyebrow{ color: var(--gold-soft); }
.rashi-section .section-head h2{ color: var(--ivory); }
.rashi-section .section-sub{ color: var(--sand); }
.rashi-layout{ display:grid; grid-template-columns: 340px 1fr; gap: 48px; align-items:center; }
.rashi-wheel{ width: 100%; max-width: 340px; }
.rashi-outer{ fill:none; stroke: var(--gold); stroke-width: 1.4; }
.rashi-inner{ fill: var(--night); stroke: var(--sand); stroke-width: 1; }
.rashi-wedge{ fill: rgba(212,160,23,0.04); stroke: rgba(201,191,168,.35); stroke-width: .75; transition: fill .25s; }
.rashi-wedge:hover{ fill: rgba(212,160,23,0.18); }
.rashi-label{ font-family: var(--font-mono); font-size: 9px; fill: var(--sand); text-anchor: middle; letter-spacing: .01em; }
.rashi-center-text{ font-family: var(--font-mono); font-size: 11px; fill: var(--gold-soft); text-anchor: middle; }
.rashi-table{ display:flex; flex-direction:column; border-top: 1px solid rgba(201,191,168,.25); }
.rashi-table-row{ display:grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(201,191,168,.2); font-size: 13.5px; }
.rashi-table-head{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-soft); }
.rashi-table-row span:first-child{ color: var(--ivory); }
.rashi-table-row span:not(:first-child){ color: var(--sand); }

/* ============================================================
   ASHTAKOOT MILAN CHART
   ============================================================ */
.ashtakoot-section{ background: var(--ivory-2); }
.ashtakoot-chart{ display:flex; flex-direction:column; gap: 12px; max-width: 620px; }
.ak-row{ display:grid; grid-template-columns: 120px 1fr 30px; align-items:center; gap: 14px; }
.ak-name{ font-family: var(--font-mono); font-size: 13px; color: var(--night); }
.ak-bar-track{ background: var(--ivory); border: 1px solid var(--sand); border-radius: 2px; height: 14px; overflow: hidden; }
.ak-bar{ height: 100%; width: calc(var(--v) / 8 * 100%); background: var(--sindoor); }
.ak-pts{ font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); text-align:right; }

/* ============================================================
   ABOUT PAGE — METHOD GRID + CTA
   ============================================================ */
.method-section{ background: var(--ivory-2); }
.method-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.method-card{ background: var(--ivory); border-left: 3px solid var(--gold); padding: 26px; }
.method-card h3{ font-size: 17px; color: var(--night); margin: 0 0 8px; }
.method-card p{ font-size: 14.5px; color: var(--ink-soft); margin:0; }
.about-cta{ background: var(--night); text-align:center; }
.about-cta-inner{ display:flex; flex-direction:column; align-items:center; gap: 22px; }
.about-cta h2{ color: var(--ivory); font-size: clamp(22px,2.6vw,30px); margin:0; }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 960px){
  .navagraha-grid{ grid-template-columns: repeat(2,1fr); }
  .rashi-layout{ grid-template-columns: 1fr; }
  .rashi-wheel{ margin: 0 auto; }
  .method-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .navagraha-grid{ grid-template-columns: 1fr; }
  .dasha-row{ grid-template-columns: 68px 1fr 44px; gap: 10px; }
  .ak-row{ grid-template-columns: 96px 1fr 26px; gap: 10px; }
}

/* ============================================================
   FREE KUNDALI PAGE
   ============================================================ */
.fk-hero-inner{ display:grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items:center; }
.fk-trust{ margin-top: 28px; border-top: 1px solid rgba(201,191,168,.25); padding-top: 22px; }
.fk-hero-chart svg{ width: 100%; max-width: 280px; margin: 0 auto; overflow: visible; }
.fk-hero-chart .chart-caption{ color: var(--sand); }

.fk-form-section{ background: var(--ivory-2); }
.fk-layout{ display:grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items:start; }
.fk-card{ max-width: none; }
.fk-card-title{ font-size: 20px; color: var(--night); margin-bottom: 22px; }
.field-inline-note{ margin: -8px 0 20px; }
.checkbox-note{ display:flex; align-items:flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-soft); cursor:pointer; }
.checkbox-note input{ margin-top: 3px; accent-color: var(--sindoor); }

.fk-side{ display:flex; flex-direction:column; gap: 24px; }
.fk-included{ background: var(--night); color: var(--ivory); border-radius: 6px; padding: 30px; }
.fk-included h3{ color: var(--ivory); font-size: 17px; margin-bottom: 16px; }
.fk-checklist{ list-style:none; display:flex; flex-direction:column; gap: 12px; }
.fk-checklist li{ position:relative; padding-left: 22px; font-size: 14px; color: var(--sand); }
.fk-checklist li::before{ content:'✓'; position:absolute; left:0; color: var(--gold-soft); font-family: var(--font-mono); }

/* ---------- Sample report mockup ---------- */
.fk-sample-section{ background: var(--ivory); }
.sample-report{ position: relative; background: var(--ivory-2); border: 1px solid var(--sand); border-radius: 6px; padding: 36px; max-width: 820px; overflow: hidden; }
.sample-watermark{
  position:absolute; top: 18px; right: -46px; background: var(--sindoor); color: var(--ivory);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; padding: 5px 50px;
  transform: rotate(35deg); box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.sample-report-head{ display:flex; justify-content: space-between; align-items:flex-start; gap: 24px; border-bottom: 1px solid var(--sand); padding-bottom: 22px; margin-bottom: 22px; flex-wrap: wrap; }
.sample-report-head h3{ font-size: 21px; color: var(--night); margin: 0 0 8px; }
.sample-meta{ font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.sample-report-chart svg{ width: 120px; height: 120px; }
.sample-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px 24px; margin-bottom: 22px; }
.sample-label{ display:block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--sindoor); margin-bottom: 4px; }
.sample-value{ display:block; font-family: var(--font-display); font-size: 17px; color: var(--night); }
.sample-note{ font-size: 13.5px; color: var(--ink-soft); margin: 0; border-top: 1px dashed var(--sand); padding-top: 18px; }

@media (max-width: 960px){
  .fk-hero-inner{ grid-template-columns: 1fr; }
  .fk-hero-chart{ order: -1; max-width: 260px; margin: 0 auto 20px; }
  .fk-layout{ grid-template-columns: 1fr; }
  .sample-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px){
  .sample-grid{ grid-template-columns: 1fr; }
  .sample-report{ padding: 24px; }
  .sample-watermark{ font-size: 10px; padding: 4px 40px; right: -40px; }
}

/* Sample report chart sits on a light background — override the dark-hero-tuned chart colors */
.sample-report-chart .chart-square{ stroke: rgba(74,71,63,.35); }
.sample-report-chart .chart-line, .sample-report-chart .chart-diamond{ stroke: var(--sindoor); opacity: .8; animation: none; }
.sample-report-chart .chart-center-dot{ fill: var(--sindoor); }
.sample-report-chart .house-glyph text{ fill: var(--ink-soft); font-size: 12px; }

/* ============================================================
   FREE KUNDALI — LIVE GENERATOR
   ============================================================ */
.fk-advanced{ background: var(--ivory-2); border: 1px solid var(--sand); border-radius: var(--radius); padding: 14px 16px; margin: -4px 0 20px; }
.fk-advanced summary{ cursor:pointer; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); }
.fk-advanced-note{ font-size: 13px; color: var(--ink-soft); margin: 10px 0 14px; }
.fk-advanced .ledger-row{ margin-bottom: 0; }
.fk-error{ background: rgba(166,50,58,0.08); border: 1px solid var(--sindoor); color: var(--sindoor-2); font-size: 13.5px; padding: 12px 14px; border-radius: var(--radius); margin: 14px 0 0; }

.fk-results-section{ background: var(--ivory-2); }
.fk-results-head{ display:flex; justify-content: space-between; align-items:flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.fk-results-head h2{ font-size: clamp(24px,2.8vw,32px); color: var(--night); margin: 4px 0; }

.fk-result-grid{ display:grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items:start; margin-bottom: 28px; }
.fk-result-chart-wrap{ background: var(--night); border-radius: 8px; padding: 24px; }
.fk-result-chart{ width: 100%; height:auto; }
.fk-result-chart .house-glyph text{ font-size: 13px; }
.fk-result-chart-wrap .chart-caption{ color: var(--sand); }

.fk-facts-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fk-fact{ background: var(--ivory); border: 1px solid var(--sand); border-radius: var(--radius); padding: 14px 16px; }
.fk-fact-label{ display:block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--sindoor); margin-bottom: 4px; }
.fk-fact-value{ display:block; font-family: var(--font-display); font-size: 16px; color: var(--night); }

.fk-summary{ background: var(--ivory); border-left: 3px solid var(--gold); padding: 20px 24px; font-size: 15px; color: var(--ink-soft); max-width: 900px; margin-bottom: 40px; }

.fk-subhead{ font-size: 19px; color: var(--night); margin: 0 0 16px; }
.fk-table-wrap{ overflow-x:auto; margin-bottom: 40px; border: 1px solid var(--sand); border-radius: var(--radius); }
.fk-table{ width:100%; border-collapse: collapse; background: var(--ivory); font-size: 14px; }
.fk-table th, .fk-table td{ text-align:left; padding: 11px 16px; border-bottom: 1px solid var(--sand); white-space: nowrap; }
.fk-table th{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); background: var(--ivory-2); }
.fk-table tbody tr:last-child td{ border-bottom: none; }
.fk-current-row td{ background: rgba(212,160,23,0.12); font-weight: 600; }
.fk-now-badge{ font-family: var(--font-mono); font-size: 10px; background: var(--sindoor); color: var(--ivory); padding: 2px 6px; border-radius: 3px; margin-left: 6px; vertical-align: middle; }

.fk-followup{ background: var(--night); color: var(--ivory); border-radius: 8px; padding: 32px; display:grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items:center; }
.fk-followup h3{ color: var(--ivory); font-size: 18px; margin: 0 0 8px; }
.fk-followup p{ color: var(--sand); font-size: 14px; margin:0; }
.fk-followup-form{ display:flex; gap: 10px; flex-wrap: wrap; }
.fk-followup-form input{ flex:1; min-width: 200px; padding: 12px 14px; border-radius: var(--radius); border: 1px solid var(--sand); font-family: var(--font-body); font-size: 14.5px; }
.fk-followup .form-note{ grid-column: 1 / -1; color: var(--gold-soft); margin:0; }

@media (max-width: 960px){
  .fk-result-grid{ grid-template-columns: 1fr; }
  .fk-followup{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .fk-facts-grid{ grid-template-columns: 1fr; }
  .fk-results-head{ flex-direction: column; align-items: flex-start; }
}
