:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f4f1;
  color: #091526;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f8f4f1;
}

.page-shell {
  width: calc(100% - 32px);
  min-height: calc(100vh - 32px);
  margin: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(9, 21, 38, 0.16);
}

.topbar,
footer {
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.topbar {
  border-bottom: 1px solid rgba(9, 21, 38, 0.16);
}

.hero {
  min-height: 68vh;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  margin-bottom: clamp(70px, 12vh, 130px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.brand-lockup h1 {
  margin: 0;
  font-size: clamp(58px, 13vw, 174px);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.065em;
}

.brand-lockup p {
  margin: clamp(20px, 3vw, 34px) 0 0;
  font-size: clamp(10px, 1.35vw, 18px);
  font-weight: 400;
  letter-spacing: 0.48em;
  transform: translateX(0.24em);
}

.status {
  margin-top: clamp(70px, 12vh, 130px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #091526;
  animation: pulse 1.8s ease-in-out infinite;
}

footer {
  border-top: 1px solid rgba(9, 21, 38, 0.16);
  color: rgba(9, 21, 38, 0.65);
  justify-content: flex-end;
}

@keyframes pulse {
  50% { opacity: 0.25; }
}

@media (max-width: 600px) {
  .page-shell {
    width: calc(100% - 20px);
    min-height: calc(100vh - 20px);
    margin: 10px;
  }

  .topbar span:last-child {
    display: none;
  }

  .hero {
    padding-inline: 16px;
  }

  .brand-lockup h1 {
    font-size: clamp(48px, 19vw, 84px);
  }

  .brand-lockup p {
    max-width: 280px;
    line-height: 1.8;
  }

  footer {
    font-size: 8px;
  }
}
