@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 18px;
  margin-top: 3px;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 320px;
  min-height: 100vh;
}
@media (max-width: 768px) {
  body {
    padding: 8px;
    margin-top: 5px;
  }
}
#app {
  width: 100%;
  height: 100vh;
}
/* --- Variables --- */
:root {
  --leitwind-green: #d4a575;
  --leitwind-blue: #0a3f26;
  /* Dark blue for the logo text */
  --text-white: #ffffff;
  --pill-bg-transparent: rgba(255, 255, 255, 0.25);
  --pill-hover: rgba(255, 255, 255, 0.4);
  --bg-hero: #000000;
  --bg-amenities: #f4f4f4;
  --bg-horizontal-1: #ffffff;
  --bg-horizontal-2: #e8e8e8;
  --bg-footer: #0a3f26;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
/* Body styles moved to index.css to prevent CSS loading order conflicts */
/* App Wrapper for Scrolling */
.app-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #d4a575 #f0f0f0;
}
.app-wrapper::-webkit-scrollbar {
  width: 8px;
}
.app-wrapper::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}
.app-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4a575, #b08455);
  border-radius: 10px;
}
.app-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #b08455, #d4a575);
}
/* --- Main Wrapper (The Rounded Card) --- */
.landing-container {
  position: relative;
  width: 100%;
  height: 95vh;
  background-color: var(--bg-hero);
  border-radius: 15px;
  overflow: hidden;
}
/* --- Background Video --- */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
/* Scale iframe to cover container */
@media (min-aspect-ratio: 16/9) {
  .background-video {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .background-video {
    width: 177.78vh;
  }
}
/* Fallback for background image if video doesn't load */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Luxury apartment/property image */
  background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.1s ease-out;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}
