* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #0d0d0d;
}

.card {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
  z-index: -1;
  display: flex;
  justify-content: flex-end;
}

.vector {
  width: auto;
  height: 80%;
  align-self: end;
}

.gradient-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.9) 100%);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.header {
  display: flex;
  align-items: center;
  gap: 71px;
  width: 100%;
}

.logo {
  width: 93.12px;
  height: 120px;
}

.main-content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.title-container {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.title-row {
  display: flex;
  width: 588px;
  align-items: center;
  gap: 16px;
}

.title {
  font-weight: 500;
  color: white;
  font-size: 80px;
  letter-spacing: -4px;
  line-height: 93px;
  white-space: nowrap;
}

.fragments {
    font-weight: 500;
  color: white;
  font-size: 80px;
  letter-spacing: -4px;
  line-height: 93px;
  white-space: nowrap;
  animation: rgbShift 1.8s infinite;
}

.subtitle {
  font-weight: normal;
  color: white;
  font-size: 22px;
  letter-spacing: -0.22px;
  line-height: 24px;
  white-space: nowrap;
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.contact {
  font-weight: normal;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 24px;
}

.text-muted {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.03px;
  line-height: 24px;
}

.text-bold {
  font-weight: 500;
  color: white;
  letter-spacing: -0.03px;
  line-height: 24px;
}

.text-bold a{
    color: white;
    text-decoration: none;
}

.email {
  font-weight: 500;
  color: white;
  letter-spacing: -0.03px;
  line-height: 24px;
  text-decoration: underline;
}

.tagline {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 24px;
  white-space: nowrap;
}


@keyframes rgbShift {
  0% {
    text-shadow: none;
  }
  10% {
    text-shadow: 2px 3px red, -2px 0 cyan;
  }
  20% {
    text-shadow: -1px 2px red, 2px -1px cyan;
  }
  30% {
    text-shadow: none;
  }
  50% {
    text-shadow: 3px -2px red, -1px 1px cyan;
  }
  55% {
    text-shadow: none;
  }
  60% {
    text-shadow: -3px 0 red, 1px 3px cyan;
  }
  70% {
    text-shadow: none;
  }
  80% {
    text-shadow: 1px -3px red, -3px 2px cyan;
  }
  90% {
    text-shadow: none;
  }
  100% {
    text-shadow: 2px 1px red, -2px 0 cyan;
  }
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .card {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 40px;
  }

  .title-row {
    width: 100%;
    flex-wrap: wrap;
  }

  .title {
    font-size: 60px;
    line-height: 70px;
    white-space: normal;
  }

  .subtitle {
    white-space: normal;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .card {
    padding: 30px 30px;
  }

  .title {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -2px;
  }

  .fragments {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -2px;
  }

  .subtitle {
    font-size: 18px;
  }

  .card-content {
    gap: 50px;
  }

  .footer {
    gap: 50px;
  }
}
