/* Main styles */
:root {
  --framer-font-family: "Outfit", sans-serif;
  --framer-font-family-bold: "Outfit", sans-serif;
  --token-primary: #0099ff;
  --token-background: rgb(10, 10, 10);
}

/* Font optimizations */
@font-display {
  font-display: swap;
}

/* Performance optimizations */
img {
  content-visibility: auto;
}

/* Responsive design */
@media (max-width: 809px) {
  .mobile-hidden {
    display: none !important;
  }
}

/* Image aspect ratio fix */
img {
  aspect-ratio: attr(width) / attr(height);
}

/* Link security */
a[target="_blank"] {
  rel: "noopener noreferrer";
}

/* Accessibility improvements */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
