:root {
  color-scheme: dark;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #080b13;
  color: #f4f6ef;
}
main {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}
header,
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
header {
  min-height: 96px;
  border-bottom: 1px solid #273041;
}
.logo {
  color: #fff;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -0.07em;
  text-decoration: none;
}
.logo span,
.eyebrow,
h1 em {
  color: #d9ff52;
}
nav,
footer div {
  display: flex;
  gap: 24px;
}
nav a,
footer a,
.text-link {
  color: #d2d8e2;
  text-decoration: none;
}
nav a:hover,
footer a:hover,
.text-link:hover {
  color: #d9ff52;
}
.hero {
  position: relative;
  min-height: 650px;
  padding: 100px 0 140px;
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.19em;
}
h1 {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0;
  font-size: clamp(64px, 10vw, 138px);
  line-height: 0.89;
  letter-spacing: -0.09em;
}
h1 em {
  font-style: normal;
}
.summary {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 32px 0;
  color: #b9c3d1;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}
.actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 210px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #d9ff52;
  color: #152010;
  font-weight: 900;
  text-decoration: none;
}
.button:hover {
  background: #ebff9a;
}
.art {
  position: absolute;
  right: -6%;
  top: 12%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #253746 0%, #101b27 48%, transparent 70%);
}
.art::before {
  content: '';
  position: absolute;
  top: 36%;
  right: -8%;
  width: 110%;
  height: 31%;
  border: clamp(24px, 4vw, 56px) solid #cfff4f;
  border-top-color: transparent;
  border-left-color: #cfff4f;
  border-radius: 50%;
  transform: rotate(-26deg);
  filter: drop-shadow(0 0 18px #94d43555);
}
.snake-head {
  position: absolute;
  z-index: 1;
  top: 12%;
  left: 18%;
  display: flex;
  gap: 23px;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 110px;
  border-radius: 52% 47% 50% 49%;
  background: #d9ff52;
  transform: rotate(-27deg);
  box-shadow: 0 20px 40px #0008;
}
.eye {
  width: 17px;
  height: 23px;
  border-radius: 50%;
  background: #102022;
}
.orb {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d9ff52;
  box-shadow: 0 0 20px #d9ff52aa;
}
.orb-one {
  top: 22%;
  right: 10%;
}
.orb-two {
  bottom: 12%;
  left: 8%;
}
.orb-three {
  bottom: 18%;
  right: 27%;
}
footer {
  min-height: 90px;
  border-top: 1px solid #273041;
  color: #8693a4;
  font-size: 13px;
}
a:focus-visible {
  outline: 3px solid #d9ff52;
  outline-offset: 4px;
}
@media (max-width: 760px) {
  header {
    min-height: 76px;
  }
  .logo {
    font-size: 24px;
  }
  nav {
    gap: 12px;
    font-size: 13px;
  }
  .hero {
    min-height: 680px;
    padding-top: 70px;
  }
  .art {
    top: auto;
    right: -28%;
    bottom: 5%;
    width: 78%;
    opacity: 0.58;
  }
  .snake-head {
    width: 90px;
    height: 75px;
    gap: 15px;
  }
  .eye {
    width: 12px;
    height: 17px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 16px 0;
  }
}
