/* Build: 2025-10-16 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-top: 50px;
}

.navigation-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 132px; */
    gap: 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

/* Support provided header-logo snippet */
.header-logo img {
    /* height: 124px; */
    width: auto;
}

.brand-logo:hover .logo-icon {
    box-shadow: none;
}

.brand-logo:hover .logo-icon img {
    transform: scale(1.05);
    filter: none;
}

.logo-icon svg {
    /* width: 124px;
    height: 124px;
    fill: white; */
}

/* Ensure image logos match the inline SVG sizing */
.logo-icon img {
    width: auto;
    height: 55px;
    max-width: 100%;
    display: block;
    object-fit: contain;
    /* filter: none; */
    transition: all 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.6px;
}

.brand-tagline {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #6b7280;
    letter-spacing: 0.3px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0 auto;
}

.menu-link {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.menu-link:hover {
    color: #2563eb;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.2s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link.active-page {
    color: #2563eb;
}

.menu-link.active-page::after {
    width: 100%;
}

.cta-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    padding: 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-toggle:hover {
    background-color: #f3f4f6;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
    stroke: #374151;
    transition: all 0.3s ease;
}

.mobile-toggle.is-open .hamburger-icon {
    transform: rotate(90deg);
}

/* Mobile dropdown menu (hidden by default) */
.mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 12px 16px;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu a {
    display: block;
    text-decoration: none;
    color: #4b5563;
    font-size: 0.95rem;
    padding: 10px 4px;
    border-radius: 6px;
}

.mobile-menu a.active-page,
.mobile-menu a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.mobile-menu .mobile-cta {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 10px 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .main-menu,
    .cta-button {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .brand-text {
        display: none;
    }

}

@media (max-width: 640px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 420px) {
    .logo-icon img {
        height: 45px;
    }
}

/* Additional responsive logo styling */
@media (max-width: 768px) {
    .logo-icon img {
        height: 50px;
    }
}

@media (min-width: 1200px) {
    .logo-icon img {
        height: 60px;
    }
}

/* Demo content */
.demo-section {
    /* max-width: 1200px; */
    margin: 2rem auto;
    padding: 0 2rem;
}

.demo-section h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.demo-section p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.75;
}
