:root {
  --bg2: #0b1530;
  --bg3: #0e1b3f;
  --muted: #5a6581;
  --bg1: #0d0d0d;
  --text: #ffffff;
  --icon: #5d5d5d;
  --icon-activate: rgb(204, 204, 204);
}

* { 
  box-sizing: border-box;
}

html {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  overflow: hidden;
  background: var(--bg1);
}

.background { position: fixed; inset: 0; z-index: -2; }

.green-blue {
  background-color: var(--bg1);
}

.landing { text-align: center; z-index: 10; }
.headline {
  font-size: clamp(28px, 7vw, 90px);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 0 0 0;
  color: var(--text);
}

p {
    margin: 0 0 0 0;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--text);
}

.cta {
  display: inline-block;
  padding: 12px 150px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  background: var(--text);
  color: var(--bg1);
  border: 0px solid;
}


.muted { 
  margin: 10px 0 0 10px;
  color: var(--text); 
}

a {
  text-decoration: none;
  line-height: 1;
  color: #5680e9;
}

.theme-toggle {
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0px solid;
  background: transparent;
  cursor: pointer;
}

.theme-toggle svg { width: 22px; height: 22px; }
.theme-toggle .icon-moon { display: none; }
body.theme-dark .theme-toggle .icon-sun { display: none; }
body.theme-dark .theme-toggle .icon-moon { display: block; color: var(--text); }

.window-controls button {
  color: #ffffff;
}


