* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #090909;
  color: #f3f3f3;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 7vw, 90px);
}

.brand {
  margin-top: auto;
  margin-bottom: auto;
}

.eyebrow {
  margin: 0 0 24px;
  color: #8a8a8a;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.07em;
}

h1 span {
  display: block;
  margin-left: clamp(20px, 8vw, 130px);
  color: #d7ff3f;
}

.tagline {
  margin: 42px 0 0;
  max-width: 700px;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro {
  margin: 18px 0 0;
  color: #888;
  font-size: 1rem;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 0.85rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7ff3f;
  box-shadow: 0 0 16px rgba(215, 255, 63, 0.6);
}

footer {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 clamp(40px, 7vw, 90px);
  border-top: 1px solid #1b1b1b;
  color: #555;
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  h1 span {
    margin-left: 0;
  }

  .hero {
    min-height: calc(100vh - 60px);
  }

  footer {
    height: 60px;
  }
}