:root {
  --black: #131313;
  --surface: #232323;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  color: white;
}

.hero,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero {
  object-fit: cover;
  object-position: center;
}

.shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 42%);
  pointer-events: none;
}

.stage {
  position: relative;
  min-height: 100svh;
}

.logo {
  position: absolute;
  top: 11.69%;
  left: min(7%, 117px);
  width: min(14.9vw, 249px);
}

h1 {
  position: absolute;
  top: 21.47%;
  left: min(7%, 117px);
  margin: 0;
  font-family: "Anek Kannada", Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 3.86vw, 64.5px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

h1 strong {
  font-weight: 700;
}

.actions {
  position: absolute;
  top: 52.18%;
  left: min(7%, 117px);
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  width: 359px;
  height: 91px;
  border-radius: 46px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  background: linear-gradient(103deg, rgba(37, 37, 37, 0.91) 23%, rgba(179, 179, 179, 0) 109%);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 258px;
  height: 82px;
  border-radius: 41px;
  background: var(--surface);
}

.button span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 100%;
  padding-top: 0.14em;
  text-align: center;
  font-family: "Anek Kannada", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 43px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.button img {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 17px;
  width: 67px;
  height: 67px;
}

.button:hover {
  transform: translateX(5px);
  filter: brightness(1.1);
}

.button:focus-visible {
  outline: 3px solid white;
  outline-offset: 5px;
}

.instagram {
  position: absolute;
  left: min(6.82%, 114px);
  bottom: 8.6%;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
}

.instagram img {
  width: 40px;
  height: 40px;
}

.toolbar {
  position: absolute;
  top: 66.2%;
  left: 41.4%;
  width: min(54.1vw, 912px);
  pointer-events: none;
}

@media (max-width: 720px) {
  .hero {
    object-position: 69% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.16), rgba(8, 8, 8, 0.65)),
      linear-gradient(90deg, rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.1));
  }

  .stage {
    display: flex;
    flex-direction: column;
    padding: 48px 24px 28px;
  }

  .logo,
  h1,
  .actions,
  .instagram {
    position: relative;
    inset: auto;
  }

  .logo {
    width: 178px;
  }

  h1 {
    margin-top: 72px;
    font-size: clamp(36px, 10.3vw, 49px);
    line-height: 1.13;
  }

  .actions {
    margin-top: 52px;
    gap: 18px;
  }

  .button {
    width: min(100%, 320px);
    height: 78px;
  }

  .button::before {
    width: calc(100% - 84px);
    height: 70px;
  }

  .button span {
    width: calc(100% - 78px);
    font-size: 34px;
  }

  .button img {
    top: 8px;
    right: 13px;
    width: 62px;
    height: 62px;
  }

  .instagram {
    margin-top: auto;
    padding-top: 48px;
    font-size: 12px;
  }

  .instagram img {
    width: 34px;
    height: 34px;
  }

  .toolbar {
    display: none;
  }
}

@media (max-width: 420px) {
  .stage {
    padding: 36px 20px 22px;
  }

  .logo {
    width: 158px;
  }

  h1 {
    margin-top: 58px;
    font-size: clamp(32px, 9.4vw, 39px);
  }

  .actions {
    margin-top: 40px;
  }

  .button {
    width: min(100%, 290px);
    height: 70px;
  }

  .button::before {
    width: calc(100% - 75px);
    height: 62px;
  }

  .button span {
    width: calc(100% - 69px);
    font-size: 29px;
  }

  .button img {
    top: 7px;
    right: 10px;
    width: 56px;
    height: 56px;
  }
}
