:root {
    --bg-color: #030014;
    --sidebar-bg: rgba(13, 15, 36, 0.7);
    --card-bg: rgba(17, 19, 39, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --indigo-accent: #6366f1;
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --emerald: #10b981;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background: linear-gradient(135deg, #062a27 0%, #0d0d2b 50%, #1a1a4b 100%); */
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Nebula Background */
.nebula-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.nebula-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.nebula-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    filter: blur(100px);
}

/* Navigation */
.one-page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
}

.navbar-container {
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 12px 8px 24px;
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 1200px;
    justify-content: space-between;
    margin: 2rem auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 48px;
    /* Defined gap between logo/title and start of menu */
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links,
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    /* Increased gap between menu items for better readability */
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
    /* Push menu and items to the right */
}

.nav-links a,
.navbar-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

/* Teal color for the Home link or current item */
.nav-links a.active,
.nav-links li.current-menu-item>a,
.navbar-menu li.current-menu-item>a,
.nav-links li.current_page_item>a {
    color: #2dd4bf;
    font-weight: 500;
}

.nav-links a:hover,
.navbar-menu a:hover {
    color: #2dd4bf;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    /* Space between menu items and buttons */
}

.btn {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    justify-content: center;
}

/* Solid purple button style */
.btn-primary {
    background-color: #6366f1;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #4f46e5;
}

/* Outlined button style matching the "Request a Demo" button */
.btn-outline {
    background-color: transparent;
    color: white;
    border: 1.5px solid #6366f1;
}

.btn-outline:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 0 1rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem;
    background: #1a151c;
    border: 1px solid #282829;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
    padding: 5px;
}

.badge span {
    background: var(--indigo-accent);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    color: white;
}

h1.hero-title {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2.2px;
    color: white;
    font-style: normal;
}

.hero p.hero-description {
    color: var(--text-dim);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Dashboard App Mockup */
.app-mockup {
    max-width: 1200px;
    margin: 0 auto 5rem;
    border-radius: 2rem;
    position: relative;
    /* Vibrant Glow Effect */
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 80px -10px rgba(99, 102, 241, 0.4),
        0 0 40px -5px rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(20px);
}

.mockup-container {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mockup-container img {
    width: 100%;
    display: block;
    height: auto;
}

@media (max-width: 1024px) {
    h1.hero-title {
        font-size: 3rem;
    }

    nav.navbar-container {
        padding: 0.75rem 1.5rem;
        margin: 1rem;
    }

    .nav-links,
    .button-group {
        display: none;
    }
}

/* ========================================================================
   Footer Section - 100% Design Match
   ======================================================================== */

.site-footer {
    padding: 50px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(50% 50% at 50% 3.4%, rgba(129, 74, 200, 0.33) 0%, #0b0c1b 100%);
}

/* Main Layout Wrapper */
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Flex Container (Brand + Links) */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

/* Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-description {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo {
    width: 32px;
    height: auto;
}

.footer-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    margin: 0;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Newsletter */
.newsletter-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    max-width: 400px;
}

.newsletter-form input {
    background: transparent !important;
    border: none !important;
    padding: 10px 16px !important;
    color: white !important;
    font-size: 0.9rem;
    flex: 1;
    outline: none;
    box-shadow: none !important;
}

.newsletter-form button {
    background: var(--indigo-accent) !important;
    color: white !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-form button:hover {
    background: #4f46e5 !important;
}

/* Links Columns Container */
.footer-links {
    display: flex;
    gap: 80px;
}

/* Individual Columns */
.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: white;
}

/* Social Icons styling for SVGs */
.footer-column a[href*="x.com"],
.footer-column a[href*="linkedin.com"] {
    display: inline-block;
    color: var(--text-dim);
    margin-right: 16px;
    transition: color 0.2s;
}

.footer-column a[href*="x.com"]:hover,
.footer-column a[href*="linkedin.com"]:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p a {
    color: var(--text-dim);
    text-decoration: none;
}

.footer-bottom p a:hover {
    color: white;
}

/* Bottom Menu */
.footer-bottom-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.footer-bottom-menu li a {
    color: var(--text-dim);
    text-decoration: none;
}

.footer-bottom-menu li a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 60px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 40px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 20px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-description {
        justify-content: center;
    }

    .newsletter-section {
        margin: 0 auto;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
        padding: 40px 0;
    }

    .footer-bottom-menu {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        margin-bottom: 12px;
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px !important;
    }
}