:root {
  --bg: #070a12;
  --surface: #101625;
  --surface-2: #161e30;
  --text: #f7f9ff;
  --muted: #aeb8cc;
  --line: #2b3650;
  --signal: #a08cff;
  --accept: #62d9a7;
  --reject: #ff7e87;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 18% -5%, #21214b 0, var(--bg) 38%);
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: flex; gap: 12px; align-items: center; font-weight: 820; letter-spacing: .05em; text-decoration: none; }
.mark { width: 28px; height: 28px; border: 2px solid var(--signal); border-radius: 8px; rotate: 45deg; position: relative; }
.mark::after { content: ""; position: absolute; width: 9px; height: 9px; inset: 7px; border: 2px solid var(--accept); border-radius: 50%; }
.navlinks { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.navlinks a { text-decoration: none; }
.hero { padding: 96px 0 70px; }
.kicker { color: var(--accept); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; }
h1 { max-width: 940px; margin: 18px 0; font-size: clamp(56px, 9vw, 112px); line-height: .9; letter-spacing: -.065em; }
.lead { max-width: 840px; font-size: clamp(20px, 2.2vw, 27px); color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-block; padding: 13px 18px; border-radius: 12px; text-decoration: none; font-weight: 760; border: 1px solid var(--line); background: var(--surface); }
.button.primary { color: #071710; background: var(--accept); border-color: var(--accept); }
.proof { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 38px 0 94px; }
.card { border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: linear-gradient(155deg, var(--surface-2), var(--surface)); }
.card.rejected { border-color: rgba(255,126,135,.56); }
.card.accepted { border-color: rgba(98,217,167,.56); }
.badge { display: inline-block; padding: 7px 10px; border-radius: 999px; font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.rejected .badge { background: var(--reject); color: #27070a; }
.accepted .badge { background: var(--accept); color: #061b12; }
.card h2 { margin: 24px 0 10px; font-size: 28px; }
.card code { color: #ded7ff; }
section { padding: 70px 0; border-top: 1px solid var(--line); }
section h2 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -.04em; line-height: 1; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid3 article { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(16,22,37,.7); }
.grid3 h3 { margin-top: 0; }
.muted { color: var(--muted); }
pre { overflow-x: auto; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #0b101d; color: #ded7ff; }
footer { padding: 52px 0 70px; color: var(--muted); }
@media (max-width: 760px) {
  .navlinks { display: none; }
  .hero { padding-top: 60px; }
  .proof, .grid3 { grid-template-columns: 1fr; }
}
