:root {
    --bg: #101215;
    --surface: #1a1e22;
    --border: #343a40;
    --text: #f4f6f8;
    --muted: #a8b0b8;
    --accent: #6cc2a8;
    --accent-ink: #10231e;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.55 Inter, Arial, sans-serif; }
a { color: var(--accent); }
.site-header { border-bottom: 1px solid var(--border); }
.nav, main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.nav { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: var(--text); text-decoration: none; font-weight: 700; }
.nav-links { display: flex; flex-wrap: wrap; gap: 18px; }
.nav-links a { text-decoration: none; color: var(--muted); }
.hero { padding: 56px 0 28px; border-bottom: 1px solid var(--border); }
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: 14px; font-weight: 700; }
h1 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: 0; }
.lede { max-width: 760px; color: var(--muted); font-size: 18px; }
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; padding: 32px 0 56px; }
.section { margin-bottom: 32px; }
h2 { margin: 0 0 12px; font-size: 24px; letter-spacing: 0; }
.panel { border: 1px solid var(--border); background: var(--surface); border-radius: 6px; padding: 20px; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 0; }
.facts dt { color: var(--muted); font-size: 13px; }
.facts dd { margin: 3px 0 0; font-weight: 600; }
.swatch { width: 100%; aspect-ratio: 1; border: 1px solid var(--border); border-radius: 6px; }
.side-title { margin: 14px 0 2px; font-size: 20px; }
.side-meta { margin: 0; color: var(--muted); }
.buy-link { display: block; margin-top: 18px; padding: 10px 14px; border-radius: 6px; background: var(--accent); color: var(--accent-ink); text-align: center; font-weight: 700; text-decoration: none; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 6px; }
table { width: 100%; min-width: 680px; border-collapse: collapse; background: var(--surface); }
th, td { padding: 13px 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
th { color: var(--muted); font-size: 13px; font-weight: 600; }
tr:last-child td { border-bottom: 0; }
.rank { color: var(--accent); font-weight: 700; }
.mini-swatch { display: inline-block; width: 22px; height: 22px; margin-right: 8px; vertical-align: middle; border: 1px solid var(--border); border-radius: 4px; }
.method { color: var(--muted); }
.footer { padding: 28px 16px; border-top: 1px solid var(--border); color: var(--muted); text-align: center; font-size: 14px; }

@media (max-width: 760px) {
    .layout { grid-template-columns: 1fr; }
    .hero { padding-top: 36px; }
    .facts { grid-template-columns: 1fr; }
    .swatch { width: 160px; }
}
