* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #ffffff;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.home-page {
  height: 100vh;
  position: relative;
  padding: 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 0, 92, 0.18), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(255, 255, 255, 0.06), transparent 30%),
    #050505;
}

/* texture */
.home-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.45;
  pointer-events: none;
}

.top-left,
.top-right {
  position: absolute;
  top: 45px;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  z-index: 5;
}

.top-left {
  left: 70px;
}

.top-right {
  right: 70px;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 56%;
  padding-top: 110px;
}

.mini-title {
  color: #ff005c;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
}

.hero-content h1 {
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.92;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-content h1 span {
  display: block;
  color: #ffffff;
  -webkit-text-stroke: 2px #ff005c;
  color: transparent;
}

.desc {
  margin-top: 28px;
  width: 430px;
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 15px;
}

button {
  margin-top: 32px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: #1a1a1a;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(255, 0, 92, 0.25);
  transition: 0.25s ease;
}

button:hover {
  background: #ff005c;
  box-shadow: 0 0 28px rgba(255, 0, 92, 0.65);
  transform: translateY(-3px);
}

.visual {
  position: absolute;
  right: 95px;
  bottom: 0;
  width: 460px;
  height: 640px;
}

/* Circle stays as background */
.circle {
  position: absolute;
  right: 25px;
  top: 80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #151515;
  overflow: hidden;
  z-index: 1;
}

.person-wrap {
  display: none;
}

.person {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 350px;
  height: auto;
  transform: translateX(-50%);
  z-index: 2;
  filter: grayscale(0) contrast(1.1);
}
.tag {
  position: absolute;
  z-index: 4;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.82);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

.tag::before {
  content: "+";
  color: #ff005c;
  margin-right: 8px;
}

.tag-one {
  top: 175px;
  left: 0;
}

.tag-two {
  right: 0;
  top: 365px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.glow-one {
  width: 280px;
  height: 280px;
  background: #ff005c;
  top: -95px;
  left: 32%;
}

.glow-two {
  width: 340px;
  height: 340px;
  background: #ff005c;
  bottom: -130px;
  right: 15%;
  opacity: 0.22;
}

.bottom-row {
  position: absolute;
  bottom: 45px;
  left: 70px;
  right: 70px;
  display: flex;
  justify-content: space-between;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  z-index: 5;
}

/* white corner marks like reference */
.home-page::after {
  content: "";
  position: absolute;
  right: 55px;
  bottom: 55px;
  width: 42px;
  height: 42px;
  border-right: 7px solid #ffffff;
  border-bottom: 7px solid #ffffff;
  z-index: 5;
}

@media (max-width: 900px) {
  .home-page {
    padding: 45px 28px;
  }

  .top-left {
    left: 28px;
  }

  .top-right {
    right: 28px;
  }

  .hero-content {
    width: 100%;
    padding-top: 120px;
  }

  .hero-content h1 {
    letter-spacing: -3px;
  }

  .desc {
    width: 90%;
  }

  .visual {
    opacity: 0.28;
    right: -120px;
  }

  .bottom-row {
    left: 28px;
    right: 28px;
    flex-direction: column;
    gap: 10px;
  }
}