  :root{
    color-scheme:light;
    --white:#FFFFFF;
    --bg:#F1F1F0;
    --bg-soft:#E6E6E4;
    --green:#8FC22A;
    --green-bright:#A6DB3D;
    --green-dark:#5F8A1E;
    --blue-light:#D9ECFB;
    --blue-dark:#2C6E9B;
    --ink:#191C19;
    --ink-soft:#5C6259;
    --line:#E3E8DD;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;background:var(--bg);}
  body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    line-height:1.55;
  }
  h1,h2,h3{
    font-family:'Poppins',sans-serif;
    font-weight:700;
    margin:0 0 .45em 0;
    letter-spacing:-0.01em;
  }
  .mono{font-family:'IBM Plex Mono',monospace;}
  a{color:inherit;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1120px;margin:0 auto;padding:0 24px;}
  button{font-family:inherit;cursor:pointer;}

