/* Authority Prestige Navbar Transition */
.nav-prestige {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-prestige.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.nav-prestige .nav-link {
    position: relative;
    color: #A0AEC0;
    transition: color 0.3s ease;
}
.nav-prestige .nav-link:hover {
    color: #F3F7FF;
}
.nav-prestige .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #6ABF16;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-prestige .nav-link:hover::after {
    width: 100%;
}

/* Base styles for fiber-canvas */
#fiber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800;900&display=swap');

.premium-bento-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 100px 5%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .premium-bento-section {
        padding: 60px 5%;
    }
}

.bento-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .bento-container {
        grid-template-columns: 1fr;
    }
}

.glass-panel {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

html[data-theme='light'] .glass-panel {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(106, 191, 22, 0.3);
}

html[data-theme='light'] .glass-panel:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
}

.hero-card {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .hero-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

.geo-card {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

@media (max-width: 992px) {
    .geo-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

.faq-card {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

@media (max-width: 992px) {
    .faq-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.text-white {
    color: #F3F7FF;
}

html[data-theme='light'] .text-white {
    color: #0A0A0A;
}

.text-gray {
    color: #A0AEC0;
    line-height: 1.6;
}

html[data-theme='light'] .text-gray {
    color: #4B4F58;
}

.text-accent {
    color: #6ABF16;
}

.text-trust {
    color: #1675BF;
}

.hero-card h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero-card h1 {
        font-size: 2.5rem;
    }
}

.hero-card p {
    font-size: 1.25rem;
    max-width: 90%;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

html[data-theme='light'] .faq-item {
    border-bottom: 1px solid #E2E8F0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
}

.faq-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}