/* --- Top Left Brand Box (The White Container) --- */
.brand-box {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('/logo_cover.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 20px 60px 30px 30px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 292px;
  height: 113px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.brand-box.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.brand-box.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
/* Brand image (from public/logo.png) */
.brand-box .brand-image {
  width: 195px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
/* The Logo Graphic (Recreated with CSS Shapes/SVG) */
.logo-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--leitwind-green);
}
/* The Logo Text */
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  /* Extra Bold */
  font-size: 26px;
  color: var(--leitwind-blue);
  /* Dark Blue */
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Registered trademark symbol */
.logo-text sup {
  font-size: 10px;
  vertical-align: top;
  color: var(--leitwind-blue);
}
/* --- Top Right Navigation --- */
.top-nav {
  position: absolute;
  top: 30px;
  right: 40px;
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 20;
}
.nav-btn-circle {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background-color: var(--leitwind-green);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(212, 165, 117, 0.3);
}
/* Keep icon stable during expansion */
.nav-btn-circle i {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
/* Premium shine effect on hover */
.nav-btn-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.nav-btn-circle:hover::before {
  left: 100%;
}
/* Contact text hidden by default */
.nav-btn-circle .contact-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
}
/* Expand on hover to show contact info */
.nav-btn-circle:hover {
  width: auto;
  padding: 0 20px;
  border-radius: 50px;
  background-color: #b08455;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 117, 0.4);
}
.nav-btn-circle:hover .contact-text {
  max-width: 250px;
  opacity: 1;
  margin-left: 8px;
}
/* Icon animation on hover - removed to prevent glitching */
/* Language button stays circular */
.nav-btn-circle.lang:hover {
  width: 45px;
  padding: 0;
}
.menu-btn-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--leitwind-green);
  color: var(--text-white);
  border: none;
  padding: 0 20px 0 25px;
  height: 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-transform: lowercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(212, 165, 117, 0.3);
}
/* Premium shine effect */
.menu-btn-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.menu-btn-pill:hover::before {
  left: 100%;
}
.menu-btn-pill:hover {
  background-color: #b08455;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(212, 165, 117, 0.4);
}
.menu-btn-pill .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  transition: transform 0.3s ease;
}
.menu-btn-pill:hover .hamburger-icon {
  transform: scale(1.1);
}
.menu-btn-pill .hamburger-icon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Transform hamburger to X when menu is open */
.menu-btn-pill.active .hamburger-icon span:first-child {
  transform: rotate(45deg) translateY(7px);
}
.menu-btn-pill.active .hamburger-icon span:last-child {
  transform: rotate(-45deg) translateY(-7px);
}
.menu-btn-pill.active {
  background-color: #0a3f26;
}
.menu-btn-pill.active:hover {
  background-color: #052013;
}
/* --- Bottom Content --- */
.main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 10;
}
.hero-text h1 {
  color: var(--text-white);
  font-weight: 800;
  /* Thick font */
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.bottom-nav {
  display: flex;
  gap: 10px;
}
.bottom-pill {
  text-decoration: none;
  color: var(--text-white);
  background-color: var(--pill-bg-transparent);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  transition: background 0.3s;
}
.bottom-pill:hover {
  background-color: var(--pill-hover);
}
/* The Star/Sparkle Icon next to Tecnologia */
.sparkle {
  margin-left: 8px;
  width: 18px;
  height: 18px;
  fill: white;
}
/* --- Responsive --- */
@media (max-width: 768px) {
  .landing-container {
    border-radius: 20px;
    height: auto;
    aspect-ratio: 4 / 3;
    background-color: #ffffff;
  }

  .brand-box {
    top: 0;
    left: 0;
    width: 160px;
    height: 65px;
    padding: 10px 30px 15px 15px;
  }

  .brand-box .brand-image {
    width: 110px;
    height: auto;
  }

  .top-nav {
    top: 15px;
    right: 15px;
    gap: 10px;
  }

  .nav-btn-circle {
    display: none;
  }

  .menu-btn-pill {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .menu-btn-pill .hamburger-icon {
    width: 20px;
    gap: 3px;
  }

  .menu-btn-pill .hamburger-icon span {
    height: 2px;
  }

  /* Hide the "menu" text on mobile */
  .menu-text {
    display: none;
  }

  .main-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    padding-bottom: 30px;
    margin-top: 3px;
  }

  .hero-text h1 {
    font-size: clamp(28px, 8vw, 48px);
    line-height: 1.1;
  }

  .bottom-nav {
    display: none;
  }

  .menu-overlay {
    margin: 8px;
    max-width: calc(100% - 16px);
    border-radius: 12px;
  }

  .menu-overlay.active {
    height: 80%;
  }
}
/* Menu Overlay Styles */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 150;
  overflow-y: auto;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  margin: 18px;
  max-width: calc(100% - 36px);
}
.menu-overlay.active {
  height: 95vh;
  animation: menuSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 50px;
  padding: 120px 60px 40px 60px;
  height: auto;
  min-height: calc(100% - 100px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.menu-overlay.active .menu-content {
  opacity: 1;
  transform: translateY(0);
}
/* Left Column - Main Navigation */
.menu-left {
  display: flex;
  flex-direction: column;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu-link {
  color: #0a3f26;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
}
.menu-overlay.active .menu-link {
  opacity: 1;
  transform: translateX(0);
}
.menu-overlay.active .menu-link:nth-child(1) {
  transition-delay: 0.15s;
}
.menu-overlay.active .menu-link:nth-child(2) {
  transition-delay: 0.2s;
}
.menu-overlay.active .menu-link:nth-child(3) {
  transition-delay: 0.25s;
}
.menu-overlay.active .menu-link:nth-child(4) {
  transition-delay: 0.3s;
}
.menu-overlay.active .menu-link:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-overlay.active .menu-link:nth-child(6) {
  transition-delay: 0.4s;
}
.menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a575, #b08455);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.menu-link:hover {
  color: #d4a575;
  transform: translateX(8px);
}
.menu-link:hover::before {
  width: 40px;
}
.menu-link .dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #d4a575, #b08455);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(212, 165, 117, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
/* Center Column - Secondary Navigation */
.menu-center {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
.menu-nav-secondary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu-link-secondary {
  color: #0a3f26;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
}
.menu-overlay.active .menu-link-secondary {
  opacity: 1;
  transform: translateX(0);
}
.menu-overlay.active .menu-link-secondary:nth-child(1) {
  transition-delay: 0.2s;
}
.menu-overlay.active .menu-link-secondary:nth-child(2) {
  transition-delay: 0.25s;
}
.menu-overlay.active .menu-link-secondary:nth-child(3) {
  transition-delay: 0.3s;
}
.menu-overlay.active .menu-link-secondary:nth-child(4) {
  transition-delay: 0.35s;
}
.menu-link-secondary:hover {
  color: #d4a575;
  transform: translateX(6px);
}
.menu-link-green {
  color: #ffffff;
  background: linear-gradient(135deg, #d4a575, #b08455);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(212, 165, 117, 0.3);
  opacity: 0;
  transform: translateY(20px);
}
.menu-overlay.active .menu-link-green {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.menu-link-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 117, 0.4);
  background: linear-gradient(135deg, #b08455, #d4a575);
}
/* Right Column - Newsletter Card */
.menu-right {
  display: flex;
  align-items: flex-start;
}
.newsletter-card {
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 35px;
  color: white;
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay.active .newsletter-card {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 63, 38, 0.85), rgba(212, 165, 117, 0.75));
  z-index: 1;
}
.newsletter-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
  animation: shimmer 8s infinite;
}
@keyframes shimmer {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30%, -30%);
  }
}
.newsletter-card h3,
.newsletter-card p,
.newsletter-card button {
  position: relative;
  z-index: 2;
}
.newsletter-card h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.newsletter-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 20px;
}
.newsletter-btn {
  background-color: #ffffff;
  color: #0a3f26;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.newsletter-btn:hover {
  background-color: #d4a575;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 117, 0.4);
}
/* Bottom Buttons */
.menu-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 20px;
  padding: 20px 60px 35px 60px;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0), rgba(248, 249, 250, 1));
}
.menu-bottom-btn {
  flex: 1;
  background-color: white;
  border: 2px solid #e0e0e0;
  padding: 18px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: #0a3f26;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.menu-overlay.active .menu-bottom-btn {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.active .menu-bottom-btn:nth-child(1) {
  transition-delay: 0.45s;
}
.menu-overlay.active .menu-bottom-btn:nth-child(2) {
  transition-delay: 0.5s;
}
.menu-bottom-btn:hover {
  border-color: #d4a575;
  background-color: #d4a575;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 165, 117, 0.3);
}
.menu-bottom-btn:hover i {
  color: white;
}
.menu-bottom-btn i {
  font-size: 16px;
  color: #0a3f26;
  transition: color 0.3s ease;
}
/* Mobile Menu Overlay */
@media (max-width: 768px) {
  .menu-overlay.active {
    height: 95vh;
    border-radius: 20px;
  }

  .menu-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 80px 25px 120px 25px;
    /* Increased bottom padding to prevent overlap with fixed button */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    /* Ensure full height usage */
  }

  .menu-nav {
    gap: 20px;
  }

  .menu-link {
    font-size: 20px;
    padding: 10px 0;
  }

  .menu-nav-secondary {
    gap: 16px;
  }

  .menu-link-secondary {
    font-size: 16px;
  }

  .menu-link-green {
    font-size: 16px;
    padding: 16px 32px;
    margin-top: 15px;
    justify-content: center;
  }

  .newsletter-card {
    height: 260px;
    padding: 30px;
  }

  .newsletter-card h3 {
    font-size: 24px;
  }

  .newsletter-card p {
    font-size: 13px;
  }

  .menu-bottom {
    flex-direction: column;
    padding: 15px 25px 25px 25px;
    gap: 12px;
    background: #ffffff;
    /* Solid background for visibility */
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for separation */
  }

  .menu-bottom-btn {
    padding: 16px 24px;
    font-size: 15px;
  }
}
/* --- Amenities Section Modernized --- */
.amenities-container {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px 20px;
  overflow: hidden;
  z-index: 1;
}
/* Subtle background glow for depth */
.amenities-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 165, 117, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}
@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, -50px) scale(1.1);
  }
}
.amenities-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
/* --- Header Styling --- */
.amenities-header {
  text-align: left;
  margin-bottom: 70px;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
}
.pill-label {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(212, 165, 117, 0.15), rgba(212, 165, 117, 0.08));
  color: var(--leitwind-green);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 165, 117, 0.2);
  box-shadow: 0 4px 15px rgba(212, 165, 117, 0.1);
}
.amenities-header h2 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--leitwind-blue);
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #0a3f26 0%, #145c3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.amenities-header p {
  font-size: 19px;
  color: #666;
  font-weight: 500;
  line-height: 1.7;
  max-width: 600px;
}
/* --- Bento Grid Layout --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(260px, auto);
  }

  /* Grid Spans for Bento Effect */
  .col-span-2 {
    grid-column: span 2;
  }

  .row-span-2 {
    grid-row: span 2;
  }
}
/* --- Card Styling with Glassmorphism --- */
.amenity-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
}
/* Gradient background overlay */
.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(122, 184, 0, 0.03) 0%, rgba(15, 59, 95, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.amenity-card:hover::before {
  opacity: 1;
}
.amenity-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(15, 59, 95, 0.15);
  border-color: rgba(122, 184, 0, 0.4);
}
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Icon Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(15, 59, 95, 0.08), rgba(15, 59, 95, 0.04));
  color: var(--leitwind-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(15, 59, 95, 0.08);
}
.amenity-card:hover .icon-box {
  background: linear-gradient(135deg, var(--leitwind-green), #689f00);
  color: #ffffff;
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 25px rgba(122, 184, 0, 0.3);
}
.arrow-icon {
  color: #ccc;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translate(-15px, 15px);
}
.amenity-card:hover .arrow-icon {
  opacity: 1;
  color: var(--leitwind-green);
  transform: translate(0, 0);
}
/* Text Styling */
.card-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--leitwind-blue);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.card-text p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.3s ease;
}
.amenity-card:hover .card-text p {
  color: #555;
}
/* Gradient Overlay Effect */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--leitwind-green), var(--leitwind-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.amenity-card:hover .card-overlay {
  opacity: 1;
}
/* Special styling for large cards */
.row-span-2 .icon-box {
  width: 70px;
  height: 70px;
}
@media (max-width: 768px) {
  .amenity-card {
    min-height: 240px;
  }

  .amenities-header {
    text-align: center;
    margin: 0 auto 50px auto;
  }

  .amenities-header h2 {
    font-size: 36px;
  }
}
/* --- Horizontal Scroll Sections Unified --- */
.horizontal-section {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  background: #f8f9f8;
}
.horizontal-wrapper {
  display: flex;
  gap: 30px;
  padding: 0 60px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}
.horizontal-card {
  position: relative;
  width: 750px;
  height: 500px;
  flex-shrink: 0;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  scroll-snap-align: center;
  cursor: pointer;
}
.horizontal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.horizontal-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.horizontal-card:hover img {
  transform: scale(1.05);
}
.horizontal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.content-label {
  display: inline-block;
  padding: 8px 18px;
  background: #c2956c;
  color: white;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.horizontal-content h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.horizontal-content p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 550px;
  font-weight: 400;
}
/* Scroll Arrows */
.scroll-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.3s ease;
}
.scroll-arrow-btn.right {
  right: 30px;
}
/* --- Responsive Adjustments for Horizontal Section --- */
@media (max-width: 1024px) {
  .horizontal-card {
    width: 650px;
    height: 450px;
  }

  .horizontal-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .horizontal-section {
    padding: 60px 0;
  }

  .horizontal-wrapper {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
    overflow: visible;
  }

  .horizontal-card {
    width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: 30px;
  }

  .scroll-arrow-btn {
    display: none;
  }

  .horizontal-content {
    padding: 30px 20px;
  }

  .horizontal-content h3 {
    font-size: 24px;
  }

  .horizontal-content p {
    font-size: 14px;
  }
}
/* --- Turbine GIF visible properly --- */
.turbine-gif {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 250px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  /* Below amenities card content but visible */
  mix-blend-mode: multiply;
  opacity: 0.15;
}
/* Ensure amenities content is above the GIF */
.amenities-panel-content {
  position: relative;
  z-index: 5;
}
/* --- Footer --- */
.footer {
  background: linear-gradient(135deg, #0a3f26 0%, #054629 100%);
  color: white;
  padding: 0 0 30px;
  /* Removed top/horizontal padding here, handled in content */
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 117, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  padding: 60px 50px 0;
  /* Added padding back here */
}
.footer-brand .footer-logo {
  width: 260px;
  height: auto;
  display: block;
  margin-bottom: 16px;

}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
  font-size: 15px;
  font-weight: 500;
}
.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--leitwind-green);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--leitwind-green);
  transform: translateX(4px);
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  position: relative;
  z-index: 2;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.footer-legal a:hover {
  color: var(--leitwind-green);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon:hover {
  background: var(--leitwind-green);
  border-color: var(--leitwind-green);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 165, 117, 0.3);
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 0 0 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    /* Stack columns */
    text-align: center;
    /* Center align text */
    gap: 30px;
    /* Reduce gap */
    padding: 40px 20px 0;
    /* Reduced padding */
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
    /* Full width text */
    margin-bottom: 20px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align items */
  }

  .footer-column h4 {
    margin-bottom: 15px;
    /* Reduced margin */
  }

  .footer-links {
    align-items: center;
    /* Center align links */
  }

  .footer-social {
    justify-content: center;
    /* Center social icons */
  }

  .footer-bottom {
    flex-direction: column;
    /* Stack bottom content */
    gap: 15px;
    padding: 20px 20px 0;
    text-align: center;
  }

  .equal-housing-logo {
    margin-left: 0 !important;
    /* Reset auto margin to center */
    margin-top: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 40px 25px 0;
  }

  .footer-brand .footer-logo {
    width: 130px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 25px;
  }

  .footer-legal {
    gap: 16px;
  }
}
/* --- Amenities Section Modernized --- */
.amenities-container {
  position: relative;
  min-height: 100vh;
  background-color: #f8f9fa;
  /* Slightly off-white for premium feel */
  padding: 120px 20px;
  overflow: hidden;
  z-index: 1;
}
/* Subtle background glow for depth */
.amenities-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(122, 184, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -1;
}
.amenities-content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
/* --- Header Styling --- */
.amenities-header {
  text-align: left;
  /* Modern trend: Left aligned headers */
  margin-bottom: 70px;
  max-width: 800px;
}
.pill-label {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(122, 184, 0, 0.1);
  color: var(--leitwind-green);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.amenities-header h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--leitwind-blue);
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -1.5px;
}
.amenities-header p {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  line-height: 1.6;
  max-width: 500px;
}
/* --- Bento Grid Layout --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    /* Fixed height for uniformity */
  }

  /* Grid Spans for Bento Effect */
  .col-span-2 {
    grid-column: span 2;
  }

  .row-span-2 {
    grid-row: span 2;
  }
}
/* --- Card Styling --- */
.amenity-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;

  /* Helper for tailwind-like logic */
}
.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 59, 95, 0.12);
  border-color: rgba(122, 184, 0, 0.3);
}
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Icon Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.icon-box {
  width: 55px;
  height: 55px;
  background-color: rgba(15, 59, 95, 0.03);
  color: var(--leitwind-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.amenity-card:hover .icon-box {
  background-color: var(--leitwind-green);
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
}
.arrow-icon {
  color: #ccc;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translate(-10px, 10px);
}
.amenity-card:hover .arrow-icon {
  opacity: 1;
  color: var(--leitwind-green);
  transform: translate(0, 0);
}
/* Text Styling */
.card-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--leitwind-blue);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.card-text p {
  font-size: 15px;
  color: #888;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.3s ease;
}
.amenity-card:hover .card-text p {
  color: #555;
}
/* Gradient Overlay Effect */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--leitwind-green), var(--leitwind-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.amenity-card:hover .card-overlay {
  opacity: 1;
}
/* Special styling for large cards */
.row-span-2 .icon-box {
  width: 70px;
  height: 70px;
}
@media (max-width: 768px) {
  .amenity-card {
    min-height: 240px;
  }

  .amenities-header {
    text-align: center;
    margin: 0 auto 50px auto;
  }

  .amenities-header h2 {
    font-size: 36px;
  }
}
/* --- Neighborhood Section (Modern Dark Theme) --- */
.neighborhood-section {
  position: relative;
  padding: 140px 0;
  background-color: var(--leitwind-blue);
  color: white;
  overflow: hidden;
}
/* Background Map Effect */
.neighborhood-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=2074&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mask-image: linear-gradient(to right, transparent, black 20%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}
.neighborhood-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}
.neighborhood-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.neighborhood-content .pill-label {
  background: rgba(122, 184, 0, 0.2);
  color: #a3e635;
  border: 1px solid rgba(122, 184, 0, 0.3);
}
.neighborhood-content h2 {
  font-size: 64px;
  color: white;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.neighborhood-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}
