* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  background: #484261;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 10px;
}

.pill {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 20px;
  text-decoration: none;
  background: #6a5cff;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.pill--contact {
  position: fixed;
  right: 22px;
  top: 500px;
  z-index: 30;
}



.project-page {
  flex: 1;
  padding-top: 120px;
  width: 100%;
}

.project-hero {
  width: 100%;
  padding: 0 5vw 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-left h1 {
  font-family: "Kulim Park", Arial, sans-serif;
  font-size: clamp(64px, 8vw, 96px);
  margin: 0 0 16px;
  line-height: 1;
}

.subtitle {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.4;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  min-width: 0; 
}

.animation-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 70%;
  overflow: hidden;
  background: transparent;
}

.lunora-animation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-meta {
  width: 100%;
  margin: 0 auto;
  padding: 0 5vw 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  font-size: 11px;
}

.project-meta > div:nth-child(3) {
  text-align: left;
}
.project-meta > div:nth-child(3) {
  text-align: center;
}
.project-meta > div:nth-child(3) {
  text-align: center;
}
.project-meta > div:nth-child(4) {
  text-align: right;
}


.screens {
  width: 100%;
  padding: 0 5vw 120px;
  margin: 0 auto;
  padding: 0 5vw 80px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.screens img,
.screens video {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: contain;
}

.project-text {
  width: 100%;
  margin: 0 auto;
  padding: 0 5vw 30px;
  text-align: left; 
}

.project-text p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 50%;
}

.footer {
  margin-top: auto;
  padding: 20px 18px 26px;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}



@media (max-width: 600px) {
  .project-hero {
    grid-template-columns: 1fr;
    gap: 150px;
  }

  .hero-right {
    order: -1;
  }

  .project-meta {
    width: 100%;
    max-width: 900px; 
    margin: 0 auto 60px; 
    padding: 40px 6vw; 

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;

    font-size: 11px;
    text-align: center; 
  }
  .screens {
    grid-template-columns: 1fr 1fr;
  }

  .screens img,
  .screens video {
    width: 50%;
    margin: 0 auto;
  }

  .project-text p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 100%;
}

.pill--contact {
  position: fixed;
  right: 22px;
  top:auto;
  bottom: 100px;
  z-index: 30;
}

}