/* Base layout */
:root {
  --bg2: #0b1530;
  --bg3: #0e1b3f;
  --muted: #5a6581;
  /* --bg1: #080707; */
  --bg1: #0b0b0b;
  --bg2: #0e0e0e;
  --border: #1f1f1f;
  --border2: #ffffff1a;


  --text: #ffffff;
  --icon: #5d5d5d;
  --icon-activate: rgb(204, 204, 204);
}

/* Dark theme overrides via body class */
/* body.theme-dark {
  --bg1: #0b0b0b;
  --text: #ffffff;
  --icon: #5d5d5d;
  --icon-activate: rgb(255, 255, 255);
} */

* { 
  box-sizing: border-box;
}

/* Hide scrollbar */
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);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000000;
  padding: 20px 40px;
  background: transparent;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;

}

.navbar.scrolled {
  background: rgb(0, 0, 0);
  padding: 16px 40px;
}

.navbar-container {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-logo {
  position: absolute;
  left: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.navbar-logo img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.navbar-brand {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: #ffffff;
}

.navbar-actions {
  position: absolute;
  right: 0px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-actions .cta-primary,
.navbar-actions .cta-secondary {
  padding: 8px 28px;
  font-size: 16px;
}

@media (max-width: 1300px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar.scrolled {
    padding: 16px 0;
  }
  
  .navbar-container {
    padding: 0 20px;
  }
  
  .navbar-logo {
    left: 20px;
  }
  
  .navbar-brand {
    font-size: 18px;
  }
  
  .navbar-links {
    display: none;
  }
  
  .navbar-actions {
    right: 20px;
  }
  
  .navbar-actions .cta-primary {
    display: none;
  }
  
  .navbar-actions .cta-secondary {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* Landing */
.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: 14px;
  font-weight: 400;
  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); }
