@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg-0: #040b13;
  --bg-1: #07111d;
  --text: #eaf2ff;
  --muted: #9db0c9;
  --accent: #40d4c1;
  --accent-2: #4b9dff;
  --line: rgba(163, 180, 200, 0.16);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
}
a { color: inherit; text-decoration: none; }
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; border-bottom: 1px solid var(--line);
}
.brand { display: flex; gap: 12px; align-items: center; }
.brand small { display: block; color: var(--muted); font-size: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041018;
}
.nav { display: flex; gap: 20px; color: var(--muted); }
.hero { max-width: 900px; margin: 0 auto; padding: 80px 24px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
h1 { font-family: "Space Grotesk", sans-serif; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }
.actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 12px; font-weight: 600;
}
.button--primary { background: var(--accent); color: #041018; }
.button--secondary { border: 1px solid var(--line); }
.section { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.section h2 { font-family: "Space Grotesk", sans-serif; }
.section ul { color: var(--muted); line-height: 1.8; }
