.box {
  width: 100%;
  min-height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

.box .group {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.box .text-wrapper {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.box .transforming-complex {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 40px;
}

.line-separator {
  width: 100%;
  max-width: 1070px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 50%, transparent);
}

.box .we-are-is-a {
  width: 100%;
  max-width: 1070px;
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 0;
  margin: 0;
}

/* Specific spacing for separators */
.line-separator.top {
  margin-top: 0;
}

.line-separator.bottom {
  margin-bottom: 48px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-link svg,
.social-link .social-icon {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  object-fit: contain;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Tablet & Mobile Adjustments */
@media screen and (max-width: 768px) {
  .box {
    padding: 60px 24px;
  }

  .box .text-wrapper {
    margin-bottom: 16px;
  }

  .box .transforming-complex {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 480px) {
  .box {
    padding: 40px 16px;
  }
}