@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --background: #ffffff;
  --foreground: #080635;
  --muted: #3b378c;
  --muted-bg: #f7f9fd;
  --border: #dbe3f0;
  --primary: #3e89f7;
  --primary-dark: #2473e8;
  --secondary: #070535;
  --secondary-light: #1a1648;
  --white-soft: rgba(255, 255, 255, 0.82);
  --shadow: 0 16px 42px rgba(8, 6, 53, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1198px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(219, 227, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 112px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin: 0 auto;
  color: #302d88;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav .active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.login-link {
  color: #080635;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 30px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.spark,
.mini-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.spark {
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(62, 137, 247, 0.12);
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.button-small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 14px;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(62, 137, 247, 0.22);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-light {
  color: var(--secondary);
  background: #fff;
}

.button-outline,
.button-outline-light {
  border: 2px solid currentColor;
  background: transparent;
}

.button-outline {
  color: var(--primary);
}

.button-outline-light {
  color: #fff;
}

.menu-button,
.mobile-nav {
  display: none;
}
