:root {
  --bg: #0d1b2a;
  --panel: #14273c;
  --text: #e4edf6;
  --muted: #9cb2c9;
  --accent: #ff9900;
  --line: #47607c;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #1a324c 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.5;
}

.trust-header {
  text-align: center;
  padding: 0.72rem 1rem;
  background: #071321;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.container { width: min(1120px, 92%); margin: 0 auto; padding: 1.15rem 0 2rem; }
.hero h1 { margin: 0.4rem 0 0.6rem; font-size: clamp(1.5rem, 4.2vw, 2.8rem); }
.hero p { color: var(--muted); }
.eyebrow { margin: 0; color: #c6d6e7; text-transform: uppercase; letter-spacing: 0.08em; }

.btn-primary {
  display: inline-block;
  text-decoration: none;
  color: #111;
  background: var(--accent);
  padding: 0.68rem 0.95rem;
  border-radius: 0.45rem;
  font-weight: 700;
}

.quiz, .products, .table-wrap, .sources {
  margin-top: 1.15rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1rem;
}

.quiz-grid, .product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.quiz-card, .product-card {
  border: 1px solid #35506d;
  border-radius: 0.6rem;
  padding: 0.8rem;
  background: #112238;
}

.quiz-card ul { margin: 0; padding-left: 1rem; color: var(--muted); }
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.45rem;
  background: #d7e3ef;
}
.product-card h3 { margin: 0.7rem 0 0.45rem; }
.product-card p { color: var(--muted); margin: 0 0 0.45rem; }

.table-scroll { overflow-x: auto; }
table { width: 100%; min-width: 760px; border-collapse: collapse; }
th, td { text-align: left; padding: 0.75rem; border-bottom: 1px solid #35506d; }
th { color: #c8d9ea; }

.sources ul { margin: 0; padding-left: 1rem; }
.sources a { color: #a8d2ff; }

.affiliate-disclosure {
  width: min(1120px, 92%);
  margin: 0 auto 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: #a3bad1;
  font-size: 0.86rem;
}

@media (min-width: 760px) {
  .quiz-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
