:root {
  --bg: #0b1020;
  --bg-soft: #121a30;
  --card: #ffffff;
  --ink: #1a2233;
  --ink-soft: #4a5568;
  --line: #e5e9f0;
  --brand: #3b5bfd;
  --brand-dark: #2e49d6;
  --accent: #12b886;
  --gold: #f5a623;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 24, 48, 0.1);
  --maxw: 1080px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #f7f9fc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand);
}

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Disclosure bar */
.disclosure-bar {
  background: #fff8e6;
  border-bottom: 1px solid #f3e3b3;
  color: #6b5418;
  font-size: 0.84rem;
  text-align: center;
  padding: 8px 16px;
}
.disclosure-bar a {
  color: #6b5418;
  text-decoration: underline;
}

/* Header */
.site-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-nav a {
  margin-left: 18px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover {
  color: var(--brand);
}

/* Hero */
.hero {
  text-align: center;
  padding: 56px 0 40px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.subhead {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition:
    transform 0.06s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  border: 1px solid transparent;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(59, 91, 253, 0.32);
}
.btn-primary:hover {
  background: var(--brand-dark);
}
.btn-secondary {
  background: #eef2ff;
  color: var(--brand-dark);
  border-color: #d8e0ff;
}
.btn-secondary:hover {
  background: #e2e9ff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 1.08rem;
}

/* Section headings */
section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 28px;
}

/* Picks grid */
.picks {
  padding: 24px 0;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.pick-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pick-best {
  border-color: var(--brand);
  box-shadow: 0 14px 40px rgba(59, 91, 253, 0.18);
}
.rank-badge {
  display: inline-block;
  align-self: flex-start;
  background: #eef2ff;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pick-best .rank-badge {
  background: var(--gold);
  color: #3a2c00;
}
.pick-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}
.pick-blurb {
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.pick-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.pick-points li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.pick-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.pick-card .btn {
  text-align: center;
}

/* Comparison table */
.compare {
  padding: 40px 0;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
thead th {
  background: var(--bg-soft);
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
tbody th,
tbody td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  font-size: 0.95rem;
}
tbody th {
  font-weight: 700;
}
tbody tr:hover {
  background: #f5f8ff;
}
tbody td a {
  font-weight: 700;
  text-decoration: none;
}

/* FAQ */
.faq {
  padding: 40px 0;
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 18px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 800;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

/* Final CTA */
.final-cta {
  text-align: center;
  background: var(--bg);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px 24px;
  margin: 24px 0 48px;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}
.final-cta p {
  color: #b6c2e0;
  margin: 0 0 22px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px 48px;
  text-align: center;
}
.footer-links a {
  margin: 0 10px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--brand);
}
.footer-note {
  margin-top: 14px;
  color: #9aa6bd;
  font-size: 0.8rem;
}

/* Static policy/disclosure pages */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.doc h1 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}
.doc h2 {
  text-align: left;
  font-size: 1.25rem;
  margin-top: 32px;
}
.doc p,
.doc li {
  color: var(--ink-soft);
}
.doc a.back {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  text-decoration: none;
}
