:root{
  --bg:#0b1220;
  --card:#101a2e;
  --text:#e8eefc;
  --muted:#b9c4dd;
  --brand:#7cdd9a;
  --brand2:#78b7ff;
  --border:rgba(232,238,252,.12);
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
  --max:1080px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(124,221,154,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 15%, rgba(120,183,255,.17), transparent 55%),
    radial-gradient(900px 700px at 45% 90%, rgba(255,255,255,.06), transparent 60%),
    var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:26px 18px 70px}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 16px; border:1px solid var(--border);
  border-radius:var(--radius); background:rgba(16,26,46,.55); backdrop-filter: blur(10px);
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
  font-weight:750; letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background:linear-gradient(135deg, rgba(124,221,154,.95), rgba(120,183,255,.95));
  box-shadow:0 10px 24px rgba(120,183,255,.20);
}
.navlinks{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  text-decoration:none; padding:9px 12px; border-radius:999px;
  border:1px solid var(--border); background:rgba(15,23,42,.55);
  color:var(--muted); font-size:14px;
}
.pill:hover{transform: translateY(-1px); transition:.15s ease; color:var(--text)}
.hero{padding:34px 6px 18px}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted); background:rgba(16,26,46,.45);
  font-size:13px;
}
.kdot{width:8px; height:8px; border-radius:99px; background:var(--brand)}
h1{margin:14px 0 10px; font-size:42px; line-height:1.1; letter-spacing:-.6px}
.subhead{max-width:740px; color:var(--muted); font-size:18px; margin:0 0 18px}
.grid{display:grid; gap:14px; grid-template-columns: repeat(12, 1fr); margin-top:18px}
.card{
  grid-column: span 12;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(16,26,46,.55);
  box-shadow:var(--shadow);
  padding:18px;
}
.card h2{margin:0 0 6px; font-size:20px}
.card p{margin:0; color:var(--muted)}
.card .meta{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--border); background:rgba(15,23,42,.55);
  color:var(--muted); font-size:13px;
}
.tag b{color:var(--text)}
.btnrow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px; text-decoration:none;
  font-weight:700; letter-spacing:.2px; border:1px solid var(--border);
  background:rgba(15,23,42,.65);
}
.btn:hover{transform:translateY(-1px); transition:.15s ease}
.btn.primary{
  border-color: rgba(124,221,154,.35);
  background:linear-gradient(135deg, rgba(124,221,154,.25), rgba(15,23,42,.65));
}
.btn.primary.blue{
  border-color: rgba(120,183,255,.45);
  background:linear-gradient(135deg, rgba(120,183,255,.20), rgba(15,23,42,.65));
}
.btn .arrow{opacity:.9}
.split{display:grid; gap:14px; grid-template-columns: repeat(12, 1fr)}
.left{grid-column: span 12}
.right{grid-column: span 12}
@media (min-width: 900px){
  .card{padding:22px}
  .left{grid-column: span 7}
  .right{grid-column: span 5}
  .twoUp .card{grid-column: span 6}
}
hr.sep{border:none; border-top:1px solid var(--border); margin:22px 0}
.small{font-size:13px; color:var(--muted)}
.footer{
  margin-top:26px; padding-top:18px;
  border-top:1px solid var(--border);
  display:flex; gap:10px; flex-wrap:wrap; justify-content:space-between; align-items:center;
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.notice{
  border:1px dashed rgba(232,238,252,.18);
  background:rgba(16,26,46,.35);
  padding:12px 14px; border-radius:14px;
  color:var(--muted);
}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}
.price{font-family:var(--mono); font-size:28px; letter-spacing:-.5px}

.hero-image{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: rgba(16,26,46,.35);
}
.hero-image img{
  width:100%;
  height:auto;
  display:block;
}