:root {
  --bg: #0c0f12;
  --bg2: #12171c;
  --text: #e8ecef;
  --muted: #8b949e;
  --line: rgba(232,236,239,0.1);
  --accent: #3dd6c6;
  --accent-dim: rgba(61,214,198,0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 70% 45% at 15% -10%, rgba(61,214,198,0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(120,140,180,0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; backdrop-filter: blur(10px);
  background: rgba(12,15,18,0.85); z-index: 10;
}
.brand {
  font-family: Audiowide, system-ui, sans-serif;
  font-size: 1.05rem; color: var(--text); text-decoration: none; letter-spacing: 0.04em;
}
.brand:hover { text-decoration: none; color: var(--accent); }
nav .links { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; }
nav .links a { color: var(--muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; }
nav .links a:hover { color: var(--text); }
.cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--accent); color: #06201c !important;
  font-weight: 600; font-size: 0.875rem;
  padding: 0.55rem 1rem; border-radius: 0.55rem; text-decoration: none !important;
}
.cta:hover { filter: brightness(1.06); }
.cta-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); color: var(--text) !important;
  padding: 0.55rem 1rem; border-radius: 0.55rem; font-size: 0.875rem; font-weight: 500;
  text-decoration: none !important;
}
.cta-ghost:hover { border-color: rgba(61,214,198,0.35); }
main { max-width: 48rem; margin: 0 auto; padding: 3.25rem 5vw 4rem; }
h1 {
  font-family: Syne, system-ui, sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem); letter-spacing: -0.02em;
  margin-bottom: 0.75rem; line-height: 1.15;
}
h2 {
  font-family: Syne, system-ui, sans-serif; font-weight: 700;
  font-size: 1.35rem; margin: 2.4rem 0 0.75rem;
}
.lead { color: var(--muted); font-size: 1.05rem; max-width: 38rem; margin-bottom: 1.75rem; }
.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.5rem 0 2rem; }
.card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 0.9rem; padding: 1.15rem 1.25rem; margin: 0.75rem 0;
}
.card h3 { font-family: Syne, system-ui, sans-serif; font-size: 1.05rem; margin-bottom: 0.35rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
ul.facts { list-style: none; margin: 1rem 0 1.5rem; }
ul.facts li {
  padding: 0.55rem 0 0.55rem 1.1rem; position: relative;
  border-bottom: 1px solid var(--line); color: var(--muted);
}
ul.facts li::before {
  content: ""; position: absolute; left: 0; top: 1rem;
  width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--accent);
}
footer {
  border-top: 1px solid var(--line); padding: 1.5rem 5vw 2.5rem;
  color: var(--muted); font-size: 0.85rem;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: space-between;
  max-width: 56rem; margin: 0 auto;
}
footer a { color: var(--muted); }
.eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}