.neighborhood-stats {
  display: flex;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
.stat-item h3 {
  font-size: 48px;
  color: var(--leitwind-green);
  font-weight: 800;
  margin-bottom: 0;
}
.stat-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hotspots-list h3 {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hotspot-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
}
.hotspot-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}
.hotspot-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--leitwind-green);
}
.hotspot-info h4 {
  color: white;
}
.hotspot-info span {
  color: rgba(255, 255, 255, 0.5);
}
.neighborhood-extra {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.extra-column h3 {
  color: white;
}
.extra-column li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.extra-column li span {
  color: rgba(255, 255, 255, 0.5);
}
/* Map Wrapper (Right Side) */
.neighborhood-map-wrapper {
  height: 700px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(120%) brightness(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.neighborhood-map-wrapper:hover .map-image {
  filter: grayscale(0%) contrast(110%);
  transform: scale(1.05);
}
/* Animated Map Markers */
.map-marker {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.map-marker:hover {
  z-index: 20;
  transform: scale(1.1);
}
.marker-dot {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--leitwind-green), #689f00);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(122, 184, 0, 0.6);
  position: relative;
  z-index: 2;
  animation: markerBounce 2s ease-in-out infinite;
}
@keyframes markerBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(122, 184, 0, 0.3);
  animation: pulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.marker-label {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--leitwind-blue);
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.marker-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.95);
}
.map-marker:hover .marker-label {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
/* Home Marker (Special Styling) */
.home-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: homeMarkerPulse 3s ease-in-out infinite;
}
@keyframes homeMarkerPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}
/* Hotspot Items */
.hotspot-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.hotspot-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(12px);
  border-color: rgba(122, 184, 0, 0.4);
  box-shadow: 0 8px 25px rgba(122, 184, 0, 0.2);
}
.hotspot-icon {
  width: 44px;
  height: 44px;
  background: rgba(122, 184, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leitwind-green);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.hotspot-item:hover .hotspot-icon {
  background: var(--leitwind-green);
  color: white;
  transform: rotate(-5deg) scale(1.1);
}
.hotspot-info {
  flex: 1;
}
.hotspot-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.hotspot-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
/* Neighborhood Extra Sections */
.neighborhood-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.extra-column h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--leitwind-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.extra-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.extra-column li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.extra-column li:hover {
  padding-left: 8px;
  color: white;
}
.extra-column li span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
}
/* --- Gallery Section (Modern Minimalist) --- */
.gallery-section {
  padding: 140px 50px;
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ea 100%);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(122, 184, 0, 0.03) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.gallery-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.gallery-header h2 {
  font-size: clamp(48px, 8vw, 80px);
  color: var(--leitwind-blue);
  font-weight: 900;
  letter-spacing: -3px;
  margin: 20px 0;
  background: linear-gradient(135deg, #0a3f26 0%, #145c3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gallery-header p {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: none;
  padding: 12px 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leitwind-green), var(--leitwind-blue));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.filter-btn:hover {
  color: var(--leitwind-blue);
}
.filter-btn:hover::after {
  width: 100%;
}
.filter-btn.active {
  color: var(--leitwind-blue);
}
.filter-btn.active::after {
  width: 100%;
}
.gallery-grid-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .gallery-grid-masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item.col-span-2 {
  grid-column: span 2;
}
.gallery-item.row-span-2 {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 59, 95, 0.15);
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 59, 95, 0.85), rgba(122, 184, 0, 0.75));
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay .zoom-icon {
  color: white;
  width: 40px;
  height: 40px;
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .gallery-overlay .zoom-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.1s;
}
.gallery-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
/* Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover {
  opacity: 1;
}
.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.prev {
  left: -80px;
}
.lightbox-nav.next {
  right: -80px;
}
.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
}
.lightbox-caption h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.lightbox-caption span {
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .neighborhood-section::before {
    width: 100%;
    opacity: 0.2;
    -webkit-mask-image: none;
            mask-image: none;
  }

  .neighborhood-container {
    grid-template-columns: 1fr;
  }

  .neighborhood-content {
    padding: 40px;
  }

  .neighborhood-map-wrapper {
    display: none;
    /* Hide map on tablet/mobile to focus on content */
  }

  .gallery-grid-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {

  .neighborhood-section,
  .gallery-section {
    padding: 60px 20px;
  }

  .neighborhood-content h2,
  .gallery-header h2 {
    font-size: 36px;
  }

  .gallery-grid-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item.col-span-2,
  .gallery-item.row-span-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}
/* ========================================
   LOCATION SECTION - MODERN MAP DESIGN
   ======================================== */
.location-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
  overflow: hidden;
}
/* Animated Background Gradient */
.location-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(122, 184, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(15, 59, 95, 0.2) 0%, transparent 50%);
  animation: gradientShift 15s ease-in-out infinite;
  z-index: 1;
}
@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
/* Background Pattern */
.location-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 40px);
  z-index: 1;
}
.location-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
/* Header */
.location-header {
  text-align: center;
  margin-bottom: 80px;
}
.location-header h2 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  margin: 20px 0;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.location-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Content Grid */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
/* Left Side - Info Cards */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.location-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(122, 184, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.location-card:hover {
  transform: translateY(-8px);
  border-color: rgba(122, 184, 0, 0.3);
  box-shadow: 0 20px 60px rgba(122, 184, 0, 0.2);
}
.location-card:hover::before {
  opacity: 1;
}
.location-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #7ab800 0%, #689f00 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(122, 184, 0, 0.3);
  transition: all 0.4s ease;
}
.location-card:hover .location-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(122, 184, 0, 0.5);
}
.location-card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.address-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 25px;
}
/* Get Directions Button */
.get-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d4a575 0%, #b08455 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(122, 184, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.get-directions-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.get-directions-btn:hover::before {
  left: 100%;
}
.get-directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(122, 184, 0, 0.5);
}
/* Nearby Places */
.nearby-places {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.nearby-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nearby-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}
.nearby-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.nearby-item:hover .nearby-icon {
  transform: scale(1.15) rotate(-5deg);
}
.nearby-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.nearby-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.nearby-distance {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
/* Right Side - Map */
.location-map-wrapper {
  position: relative;
  height: 700px;
  border-radius: 28px;
  overflow: hidden;
}
.map-glass-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}
.map-glass-container:hover {
  transform: scale(1.02);
  border-color: rgba(122, 184, 0, 0.3);
  box-shadow: 0 40px 100px rgba(122, 184, 0, 0.3);
}
.map-glass-container iframe {
  width: 100%;
  height: 100%;
  filter: brightness(0.9) contrast(1.1) saturate(0.8);
  transition: filter 0.4s ease;
}
.map-glass-container:hover iframe {
  filter: brightness(1) contrast(1.2) saturate(1);
}
/* Map Overlay Corner Decoration */
.map-overlay-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, transparent 50%, rgba(122, 184, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Floating Address Badge */
.map-floating-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
  animation: badgeFloat 3s ease-in-out infinite;
  border: 1px solid rgba(122, 184, 0, 0.2);
}
@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
.badge-icon {
  color: #d4a575;
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}
.badge-title {
  font-size: 16px;
  font-weight: 700;
  color: #0a3f26;
  line-height: 1.2;
}
.badge-subtitle {
  font-size: 13px;
  color: #d4a575;
  font-weight: 600;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .location-map-wrapper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .location-section {
    padding: 80px 0;
  }

  .location-container {
    padding: 0 20px;
  }

  .location-header {
    margin-bottom: 50px;
  }

  .location-header h2 {
    font-size: 36px;
  }

  .location-header p {
    font-size: 16px;
  }

  .location-card {
    padding: 25px;
  }

  .location-card-icon {
    width: 60px;
    height: 60px;
  }

  .location-map-wrapper {
    height: 400px;
  }

  .map-floating-badge {
    bottom: 20px;
    left: 20px;
    padding: 16px 20px;
  }

  .badge-title {
    font-size: 14px;
  }

  .badge-subtitle {
    font-size: 12px;
  }
}
/* --- Horizontal Amenities Panel --- */
.horizontal-panel {
  height: 100%;
  width: 85vw;
  /* Slightly reduced from 95vw */
  max-width: 1400px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 40px;
  scroll-snap-align: center;
  /* Snap to center */
}
.amenities-panel-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  width: 100%;
  max-width: 1600px;
  align-items: center;
}
.amenities-text-content {
  color: var(--leitwind-blue);
}
.amenities-text-content h2 {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  margin: 20px 0 30px;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.amenities-text-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 400px;
}
.outline-btn {
  padding: 15px 35px;
  border: 2px solid var(--leitwind-blue);
  background: transparent;
  color: var(--leitwind-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Turbine GIF – clearer and larger */
.turbine-gif {
  position: absolute;
  top: -66px;
  right: 7%;
  width: 350px;
  opacity: 0.85;
  pointer-events: none;
  z-index: -2;
}
.outline-btn:hover {
  background: var(--leitwind-blue);
  color: white;
}
/* Welcome Section Animation */
.welcome-section {
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Horizontal Grid */
.amenities-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.amenity-card-h {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.amenity-card-h:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(122, 184, 0, 0.3);
}
.amenity-card-h .icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(122, 184, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leitwind-green);
  margin-bottom: 5px;
}
.amenity-card-h h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--leitwind-blue);
}
.amenity-card-h p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}
/* Rotating Seal Animation */
.rotating-seal {
  position: absolute;
  top: -40px;
  right: 10%;
  width: 180px;
  height: 180px;
  color: var(--leitwind-green);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.rotating-svg {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .horizontal-panel {
    width: 90vw;
    padding: 40px 20px 140px;
    z-index: 3;
  }

  .amenities-panel-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenities-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .amenities-grid-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Avoid the animated GIF overlapping important content on tablet-size screens */
  .turbine-gif {
    display: none;
  }
}
@media (max-width: 768px) {
  .horizontal-panel {
    padding: 40px 16px 160px;
    width: 98vw;
    z-index: 4;
  }

  .amenities-panel-content {
    position: relative;
    z-index: 5;
  }

  /* Make amenity cards horizontally scrollable on narrow screens */
  .amenities-grid-horizontal {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
  }

  .amenity-card-h {
    min-width: 260px;
    flex: 0 0 auto;
  }

  /* Hide the large decorative elements that may overlap content */
  .turbine-gif {
    display: none;
  }

  .rotating-seal {
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;
  }
}
/* ============================================
   NEIGHBORHOOD MAP SECTION
   ============================================ */
.neighborhood-map-section {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.neighborhood-map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 165, 117, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(10, 63, 38, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.neighborhood-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* Header Section */
.neighborhood-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out;
}
.section-label {
  display: inline-block;
  color: #d4a575;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 24px;
  background: rgba(212, 165, 117, 0.1);
  border-radius: 50px;
  border: 2px solid rgba(212, 165, 117, 0.2);
}
.neighborhood-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0a3f26;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #0a3f26 0%, #156b42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.neighborhood-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Map Container */
.map-container {
  position: relative;
  margin-bottom: 80px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: fadeInScale 1s ease-out 0.3s backwards;
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, #0a3f26 0%, #156b42 100%);
  border-radius: 30px;
  overflow: hidden;
}
.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 117, 0.1) 0%, rgba(10, 63, 38, 0.1) 100%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.map-wrapper:hover::before {
  opacity: 1;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: all 0.5s ease;
}
.map-wrapper:hover iframe {
  transform: scale(1.02);
}
/* Decorative Corner Overlays */
.map-overlay-corner {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(212, 165, 117, 0.4);
  pointer-events: none;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.map-overlay-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
  border-radius: 20px 0 0 0;
}
.map-overlay-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 20px 0 0;
}
.map-overlay-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 20px;
}
.map-overlay-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 20px 0;
}
.map-wrapper:hover .map-overlay-corner {
  border-color: rgba(212, 165, 117, 0.8);
  transform: scale(1.1);
}
/* Address Card */
.address-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 25px;
  padding: 30px 35px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25),
    0 5px 15px rgba(212, 165, 117, 0.1);
  border: 2px solid rgba(212, 165, 117, 0.3);
  max-width: 480px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInLeft 1s ease-out 0.5s backwards;
  z-index: 10;
}
.address-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #d4a575, #0a3f26, #d4a575);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.address-card:hover::before {
  opacity: 0.6;
}
.address-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 10px 25px rgba(212, 165, 117, 0.2);
  border-color: rgba(212, 165, 117, 0.5);
}
.address-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4a575, #b08455);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(212, 165, 117, 0.3);
}
.address-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a3f26;
  margin-bottom: 5px;
}
.address-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4a575;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.directions-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a575, #b08455);
  transition: width 0.3s ease;
}
.directions-btn:hover {
  color: #b08455;
  transform: translateX(5px);
}
.directions-btn:hover::after {
  width: 100%;
}
/* Features Grid */
.neighborhood-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 117, 0.05) 0%, rgba(10, 63, 38, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 165, 117, 0.3);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a3f26;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .neighborhood-map-section {
    padding: 80px 40px;
  }

  .neighborhood-header {
    margin-bottom: 60px;
  }

  .map-wrapper {
    height: 500px;
  }

  .neighborhood-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .neighborhood-map-section {
    padding: 60px 20px;
  }

  .neighborhood-header {
    margin-bottom: 40px;
  }

  .neighborhood-title {
    font-size: 32px;
  }

  .neighborhood-subtitle {
    font-size: 16px;
  }

  .map-container {
    margin-bottom: 50px;
    border-radius: 20px;
  }

  .map-wrapper {
    height: 400px;
  }

  .address-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .neighborhood-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}
