:root {
  color-scheme: dark;
  --bg: #071019;
  --panel: #101f2b;
  --line: #213747;
  --text: #f7fafc;
  --muted: #a9bac7;
  --teal: #38b2ac;
  --red: #e4474f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at 90% 0, #13283a 0, var(--bg) 36rem);
  color: var(--text);
  font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: #68d9d3; }
header, main, footer { width: min(72rem, calc(100% - 2rem)); margin: auto; }
nav { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; padding: 1.25rem 0; }
nav a { color: var(--muted); text-decoration: none; }
nav .brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--text); font-weight: 800; margin-right: auto; }
.brand img { width: 2.25rem; height: 2.25rem; border-radius: .6rem; }
.hero { padding: 5rem 0 4rem; max-width: 50rem; }
h1 { font-size: clamp(2.6rem, 8vw, 5.4rem); line-height: 1; margin: .2rem 0 1.4rem; }
h2 { margin-top: 2.6rem; line-height: 1.2; }
.eyebrow { color: var(--teal); font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.lede { color: var(--muted); font-size: 1.25rem; }
.button { display: inline-block; padding: .8rem 1.15rem; border-radius: .8rem; background: var(--teal); color: #061016; text-decoration: none; font-weight: 800; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; }
.card { padding: 1.25rem; background: color-mix(in srgb, var(--panel) 92%, transparent); border: 1px solid var(--line); border-radius: 1rem; }
.card h2, .card h3 { margin-top: 0; }
.jump-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.jump-card { display: block; padding: 1.25rem; color: var(--text); text-decoration: none; background: var(--panel); border: 1px solid var(--line); border-radius: 1rem; }
.jump-card:hover { border-color: var(--teal); }
.jump-card strong { display: block; font-size: 1.15rem; }
.jump-card span { color: var(--muted); }
.status { display: inline-block; margin-bottom: .5rem; padding: .15rem .55rem; border-radius: 999px; color: #061016; background: var(--teal); font-size: .78rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1rem; margin: 2rem 0; }
.product-shot { padding: 0; overflow: hidden; border: 1px solid #354b5c; border-radius: 2rem; background: #0b0f13; box-shadow: 0 1.5rem 4rem #0008; }
.product-shot img { display: block; width: 100%; height: auto; }
.hero-shot { max-width: 22rem; margin: 2rem 0 0; }
.comparison th:first-child, .comparison td:first-child { min-width: 12rem; }
.notice { border-left: .3rem solid var(--red); padding: .7rem 1rem; background: #21151b; }
table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
th, td { border-bottom: 1px solid var(--line); text-align: left; padding: .7rem; vertical-align: top; }
code { color: #86ebe6; }
footer { color: var(--muted); border-top: 1px solid var(--line); margin-top: 4rem; padding: 2rem 0 4rem; }
@media (max-width: 42rem) { .hero { padding-top: 3rem; } nav .brand { width: 100%; } }
