@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&family=Bricolage+Grotesque:wght@600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #08121d, #162f45 46%, #21485b);
  color: #edf6ff;
  font-family: 'Manrope', sans-serif;
}

.api-stage {
  width: min(900px, 100%);
  padding: 60px;
  border-radius: 36px;
  background: rgba(5, 13, 21, 0.72);
  border: 1px solid rgba(237, 246, 255, 0.16);
}

.label {
  display: inline-block;
  margin-bottom: 22px;
  color: #94dfd4;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 22px;
  max-width: 760px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1;
}

p {
  max-width: 650px;
  margin: 0 0 34px;
  color: #ccdde9;
  font-size: 1.14rem;
  line-height: 1.72;
}

.gateway-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 17px 24px;
  border-radius: 18px;
  background: #94dfd4;
  color: #08121d;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.gateway-link:hover {
  transform: translateY(-4px);
  background: #c0f2eb;
}
