/* --- Reset & Base (matches homepage) --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Source Han Sans SC",
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  overflow-x: hidden;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* Navbar links: universal horizontal centering */
.navbar-a .navbar-links,
.navbar-scroll .navbar-links {
  left: 50%;
  transform: translateX(-50%);
}

/* ========================
   Humanoid page — local styles
   ======================== */

/* --- Banner --- */
.humanoid-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.humanoid-banner img {
  width: 100%;
  height: auto;
}

/* --- Coming soon --- */
.humanoid-coming-soon {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  text-align: center;
  font-family: 'Source Han Sans SC', 'Noto Sans SC', sans-serif;
}
.humanoid-coming-soon h1 {
  font-size: 48px;
  font-weight: 500;
  color: #333;
  margin: 0 0 24px;
}

/* ========================
   Footer (copied from robot_companion/style.css:1220-1277)
   ======================== */
.page-footer {
  background: #fff;
  padding: 80px 2.41% 60px;
}
.footer-inner {
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
}
.footer-brand svg {
  fill: #333;
  display: block;
}
.footer-copyright {
  font-size: 14px;
  font-weight: 250;
  color: rgba(51, 51, 51, 0.5);
  line-height: 1.5;
  text-align: left;
  display: block;
  max-width: 100%;
}
.footer-icp {
  color: #333;
  text-decoration: underline;
}
.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn-footer {
  display: inline-flex;
  padding: 14px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 0.8px solid rgba(51, 51, 51, 0.2);
  background: rgba(51, 51, 51, 0.05);
  font-size: 12px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.6px;
  transition: background 0.2s;
}
.btn-footer:hover {
  background: rgba(51, 51, 51, 0.1);
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 768px) {
  .humanoid-banner {
    height: 40vh;
    min-height: 280px;
  }
  .humanoid-coming-soon {
    padding: 48px 20px 80px;
  }
  .humanoid-coming-soon h1 {
    font-size: 32px;
  }
  .page-footer {
    padding: 48px 20px 40px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
