:root {
  color-scheme: light;
  --bg: #f4f1ec;
  --ink: #171512;
  --muted: #6d655c;
  --line: #ded6cc;
  --card: #fffdf9;
  --accent: #2455ff;
  --good: #0a7a4b;
  --warn: #a15b00;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: var(--bg); color: var(--ink); }
.hero { padding: 56px clamp(20px, 5vw, 72px) 34px; background: radial-gradient(circle at 80% 10%, #dce4ff, transparent 28%), linear-gradient(135deg, #fffdf9, #ebe5dc); border-bottom: 1px solid var(--line); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; color: var(--accent); font-weight: 800; }
h1 { font-size: clamp(36px, 7vw, 76px); line-height: .93; margin: 12px 0 18px; letter-spacing: -0.06em; max-width: 920px; }
.hero p { max-width: 780px; font-size: 20px; color: var(--muted); }
.summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 32px; }
.summary div, .requirements, .card { background: rgba(255,253,249,.85); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 16px 50px rgba(30,20,10,.08); }
.summary div { padding: 18px; }
.summary strong, .summary span { display: block; }
.summary span { margin-top: 6px; color: var(--muted); }
main { padding: 28px clamp(20px, 5vw, 72px) 60px; }
.requirements { padding: 24px; margin-bottom: 22px; }
.requirements h2 { margin-top: 0; }
.requirements ul { margin: 0; padding-left: 22px; color: var(--muted); line-height: 1.7; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
button, .button { border: 1px solid var(--ink); border-radius: 999px; padding: 10px 16px; background: transparent; color: var(--ink); font-weight: 800; cursor: pointer; text-decoration: none; display: inline-flex; justify-content: center; }
button.active, .button { background: var(--accent); color: white; border-color: var(--accent); }
.count { color: var(--muted); font-weight: 700; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 18px; }
.card { overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.card.winner { outline: 3px solid rgba(36,85,255,.22); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #ddd; }
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.badge { background: #e7f7ef; color: var(--good); border-radius: 999px; padding: 6px 10px; font-weight: 900; font-size: 12px; }
.score { font-weight: 900; color: var(--accent); }
h3 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.headline { margin: 0; color: var(--muted); min-height: 42px; }
.price { font-size: 32px; font-weight: 950; letter-spacing: -.04em; }
.price span { font-size: 15px; color: var(--muted); font-weight: 700; }
.meta { color: var(--muted); font-size: 14px; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 6px 0 10px; }
.proscons div { background: #f6f2eb; border-radius: 16px; padding: 12px; }
.proscons strong, .proscons em { display: block; }
.proscons strong { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.proscons em { font-style: normal; color: var(--muted); font-size: 13px; margin-top: 4px; }
footer { padding: 22px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); color: var(--muted); }
.error { color: #9b1c1c; font-weight: 800; }
@media (max-width: 760px) { .summary, .proscons { grid-template-columns: 1fr; } h1 { font-size: 44px; } }
