:root {
    --bg: #0b0c12;
    --bg-2: #0f111a;
    --panel: #151722;
    --panel-2: #1b1e2b;
    --line: rgba(255,255,255,.09);
    --line-2: rgba(255,255,255,.06);
    --text: #eceef5;
    --muted: #9aa0b4;
    --dim: #6b7186;
    --primary: #18d3b7;
    --primary-ink: #04120f;
    --accent: #18d3b7;
    --display: "Space Grotesk", system-ui, sans-serif;
    --sans: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0; font-family: var(--sans); color: var(--text);
    background: var(--bg); font-size: 16px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,12,18,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; }
.brand-mark { font-size: 22px; filter: drop-shadow(0 0 8px rgba(24,211,183,.5)); }
.brand-accent { color: var(--primary); }
.top-nav { display: flex; gap: 26px; align-items: center; }
.top-nav a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .15s; }
.top-nav a:hover { color: #fff; }
.top-nav a.nav-cta { color: var(--primary-ink); background: var(--primary); padding: 8px 16px; border-radius: 10px; font-weight: 600; }
.top-nav a.nav-cta:hover { filter: brightness(1.1); color: var(--primary-ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 72px; text-align: center;
    background:
      radial-gradient(900px 500px at 15% -10%, rgba(24,211,183,.16), transparent 60%),
      radial-gradient(900px 500px at 85% 0%, rgba(120,90,255,.16), transparent 60%),
      var(--bg); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; opacity: .5;
    -webkit-mask-image: radial-gradient(700px 400px at 50% 20%, #000, transparent 75%);
    mask-image: radial-gradient(700px 400px at 50% 20%, #000, transparent 75%); }
.hero > .wrap { position: relative; z-index: 1; }
.hero .eyebrow { display: inline-block; font-family: var(--display); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; padding: 6px 14px; border: 1px solid rgba(24,211,183,.3); border-radius: 30px; background: rgba(24,211,183,.06); }
.hero h1 { font-family: var(--display); font-size: clamp(38px, 6vw, 68px); font-weight: 700; margin: 0 0 20px; letter-spacing: -.03em; line-height: 1.02; }
.hero h1 .hl { background: linear-gradient(120deg, var(--primary), #7d6bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { max-width: 640px; margin: 0 auto 30px; color: var(--muted); font-size: 18px; }
.hero-jump { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-jump a { padding: 11px 22px; border-radius: 12px; font-weight: 600; font-size: 15px; transition: transform .15s, background .15s; }
.hero-jump a.primary { background: var(--primary); color: var(--primary-ink); }
.hero-jump a.ghost { background: rgba(255,255,255,.05); border: 1px solid var(--line); color: #fff; }
.hero-jump a:hover { transform: translateY(-2px); }
.hero-stats { display: flex; gap: 34px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.hero-stats div { text-align: center; }
.hero-stats b { display: block; font-family: var(--display); font-size: 26px; color: #fff; }
.hero-stats span { font-size: 12.5px; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 0 0 30px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--display); font-size: 30px; font-weight: 700; margin: 0; letter-spacing: -.02em; }
.section-head p { margin: 6px 0 0; color: var(--muted); font-size: 15.5px; }
.section-head .tag { font-family: var(--display); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }

/* ---------- Console cards (image-first) ---------- */
.con-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.con-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, border-color .2s, box-shadow .2s; }
.con-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); box-shadow: 0 20px 50px -20px rgba(0,0,0,.7), 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent); }
.cc-media { position: relative; height: 210px; display: flex; align-items: center; justify-content: center; padding: 22px; overflow: hidden;
    background: radial-gradient(120% 120% at 50% 22%, #eef1f8 0%, #d7dce9 58%, #c3cadb 100%); }
.cc-media img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 14px 24px rgba(20,24,44,.4)); transition: transform .3s ease; }
.con-card:hover .cc-media img { transform: scale(1.06); }
.cc-media .type-badge { position: absolute; top: 12px; left: 12px; background: rgba(11,12,18,.82); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .04em; padding: 5px 11px; border-radius: 20px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.cc-media .accent-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--accent); }
.cc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.cc-brand { font-family: var(--display); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .09em; color: var(--accent); margin-bottom: 5px; }
.cc-name { margin: 0 0 8px; font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -.01em; color: #fff; }
.cc-name a { color: #fff; }
.cc-name a:hover { color: var(--accent); }
.cc-price { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.cc-price b { color: #fff; font-size: 20px; font-family: var(--display); }
.cc-tagline { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.cc-specs { list-style: none; margin: 0 0 18px; padding: 12px 0 0; border-top: 1px solid var(--line-2); display: grid; gap: 8px; }
.cc-specs li { font-size: 13.5px; color: var(--text); display: flex; gap: 10px; }
.cc-specs li span { color: var(--dim); min-width: 74px; }
.cc-actions { margin-top: auto; display: flex; gap: 10px; }
.cc-actions .btn-buy { flex: 1; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; border-radius: 11px; font-weight: 600; font-size: 14px; transition: filter .15s, background .15s, border-color .15s, transform .15s; text-align: center; cursor: pointer; }
.btn-buy { background: var(--accent); color: #05100e; }
.btn-buy:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-buy.lg { padding: 15px 28px; font-size: 15.5px; border-radius: 13px; }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; }

/* ---------- Compare table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 720px; }
.compare th { text-align: left; padding: 15px 16px; background: var(--panel-2); font-family: var(--display); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--line); }
.compare td { padding: 13px 16px; border-bottom: 1px solid var(--line-2); color: var(--muted); vertical-align: middle; }
.compare tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: rgba(255,255,255,.02); }
.ct-name { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; }
.ct-name:hover { color: var(--accent); }
.ct-thumb { width: 52px; height: 40px; border-radius: 8px; object-fit: contain; background: radial-gradient(circle at 50% 30%, #e9edf5, #ccd3e1); padding: 4px; flex-shrink: 0; }
.ct-best { max-width: 360px; }
.ct-buy { color: var(--accent); font-weight: 600; white-space: nowrap; }
.ct-buy:hover { text-decoration: underline; }

/* ---------- Detail page ---------- */
.detail-hero { border-bottom: 1px solid var(--line);
    background: radial-gradient(800px 400px at 80% -30%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%), var(--bg-2); }
.detail-hero .wrap { padding: 20px 22px 44px; }
.back { color: var(--muted); font-size: 14px; }
.back:hover { color: #fff; }
.dh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 22px; }
.dh-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 34px;
    background: radial-gradient(120% 120% at 50% 22%, #eef1f8, #d5dae7 65%, #c0c8da); border: 1px solid var(--line); }
.dh-media img { max-height: 100%; max-width: 100%; object-fit: contain; filter: drop-shadow(0 20px 38px rgba(20,24,44,.42)); }
.dh-brand { font-family: var(--display); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.dh-meta { display: inline-flex; gap: 8px; margin-left: 10px; }
.dh-meta span { font-size: 11.5px; color: var(--muted); background: rgba(255,255,255,.06); padding: 3px 10px; border-radius: 20px; }
.detail-hero h1 { font-family: var(--display); font-size: clamp(30px, 4.5vw, 46px); font-weight: 700; margin: 12px 0 0; letter-spacing: -.02em; }
.dh-tagline { color: var(--muted); font-size: 17px; margin: 14px 0 22px; }
.dh-price { font-size: 15px; color: var(--muted); margin-bottom: 18px; } .dh-price b { color: #fff; font-size: 30px; font-family: var(--display); }
.dh-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.detail-body { padding: 44px 22px 60px; }
.dh-bestfor { display: flex; gap: 14px; align-items: flex-start; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--accent); padding: 16px 20px; border-radius: 12px; font-size: 15.5px; color: var(--text); margin: 0 0 36px; }
.dh-bestfor b { font-family: var(--display); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); white-space: nowrap; padding-top: 2px; }
.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; }
.d-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; }
.d-card h2 { font-family: var(--display); font-size: 20px; margin: 0 0 16px; letter-spacing: -.01em; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th { text-align: left; padding: 11px 0; width: 42%; color: var(--dim); font-weight: 500; font-size: 13.5px; vertical-align: top; border-bottom: 1px solid var(--line-2); }
.spec-table td { padding: 11px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--line-2); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.verdict { display: flex; flex-direction: column; gap: 18px; }
.verdict h3 { font-family: var(--display); font-size: 15px; margin: 0 0 10px; }
.verdict ul { margin: 0; padding-left: 20px; }
.verdict li { margin-bottom: 7px; font-size: 14.5px; color: var(--muted); }
.pros { background: rgba(24,211,183,.06); border: 1px solid rgba(24,211,183,.22); border-radius: 12px; padding: 18px 20px; }
.cons { background: rgba(255,90,90,.05); border: 1px solid rgba(255,90,90,.2); border-radius: 12px; padding: 18px 20px; }

.buy-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-radius: 18px; padding: 26px 30px; margin: 40px 0 10px;
    background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 18%, var(--panel)), var(--panel)); border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line)); }
.buy-cta strong { display: block; font-family: var(--display); font-size: 19px; color: #fff; }
.buy-cta span { color: var(--muted); font-size: 14.5px; }

.related { margin-top: 50px; }
.related h2 { font-family: var(--display); font-size: 24px; margin: 0 0 20px; letter-spacing: -.01em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 46px 0 26px; margin-top: 30px; color: var(--muted); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--display); font-weight: 700; color: #fff; font-size: 18px; display: inline-flex; align-items: center; gap: 8px; }
.footer-brand + p { font-size: 14px; color: var(--muted); margin: 12px 0 0; max-width: 400px; }
.footer-disclosure strong { color: #fff; font-size: 14px; font-family: var(--display); }
.footer-disclosure p { font-size: 13px; color: var(--dim); margin: 8px 0 0; line-height: 1.6; }
.footer-legal { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line-2); font-size: 12.5px; color: var(--dim); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
    .top-nav { gap: 16px; font-size: 13px; }
    .dh-grid { grid-template-columns: 1fr; gap: 24px; }
    .detail-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .top-nav a:not(.nav-cta) { display: none; }
    .hero { padding: 60px 0 52px; }
    .hero-stats { gap: 22px; }
}
