html,
body {
  height: 100%;
  margin: 0;
}

body.public-page.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

body.public-page.home-page .site-header {
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

body.public-page.home-page .site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

body.public-page.home-page .site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

body.public-page.home-page .site-logo__img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

body.public-page.home-page .site-logo__text {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

body.public-page.home-page .site-logo__text--blue {
  color: #ffb000;
}

body.public-page.home-page .site-logo__text--purple {
  color: #b455ff;
}

body.public-page.home-page .site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

body.public-page.home-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.public-page.home-page .btn--dark {
  background: #050505;
  color: #fff;
}

body.public-page.home-page .btn--dark:hover {
  background: #101010;
}

body.public-page.home-page .btn--purple {
  background: #9d4edd;
  color: #fff;
}

body.public-page.home-page .btn--purple:hover {
  background: #8a3fd0;
}

body.public-page.home-page .home-hero-split {
  flex: 1;
  min-height: 0;
}

body.public-page.home-page .home-hero-split__container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(340px, 620px) minmax(340px, 1fr);
  gap: 48px;
  align-items: stretch;
  padding: 22px 32px 28px;
  box-sizing: border-box;
}

body.public-page.home-page .home-hero-split__image {
  min-height: 0;
  height: 100%;
  display: flex;
}

body.public-page.home-page .home-hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}

body.public-page.home-page .home-hero-split__right-column {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  align-content: stretch;
}

body.public-page.home-page .home-hero-split__content-wrap {
  display: contents;
}

body.public-page.home-page .home-hero-split__content-box {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-sizing: border-box;
  overflow: auto;
}

body.public-page.home-page .home-hero-split__content-box h1,
body.public-page.home-page .home-hero-split__content-box h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.15;
  font-size: clamp(2rem, 2.4vw, 3rem);
}

body.public-page.home-page .home-hero-split__content-box p,
body.public-page.home-page .home-hero-split__content-box li {
  color: #f3f4f6;
  font-size: 1.05rem;
  line-height: 1.6;
}

body.public-page.home-page .home-hero-split__content-box ul {
  margin: 16px 0;
  padding-left: 22px;
}

@media (max-width: 1100px) {
  body.public-page.home-page {
    overflow: auto;
  }

  body.public-page.home-page .home-hero-split__container {
    height: auto;
    grid-template-columns: 1fr;
  }

  body.public-page.home-page .home-hero-split__image {
    height: 420px;
  }

  body.public-page.home-page .home-hero-split__right-column {
    height: auto;
    grid-template-rows: auto auto;
  }

  body.public-page.home-page .home-hero-split__content-box {
    overflow: visible;
  }
}

@media (max-width: 700px) {
  body.public-page.home-page .site-header__inner {
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  body.public-page.home-page .home-hero-split__container {
    padding: 18px;
    gap: 24px;
  }

  body.public-page.home-page .home-hero-split__image {
    height: 320px;
  }

  body.public-page.home-page .home-hero-split__content-box {
    padding: 24px;
  }

  body.public-page.home-page .btn {
    padding: 10px 16px;
  }
}