/* --- Horizontal Scroll Sections --- */
.horizontal-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
/* Base scroll container with smooth snapping */
.horizontal-wrapper {
  display: flex;
  gap: 40px;
  padding: 60px 40px;
  padding-right: 120px;
  height: 100%;
  align-items: center;
  will-change: transform;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /* Precision Scroll Snapping */
  scroll-snap-type: x mandatory;
  scroll-padding-left: 40px;
}
/* Modern Utility to hide scrollbars while keeping functionality */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}
/* Enhanced Horizontal Card Styles */
.horizontal-card {
  flex: 0 0 60vw;
  /* Wider rectangular shape */
  height: 70vh;
  /* Lower height */
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  scroll-snap-align: start;
  background: #fff;
}
.horizontal-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.horizontal-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.horizontal-card:hover img {
  transform: scale(1.15);
}
.horizontal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 48, 30, 0.95) 0%, rgba(0, 48, 30, 0.4) 60%, transparent 100%);
  color: white;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.horizontal-card:hover .horizontal-content {
  transform: translateY(0);
}
.horizontal-content .content-label {
  color: #ffffff !important;
}
/* Custom Scroll Arrows */
.scroll-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.scroll-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0a3f26;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.scroll-arrow-btn.left {
  left: 30px;
}
.scroll-arrow-btn.right {
  right: 30px;
}
.scroll-arrow-btn svg {
  transition: transform 0.3s ease;
}
.scroll-arrow-btn.left:hover svg {
  transform: translateX(-3px);
}
.scroll-arrow-btn.right:hover svg {
  transform: translateX(3px);
}
/* Cleaned up redundant section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Image Zoom Modal/Lightbox --- */
/* --- Image Zoom Modal/Lightbox --- */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.image-modal.active {
  opacity: 1;
  visibility: visible;
}
.image-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 95vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-modal.active .image-modal-content {
  transform: scale(1);
}
.image-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.modal-close-btn:hover {
  background-color: white;
  color: black;
  transform: rotate(90deg);
}
.modal-info {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}
.modal-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #d4a575;
}
.modal-info p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
/* Desktop Large Screens */
@media (min-width: 1920px) {
  .image-modal {
    padding: 60px;
  }

  .image-modal-content img {
    max-height: 90vh;
  }

  .modal-info h3 {
    font-size: 32px;
  }

  .modal-info p {
    font-size: 18px;
  }
}
/* Tablet Adjustments */
@media (max-width: 1024px) {
  .image-modal {
    padding: 30px;
  }

  .modal-close {
    top: -55px;
  }

  .modal-info {
    bottom: -90px;
  }

  .modal-info h3 {
    font-size: 24px;
  }

  .modal-info p {
    font-size: 15px;
  }
}
/* Mobile Modal Adjustments */
@media (max-width: 768px) {
  .image-modal {
    padding: 20px;
  }

  .image-modal-content {
    max-width: 95vw;
    max-height: 90vh;
  }

  .image-modal-content img {
    max-height: 75vh;
    border-radius: 10px;
  }

  .modal-close {
    top: -50px;
    width: 45px;
    height: 45px;
  }

  .modal-close::before,
  .modal-close::after {
    width: 20px;
    height: 2.5px;
  }

  .modal-info {
    bottom: -80px;
  }

  .modal-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .modal-info p {
    font-size: 14px;
    line-height: 1.5;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .image-modal {
    padding: 15px;
  }

  .image-modal-content img {
    max-height: 70vh;
    border-radius: 8px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .modal-close::before,
  .modal-close::after {
    width: 18px;
    height: 2px;
  }

  .modal-info {
    position: static;
    margin-top: 20px;
    padding: 0 10px;
    transform: none;
  }

  .modal-info h3 {
    font-size: 18px;
  }

  .modal-info p {
    font-size: 13px;
  }
}
/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .image-modal {
    padding: 15px;
  }

  .image-modal-content img {
    max-height: 80vh;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

  .modal-info {
    position: static;
    margin-top: 15px;
    transform: none;
  }

  .modal-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .modal-info p {
    font-size: 13px;
  }
}
/* --- Scroll Hint Arrow --- */
.scroll-hint-arrow {
  position: absolute;
  bottom: 80px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
  pointer-events: none;
  animation: pulseRight 2s infinite ease-in-out;
}
.scroll-hint-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #0a3f26;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 165, 117, 0.3);
}
.scroll-hint-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d4a575;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(212, 165, 117, 0.4);
}
@keyframes pulseRight {
  0% {
    transform: translateX(0);
    opacity: 0.8;
  }

  50% {
    transform: translateX(10px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 0.8;
  }
}
@media (max-width: 1024px) {
  .scroll-hint-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .horizontal-section {
    height: auto !important;
    overflow: visible !important;
    padding: 60px 0 !important;
  }

  .horizontal-wrapper {
    flex-direction: column !important;
    height: auto !important;
    overflow: visible !important;
    padding: 20px !important;
    gap: 30px !important;
    scroll-snap-type: none !important;
    width: 100% !important;
    cursor: default !important;
  }

  .horizontal-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 400px !important;
    scroll-snap-align: none !important;
    border-radius: 20px !important;
  }

  .horizontal-card img {
    height: 100% !important;
  }

  .horizontal-content {
    padding: 25px !important;
    background: linear-gradient(to top, rgba(0, 48, 30, 0.98) 0%, rgba(0, 48, 30, 0.6) 80%, transparent 100%) !important;
  }

  .horizontal-content h3 {
    font-size: 20px !important;
  }

  .horizontal-content p {
    font-size: 14px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .scroll-arrow-btn,
  .scroll-hint-arrow {
    display: none !important;
  }

  /* Adjust Amenities Panel for vertical stack */
  .horizontal-panel {
    width: 100% !important;
    height: auto !important;
    min-width: unset !important;
    padding: 40px 20px !important;
    flex: 0 0 auto !important;
  }

  .amenities-panel-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .amenities-grid-horizontal {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    overflow-x: visible !important;
  }

  .amenity-card-h {
    min-width: unset !important;
    padding: 20px 15px !important;
  }

  .welcome-title {
    font-size: 28px !important;
    text-align: center !important;
  }

  .welcome-text {
    font-size: 15px !important;
    text-align: center !important;
  }
  .brand-box {
    top: -4px;
    left: 0;
    width: 160px;
    height: 65px;
    padding: 10px 30px 15px 15px;
  }
}
/* ============================================
   AUTHENTICATION PAGES STYLES
   Modern, Luxury Design for Hollywood Royale
   ============================================ */
/* Auth Wrapper - Full Screen Background */
.auth-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
}
/* Background Image - Luxury Hotel */
.auth-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}
/* Dark Overlay for Better Readability */
.auth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 63, 38, 0.92) 0%,
      rgba(0, 0, 0, 0.85) 50%,
      rgba(10, 63, 38, 0.92) 100%);
  z-index: 2;
  backdrop-filter: blur(3px);
}
/* Main Container */
.auth-container {
  position: relative;
  z-index: 10;
  width: 95%;
  max-width: 480px;
  animation: authFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Logo Section */
.auth-logo-link {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.auth-logo-link:hover {
  transform: scale(1.05);
}
.auth-logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(212, 165, 117, 0.4));
  transition: filter 0.3s ease;
}
.auth-logo-link:hover .auth-logo {
  filter: drop-shadow(0 8px 30px rgba(212, 165, 117, 0.6));
}
/* Auth Card - Glassmorphism Effect */
.auth-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 165, 117, 0.2);
}
/* Premium Shine Effect on Card */
.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 165, 117, 0.1),
      transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}
