:root {
  --bg: #0b1120;
  --bg-soft: #111a2e;
  --card: #131d33;
  --border: #1f2c47;
  --text: #e6ecf7;
  --muted: #9fb0cc;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --ok: #34d399;
  --radius: 14px;
  --max: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--text);
  background: radial-gradient(1200px 600px at 70% -10%, #16233f 0%, var(--bg) 55%);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.topbar { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, #6366f1, #22d3ee);
  display: inline-grid; place-items: center; color: #07101f; font-weight: 800; font-size: 16px; }
.topbar nav a { color: var(--muted); font-size: 15px; margin-left: 22px; }

.hero { padding: 64px 0 36px; max-width: 720px; }
.hero h1 { font-size: clamp(40px, 7vw, 64px); line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 14px; }
.hero p { font-size: clamp(17px, 2.4vw, 20px); color: var(--muted); margin: 0; }

section { padding: 36px 0; }
.section-head h2 { font-size: clamp(24px, 4vw, 30px); letter-spacing: -0.02em; margin: 0 0 6px; }
.section-head p { color: var(--muted); margin: 0 0 26px; }

.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.product {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column;
}
.product.featured { border: 2px solid var(--accent); }
.pin {
  position: absolute; top: -11px; left: 22px; background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600; padding: 3px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.product .row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.product .logo { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), #22d3ee);
  display: grid; place-items: center; color: #07101f; font-weight: 800; font-size: 20px; }
.product h3 { margin: 0; font-size: 21px; letter-spacing: -0.01em; }
.product .badge { font-size: 12px; color: #bcd4ff; background: var(--accent-soft);
  border: 1px solid #284271; border-radius: 999px; padding: 2px 10px; }
.product p { color: var(--muted); margin: 0 0 18px; font-size: 15px; }
.product .go { margin-top: auto; font-weight: 600; }
.product.soon { opacity: 0.7; }

.about { max-width: 720px; color: var(--muted); }
.about p { font-size: 16px; }

footer { border-top: 1px solid var(--border); padding: 28px 0; color: var(--muted); font-size: 14px; margin-top: 20px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; justify-content: space-between; }
