/* Component styles - must be before @tailwind directives for postcss-import */
/* Hero Artist Slider */
.lacus-hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.lacus-hero-slider .swiper {
  width: 100%;
  height: 100vh;
}
.lacus-hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}
.lacus-hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lacus-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, rgba(10, 14, 39, 0.85) 100%);
  z-index: 1;
}
.lacus-hero-slide__content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  z-index: 2;
  max-width: 550px;
}
.lacus-hero-slide__label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #b0b3c5;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}
.lacus-hero-slide__name {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 1rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.1;
}
.lacus-hero-slide__bio {
  font-size: 0.9375rem;
  color: #b0b3c5;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
}
.lacus-hero-slide__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.lacus-hero-slide__video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
}
.lacus-hero-slide__video-link:hover {
  color: #e31937;
}
.lacus-hero-slide__video-link svg {
  width: 32px;
  height: 32px;
}
/* Thumbnail navigation */
.lacus-hero-thumbs {
  position: absolute;
  bottom: 5%;
  left: 8%;
  z-index: 10;
  width: 300px;
}
.lacus-hero-thumbs .swiper-slide {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.lacus-hero-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #e31937;
}
.lacus-hero-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* Navigation arrows */
.lacus-hero-slider .swiper-button-prev,
.lacus-hero-slider .swiper-button-next {
  color: #ffffff;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.lacus-hero-slider .swiper-button-prev::after,
.lacus-hero-slider .swiper-button-next::after {
  font-size: 16px;
}
/* Music icon */
.lacus-hero-music-icon {
  position: absolute;
  bottom: 10%;
  right: 5%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.lacus-hero-music-icon:hover {
  border-color: #e31937;
}
@media (max-width: 768px) {
  .lacus-hero-slide__content {
    left: 5%;
    right: 5%;
    bottom: 20%;
    max-width: none;
  }

  .lacus-hero-thumbs {
    left: 5%;
    width: 250px;
  }
}
/* Stat Counter */
.lacus-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.lacus-stat-item {
  text-align: center;
  position: relative;
}
.lacus-stat-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #e31937;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}
.lacus-stat-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(227, 25, 55, 0.3);
}
.lacus-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}
.lacus-stat-label {
  font-size: 0.875rem;
  color: #b0b3c5;
  margin-top: 0.5rem;
  max-width: 140px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .lacus-stats {
    gap: 2rem;
  }

  .lacus-stat-circle {
    width: 120px;
    height: 120px;
  }

  .lacus-stat-number {
    font-size: 2.5rem;
  }
}
/* Artist Showcase Card */
.lacus-artist-showcase {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lacus-artist-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lacus-artist-showcase__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lacus-artist-showcase__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 39, 0.9) 0%, rgba(10, 14, 39, 0.4) 50%, rgba(10, 14, 39, 0.9) 100%);
}
.lacus-artist-showcase__content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding: 2rem;
}
.lacus-artist-showcase__label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #b0b3c5;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}
.lacus-artist-showcase__name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.lacus-artist-showcase__bio {
  color: #b0b3c5;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.lacus-artist-showcase__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
/* Artist Detail Hero */
.lacus-artist-detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
}
.lacus-artist-detail-hero__bg {
  position: absolute;
  inset: 0;
}
.lacus-artist-detail-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.lacus-artist-detail-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.95) 100%);
}
.lacus-artist-detail-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
/* Album Card */
.lacus-album-card {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #1e2348;
}
.lacus-album-card__cover {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  overflow: hidden;
}
.lacus-album-card__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lacus-album-card__info {
  flex: 1;
}
.lacus-album-card__artist {
  font-size: 0.875rem;
  color: #b0b3c5;
  margin-bottom: 0.25rem;
}
.lacus-album-card__label {
  font-size: 0.875rem;
  color: #b0b3c5;
}
.lacus-album-card__date {
  font-size: 0.875rem;
  color: #b0b3c5;
  margin-bottom: 1rem;
}
.lacus-album-card__about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.lacus-album-card__description {
  font-size: 0.875rem;
  color: #b0b3c5;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.lacus-album-card__platforms-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7080;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}
.lacus-album-card__platforms {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.lacus-album-card__platform-badge {
  height: 32px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.lacus-album-card__platform-badge:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .lacus-album-card {
    flex-direction: column;
  }

  .lacus-album-card__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
/* News/Event Card */
.lacus-news-card {
  background: #111638;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.lacus-news-card:hover {
  transform: translateY(-4px);
}
.lacus-news-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lacus-news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.lacus-news-card:hover .lacus-news-card__image img {
  transform: scale(1.05);
}
.lacus-news-card__date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #e31937;
  color: #ffffff;
  padding: 6px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
}
.lacus-news-card__date-day {
  display: block;
  font-size: 1.25rem;
}
.lacus-news-card__date-month {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lacus-news-card__content {
  padding: 1.25rem;
}
.lacus-news-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lacus-news-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.lacus-news-card__title a:hover {
  color: #e31937;
}
.lacus-news-card__excerpt {
  font-size: 0.875rem;
  color: #b0b3c5;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
/* News Grid Layout */
.lacus-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .lacus-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .lacus-news-grid {
    grid-template-columns: 1fr;
  }
}
/* Video Carousel */
.lacus-video-carousel {
  position: relative;
  overflow: hidden;
}
.lacus-video-carousel .swiper {
  width: 100%;
}
.lacus-video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.lacus-video-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.lacus-video-card:hover img {
  transform: scale(1.05);
}
.lacus-video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.3s ease;
}
.lacus-video-card:hover .lacus-video-card__overlay {
  background: rgba(10, 14, 39, 0.5);
}
.lacus-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  z-index: 2;
}
.lacus-video-card:hover .lacus-video-card__play {
  border-color: #e31937;
  background: rgba(227, 25, 55, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}
.lacus-video-card__play svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
.lacus-video-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 2;
}
.lacus-video-card__artist {
  font-size: 0.875rem;
  color: #b0b3c5;
  margin-top: 0.25rem;
  position: relative;
  z-index: 2;
}
/* Carousel navigation */
.lacus-video-carousel .swiper-button-prev,
.lacus-video-carousel .swiper-button-next {
  color: #ffffff;
  width: 40px;
  height: 40px;
}
.lacus-video-carousel .swiper-button-prev::after,
.lacus-video-carousel .swiper-button-next::after {
  font-size: 14px;
}
.lacus-video-carousel .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}
.lacus-video-carousel .swiper-pagination-bullet-active {
  background: #e31937;
}
/* Partner/Customer Logos */
.lacus-partners-section {
  position: relative;
  overflow: hidden;
}
.lacus-partners-section__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
  height: 350px;
}
.lacus-partners-section__bg-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #e31937 0%, #c41430 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 3rem;
}
.lacus-partners-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.lacus-partners-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 200px;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.lacus-partners-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 600px;
  margin-left: auto;
}
.lacus-partners-logos img {
  max-height: 40px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.lacus-partners-logos img:hover {
  opacity: 1;
}
.lacus-partners-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.lacus-partners-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lacus-partners-nav button:hover {
  border-color: #e31937;
  color: #e31937;
}
/* Pagination dots */
.lacus-partners-dots {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  align-items: center;
}
.lacus-partners-dots span {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: background 0.3s ease;
  cursor: pointer;
}
.lacus-partners-dots span.active {
  background: #e31937;
  width: 32px;
}
@media (max-width: 1024px) {
  .lacus-partners-section__bg {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }

  .lacus-partners-section__bg-circle {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    padding-left: 2rem;
  }

  .lacus-partners-logos {
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .lacus-partners-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Artist Detail Tabs */
.lacus-tabs {
  border-bottom: 1px solid #1e2348;
}
.lacus-tabs__nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lacus-tabs__nav::-webkit-scrollbar {
  display: none;
}
.lacus-tab-button {
  flex-shrink: 0;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #b0b3c5;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.lacus-tab-button:hover {
  color: #ffffff;
}
.lacus-tab-button[aria-selected="true"],
.lacus-tab-button.active {
  color: #ffffff;
  border-bottom-color: #e31937;
}
.lacus-tab-panel {
  padding: 2rem 0;
}
.lacus-tab-panel[hidden] {
  display: none;
}
@media (max-width: 768px) {
  .lacus-tab-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
}
/* Contact Form */
.lacus-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lacus-contact-form input,
.lacus-contact-form textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #1e2348;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.lacus-contact-form input::-moz-placeholder, .lacus-contact-form textarea::-moz-placeholder {
  color: #6b7080;
}
.lacus-contact-form input::placeholder,
.lacus-contact-form textarea::placeholder {
  color: #6b7080;
}
.lacus-contact-form input:focus,
.lacus-contact-form textarea:focus {
  border-color: #e31937;
}
.lacus-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.lacus-contact-form button[type="submit"],
.lacus-contact-form .lacus-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  align-self: flex-start;
}
.lacus-contact-form button[type="submit"]:hover,
.lacus-contact-form .lacus-submit-btn:hover {
  background: #e31937;
  border-color: #e31937;
}
.lacus-contact-form button[type="submit"] svg,
.lacus-contact-form .lacus-submit-btn svg {
  width: 20px;
  height: 20px;
}
/* Contact Page Circles */
.lacus-contact-circles {
  display: flex;
  justify-content: center;
  gap: 8rem;
  padding: 4rem 0;
}
.lacus-contact-circle {
  position: relative;
  text-align: left;
  padding-left: 120px;
}
.lacus-contact-circle__ring {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #e31937;
}
.lacus-contact-circle__ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(227, 25, 55, 0.3);
}
.lacus-contact-circle__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
  text-transform: capitalize;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.lacus-contact-circle__phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.lacus-contact-circle__email {
  color: #b0b3c5;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .lacus-contact-circles {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* Primary button */
.lacus-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e31937;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
    border: 0;
    cursor: pointer;
    text-decoration: none;
  }
.lacus-btn-primary:hover {
    background-color: #c41430;
    color: #ffffff;
  }
/* Outline button */
/* Section subtitle */
.lacus-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #b0b3c5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
/* Scroll animations */
.will-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
.will-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
/* Body menu open state */
body.lacus-menu-open {
    overflow: hidden;
  }
/* Full bleed */
/* Scroll to top */
