
/* Comment: Design tokens and reset. Third person and no accents. */
:root{
  --bg:#07090d;
  --surface:#0c111b;
  --overlay:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.10);
  --text:#e9eef7;
  --muted:#aab3c2;
  --accent:#ddff00;
  --accent-2:#fdeb61;
  --radius:18px;
  --navbar-h:72px;
  --shadow-md:0 10px 30px rgba(0,0,0,.35);
  --shadow-lg:0 20px 60px rgba(0,0,0,.55);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:
    radial-gradient(1000px 700px at 10% -10%, rgba(255, 242, 143, 0.15), transparent 60%),
    radial-gradient(1000px 700px at 110% 10%, rgba(253, 255, 182, 0.1), transparent 60%),
    linear-gradient(180deg,#0a0d14 0%,#07090d 100%);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  line-height:1.5;
  padding-top:var(--navbar-h);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;clip-path:inset(50%)}
@media (max-width:900px){:root{--navbar-h:64px}}
@media (max-width:640px){:root{--navbar-h:56px}}
