/* Free Vedic Report — utility-first light theme.
   Deliberately the opposite of vedicprint.com's Lavender Cosmos:
   system fonts, no decoration, fast paint, trust through plainness. */

:root {
  --paper: #faf9f6;
  --card: #ffffff;
  --ink: #1f1e24;
  --muted: #5c5a66;
  --line: #e6e3da;
  --accent: #4338ca;        /* indigo links */
  --button: #b45309;        /* saffron action */
  --button-hover: #92400e;
  --ok: #15803d;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header */
.top {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}
.top .wrap { display: flex; justify-content: space-between; align-items: center; }
.top a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 14px; }

/* hero */
h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 36px 0 10px;
  letter-spacing: -0.5px;
}
.sub {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 18px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  color: var(--muted);
}
.trust li::before { content: "✓ "; color: var(--ok); font-weight: 700; }

/* form card */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.card h2 { margin: 0 0 16px; font-size: 20px; }
.field { margin-bottom: 14px; position: relative; }

.place-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 20;
  background: #fff;
  border: 1px solid #cfccc2;
  border-top: 0;
  border-radius: 0 0 7px 7px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  max-height: 220px;
  overflow-y: auto;
}
.place-dropdown:empty { display: none; }
.place-option {
  padding: 9px 12px;
  font-size: 14.5px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.place-option:last-child { border-bottom: 0; }
.place-option:hover, .place-option.highlighted { background: #f3f1ff; }
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
label .opt { color: var(--muted); font-weight: 400; }
input, select {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #cfccc2;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
}
input:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
.row { display: flex; gap: 12px; }
.row .field { flex: 1; }

button.go {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--button);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
button.go:hover { background: var(--button-hover); }
button.go:disabled { background: #a8a29e; cursor: wait; }

.fineprint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.error {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 14.5px;
}
.loading-wrap { display: none; margin-top: 14px; }
.progress {
  height: 8px;
  background: #ece8dc;
  border-radius: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 2%;
  background: var(--button);
  border-radius: 6px;
  transition: width .8s ease;
}
.loading-note {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
}

/* sections */
section { margin: 44px 0; }
h2 { font-size: 24px; margin: 0 0 14px; letter-spacing: -0.3px; }
h3 { font-size: 17px; margin: 22px 0 6px; }
p { margin: 0 0 12px; }
.muted { color: var(--muted); }
a { color: var(--accent); }

/* what's included */
.includes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.includes li {
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.includes li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 700;
  position: absolute;
  left: 4px;
}
.includes li strong { font-weight: 600; }
.includes li.paid::before { content: "+"; color: var(--button); }
.includes li.paid { color: var(--muted); }

/* steps */
.steps { padding-left: 22px; margin: 0; }
.steps li { margin-bottom: 8px; }

/* faq */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 10px 0;
  font-size: 16.5px;
}
.faq details p { color: var(--muted); margin: 4px 0 14px; font-size: 15.5px; }

/* tool result panel */
.result {
  display: none;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #f3f1ff;
  border: 1px solid #d6d1f5;
}
.result .big {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
}
.result .detail { color: var(--muted); font-size: 15px; margin: 0 0 4px; }
.result .approx-note {
  font-size: 13.5px;
  color: #92400e;
  margin: 8px 0 0;
}
.result .cta-line {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #d6d1f5;
  font-size: 15px;
}

/* data tables */
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 14px 0;
}
table.data th, table.data td {
  text-align: left;
  padding: 7px 10px;
  border-bottom: 1px solid var(--line);
}
table.data th { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
table.data tr.hit td { background: #f3f1ff; font-weight: 600; }

/* tool link cards (landing) */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.tools-grid a {
  display: block;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 9px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
}
.tools-grid a span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 3px;
}
.tools-grid a:hover { border-color: var(--accent); }

/* big CTA block on tool pages */
.cta-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--button);
  border-radius: 9px;
  padding: 18px 20px;
  margin: 30px 0;
}
.cta-block p { margin: 0 0 10px; }
.cta-block a.go-link {
  display: inline-block;
  padding: 11px 22px;
  background: var(--button);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}
.cta-block a.go-link:hover { background: var(--button-hover); }

/* footer */
footer {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding: 22px 0 40px;
  font-size: 13.5px;
  color: var(--muted);
}
footer a { color: var(--muted); }

@media (max-width: 540px) {
  h1 { font-size: 27px; margin-top: 26px; }
  .sub { font-size: 16px; }
  .row { flex-direction: column; gap: 0; }
  .card { padding: 18px; }
}
