* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #c7e9f8;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.landing {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 1300px;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.photo-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  background: #e9e9e9;
}

.photo {
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-one {
  background-image: url("assets/photo-top-left.jpg");
  background-position: center 18%;
}

.photo-two {
  background-image: url("assets/photo-top-right.jpg");
  background-position: center 16%;
}

.photo-three {
  background-image: url("assets/photo-bottom-left.jpg");
  background-position: center 18%;
}

.photo-four {
  background-image: url("assets/photo-bottom-right.jpg");
  background-position: center 16%;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 50% 43%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 62%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

.profile {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  width: min(620px, 94%);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.profile h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.handle {
  margin-top: 7px;
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 900;
}

.status-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.available,
.responds {
  display: inline-flex;
  align-items: center;
}

.green-dot {
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #2ee949;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.clock {
  font-size: 18px;
  line-height: 1;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  min-width: 274px;
  height: 54px;
  padding: 0 30px;
  border-radius: 7px;
  background: #08aeea;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.2px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #13bbf5;
}

.of-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  background: #fff;
  color: #08aeea;
  font-size: 9px;
  font-weight: 900;
}

.brand {
  position: absolute;
  left: 50%;
  bottom: 19%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 16px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
}

@media (max-width: 700px) {
  .landing {
    min-height: 100vh;
  }

  .profile {
    top: 45%;
  }

  .profile h1 {
    font-size: 25px;
  }

  .handle {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .status-row {
    flex-direction: column;
    gap: 7px;
    font-size: 15px;
  }

  .cta-button {
    min-width: 248px;
    height: 52px;
    font-size: 16px;
  }
}
