* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100vh;
  font-family: "Geist";
}

main {
  width: 100%;
  min-height: 100%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 1.25rem;
}

.hero-container {
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-container h1 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: normal;
  line-height: 1.5;
}

/* ✅ Task 10: moved from inline style="color:#888888" on h1 span */
h1 span,
h1 .h1-secondary {
  color: #ffffff4e;
}

.h1-secondary span {
  color:#ffffff;
}


.hero-container .primary {
  display: inline-block;
  padding: 12px 32px;
  background: #ffffff;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  border-radius: 0px 12px;
  transition: corner-shape 180ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.hero-container a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.hero-container a:hover {
  text-decoration: underline;
}

.hero-container .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.hero-container .primary:hover {
  corner-shape: square;
  text-decoration: none;
}

svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@supports (corner-shape: bevel) {
  .hero-container a {
    corner-shape: bevel;
  }
}

/* Mobile: small screens */
@media (max-width: 480px) {
  main {
    padding: 1rem;
    justify-content: space-between;
  }

  .hero-container {
    gap: 0.875rem;
  }

  .hero-container h1 {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .hero-container .primary {
    padding: 10px 24px;
  }
}
