

/* file: /mnt/data/wiz/project/main/build/src/styles.scss */
:root {
  --fit-bg: #020403;
  --fit-panel: #101614;
  --fit-line: rgba(255, 255, 255, 0.12);
  --fit-muted: #aeb5b1;
  --fit-lime: #a7ff1a;
}

html,
body,
app-root {
  width: 100%;
  min-height: 100%;
  height: 100%;
  margin: 0;
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--fit-bg);
  color: #ffffff;
}

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

button,
input,
select {
  font-family: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

.fit-page {
  max-width: 1320px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.fit-header {
  min-height: 72px;
  display: grid;
  grid-template-columns: 260px 1fr 104px;
  align-items: center;
  gap: 24px;
  padding: 0 24px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 4, 3, 0.96);
  color: #ffffff;
}

.fit-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: min(176px, 100%);
}

.brand-title {
  width: 100%;
  height: auto;
  max-height: 42px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

img[src^="/assets/bodyplan/"],
img[src*="/assets/bodyplan/"],
.bodyplan-managed-image {
  opacity: 0;
  transition: opacity 160ms ease;
}

img.bodyplan-image-ready,
.bodyplan-managed-image.bodyplan-image-ready {
  opacity: 1;
}

img.bodyplan-image-empty {
  visibility: hidden;
}

.fit-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  color: #d6dbd8;
  font-size: 0.95rem;
  font-weight: 700;
}

.fit-nav a:hover,
.fit-nav a.active,
.fit-nav a:focus-visible {
  color: var(--fit-lime);
  outline: none;
}

.login-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #b6ff24, #92f000);
  color: #050806;
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(167, 255, 26, 0.18);
}

.mobile-menu {
  display: none;
}

@media (max-width: 760px) {
  .fit-page {
    max-width: none;
    border: 0;
  }
  .fit-header {
    min-height: 96px;
    grid-template-columns: 52px 1fr 120px;
    gap: 14px;
    padding: 20px 28px 12px;
    border-bottom: 0;
  }
  .fit-nav {
    display: none;
  }
  .mobile-menu {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
  }
  .brand-title {
    max-height: 46px;
  }
  .login-button {
    min-height: 58px;
    font-size: 1.12rem;
  }
}