:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #999;
  --nav-link: #111;
}

.home-page,
.home-page .page-shell {
  height: 100vh;
}

.home-page {
  overflow: hidden;
}

.home-page #main-content {
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
}

.home-page .launch-home {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  height: 100vh;
  overflow: hidden;
}

.launch-chrome .launch-home a {
  color: inherit;
  text-decoration: none;
}

.launch-chrome .launch-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--bg);
}

.launch-chrome .nav-tagline {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.2s;
}

.launch-chrome .nav-tagline:hover {
  opacity: 0.5;
}

.launch-chrome .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.launch-chrome .nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nav-link);
  transition: opacity 0.2s;
}

.launch-chrome .nav-links a:hover {
  opacity: 0.5;
}

.home-page .launch-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 64px);
  margin-top: 66px;
  overflow: hidden;
}

.home-page .launch-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #d0d0ce 30%,
    #d0d0ce 80%,
    rgba(208, 208, 206, 0.3) 92%,
    rgba(208, 208, 206, 0) 100%
  );
  pointer-events: none;
  z-index: 10;
}

.home-page .hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 60px 48px 48px;
  overflow: hidden;
}

.home-page .logo-wrap {
  --logo-wrap-size: 280px;
  --logo-glow-width: 380px;
  --logo-glow-height: 380px;
  --logo-glow-x: -2px;
  --logo-glow-y: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: var(--logo-wrap-size);
  height: var(--logo-wrap-size);
  margin: auto 0;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.home-page .zml-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.home-page .zml-logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: contain;
}

.home-page .zml-logo-glow {
  z-index: 1;
  width: var(--logo-glow-width);
  height: var(--logo-glow-height);
  transform: translate(
    calc(-50% + var(--logo-glow-x)),
    calc(-50% + var(--logo-glow-y))
  );
}

.home-page .hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px 80px 120px 100px;
  border-left: none;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.launch-home-manifesto .hero-right {
  justify-content: center;
}

.home-page .hero-right::-webkit-scrollbar {
  width: 4px;
}

.home-page .hero-right::-webkit-scrollbar-track {
  background: transparent;
}

.home-page .hero-right::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.home-page .hero-right::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.home-page .hero-body {
  max-width: 520px;
}

.home-page .hero-body.hero-body-blog {
  width: 100%;
  max-width: none;
}

.home-page .hero-body p,
.home-page .hero-body .v2-list li {
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
}

.home-page .hero-body strong {
  font-weight: 600;
}

.home-page .hero-body p {
  margin-bottom: 28px;
}

.home-page .hero-announcement {
  margin-top: 10px;
}

.home-page .hero-announcement-link {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(17, 17, 17, 0.35);
  text-underline-offset: 0.22em;
  transition: opacity 0.2s, text-decoration-color 0.2s;
}

.home-page .hero-announcement-link:hover {
  opacity: 0.7;
  text-decoration-color: rgba(17, 17, 17, 0.8);
}

.home-page .section-heading {
  color: #111;
  font-size: 16px;
  font-weight: 600;
}

.home-page .v2-list {
  margin: 0;
  padding-left: 18px;
}

.home-page .v2-list li {
  margin-bottom: 16px;
}

.launch-chrome .launch-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 52px;
  padding: 0 48px;
  border-top: 1px solid #e0e0dd;
  background: var(--bg);
}

.launch-chrome .footer-license {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}

@media (max-width: 900px) {
  .home-page,
  .home-page .page-shell,
  .home-page #main-content,
  .home-page .launch-home {
    height: auto;
    overflow: visible;
  }

  .launch-chrome .launch-nav {
    position: fixed;
    height: 56px;
    padding: 0 20px;
  }

  .launch-chrome .nav-tagline {
    display: none;
  }

  .launch-chrome .nav-links {
    width: 100%;
    justify-content: flex-end;
    gap: 20px;
  }

  .home-page .launch-hero::after {
    display: none;
  }

  .home-page .launch-hero {
    position: static;
    display: flex;
    flex-direction: column;
    height: auto;
    padding-top: 56px;
    padding-bottom: 60px;
    overflow: visible;
  }

  .home-page .hero-left {
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 48px 24px 40px;
    border-bottom: 1px solid #e0e0dd;
  }

  .home-page .logo-wrap {
    --logo-wrap-size: 200px;
    --logo-glow-width: 271px;
    --logo-glow-height: 271px;
    --logo-glow-x: 0px;
    --logo-glow-y: 0px;
    margin: 0 0 32px;
    align-self: center;
  }

  .home-page .hero-right {
    overflow-y: visible;
    padding: 40px 24px 80px;
  }

  .home-page .hero-body {
    max-width: 100%;
  }

  .home-page .hero-body.hero-body-blog {
    max-width: none;
  }

  .home-page .hero-body p,
  .home-page .hero-body .v2-list li {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .launch-chrome .launch-footer {
    position: fixed;
    height: 52px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .launch-chrome .nav-links {
    gap: 14px;
  }

  .launch-chrome .nav-links a {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .home-page .hero-right {
    padding: 32px 20px 80px;
  }
}
