.gatePage-e3879e3 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 2rem;
}

.gateContainer-e3879e3 {
    max-width: 400px;
    width: 100%;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.logoContainer-e3879e3 {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.gateTitle-e3879e3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.gateDescription-e3879e3 {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.gateForm-e3879e3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.formGroup-e3879e3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.formLabel-e3879e3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.formInput-e3879e3 {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.formInput-e3879e3::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.formInput-e3879e3:focus {
    outline: none;
    border-color: #c9a96e;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.formInput-e3879e3:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.errorMessage-e3879e3 {
    padding: 0.75rem 1rem;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #ff6b6b;
    font-size: 0.875rem;
    text-align: center;
}

.submitButton-e3879e3 {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #c9a96e 0%, #d4b87a 100%);
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submitButton-e3879e3:hover:not(:disabled) {
    background: linear-gradient(135deg, #d4b87a 0%, #e0c68b 100%);
    transform: translateY(-1px);
}

.submitButton-e3879e3:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner-e3879e3 {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.gateFooter-e3879e3 {
    margin-top: 3rem;
}

/* Loading page styles */
.loadingPage-e3879e3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.loadingContainer-e3879e3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loadingSpinner-e3879e3 {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #c9a96e;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}


/* Hero section - Dark premium landing page */
.heroSection-a64edad {
    --hero-bg: #0d0d14;
    --hero-bg-secondary: #111118;
    --hero-primary: rgb(147, 197, 253);
    --hero-primary-light: rgb(200, 220, 255);
    --hero-text: rgba(255, 255, 255, 0.95);
    --hero-muted: rgba(255, 255, 255, 0.5);
    --hero-border: rgba(255, 255, 255, 0.1);
    --hero-gold: rgb(163, 138, 80);

    position: relative;
    min-height: 100vh;
    width: 100%;
    background-color: var(--hero-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

/* Subtle grid pattern */
.gridPattern-a64edad {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Content wrapper */
.contentWrapper-a64edad {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 48rem;
    gap: 1.5rem;
}

/* Pill badge */
.pillBadge-a64edad {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(30, 30, 40, 0.4);
    border: 1px solid var(--hero-border);
    backdrop-filter: blur(12px);
    position: relative;
}

.pingDot-a64edad {
    position: absolute;
    left: 1rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--hero-primary);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pingDotStatic-a64edad {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--hero-primary);
}

.badgeText-a64edad {
    font-size: 0.875rem;
    color: var(--hero-muted);
    letter-spacing: 0.02em;
}

@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Logo section with glow effects */
.logoContainer-a64edad {
    position: relative;
    padding: 2rem;
    margin: 1rem 0;
    background: transparent;
}

.logoGlowOuter-a64edad {
    position: absolute;
    inset: -50%;
    background: radial-gradient(
        ellipse at center,
        rgba(147, 197, 253, 0.25) 0%,
        transparent 70%
    );
    transform: scale(2.5);
    filter: blur(80px);
    animation: breathe 6s ease-in-out infinite;
    pointer-events: none;
}

.logoGlowMid-a64edad {
    position: absolute;
    inset: -30%;
    background: radial-gradient(
        ellipse at center,
        rgba(200, 220, 255, 0.35) 0%,
        transparent 65%
    );
    transform: scale(1.8);
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

.logoGlowInner-a64edad {
    position: absolute;
    inset: -10%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
    filter: blur(20px);
    pointer-events: none;
}

.carouselTrack-a64edad {
    position: relative;
    width: 700px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carouselSlide-a64edad {
    position: absolute;
    height: 64px;
    width: auto;
    max-width: 700px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    background: transparent;
    border: none;
    outline: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity;
}

.carouselSlideActive-a64edad {
    opacity: 1;
    pointer-events: auto;
}

.carouselDots-a64edad {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    z-index: 1;
}

.carouselDot-a64edad {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s ease;
    padding: 0;
}

.carouselDot-a64edad:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.carouselDotActive-a64edad {
    background: var(--hero-primary);
    border-color: var(--hero-primary);
}

@keyframes breathe {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(2.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(2.7);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1.8);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.9);
    }
}

/* Headline */
.headline-a64edad {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 300;
    color: var(--hero-text);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.gradientText-a64edad {
    background: linear-gradient(
        90deg,
        rgb(147, 197, 253) 0%,
        rgb(200, 220, 255) 50%,
        rgb(147, 197, 253) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Description */
.description-a64edad {
    font-size: 1.125rem;
    color: var(--hero-muted);
    line-height: 1.7;
    max-width: 36rem;
    margin: 0;
}

/* Form container */
.formContainer-a64edad {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 28rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .formContainer-a64edad {
        flex-direction: row;
    }
}

/* Email input with glass effect */
.emailInput-a64edad {
    flex: 1;
    height: 3.5rem;
    padding: 0 1.25rem;
    background: rgba(30, 30, 40, 0.2);
    border: 1px solid var(--hero-border);
    border-radius: 0.75rem;
    backdrop-filter: blur(24px);
    color: var(--hero-text);
    font-size: 1rem;
    transition: all 0.5s ease;
    outline: none;
}

.emailInput-a64edad::placeholder {
    color: var(--hero-muted);
}

.emailInput-a64edad:focus {
    border-color: rgba(147, 197, 253, 0.3);
    background: rgba(30, 30, 40, 0.3);
    box-shadow: 0 0 30px rgba(147, 197, 253, 0.1);
}

/* Request button */
.requestButton-a64edad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3.5rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--hero-primary) 0%, var(--hero-primary-light) 100%);
    border: none;
    border-radius: 0.75rem;
    color: #0d0d14;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.requestButton-a64edad:hover,
.requestButtonHovered-a64edad {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(147, 197, 253, 0.3);
}

.buttonText-a64edad {
    transition: transform 0.3s ease;
}

.buttonArrow-a64edad {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.requestButton-a64edad:hover .buttonArrow-a64edad,
.requestButtonHovered-a64edad .buttonArrow-a64edad {
    transform: translateX(4px);
}

/* Equitativa section positioning */
.equitativaSection-a64edad {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Bottom gradient fade */
.bottomGradient-a64edad {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--hero-bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .heroSection-a64edad {
        padding: 1.5rem;
    }

    .contentWrapper-a64edad {
        gap: 1.25rem;
    }

    .logoContainer-a64edad {
        padding: 1rem;
    }

    .carouselTrack-a64edad {
        width: 320px;
        height: 48px;
    }

    .carouselSlide-a64edad {
        height: 42px;
        max-width: 320px;
    }

    .description-a64edad {
        font-size: 1rem;
    }

    .emailInput-a64edad,
    .requestButton-a64edad {
        width: 100%;
    }
}

/* Success/Error messages */
.successMessage-a64edad {
    color: #4ade80;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.errorMessage-a64edad {
    color: #f87171;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Disabled states */
.emailInput-a64edad:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.requestButton-a64edad:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* Properties List Page - Dark theme styling */

/* Page wrapper with dark background and sticky footer */
.propertiesPage-737accc {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0a0f1a;
    color: #fafafa;
}

/* Header with backdrop blur - transparent like landing */
.header-737accc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.headerContainer-737accc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main content */
.main-737accc {
    flex: 1;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

/* Hero section */
.hero-737accc {
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.heroTitle-737accc {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--pe-foreground, #fafafa);
}

.heroSubtitle-737accc {
    font-size: 1.125rem;
    color: var(--pe-muted-foreground, #8b8fa3);
    margin: 0;
}

@media (min-width: 768px) {
    .heroTitle-737accc {
        font-size: 3rem;
    }
}

/* Properties grid */
.propertiesContainer-737accc {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.propertiesGrid-737accc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1280px) {
    .propertiesGrid-737accc {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Loading state */
.loadingContainer-737accc {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

/* Empty state */
.emptyState-737accc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    text-align: center;
}

.emptyIcon-737accc {
    width: 4rem;
    height: 4rem;
    color: var(--pe-muted-foreground, #8b8fa3);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.emptyText-737accc {
    font-size: 1.125rem;
    color: var(--pe-muted-foreground, #8b8fa3);
    margin: 0;
}

/* Footer - matching landing page style */
.footer-737accc {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(12px);
    padding: 2rem 0;
}

.footerContainer-737accc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* Property Card - Modern dark theme styling matching prototype */

.propertyCard-26e65f8 {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    border: 1px solid rgba(47, 52, 71, 0.5);
    background: rgba(22, 26, 42, 0.5);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.5s ease,
        transform 0.5s ease;
}

.propertyCard-26e65f8:hover {
    background: rgba(22, 26, 42, 1);
    border-color: rgba(74, 144, 217, 0.3);
    box-shadow: 0 10px 40px rgba(74, 144, 217, 0.1);
    transform: scale(1.02);
}

/* Image container with 16:10 aspect ratio */
.imageContainer-26e65f8 {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #22263a;
}

.coverImage-26e65f8 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.propertyCard-26e65f8:hover .coverImage-26e65f8 {
    transform: scale(1.05);
}

/* Gradient overlay on image */
.imageOverlay-26e65f8 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 21, 31, 0.8) 0%, transparent 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Placeholder when no image */
.imagePlaceholder-26e65f8 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22263a;
}

.placeholderIcon-26e65f8 {
    width: 4rem;
    height: 4rem;
    color: #8b8fa3;
    opacity: 0.2;
}

/* Yield badge - top right */
.yieldBadge-26e65f8 {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(74, 144, 217, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
}

.yieldIcon-26e65f8 {
    width: 0.75rem;
    height: 0.75rem;
}

/* Location overlay - bottom left */
.locationOverlay-26e65f8 {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.locationIcon-26e65f8 {
    width: 1rem;
    height: 1rem;
}

/* Card content */
.cardContent-26e65f8 {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Property name */
.propertyName-26e65f8 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fafafa;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.propertyCard-26e65f8:hover .propertyName-26e65f8 {
    color: #4a90d9;
}

/* Portfolio name */
.portfolioName-26e65f8 {
    font-size: 0.875rem;
    color: #8b8fa3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Quality stars */
.qualityStars-26e65f8 {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.starIcon-26e65f8 {
    width: 0.875rem;
    height: 0.875rem;
}

.starFilled-26e65f8 {
    color: #f59e0b;
    fill: #f59e0b;
}

.starEmpty-26e65f8 {
    color: rgba(139, 143, 163, 0.3);
    fill: transparent;
}

/* Funding section */
.fundingSection-26e65f8 {
    margin-top: 0.75rem;
}

.fundingHeader-26e65f8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.375rem;
}

.fundingLabel-26e65f8 {
    font-size: 0.875rem;
    color: #8b8fa3;
}

.fundingPercent-26e65f8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fafafa;
}

/* Progress bar */
.progressBar-26e65f8 {
    height: 0.375rem;
    background: rgba(74, 144, 217, 0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.progressFill-26e65f8 {
    height: 100%;
    background: #4a90d9;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

/* Card footer */
.cardFooter-26e65f8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(47, 52, 71, 0.5);
    margin-top: auto;
}

/* Min investment */
.minInvestment-26e65f8 {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.minInvestmentLabel-26e65f8 {
    font-size: 0.75rem;
    color: #8b8fa3;
}

.minInvestmentValue-26e65f8 {
    font-size: 1rem;
    font-weight: 600;
    color: #fafafa;
}

/* View details button */
.viewDetailsButton-26e65f8 {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a90d9;
    background: transparent;
    border: none;
    cursor: pointer;
    transition:
        color 0.2s ease;
}

.viewDetailsButton-26e65f8:hover {
    color: #6ba8e8;
}

.arrowIcon-26e65f8 {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.propertyCard-26e65f8:hover .arrowIcon-26e65f8 {
    transform: translateX(0.25rem);
}
