/* Studio Bof Wow — intentionally simple
   system sans + monospace accents */

:root{
  --bg: #ffffff;
  --fg: #111111;
  --muted: #555555;
  --link: #111111;
  --maxw: 780px;
}
  
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  
  body{
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17.5px;
    line-height: 1.75;
    font-weight: 400;
  }
  
  .wrap{
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 28px 18px 60px;
  }
  
  /* header */
  
  .top h1{
    margin: 0 0 8px 0;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 600;
  }
  
  .top p{
    margin: 0 0 14px 0;
  }
  
  /* navigation — monospace accent */
  
  .nav{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 14px 0 0 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas,
                 "Liberation Mono", monospace;
  }
  
  .nav a{
    font-size: 14px;
  }
  
  /* links */
  
  a{
    color: var(--link);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
  
  a:hover{
    text-decoration-thickness: 2px;
  }

  a:focus-visible{
    outline: 2px solid var(--fg);
    outline-offset: 2px;
  }
  
  /* sections */
  
  .block{
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid #e9e9e9;
  }
  
  h2{
    margin: 0 0 12px 0;
    font-size: 21px;
    font-weight: 600;
  }
  
  h3{
    margin: 18px 0 8px 0;
    font-size: 17px;
    font-weight: 600;
  }
  
  /* text */
  
  p{
    margin: 0 0 12px 0;
    text-wrap: pretty;
  }
  
  ul{
    margin: 0 0 12px 20px;
    padding: 0;
  }
  
  li{
    margin: 0 0 6px 0;
  }
  
  /* quiet text — monospace, like notes / captions */
  
  .quiet{
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas,
                 "Liberation Mono", monospace;
    font-size: 14px;
  }
  
  /* spacing helpers */
  
  .spacer{ height: 14px; }
  .spacer-s{ height: 6px; }
  
  /* footer — monospace */
  
  .footer{
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid #e9e9e9;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas,
                 "Liberation Mono", monospace;
    font-size: 14px;
  }
  
  /* BOF / WOW marquees — full 90s energy */
  
  .bofwow-marquees{
    border: 1px solid #e9e9e9;
    padding: 6px 0;
    margin-top: 6px;
  }
  
  .bofwow-marquees marquee{
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas,
                 "Liberation Mono", monospace;
    font-size: 44px;
    line-height: 1;
    padding: 6px 0;
  }
  
  .bofwow-marquees marquee strong{
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  
  /* accessibility */
  
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    .bofwow-marquees marquee{ scrollamount: 0; }
  }