*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2c0a59 0%, #120322 35%, #06010e 100%);
  color: #f6f2ff;
  -webkit-font-smoothing: antialiased;
}

main, a {
  color: inherit;
}

a {
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid rgb(12.5, 127.5, 242.5);
  outline-offset: 4px;
}

.profile {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.profile-card {
  max-width: 640px;
  width: 100%;
  padding: clamp(2.5rem, 7vw, 4.5rem);
  border-radius: 32px;
  background: rgba(7, 4, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 70px rgba(3, 1, 8, 0.6);
  backdrop-filter: blur(14px);
  animation: float 14s ease-in-out infinite;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.profile-card h1 {
  font-size: clamp(2.75rem, 7vw, 4rem);
  margin-bottom: 0.75rem;
}

.subtext {
  font-size: 1.1rem;
  max-width: 38ch;
}

.web-link,
.linkedin-link {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #0a66c2;
  color: #fff;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 20px 30px rgba(10, 102, 194, 0.35);
}

.web-link:hover,
.linkedin-link:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 30px 40px rgba(10, 102, 194, 0.5);
}

.web-link .icon,
.linkedin-link .icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.web-link svg,
.linkedin-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .profile-card {
    animation: none;
  }

  .web-link,
  .linkedin-link {
    transition: none;
  }
}
@media (max-width: 600px) {
  .profile-card {
    text-align: center;
  }

  .web-link,
  .linkedin-link {
    width: 100%;
    justify-content: center;
  }
}

/*# sourceMappingURL=main.css.map */
