* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input {
  font: inherit;
}

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

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: rgba(255, 255, 255, 0.84);
  background: radial-gradient(1200px 500px at 20% 0%, rgba(91, 108, 255, 0.25), transparent 60%), radial-gradient(900px 500px at 80% 0%, rgba(124, 58, 237, 0.22), transparent 55%), #0b1220;
}

h1, h2, h3 {
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.62);
}

html, body {
  width: 100%;
  overflow-x: clip;
  overflow-x: hidden;
}

.topbar__inner,
.header__inner {
  min-width: 0;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.page {
  padding-bottom: 80px;
}

.no-scroll {
  overflow: hidden;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.topbar__signin {
  color: rgba(255, 255, 255, 0.84);
}

.topbar__sep {
  opacity: 0.4;
}

.icon-link {
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 767px) {
  .topbar__right .topbar__meta {
    display: none;
  }
  .topbar__sep {
    display: none;
  }
  .topbar__signin {
    display: inline-flex;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #5b6cff, #7c3aed);
}

.brand__name {
  font-size: 18px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
}

.burger span {
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

@media (max-width: 1023px) {
  .burger {
    display: inline-flex;
  }
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding-top: 44px;
}

.footer__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  padding-bottom: 28px;
}

.footer__logo {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer__desc {
  max-width: 320px;
}

.footer__title {
  font-weight: 800;
  margin-bottom: 10px;
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  padding: 6px 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__social {
  display: flex;
  gap: 8px;
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.btn--primary {
  border: 0;
  background: linear-gradient(135deg, #5b6cff, #7c3aed);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--block {
  width: 100%;
}

.nav {
  display: block;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 10px;
  border-radius: 10px;
}

.nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__chev {
  opacity: 0.8;
  margin-left: 6px;
}

@media (max-width: 1023px) {
  .nav {
    display: none;
  }
}
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 24, 40, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  padding: 10px;
  display: none;
}

.dropdown__link {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.dropdown__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* simple hover open on desktop */
.has-dropdown:hover .dropdown {
  display: block;
}

.mnav[hidden] {
  display: none !important;
}

.mnav__panel[hidden] {
  display: none !important;
}

.mnav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 80;
  display: grid;
  place-items: start end;
}

.mnav__inner {
  width: min(92vw, 380px);
  height: 100%;
  background: rgba(11, 18, 32, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.mnav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mnav__title {
  font-weight: 800;
}

.mnav__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mnav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mnav__link, .mnav__acc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
}

.mnav__acc {
  cursor: pointer;
}

.mnav__panel {
  padding: 0 6px 10px;
}

.mnav__sublink {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.mnav__sublink:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mnav__cta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

@media (min-width: 1024px) {
  .mnav {
    display: none;
  }
}
.hero {
  padding: 70px 0 40px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin: 0 0 14px;
}

.hero__title {
  font-size: 54px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.03em;
}

.hero__text {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero__mock {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(6px);
  filter: saturate(1.05) contrast(1.05);
}

.section {
  padding: 70px 0;
}

.section--center .section__head {
  text-align: center;
  margin-inline: auto;
}

.section__head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section__head--left {
  max-width: 760px;
}

.section__title {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
}

.section__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.card--feature {
  padding: 20px;
}

.card__kicker {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.card__title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.card__accent {
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.95;
  margin-right: 6px;
}

.card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.card--solution .card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

/* responsive */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 42px;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.hero__stack {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  aspect-ratio: 16/12;
}

.hero__mock {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero__mock--a {
  transform: translate(0, 0);
  opacity: 0.95;
}

.hero__mock--b {
  transform: translate(18px, 22px);
  opacity: 0.8;
}

.hero__mock--c {
  transform: translate(36px, 44px);
  opacity: 0.65;
}

.ha-auth {
  /* works even inside your landing layout */
  padding: 96px 0 64px;
}

.ha-auth__wrap {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

.ha-auth__card {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  padding: 22px;
  backdrop-filter: blur(10px);
}

.ha-auth__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ha-auth__logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #5b6cff, #7c3aed);
}

.ha-auth__title {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.15;
}

.ha-auth__subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  margin-top: 4px;
}

.ha-auth__form {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.ha-input {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 14px;
  outline: none;
}

.ha-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ha-input:focus {
  border-color: rgba(91, 108, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(91, 108, 255, 0.18);
}

.ha-auth__row {
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}

.ha-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.ha-link:hover {
  color: #fff;
}

.ha-link--strong {
  font-weight: 800;
}

.ha-btn {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ha-btn--primary {
  border: 0;
  background: linear-gradient(135deg, #5b6cff, #7c3aed);
}

.ha-btn--block {
  width: 100%;
}

.ha-auth__fineprint {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.ha-auth__footer {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ha-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .ha-auth {
    padding: 72px 0 48px;
  }
  .ha-auth__card {
    padding: 18px;
  }
}

/*# sourceMappingURL=site.css.map */
