.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;
}

.landingPage-4d86ec7 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #0a0f1a;
}

.backgroundImage-4d86ec7 {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/images/hero-cityscape.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.backgroundImage-4d86ec7::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 26, 0.75);
}

.content-4d86ec7 {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo-4d86ec7 {
    margin-bottom: 2.5rem;
}

.tagline-4d86ec7 {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .tagline-4d86ec7 {
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {
    .tagline-4d86ec7 {
        font-size: 2rem;
    }
}

.emailForm-4d86ec7 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 32rem;
    width: 100%;
    margin: 0 auto 5rem;
}

@media (min-width: 576px) {
    .emailForm-4d86ec7 {
        flex-direction: row;
        gap: 0;
    }
}

.emailInput-4d86ec7 {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    outline: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

@media (min-width: 576px) {
    .emailInput-4d86ec7 {
        border-radius: 0.5rem 0 0 0.5rem;
        border-right: none;
    }
}

@media (max-width: 575px) {
    .emailInput-4d86ec7 {
        border-radius: 0.5rem;
    }
}

.emailInput-4d86ec7::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.emailInput-4d86ec7:focus {
    border-color: #1d9bf0;
    background: rgba(255, 255, 255, 0.08);
}

.submitButton-4d86ec7 {
    background: #1d9bf0;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .submitButton-4d86ec7 {
        border-radius: 0 0.5rem 0.5rem 0;
    }
}

@media (max-width: 575px) {
    .submitButton-4d86ec7 {
        border-radius: 0.5rem;
    }
}

.submitButton-4d86ec7:hover {
    background: #1a8cd8;
}

.submitButton-4d86ec7:disabled {
    background: rgba(29, 155, 240, 0.5);
    cursor: not-allowed;
}

.arrowIcon-4d86ec7 {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
}

.submitButton-4d86ec7:hover .arrowIcon-4d86ec7 {
    transform: translateX(3px);
}

/* Partner section positioning */
.partnerSection-4d86ec7 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.successMessage-4d86ec7 {
    color: #4ade80;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.infoMessage-4d86ec7 {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.errorMessage-4d86ec7 {
    color: #f87171;
    font-size: 0.95rem;
    margin-top: 1rem;
}


/* 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);
}