:root {
  --bg: #0e131b;
  --bg-panel: #161d29;
  --bg-panel-2: #1b2230;
  --border: #2a3344;
  --text: #e8ecf2;
  --text-dim: #a6b0c3;
  --hot-1: #ffb347;
  --hot-2: #ff6a2b;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

a { color: var(--hot-1); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.brand img { width: 30px; height: 30px; border-radius: 7px; }
.brand .hot { background: linear-gradient(180deg, var(--hot-1), var(--hot-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

nav.site a {
  color: var(--text-dim);
  margin-left: 22px;
  font-size: 14px;
  font-weight: 600;
}
nav.site a:hover { color: var(--text); text-decoration: none; }

.hero {
  padding: 64px 0 40px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.25;
  margin: 0 0 14px;
  max-width: 640px;
}

.hero p.lede {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 560px;
  margin: 0 0 6px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.badge {
  border: 1px solid var(--border);
  background: var(--bg-panel);
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 30px 0 56px;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 { margin: 0; font-size: 19px; }
.card p { margin: 0; color: var(--text-dim); font-size: 14.5px; }

.card .price-tag {
  font-size: 13px;
  color: var(--hot-1);
  font-weight: 600;
}

.card .go {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
}

section.block {
  padding: 8px 0 48px;
}

section.block h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

table.spec {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}

table.spec th, table.spec td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

table.spec th { color: var(--text-dim); font-weight: 600; width: 34%; }

ul.use-cases { padding-left: 20px; color: var(--text-dim); }
ul.use-cases li { margin-bottom: 8px; }
ul.use-cases strong { color: var(--text); }

.cta {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--hot-1), var(--hot-2));
  color: #1b1206;
  font-weight: 700;
  font-size: 15px;
}
.cta:hover { text-decoration: none; filter: brightness(1.05); }

.back-link { display: inline-block; margin-bottom: 22px; color: var(--text-dim); font-size: 14px; }

.note {
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--text-dim);
  font-size: 14px;
  margin: 24px 0;
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  color: var(--text-dim);
  font-size: 13.5px;
}

footer.site a { color: var(--text-dim); }
footer.site .foot-links { margin-top: 10px; }
footer.site .foot-links a { margin-right: 16px; }

@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  nav.site a { margin-left: 14px; font-size: 13px; }
}
