* { box-sizing: border-box; }

body {
  margin: 0;
  background: #070b0f;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

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

.banner {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.intro {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.intro { padding: 48px 0 42px; }

.intro p {
  margin: 0 0 12px;
  color: #00b8ed;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

h1 {
  margin: 0 0 15px;
  font-size: clamp(42px, 6vw, 65px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.intro > div {
  max-width: 700px;
  color: #aeb8bf;
  font-size: 14px;
  line-height: 1.7;
}

.intro a {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}

.intro a:hover { border-color: #00b8ed; color: #00b8ed; }

@media (max-width: 600px) {
  .banner { height: auto; max-height: none; object-fit: contain; }
  .intro { width: calc(100% - 32px); }
  .intro { padding: 36px 0 34px; }
  h1 { font-size: 43px; }
}
