/* Ultra Investors Page Styles */

/* Section Utility */
.section-pad {
    padding: 4rem 0;
}

.section-pad-bg {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Feature Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Feature Cards */
.feature-card-ultra {
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid transparent;
}

.feature-card-blue {
    background: rgba(79, 186, 241, 0.1);
    border-color: rgba(79, 186, 241, 0.3);
}

.feature-card-red {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.feature-card-purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-title {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-blue {
    color: #4FBAF1;
}

.text-red {
    color: #EF4444;
}

.text-purple {
    color: #8B5CF6;
}

/* Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Investor Grid */
.investor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .investor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .investor-grid {
        grid-template-columns: 1fr;
    }
}

/* Investor Cards */
.investor-card {
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 186, 241, 0.3);
    background: linear-gradient(135deg, rgba(79, 186, 241, 0.15) 0%, rgba(25, 30, 53, 0.9) 100%);
}

.investor-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(79, 186, 241, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
}

.investor-card-icon {
    margin-bottom: 0.75rem;
}

.investor-card-title {
    font-size: 1.1rem;
    color: #4FBAF1;
    margin-bottom: 0.5rem;
}

.investor-card-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.metric-section {
    margin-bottom: 1.5rem;
}

.metric-title {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.metric-list li {
    padding: 0.3rem 0;
}

.info-box {
    background: rgba(79, 186, 241, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
}

.info-box p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Button Cyber */
.btn-primary-cyber {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 600;
    border-radius: .75rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.btn-primary-cyber:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(79, 186, 241, .4);
}

/* Morph Blobs */
.morph-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blob-float 10s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(79, 186, 241, 0.15);
    top: 10%;
    left: 60%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.1);
    bottom: 20%;
    left: 10%;
    animation-delay: -5s;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Media Queries migrated */
@media (max-width:768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .investor-grid,
    .tech-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width:769px) and (max-width:1100px) {

    .investor-grid,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Investor Card Variants */
.investor-card-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(25, 30, 53, 0.9) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.investor-card-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(25, 30, 53, 0.9) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.investor-card-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(25, 30, 53, 0.9) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Badges */
.badge-seed {
    background: rgba(139, 92, 246, 0.2);
}

.badge-partner {
    background: rgba(16, 185, 129, 0.2);
}

.badge-ma {
    background: rgba(245, 158, 11, 0.2);
}

/* Info Boxes */
.info-box-purple {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
}

.info-box-green {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
}

.info-box-amber {
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
}

/* Text Colors Strong */
.text-strong-blue {
    color: #4FBAF1;
}

.text-strong-purple {
    color: #8B5CF6;
}

.text-strong-green {
    color: #10B981;
}

.text-strong-amber {
    color: #F59E0B;
}

/* Market Stat Cards */
.stat-card {
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.stat-card-blue {
    background: rgba(79, 186, 241, 0.1);
}

.stat-card-purple {
    background: rgba(139, 92, 246, 0.1);
}

.stat-card-green {
    background: rgba(16, 185, 129, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-source {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.tech-icon-wrapper {
    margin-bottom: 0.75rem;
}

.tech-title {
    font-weight: 600;
}

.tech-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-wide {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.docs-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(79, 186, 241, 0.1);
    border-radius: 1rem;
    text-align: left;
}

.docs-title {
    color: #4FBAF1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-inline {
    vertical-align: -2px;
    margin-right: 4px;
}

.gtm-iframe {
    display: none;
    visibility: hidden;
}

.label-highlight {
    color: var(--primary);
}

.section-padded {
    padding: 4rem 0;
}

.section-dark {
    background: rgba(0, 0, 0, 0.2);
}

.link-primary {
    color: var(--primary);
    text-decoration: none;
}

.link-primary:hover {
    text-decoration: underline;
}


.contact-title {
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.section-pad {
    padding: 4rem 0;
}

.bg-dark-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.no-decoration {
    text-decoration: none;
}