/* SchedIndex — plain CSS, mobile-first */
:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1a1f1c;
  --muted: #5a635c;
  --line: #e2e0d8;
  --accent: #1f6b4a;
  --accent-dark: #155238;
  --accent-soft: #e8f3ec;
  --warn: #8a5a00;
  --warn-bg: #fff6e5;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(26, 31, 28, 0.06), 0 8px 24px rgba(26, 31, 28, 0.06);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-dark); }

.wrap { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
}
.hero-kicker {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 18ch;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--muted); color: var(--ink); }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.85rem; }

.note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--warn);
  background: var(--warn-bg);
  border: 1px solid #f0dfb5;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  max-width: 60ch;
}

/* Sections */
section { padding: 2.5rem 0; }
.section-head {
  margin-bottom: 1.5rem;
}
.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

/* Comparison table */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.9rem;
}
.compare th, .compare td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare th {
  background: #f0efe9;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}
.compare tr:last-child td { border-bottom: none; }
.compare td.tool {
  font-weight: 700;
  white-space: nowrap;
}
.compare .yes { color: var(--accent-dark); font-weight: 600; }
.compare .partial { color: var(--warn); }
.compare .no { color: #8a4a4a; }
.check-live {
  font-size: 0.75rem;
  color: var(--warn);
  font-weight: 500;
  display: block;
  margin-top: 0.2rem;
}

/* Cards / picks */
.picks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.card h3 { margin: 0; font-size: 1.2rem; }
.card .price {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--muted);
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; flex: 1; }
.card .card-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.6rem;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.2em;
  color: var(--accent);
  font-weight: 700;
}
.faq details[open] summary::before { content: "–"; }
.faq details p {
  margin: 0.7rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer strong { color: var(--ink); }
.disclaimer {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  max-width: 70ch;
}

/* Compare page extras */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.prose {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.prose h2 { margin-top: 1.75rem; font-size: 1.25rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; color: var(--muted); }
.prose li { margin-bottom: 0.35rem; }
.verdict {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.verdict-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  background: #fafaf7;
}
.verdict-box h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 2rem 0 1.5rem; }
  section { padding: 1.75rem 0; }
}
