:root{
  color-scheme: dark;

  --bg:#0b0f14;
  --text:#f9fafb;
  --muted:#a1a1aa;
  --link:#f9fafb;
  --rule:#1f2937;

  --max: 880px;
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

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

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 20px;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:34px;
}

.brand{
  font-weight:700;
  letter-spacing:-0.01em;
}

nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

main h1{
  font-size: clamp(28px, 3.4vw, 38px);
  line-height:1.15;
  letter-spacing:-0.02em;
  margin:0 0 10px;
}

p.lede{
  margin:0 0 26px;
  color:var(--muted);
  max-width:74ch;
}

section{
  padding-top:10px;
  margin-top:6px;
}

h2{
  font-size:18px;
  margin:18px 0 6px;
  letter-spacing:-0.01em;
}

p, li{
  margin:0 0 10px;
  color:var(--muted);
  max-width:78ch;
}

.soon{
  color:var(--muted);
  margin-top:2px;
}

footer{
  margin-top:40px;
  padding-top:16px;
  border-top:1px solid var(--rule);
  color:var(--muted);
  font-size:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

footer .dot{ opacity:.75; }

.back{
  display:inline-block;
  margin-bottom:20px;
  color:var(--text);
}

strong{ color:var(--text); }