.auth-card:hover::before {
  left: 100%;
}
/* Card Inner Content */
.auth-card-inner {
  padding: 45px 40px;
  position: relative;
  z-index: 2;
}
/* Decorative Elements */
.auth-decoration {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(212, 165, 117, 0.15),
      transparent 70%);
  pointer-events: none;
  z-index: 3;
  animation: float 8s ease-in-out infinite;
}
.auth-decoration-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}
.auth-decoration-2 {
  width: 350px;
  height: 350px;
  bottom: -175px;
  left: -175px;
  animation-delay: 2s;
}
@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
/* Auth Header */
.auth-header {
  text-align: center;
  margin-bottom: 35px;
}
.auth-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--leitwind-blue);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--leitwind-blue), #0a5f3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-subtitle {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}
/* Info Box */
.auth-info-box {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left: 4px solid var(--leitwind-green);
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.auth-info-box i {
  color: var(--leitwind-green);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.auth-info-box p {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
/* Status Message */
.auth-status-message {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border-left: 4px solid #28a745;
  padding: 15px 18px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.15);
  animation: slideIn 0.4s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.auth-status-message i {
  color: #28a745;
  font-size: 18px;
  flex-shrink: 0;
}
.auth-status-message span {
  color: #155724;
  font-size: 14px;
  font-weight: 600;
}
/* Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Input Group */
.auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Label */
.auth-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--leitwind-blue);
  margin-bottom: 0;
  letter-spacing: 0.3px;
}
/* Input Wrapper */
.auth-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
/* Input Icon */
.auth-input-icon {
  position: absolute;
  left: 18px;
  color: var(--leitwind-green);
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s ease;
}
/* Input Field */
.auth-input {
  width: 100%;
  padding: 14px 18px 14px 50px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  color: #333 !important;
  background: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  font-weight: 500 !important;
}
.auth-input::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.auth-input::placeholder {
  color: #999;
  font-weight: 400;
}
.auth-input:focus {
  border-color: var(--leitwind-green) !important;
  box-shadow: 0 0 0 4px rgba(212, 165, 117, 0.1) !important;
  outline: none !important;
}
.auth-input:focus+.auth-input-icon,
.auth-input-wrapper:focus-within .auth-input-icon {
  color: var(--leitwind-blue);
  transform: scale(1.1);
}
/* Error Message */
.auth-error {
  color: #dc3545 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px !important;
}
.auth-error::before {
  content: '⚠';
  font-size: 14px;
}
/* Remember Me & Options */
.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
.auth-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.auth-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--leitwind-green);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--leitwind-green);
}
.auth-remember-text {
  font-size: 14px;
  color: #495057;
  font-weight: 500;
}
.auth-forgot-link {
  font-size: 14px;
  color: var(--leitwind-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.auth-forgot-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--leitwind-green);
  transition: width 0.3s ease;
}
.auth-forgot-link:hover {
  color: var(--leitwind-blue);
}
.auth-forgot-link:hover::after {
  width: 100%;
}
/* Submit Button */
.auth-submit-btn {
  width: 100%;
  padding: 16px 24px !important;
  background: linear-gradient(135deg, var(--leitwind-green), #b08455) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(212, 165, 117, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 10px !important;
  position: relative !important;
  overflow: hidden !important;
}
.auth-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s ease;
}
.auth-submit-btn:hover::before {
  left: 100%;
}
.auth-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(212, 165, 117, 0.4) !important;
  background: linear-gradient(135deg, #b08455, var(--leitwind-green)) !important;
}
.auth-submit-btn:active {
  transform: translateY(0) !important;
}
.auth-submit-btn:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  transform: none !important;
}
.auth-submit-btn i {
  font-size: 16px;
}
.auth-submit-btn .fa-spinner {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0 15px;
  position: relative;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.auth-divider span {
  padding: 0 15px;
  color: #999;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Secondary Link */
.auth-secondary-link {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--leitwind-blue);
  border: 2px solid var(--leitwind-green);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.auth-secondary-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--leitwind-green);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.auth-secondary-link:hover::before {
  width: 100%;
}
.auth-secondary-link:hover {
  color: white;
  border-color: var(--leitwind-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 165, 117, 0.3);
}
.auth-secondary-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.auth-secondary-link:hover i {
  transform: translateX(3px);
}
/* Responsive Design */
@media (max-width: 768px) {
  .auth-wrapper {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }

  .auth-container {
    width: 100%;
    max-width: 100%;
  }

  .auth-card-inner {
    padding: 30px 20px;
  }

  .auth-title {
    font-size: 26px;
  }

  .auth-subtitle {
    font-size: 14px;
  }

  .auth-logo {
    width: 140px;
  }

  .auth-logo-link {
    margin-bottom: 20px;
  }

  .auth-decoration {
    display: none;
  }

  .auth-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .auth-input {
    padding: 13px 16px 13px 45px !important;
    font-size: 14px !important;
  }

  .auth-input-icon {
    left: 15px;
    font-size: 15px;
  }

  .auth-submit-btn {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }

  .auth-info-box {
    padding: 14px;
    font-size: 13px;
  }

  .auth-info-box i {
    font-size: 18px;
  }

  .auth-header {
    margin-bottom: 25px;
  }

  .auth-form {
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .auth-wrapper {
    padding: 8px;
    padding-top: 15px;
  }

  .auth-card-inner {
    padding: 25px 18px;
  }

  .auth-title {
    font-size: 24px;
  }

  .auth-logo {
    width: 120px;
  }

  .auth-input {
    padding: 12px 14px 12px 42px !important;
    font-size: 13px !important;
  }

  .auth-input-icon {
    left: 14px;
    font-size: 14px;
  }

  .auth-submit-btn {
    padding: 13px 18px !important;
    font-size: 14px !important;
  }

  .auth-secondary-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  .auth-divider {
    margin: 20px 0 12px;
  }

  .auth-divider span {
    font-size: 12px;
  }

  .auth-info-box {
    padding: 12px;
    font-size: 12px;
  }


  .auth-status-message {
    padding: 12px 15px;
    font-size: 13px;
  }
}
*, ::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:  ;
}
/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Montserrat, Inter, Figtree, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
input:where([type='text']),input:where(:not([type])),input:where([type='email']),input:where([type='url']),input:where([type='password']),input:where([type='number']),input:where([type='date']),input:where([type='datetime-local']),input:where([type='month']),input:where([type='search']),input:where([type='tel']),input:where([type='time']),input:where([type='week']),select:where([multiple]),textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
input:where([type='text']):focus, input:where(:not([type])):focus, input:where([type='email']):focus, input:where([type='url']):focus, input:where([type='password']):focus, input:where([type='number']):focus, input:where([type='date']):focus, input:where([type='datetime-local']):focus, input:where([type='month']):focus, input:where([type='search']):focus, input:where([type='tel']):focus, input:where([type='time']):focus, input:where([type='week']):focus, select:where([multiple]):focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit{
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
select:where([multiple]),select:where([size]:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
input:where([type='checkbox']),input:where([type='radio']){
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
input:where([type='checkbox']){
  border-radius: 0px;
}
input:where([type='radio']){
  border-radius: 100%;
}
input:where([type='checkbox']):focus,input:where([type='radio']):focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
input:where([type='checkbox']):checked,input:where([type='radio']):checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
input:where([type='checkbox']):checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  input:where([type='checkbox']):checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='radio']):checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  input:where([type='radio']):checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):checked:hover,input:where([type='checkbox']):checked:focus,input:where([type='radio']):checked:hover,input:where([type='radio']):checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='checkbox']):indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  input:where([type='checkbox']):indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):indeterminate:hover,input:where([type='checkbox']):indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='file']){
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
input:where([type='file']):focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.prose-lg{
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-inline-start: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-inline-end: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-inline-end: 1.5em;
  padding-bottom: 1em;
  padding-inline-start: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.75em;
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none{
  pointer-events: none;
}
.visible{
  visibility: visible;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.inset-1{
  inset: 0.25rem;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.-bottom-16{
  bottom: -4rem;
}
.-left-16{
  left: -4rem;
}
.-left-20{
  left: -5rem;
}
.bottom-0{
  bottom: 0px;
}
.bottom-10{
  bottom: 2.5rem;
}
.bottom-3{
  bottom: 0.75rem;
}
.end-0{
  inset-inline-end: 0px;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.right-0{
  right: 0px;
}
.right-2{
  right: 0.5rem;
}
.right-3{
  right: 0.75rem;
}
.right-4{
  right: 1rem;
}
.right-8{
  right: 2rem;
}
.start-0{
  inset-inline-start: 0px;
}
.top-0{
  top: 0px;
}
.top-32{
  top: 8rem;
}
.top-4{
  top: 1rem;
}
.top-8{
  top: 2rem;
}
.top-\[-1px\]{
  top: -1px;
}
.-z-10{
  z-index: -10;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-30{
  z-index: 30;
}
.z-40{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.col-span-1{
  grid-column: span 1 / span 1;
}
.col-span-full{
  grid-column: 1 / -1;
}
.\!row-span-1{
  grid-row: span 1 / span 1 !important;
}
.m-4{
  margin: 1rem;
}
.-mx-3{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.-ml-px{
  margin-left: -1px;
}
.-mt-3{
  margin-top: -0.75rem;
}
.-mt-5{
  margin-top: -1.25rem;
}
.-mt-px{
  margin-top: -1px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-24{
  margin-bottom: 6rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-12{
  margin-left: 3rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-4{
  margin-left: 1rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mr-4{
  margin-right: 1rem;
}
.mr-6{
  margin-right: 1.5rem;
}
.ms-3{
  margin-inline-start: 0.75rem;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-auto{
  margin-top: auto;
}
.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.aspect-\[16\/10\]{
  aspect-ratio: 16/10;
}
.aspect-\[21\/9\]{
  aspect-ratio: 21/9;
}
.aspect-video{
  aspect-ratio: 16 / 9;
}
.size-12{
  width: 3rem;
  height: 3rem;
}
.size-2{
  width: 0.5rem;
  height: 0.5rem;
}
.size-3{
  width: 0.75rem;
  height: 0.75rem;
}
.size-5{
  width: 1.25rem;
  height: 1.25rem;
}
.size-6{
  width: 1.5rem;
  height: 1.5rem;
}
.h-0{
  height: 0px;
}
.h-0\.5{
  height: 0.125rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-1\/2{
  height: 50%;
}
.h-10{
  height: 2.5rem;
}
.h-11{
  height: 2.75rem;
}
.h-12{
  height: 3rem;
}
.h-14{
  height: 3.5rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-2\.5{
  height: 0.625rem;
}
.h-20{
  height: 5rem;
}
.h-24{
  height: 6rem;
}
.h-3{
  height: 0.75rem;
}
.h-4{
  height: 1rem;
}
.h-40{
  height: 10rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-64{
  height: 16rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-\[18px\]{
  height: 18px;
}
.h-\[400px\]{
  height: 400px;
}
.h-\[500px\]{
  height: 500px;
}
.h-\[56px\]{
  height: 56px;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-screen{
  height: 100vh;
}
.max-h-\[700px\]{
  max-height: 700px;
}
.min-h-\[120px\]{
  min-height: 120px;
}
.min-h-\[500px\]{
  min-height: 500px;
}
.min-h-dvh{
  min-height: 100dvh;
}
.min-h-screen{
  min-height: 100vh;
}
.w-0{
  width: 0px;
}
.w-1\.5{
  width: 0.375rem;
}
.w-10{
  width: 2.5rem;
}
.w-11{
  width: 2.75rem;
}
.w-14{
  width: 3.5rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\.5{
  width: 0.625rem;
}
.w-2\/3{
  width: 66.666667%;
}
.w-20{
  width: 5rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\/4{
  width: 75%;
}
.w-4{
  width: 1rem;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-72{
  width: 18rem;
}
.w-8{
  width: 2rem;
}
.w-\[18px\]{
  width: 18px;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[500px\]{
  width: 500px;
}
.w-\[calc\(100\%\+8rem\)\]{
  width: calc(100% + 8rem);
}
.w-auto{
  width: auto;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-px{
  width: 1px;
}
.min-w-0{
  min-width: 0px;
}
.min-w-5{
  min-width: 1.25rem;
}
.min-w-6{
  min-width: 1.5rem;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-6xl{
  max-width: 72rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[877px\]{
  max-width: 877px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-xl{
  max-width: 36rem;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.grow{
  flex-grow: 1;
}
.table-auto{
  table-layout: auto;
}
.origin-top{
  transform-origin: top;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-full{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1{
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-5{
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-100\%\]{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-4{
  --tw-translate-y: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-full{
  --tw-translate-y: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce{
  animation: bounce 1s infinite;
}
.cursor-default{
  cursor: default;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.resize-none{
  resize: none;
}
.resize{
  resize: both;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.\!flex-row{
  flex-direction: row !important;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.items-stretch{
  align-items: stretch;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-items-center{
  justify-items: center;
}
.gap-0\.5{
  gap: 0.125rem;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-12{
  gap: 3rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-2\.5{
  gap: 0.625rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(249 250 251 / var(--tw-divide-opacity, 1));
}
.divide-neutral-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-divide-opacity, 1));
}
.self-end{
  align-self: flex-end;
}
.self-center{
  align-self: center;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-\[10px\]{
  border-radius: 10px;
}
.rounded-\[2rem\]{
  border-radius: 2rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: var(--radius);
}
.rounded-md{
  border-radius: calc(var(--radius) - 2px);
}
.rounded-sm{
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-b-lg{
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.rounded-l-md{
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.rounded-r-md{
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.rounded-t-lg{
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-x{
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-r{
  border-right-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-dashed{
  border-style: dashed;
}
.border-dotted{
  border-style: dotted;
}
.border-\[\#0a3f26\]{
  --tw-border-opacity: 1;
  border-color: rgb(10 63 38 / var(--tw-border-opacity, 1));
}
.border-\[\#0a3f26\]\/10{
  border-color: rgb(10 63 38 / 0.1);
}
.border-accent{
  border-color: hsl(var(--accent));
}
.border-accent\/20{
  border-color: hsl(var(--accent) / 0.2);
}
.border-blue-100{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-gray-50{
  --tw-border-opacity: 1;
  border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
}
.border-green-100{
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}
.border-indigo-400{
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}
.border-neon-yellow{
  --tw-border-opacity: 1;
  border-color: rgb(212 165 117 / var(--tw-border-opacity, 1));
}
.border-neutral-100{
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}
.border-neutral-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.border-neutral-300{
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}
.border-purple-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}
.border-red-500\/10{
  border-color: rgb(239 68 68 / 0.1);
}
.border-transparent{
  border-color: transparent;
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10{
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/5{
  border-color: rgb(255 255 255 / 0.05);
}
.border-white\/50{
  border-color: rgb(255 255 255 / 0.5);
}
.bg-\[\#062416\]{
  --tw-bg-opacity: 1;
  background-color: rgb(6 36 22 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0a3f26\]{
  --tw-bg-opacity: 1;
  background-color: rgb(10 63 38 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0a3f26\]\/40{
  background-color: rgb(10 63 38 / 0.4);
}
.bg-\[\#0a3f26\]\/5{
  background-color: rgb(10 63 38 / 0.05);
}
.bg-\[\#FF2D20\]\/10{
  background-color: rgb(255 45 32 / 0.1);
}
.bg-\[\#d4a575\]{
  --tw-bg-opacity: 1;
  background-color: rgb(212 165 117 / var(--tw-bg-opacity, 1));
}
.bg-\[\#d4a575\]\/10{
  background-color: rgb(212 165 117 / 0.1);
}
.bg-\[\#f4f7f5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(244 247 245 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f8f9fa\]{
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1));
}
.bg-accent{
  background-color: hsl(var(--accent));
}
.bg-accent\/10{
  background-color: hsl(var(--accent) / 0.1);
}
.bg-amber-200{
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}
.bg-amber-600{
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.bg-black\/10{
  background-color: rgb(0 0 0 / 0.1);
}
.bg-black\/20{
  background-color: rgb(0 0 0 / 0.2);
}
.bg-black\/40{
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/50{
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/60{
  background-color: rgb(0 0 0 / 0.6);
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-500\/80{
  background-color: rgb(59 130 246 / 0.8);
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-700{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.bg-dark-bg{
  --tw-bg-opacity: 1;
  background-color: rgb(10 63 38 / var(--tw-bg-opacity, 1));
}
.bg-dark-bg\/80{
  background-color: rgb(10 63 38 / 0.8);
}
.bg-dark-bg\/95{
  background-color: rgb(10 63 38 / 0.95);
}
.bg-emerald-200{
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}
.bg-emerald-600{
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-50\/50{
  background-color: rgb(249 250 251 / 0.5);
}
.bg-gray-500\/75{
  background-color: rgb(107 114 128 / 0.75);
}
.bg-gray-500\/80{
  background-color: rgb(107 114 128 / 0.8);
}
.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500\/80{
  background-color: rgb(34 197 94 / 0.8);
}
.bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-indigo-50{
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.bg-neon-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(212 165 117 / var(--tw-bg-opacity, 1));
}
.bg-neutral-400{
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}
.bg-neutral-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-neutral-600{
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}
.bg-neutral-700{
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
}
.bg-primary{
  background-color: hsl(var(--primary));
}
.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-500\/10{
  background-color: rgb(239 68 68 / 0.1);
}
.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-rose-200{
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
}
.bg-rose-500{
  --tw-bg-opacity: 1;
  background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
}
.bg-rose-600{
  --tw-bg-opacity: 1;
  background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/5{
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/70{
  background-color: rgb(255 255 255 / 0.7);
}
.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}
.bg-white\/\[2\%\]{
  background-color: rgb(255 255 255 / 2%);
}
.bg-zinc-900{
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-gradient-to-tr{
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}
.from-\[\#0a3f26\]{
  --tw-gradient-from: #0a3f26 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(10 63 38 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#d4a575\]{
  --tw-gradient-from: #d4a575 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(212 165 117 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#d4a575\]\/5{
  --tw-gradient-from: rgb(212 165 117 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(212 165 117 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-accent{
  --tw-gradient-from: hsl(var(--accent)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--accent) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/10{
  --tw-gradient-from: rgb(0 0 0 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/20{
  --tw-gradient-from: rgb(0 0 0 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900{
  --tw-gradient-from: #111827 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white\/0{
  --tw-gradient-from: rgb(255 255 255 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-\[\#072e1c\]{
  --tw-gradient-to: rgb(7 46 28 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #072e1c var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-accent{
  --tw-gradient-to: hsl(var(--accent) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--accent)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-white{
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-white\/5{
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.05) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[\#041a10\]{
  --tw-gradient-to: #041a10 var(--tw-gradient-to-position);
}
.to-\[\#c59a6d\]{
  --tw-gradient-to: #c59a6d var(--tw-gradient-to-position);
}
.to-\[\#f0d5b5\]{
  --tw-gradient-to: #f0d5b5 var(--tw-gradient-to-position);
}
.to-black{
  --tw-gradient-to: #000 var(--tw-gradient-to-position);
}
.to-transparent{
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.to-white{
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}
.to-white\/0{
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
}
.stroke-\[\#FF2D20\]{
  stroke: #FF2D20;
}
.stroke-emerald-500{
  stroke: #10b981;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-top{
  -o-object-position: top;
     object-position: top;
}
.p-1{
  padding: 0.25rem;
}
.p-2{
  padding: 0.5rem;
}
.p-2\.5{
  padding: 0.625rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[6px\]{
  padding-left: 6px;
  padding-right: 6px;
}
.py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-0{
  padding-bottom: 0px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-12{
  padding-bottom: 3rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pe-4{
  padding-inline-end: 1rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-8{
  padding-left: 2rem;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-2\.5{
  padding-right: 0.625rem;
}
.ps-3{
  padding-inline-start: 0.75rem;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-14{
  padding-top: 3.5rem;
}
.pt-24{
  padding-top: 6rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-start{
  text-align: start;
}
.font-display{
  font-family: Oswald, sans-serif;
}
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans{
  font-family: Montserrat, Inter, Figtree, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.font-serif{
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[12vw\]{
  font-size: 12vw;
}
.text-\[13px\]{
  font-size: 13px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-sm\/relaxed{
  font-size: 0.875rem;
  line-height: 1.625;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-xs\/none{
  font-size: 0.75rem;
  line-height: 1;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.italic{
  font-style: italic;
}
.leading-3{
  line-height: .75rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-snug{
  line-height: 1.375;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-\[0\.2em\]{
  letter-spacing: 0.2em;
}
.tracking-\[0\.3em\]{
  letter-spacing: 0.3em;
}
.tracking-tighter{
  letter-spacing: -0.05em;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.text-\[\#0a3f26\]{
  --tw-text-opacity: 1;
  color: rgb(10 63 38 / var(--tw-text-opacity, 1));
}
.text-\[\#0a3f26\]\/20{
  color: rgb(10 63 38 / 0.2);
}
.text-\[\#d4a575\]{
  --tw-text-opacity: 1;
  color: rgb(212 165 117 / var(--tw-text-opacity, 1));
}
.text-accent{
  color: hsl(var(--accent));
}
.text-amber-900{
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-black\/50{
  color: rgb(0 0 0 / 0.5);
}
.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-900{
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-dark-bg{
  --tw-text-opacity: 1;
  color: rgb(10 63 38 / var(--tw-text-opacity, 1));
}
.text-emerald-500{
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.text-emerald-900{
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.text-gray-200{
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-indigo-600{
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.text-indigo-700{
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.text-muted{
  color: hsl(var(--muted));
}
.text-neon-yellow{
  --tw-text-opacity: 1;
  color: rgb(212 165 117 / var(--tw-text-opacity, 1));
}
.text-neutral-100{
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.text-neutral-400{
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.text-neutral-500{
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.text-neutral-600{
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.text-neutral-800{
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.text-neutral-900{
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}
.text-neutral-950{
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.text-primary{
  color: hsl(var(--primary));
}
.text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-purple-700{
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-red-300{
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-rose-900{
  --tw-text-opacity: 1;
  color: rgb(136 19 55 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}
.underline{
  text-decoration-line: underline;
}
.decoration-neutral-400{
  text-decoration-color: #a3a3a3;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-gray-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(209 213 219 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(209 213 219 / var(--tw-placeholder-opacity, 1));
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-25{
  opacity: 0.25;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-80{
  opacity: 0.8;
}
.opacity-90{
  opacity: 0.9;
}
.opacity-\[0\.03\]{
  opacity: 0.03;
}
.mix-blend-difference{
  mix-blend-mode: difference;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_14px_34px_0px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{
  --tw-shadow: 0px 14px 34px 0px rgba(0,0,0,0.08);
  --tw-shadow-colored: 0px 14px 34px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[\#d4a575\]\/20{
  --tw-shadow-color: rgb(212 165 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-black\/20{
  --tw-shadow-color: rgb(0 0 0 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/50{
  --tw-shadow-color: rgb(229 231 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-4{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-black{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
}
.ring-gray-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.ring-transparent{
  --tw-ring-color: transparent;
}
.ring-white\/5{
  --tw-ring-color: rgb(255 255 255 / 0.05);
}
.ring-white\/\[0\.05\]{
  --tw-ring-color: rgb(255 255 255 / 0.05);
}
.ring-opacity-5{
  --tw-ring-opacity: 0.05;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[120px\]{
  --tw-blur: blur(120px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[4px\]{
  --tw-blur: blur(4px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[80px\]{
  --tw-blur: blur(80px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-\[0px_4px_34px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{
  --tw-drop-shadow: drop-shadow(0px 4px 34px rgba(0,0,0,0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-\[0px_4px_34px_rgba\(0\2c 0\2c 0\2c 0\.25\)\]{
  --tw-drop-shadow: drop-shadow(0px 4px 34px rgba(0,0,0,0.25));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md{
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-xl{
  --tw-backdrop-blur: blur(24px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter{
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-1000{
  transition-duration: 1000ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-500{
  transition-duration: 500ms;
}
.duration-700{
  transition-duration: 700ms;
}
.duration-75{
  transition-duration: 75ms;
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.selection\:bg-\[\#FF2D20\] *::-moz-selection{
  --tw-bg-opacity: 1;
  background-color: rgb(255 45 32 / var(--tw-bg-opacity, 1));
}
.selection\:bg-\[\#FF2D20\] *::selection{
  --tw-bg-opacity: 1;
  background-color: rgb(255 45 32 / var(--tw-bg-opacity, 1));
}
.selection\:text-white *::-moz-selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white *::selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:bg-\[\#FF2D20\]::-moz-selection{
  --tw-bg-opacity: 1;
  background-color: rgb(255 45 32 / var(--tw-bg-opacity, 1));
}
.selection\:bg-\[\#FF2D20\]::selection{
  --tw-bg-opacity: 1;
  background-color: rgb(255 45 32 / var(--tw-bg-opacity, 1));
}
.selection\:text-white::-moz-selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white::selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.last\:mb-0:last-child{
  margin-bottom: 0px;
}
.even\:bg-white:nth-child(even){
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:border-\[\#d4a575\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(212 165 117 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#d4a575\]\/30:hover{
  border-color: rgb(212 165 117 / 0.3);
}
.hover\:border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.hover\:bg-\[\#062416\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(6 36 22 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#0a3f26\]\/5:hover{
  background-color: rgb(10 63 38 / 0.05);
}
.hover\:bg-\[\#d4a575\]\/10:hover{
  background-color: rgb(212 165 117 / 0.1);
}
.hover\:bg-black\/40:hover{
  background-color: rgb(0 0 0 / 0.4);
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100\/50:hover{
  background-color: rgb(243 244 246 / 0.5);
}
.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50\/50:hover{
  background-color: rgb(249 250 251 / 0.5);
}
.hover\:bg-gray-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neon-yellow:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(212 165 117 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-500\/20:hover{
  background-color: rgb(239 68 68 / 0.2);
}
.hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white\/10:hover{
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-white\/50:hover{
  background-color: rgb(255 255 255 / 0.5);
}
.hover\:text-\[\#0a3f26\]:hover{
  --tw-text-opacity: 1;
  color: rgb(10 63 38 / var(--tw-text-opacity, 1));
}
.hover\:text-\[\#d4a575\]:hover{
  --tw-text-opacity: 1;
  color: rgb(212 165 117 / var(--tw-text-opacity, 1));
}
.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.hover\:text-black\/70:hover{
  color: rgb(0 0 0 / 0.7);
}
.hover\:text-gray-400:hover{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-neon-yellow:hover{
  --tw-text-opacity: 1;
  color: rgb(212 165 117 / var(--tw-text-opacity, 1));
}
.hover\:text-primary:hover{
  color: hsl(var(--primary));
}
.hover\:text-red-200:hover{
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}
.hover\:text-red-500:hover{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.hover\:text-red-800:hover{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:shadow-2xl:hover{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-\[\#0a3f26\]\/10:hover{
  --tw-shadow-color: rgb(10 63 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-\[\#0a3f26\]\/20:hover{
  --tw-shadow-color: rgb(10 63 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:ring-black\/20:hover{
  --tw-ring-color: rgb(0 0 0 / 0.2);
}
.focus\:border-\[\#d4a575\]:focus{
  --tw-border-opacity: 1;
  border-color: rgb(212 165 117 / var(--tw-border-opacity, 1));
}
.focus\:border-accent:focus{
  border-color: hsl(var(--accent));
}
.focus\:border-blue-300:focus{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-300:focus{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-700:focus{
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.focus\:bg-gray-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.focus\:text-gray-700:focus{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-800:focus{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-800:focus{
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity, 1));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-1:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-\[\#0a3f26\]:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(10 63 38 / var(--tw-ring-opacity, 1));
}
.focus\:ring-\[\#d4a575\]:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 165 117 / var(--tw-ring-opacity, 1));
}
.focus\:ring-\[\#d4a575\]\/20:focus{
  --tw-ring-color: rgb(212 165 117 / 0.2);
}
.focus\:ring-indigo-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-1:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-\[\#FF2D20\]:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 45 32 / var(--tw-ring-opacity, 1));
}
.active\:bg-gray-100:active{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-900:active{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-700:active{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.active\:text-gray-500:active{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.active\:text-gray-700:active{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.active\:text-gray-800:active{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.disabled\:opacity-25:disabled{
  opacity: 0.25;
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
.disabled\:grayscale:disabled{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.group:hover .group-hover\:m-2{
  margin: 0.5rem;
}
.group:hover .group-hover\:w-full{
  width: 100%;
}
.group:hover .group-hover\:-translate-x-1{
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:-translate-x-2{
  --tw-translate-x: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:-translate-y-1{
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-x-1{
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-x-2{
  --tw-translate-x: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-x-\[100\%\]{
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:bg-neon-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(212 165 117 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:text-\[\#d4a575\]{
  --tw-text-opacity: 1;
  color: rgb(212 165 117 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
.peer:checked ~ .peer-checked\:border-\[\#0a3f26\]{
  --tw-border-opacity: 1;
  border-color: rgb(10 63 38 / var(--tw-border-opacity, 1));
}
.peer:checked ~ .peer-checked\:bg-\[\#0a3f26\]{
  --tw-bg-opacity: 1;
  background-color: rgb(10 63 38 / var(--tw-bg-opacity, 1));
}
.peer:checked ~ .peer-checked\:bg-\[\#0a3f26\]\/5{
  background-color: rgb(10 63 38 / 0.05);
}
.peer:checked ~ .peer-checked\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.prose-headings\:font-display :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  font-family: Oswald, sans-serif;
}
.prose-headings\:text-\[\#0a3f26\] :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(10 63 38 / var(--tw-text-opacity, 1));
}
.prose-p\:leading-relaxed :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  line-height: 1.625;
}
.prose-p\:text-gray-700 :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.prose-a\:text-\[\#d4a575\] :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(212 165 117 / var(--tw-text-opacity, 1));
}
.prose-a\:no-underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  text-decoration-line: none;
}
.hover\:prose-a\:underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))):hover{
  text-decoration-line: underline;
}
.prose-blockquote\:rounded-r-2xl :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.prose-blockquote\:border-\[\#d4a575\] :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-border-opacity: 1;
  border-color: rgb(212 165 117 / var(--tw-border-opacity, 1));
}
.prose-blockquote\:bg-gray-50\/50 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  background-color: rgb(249 250 251 / 0.5);
}
.prose-blockquote\:px-6 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.prose-blockquote\:py-1 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.prose-img\:rounded-\[2rem\] :is(:where(img):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  border-radius: 2rem;
}
.prose-img\:shadow-xl :is(:where(img):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 640px){
  .sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:mb-16{
    margin-bottom: 4rem;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:size-16{
    width: 4rem;
    height: 4rem;
  }
  .sm\:size-6{
    width: 1.5rem;
    height: 1.5rem;
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:max-w-2xl{
    max-width: 42rem;
  }
  .sm\:max-w-lg{
    max-width: 32rem;
  }
  .sm\:max-w-md{
    max-width: 28rem;
  }
  .sm\:max-w-sm{
    max-width: 24rem;
  }
  .sm\:max-w-xl{
    max-width: 36rem;
  }
  .sm\:flex-1{
    flex: 1 1 0%;
  }
  .sm\:translate-y-0{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .sm\:scale-100{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .sm\:scale-95{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-start{
    justify-content: flex-start;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:gap-2{
    gap: 0.5rem;
  }
  .sm\:rounded-lg{
    border-radius: var(--radius);
  }
  .sm\:p-14{
    padding: 3.5rem;
  }
  .sm\:p-8{
    padding: 2rem;
  }
  .sm\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .sm\:pb-0{
    padding-bottom: 0px;
  }
  .sm\:pt-0{
    padding-top: 0px;
  }
  .sm\:pt-16{
    padding-top: 4rem;
  }
  .sm\:pt-5{
    padding-top: 1.25rem;
  }
}
@media (min-width: 768px){
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:row-span-3{
    grid-row: span 3 / span 3;
  }
  .md\:block{
    display: block;
  }
  .md\:hidden{
    display: none;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:p-12{
    padding: 3rem;
  }
  .md\:p-16{
    padding: 4rem;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-7xl{
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px){
  .lg\:col-start-2{
    grid-column-start: 2;
  }
  .lg\:block{
    display: block;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-16{
    height: 4rem;
  }
  .lg\:w-1\/3{
    width: 33.333333%;
  }
  .lg\:w-2\/3{
    width: 66.666667%;
  }
  .lg\:max-w-7xl{
    max-width: 80rem;
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:flex-col{
    flex-direction: column;
  }
  .lg\:items-end{
    align-items: flex-end;
  }
  .lg\:justify-center{
    justify-content: center;
  }
  .lg\:gap-8{
    gap: 2rem;
  }
  .lg\:p-10{
    padding: 2.5rem;
  }
  .lg\:p-8{
    padding: 2rem;
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:pb-10{
    padding-bottom: 2.5rem;
  }
  .lg\:pt-0{
    padding-top: 0px;
  }
  .lg\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-8xl{
    font-size: 6rem;
    line-height: 1;
  }
  .lg\:text-\[\#FF2D20\]{
    --tw-text-opacity: 1;
    color: rgb(255 45 32 / var(--tw-text-opacity, 1));
  }
}
@media (min-width: 1280px){
  .xl\:block{
    display: block;
  }
}
.ltr\:origin-top-left:where([dir="ltr"], [dir="ltr"] *){
  transform-origin: top left;
}
.ltr\:origin-top-right:where([dir="ltr"], [dir="ltr"] *){
  transform-origin: top right;
}
.rtl\:origin-top-left:where([dir="rtl"], [dir="rtl"] *){
  transform-origin: top left;
}
.rtl\:origin-top-right:where([dir="rtl"], [dir="rtl"] *){
  transform-origin: top right;
}
.rtl\:flex-row-reverse:where([dir="rtl"], [dir="rtl"] *){
  flex-direction: row-reverse;
}
@media (prefers-color-scheme: dark){
  .dark\:block{
    display: block;
  }
  .dark\:hidden{
    display: none;
  }
  .dark\:divide-white\/10 > :not([hidden]) ~ :not([hidden]){
    border-color: rgb(255 255 255 / 0.1);
  }
  .dark\:divide-white\/5 > :not([hidden]) ~ :not([hidden]){
    border-color: rgb(255 255 255 / 0.05);
  }
  .dark\:border{
    border-width: 1px;
  }
  .dark\:border-none{
    border-style: none;
  }
  .dark\:border-amber-500{
    --tw-border-opacity: 1;
    border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
  }
  .dark\:border-amber-800{
    --tw-border-opacity: 1;
    border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
  }
  .dark\:border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  }
  .dark\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }
  .dark\:border-emerald-500{
    --tw-border-opacity: 1;
    border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
  }
  .dark\:border-emerald-600{
    --tw-border-opacity: 1;
    border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
  }
  .dark\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }
  .dark\:border-neutral-500{
    --tw-border-opacity: 1;
    border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  }
  .dark\:border-neutral-700{
    --tw-border-opacity: 1;
    border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  }
  .dark\:border-neutral-800{
    --tw-border-opacity: 1;
    border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  }
  .dark\:border-rose-500{
    --tw-border-opacity: 1;
    border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
  }
  .dark\:border-rose-900{
    --tw-border-opacity: 1;
    border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
  }
  .dark\:border-white\/10{
    border-color: rgb(255 255 255 / 0.1);
  }
  .dark\:border-white\/20{
    border-color: rgb(255 255 255 / 0.2);
  }
  .dark\:border-white\/5{
    border-color: rgb(255 255 255 / 0.05);
  }
  .dark\:border-white\/\[9\%\]{
    border-color: rgb(255 255 255 / 9%);
  }
  .dark\:bg-\[\#1a1a1a\]{
    --tw-bg-opacity: 1;
    background-color: rgb(26 26 26 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-amber-600{
    --tw-bg-opacity: 1;
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-amber-950{
    --tw-bg-opacity: 1;
    background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-blue-700{
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-blue-950{
    --tw-bg-opacity: 1;
    background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-emerald-600{
    --tw-bg-opacity: 1;
    background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-emerald-900\/70{
    background-color: rgb(6 78 59 / 0.7);
  }
  .dark\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-neutral-400{
    --tw-bg-opacity: 1;
    background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-neutral-600{
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-neutral-700{
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-neutral-800{
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-neutral-900{
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-rose-600{
    --tw-bg-opacity: 1;
    background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-rose-950{
    --tw-bg-opacity: 1;
    background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-transparent{
    background-color: transparent;
  }
  .dark\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-white\/10{
    background-color: rgb(255 255 255 / 0.1);
  }
  .dark\:bg-white\/5{
    background-color: rgb(255 255 255 / 0.05);
  }
  .dark\:bg-white\/\[2\%\]{
    background-color: rgb(255 255 255 / 2%);
  }
  .dark\:bg-white\/\[3\%\]{
    background-color: rgb(255 255 255 / 3%);
  }
  .dark\:bg-zinc-900{
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
  }
  .dark\:via-zinc-900{
    --tw-gradient-to: rgb(24 24 27 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #18181b var(--tw-gradient-via-position), var(--tw-gradient-to);
  }
  .dark\:to-zinc-900{
    --tw-gradient-to: #18181b var(--tw-gradient-to-position);
  }
  .dark\:text-amber-300{
    --tw-text-opacity: 1;
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
  }
  .dark\:text-blue-300{
    --tw-text-opacity: 1;
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }
  .dark\:text-emerald-400{
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));
  }
  .dark\:text-emerald-500{
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-200{
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
  .dark\:text-neutral-100{
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
  }
  .dark\:text-neutral-200{
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1));
  }
  .dark\:text-neutral-300{
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity, 1));
  }
  .dark\:text-neutral-400{
    --tw-text-opacity: 1;
    color: rgb(163 163 163 / var(--tw-text-opacity, 1));
  }
  .dark\:text-neutral-500{
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1));
  }
  .dark\:text-neutral-600{
    --tw-text-opacity: 1;
    color: rgb(82 82 82 / var(--tw-text-opacity, 1));
  }
  .dark\:text-neutral-900{
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1));
  }
  .dark\:text-rose-100{
    --tw-text-opacity: 1;
    color: rgb(255 228 230 / var(--tw-text-opacity, 1));
  }
  .dark\:text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  .dark\:text-white\/50{
    color: rgb(255 255 255 / 0.5);
  }
  .dark\:text-white\/70{
    color: rgb(255 255 255 / 0.7);
  }
  .dark\:ring-zinc-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
  }
  .dark\:hover\:bg-gray-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }
  .dark\:hover\:bg-white\/10:hover{
    background-color: rgb(255 255 255 / 0.1);
  }
  .dark\:hover\:bg-white\/5:hover{
    background-color: rgb(255 255 255 / 0.05);
  }
  .hover\:dark\:bg-white\/5:hover{
    background-color: rgb(255 255 255 / 0.05);
  }
  .dark\:hover\:text-gray-200:hover{
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }
  .dark\:hover\:text-gray-300:hover{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
  .dark\:hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  .dark\:hover\:text-white\/70:hover{
    color: rgb(255 255 255 / 0.7);
  }
  .dark\:hover\:text-white\/80:hover{
    color: rgb(255 255 255 / 0.8);
  }
  .hover\:dark\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  .dark\:hover\:ring-zinc-700:hover{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
  }
  .dark\:focus\:border-blue-700:focus{
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  }
  .dark\:focus\:border-blue-800:focus{
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }
  .dark\:focus-visible\:ring-\[\#FF2D20\]:focus-visible{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 45 32 / var(--tw-ring-opacity, 1));
  }
  .dark\:focus-visible\:ring-white:focus-visible{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
  }
  .dark\:active\:bg-gray-700:active{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }
  .dark\:active\:text-gray-300:active{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
  .group:hover .group-hover\:dark\:text-emerald-500{
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity, 1));
  }
}
.\[\&_svg\]\:size-2\.5 svg{
  width: 0.625rem;
  height: 0.625rem;
}
.\[\&_svg\]\:\!text-white svg{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.hover\:\[\&_svg\]\:stroke-emerald-500 svg:hover{
  stroke: #10b981;
}
@media (prefers-color-scheme: dark){
  .dark\:\[\&_svg\]\:\!text-white svg{
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
  }
}