/* --- Full-Screen Mobile Menu Overlay --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 41, 59, 0.97); /* more opaque to block text */
    z-index: 3000; /* higher than hero and navbar */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 32px 16px 0 16px;
    box-sizing: border-box;
    transition: opacity 0.3s;
    pointer-events: auto;
}
.mobile-menu.is-open {
    display: flex;
    opacity: 1;
}
.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2100;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 64px 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.mobile-nav-links li a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.mobile-nav-links li a:hover {
    color: #60A5FA;
}
.mobile-nav-cta {
    margin-top: 48px;
    background: #2563EB;
    color: #fff;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: background 0.2s;
}
.mobile-nav-cta:hover {
    background: #1D4ED8;
}
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}
/* --- Hamburger Menu Styles --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #2563EB;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 16px;
        top: 16px;
    }
    .navbar {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        margin-bottom: 0;
    }
    .nav-links {
        display: none !important;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: 8px;
        width: 100%;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border-radius: 0 0 24px 24px;
        padding: 16px 0 24px 0;
        z-index: 1000;
        border: 1px solid rgba(226,232,240,0.8);
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-cta {
        display: none !important;
    }
    .hamburger {
        display: flex;
        position: static;
        margin-left: auto;
    }
}
/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
    .main-header {
        padding-top: 12px;
    }
    .navbar {
        width: 98%;
        max-width: 100vw;
        padding: 8px 16px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-radius: 24px;
        position: relative;
    }
    .logo {
        font-size: 18px;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        justify-content: flex-start;
    }
    .hamburger {
        margin-left: auto;
        position: static;
    }
    .nav-links {
        gap: 16px;
        font-size: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
    }
    .nav-cta {
        width: auto;
        margin-top: 0;
        padding: 10px 20px;
        font-size: 16px;
    }
    .hero {
        padding: 48px 8px 60px;
    }
    .hero-background-text {
        font-size: 18vw;
    }
    .hero-content {
        max-width: 98vw;
    }
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    .badge {
        font-size: 12px;
        margin-bottom: 20px;
        padding: 6px 12px;
    }
    .waitlist-form {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    .waitlist-form input {
        width: 100%;
        font-size: 1rem;
        padding: 12px 12px;
    }
    .waitlist-form button {
        width: 100%;
        font-size: 1rem;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 4px 2px;
        border-radius: 12px;
    }
    .logo {
        font-size: 16px;
    }
    .hero {
        padding: 32px 2px 32px;
    }
    .hero-background-text {
        font-size: 14vw;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .waitlist-form input,
    .waitlist-form button {
        font-size: 0.95rem;
        padding: 10px 0;
    }
}
/* --- Add this entire block to the end of your style.css file --- */

/* Dotted/Noise Texture Overlay */
body::after {
    content: ""; /* Required for pseudo-elements */
    position: fixed; /* Covers the entire screen */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Creates a tiny dot pattern */
    background-image: radial-gradient(rgba(0, 0, 0, 0.15) 1px, transparent 0);
    background-size: 4px 4px;
    /* Adjust this opacity to make the effect stronger or weaker */
    opacity: 0.2; 
    /* Ensures the texture is behind content and doesn't block clicks */
    z-index: -1;
    pointer-events: none; 
}

/* --- General Setup --- */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    /* This is the updated background */
    background: linear-gradient(180deg, #F5F8FF 0%, #abb4fc 100%);
    color: #1E293B;
    min-height: 100vh; /* Ensures gradient covers the full page */
}

/* --- Splash Screen Styles --- */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    animation: slide-up 1s ease-in-out 2s forwards;
}

.splash-text {
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: flip-up 1.5s ease-in-out;
    text-align: center;
}

@keyframes flip-up {
    from { transform: rotateX(90deg); opacity: 0; }
    to { transform: rotateX(0deg); opacity: 1; }
}

@keyframes slide-up {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}

@media (max-width: 768px) {
    .splash-text {
        font-size: 4.5rem;
    }
}

@media (max-width: 360px) {
    .splash-text {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }
}

/* --- Navigation Bar --- */
.main-header {
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.navbar {
    width: 90%;
    max-width: 960px;
    /* More pronounced glass effect */
    background-color: rgba(255, 255, 255, 0.6); /* More transparent */
    backdrop-filter: blur(12px); /* Slightly more blur */
    border: 1px solid rgba(226, 232, 240, 0.8); /* Softer border */
    border-radius: 999px; /* Pill shape */
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
}

.logo svg {
    margin-right: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: #475569;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563EB;
}

.nav-cta {
    background-color: #2563EB;
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s;
}

.nav-cta:hover {
    background-color: #1D4ED8;
}
/* --- Footer Styles --- */
.main-footer {
    background: #f9fafb;
    padding: 32px 0 16px 0;
    border-top: 1px solid #e0e7ef;
    text-align: center;
}
.footer-links {
    margin: 16px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}
.footer-social a svg {
    vertical-align: middle;
    transition: transform 0.2s, filter 0.2s;
    filter: drop-shadow(0 2px 6px rgba(37,99,235,0.10));
}
.footer-social a:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(37,99,235,0.18));
}
.footer-copy {
    color: #64748b;
    font-size: 1rem;
    margin-top: 8px;
}
@media (max-width: 600px) {
    .footer-links {
        gap: 16px;
        font-size: 1rem;
    }
    .footer-brand {
        font-size: 1.1rem;
    }
    .main-footer {
        padding: 24px 0 16px 0;
    }
    .footer-social {
        gap: 12px;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    text-align: center;
    padding: 100px 20px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden; /* Important for background text */
}

.hero-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw; /* Responsive font size */
    font-weight: 800;
    color: rgba(230, 237, 248, 0.5); /* Faded light blue */
    z-index: -1;
    user-select: none;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0F172A;
}

.hero-content p {
    font-size: 18px;
    color: #475569;
    max-width: 550px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #fff 80%, #f3f7ff 100%);
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #e0e7ef;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
}

.waitlist-form input {
    width: 320px;
    min-width: 0;
    padding: 16px 22px;
    border-radius: 18px;
    border: 1.5px solid #CBD5E1;
    font-size: 17px;
    font-family: 'Manrope', sans-serif;
    background: #f8faff;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 56px;
    box-sizing: border-box;
}

.waitlist-form input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18), 0 2px 8px rgba(37,99,235,0.10);
}

.waitlist-form button {
    padding: 0 36px;
    border: none;
    background: linear-gradient(90deg, #2563EB 80%, #60A5FA 100%);
    color: white;
    font-size: 17px;
    font-weight: 700;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.waitlist-form button:hover {
    background: linear-gradient(90deg, #1D4ED8 80%, #60A5FA 100%);
    box-shadow: 0 4px 16px rgba(37,99,235,0.14);
}

@media (max-width: 768px) {
    .waitlist-form {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .waitlist-form input {
        width: 100%;
        font-size: 1rem;
        padding: 16px 18px;
        height: 52px;
        border-radius: 16px;
    }
    .waitlist-form button {
        width: 100%;
        font-size: 1.1rem;
        padding: 0;
        height: 52px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hide hero when mobile menu is open */
.mobile-menu.is-open ~ .hero,
.mobile-menu.is-open ~ .main-header,
.mobile-menu.is-open ~ .hero-content {
    opacity: 0;
    pointer-events: none;
}

/* ========== PRODUCTS SECTION (Light Mode) ========== */

.products-section-light {
    background-color: #F9FAFB; /* Light gray background */
    color: #111827; /* Dark text */
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

/* Adds a very subtle blue glow for the light theme */
.products-section-light::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(60, 130, 255, 0.08) 0%, rgba(60, 130, 255, 0) 50%);
    z-index: 0;
    pointer-events: none;
}

.products-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header p {
    color: #2563EB; /* Blue accent color */
    font-weight: 700;
    margin: 0;
}

.products-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 8px;
    color: #111827; /* Dark text */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* General Product Card Styling for Light Mode */
.product-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent WHITE background */
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(229, 231, 235, 0.8); /* Subtle border for definition */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 24px;
    margin: 0;
    color: #111827;
}

.card-header svg {
    width: 24px;
    height: 24px;
    color: #6B7280; /* Gray icon color */
    transition: color 0.3s;
}

.product-card:hover .card-header svg {
    color: #111827;
}

.card-description {
    color: #374151; /* Darker gray for description */
    margin-top: 16px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    border-radius: 8px;
    padding: 4px 8px;
}

.features-list li:hover {
    color: #2563EB;
    background: rgba(37,99,235,0.08);
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

/* Custom checkmark icon for the list */
.features-list li::before {
    content: '✔';
    color: #2563EB;
    font-size: 14px;
}

/* Pricing display in product cards */
.product-card .card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 12px;
    background: rgba(37,99,235,0.07);
    border-radius: 8px;
    padding: 6px 14px;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Grid Layout Specifics */
.large-card {
    grid-row: span 2;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Pricing Section Styles --- */
.pricing-section {
    background: linear-gradient(180deg, #f5f8ff 0%, #eaf0ff 100%);
    padding: 80px 0 100px 0;
    display: flex;
    justify-content: center;
}
.pricing-section .products-header {
    margin-bottom: 48px;
}
.pricing-section .products-header p {
    color: #2563EB;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.pricing-section .products-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1E293B;
    margin: 0;
}
.pricing-section .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.pricing-card {
    background: rgba(255,255,255,0.55); /* Glassmorphism: semi-transparent white */
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18), 0 2px 8px rgba(37,99,235,0.10); /* Stronger drop shadow */
    padding: 36px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid rgba(226,232,240,0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(120deg, rgba(96,165,250,0.08) 0%, rgba(37,99,235,0.08) 100%);
    pointer-events: none;
    z-index: 0;
}
.pricing-card > * {
    position: relative;
    z-index: 1;
}
.pricing-card:hover {
    box-shadow: 0 16px 48px rgba(37,99,235,0.18);
    transform: translateY(-4px) scale(1.02);
}
.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563EB;
    margin: 0 0 12px 0;
}
.pricing-card .card-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 18px;
    background: rgba(37,99,235,0.07);
    border-radius: 8px;
    padding: 8px 18px;
    display: inline-block;
    letter-spacing: 0.5px;
}
.pricing-card .card-price span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #475569;
    margin-left: 2px;
}
.pricing-card .features-list {
    margin-bottom: 24px;
}
.pricing-card .cta-button {
    margin-top: auto;
    background: linear-gradient(90deg, #2563EB 80%, #60A5FA 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 32px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    transition: background 0.2s;
    display: inline-block;
}
.pricing-card .cta-button:hover {
    background: linear-gradient(90deg, #1D4ED8 80%, #60A5FA 100%);
}
@media (max-width: 900px) {
    .pricing-section .products-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        position: sticky;
        top: 16px;
        z-index: 10;
        box-shadow: 0 16px 48px rgba(37,99,235,0.22), 0 2px 8px rgba(37,99,235,0.12); /* Even stronger shadow on mobile */
        transition: box-shadow 0.2s, transform 0.2s;
    }
    .pricing-card:active, .pricing-card:focus, .pricing-card:hover {
        box-shadow: 0 24px 64px rgba(37,99,235,0.28), 0 4px 16px rgba(37,99,235,0.16);
        transform: scale(1.03);
    }
}

/* --- Impact Metrics Section Styles --- */
.impact-metrics-section {
    width: 100%;
    padding: 60px 0 40px 0;
    background: none;
    text-align: center;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.impact-metrics-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.impact-metrics-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 18px;
}
.impact-metrics-header p {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.impact-metrics-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    margin-top: 32px;
    flex-wrap: nowrap;
    background: none;
    box-shadow: none;
}
.impact-metric {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 220px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 24px;
    position: relative;
    overflow: visible;
    transition: none;
}
.impact-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.impact-label {
    font-size: 1.15rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.3;
}
@media (max-width: 900px) {
    .impact-metrics-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .impact-metric {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }
    .impact-metrics-header h2 {
        font-size: 2rem;
    }
    .impact-value {
        font-size: 2.2rem;
    }
    .impact-label {
        font-size: 1rem;
    }
}

/* --- CTA Section Styles --- */
.cta-section {
    width: 100%;
    padding: 64px 0 72px 0;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.cta-section p {
    color: #e0e7ef;
    font-size: 1.3rem;
    margin-bottom: 32px;
    max-width: 600px;
}
.cta-section .cta-button {
    background: #fff;
    color: #2563EB;
    font-weight: 700;
    border-radius: 999px;
    padding: 18px 48px;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,99,235,0.12);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.cta-section .cta-button:hover {
    background: #2563EB;
    color: #fff;
}
@media (max-width: 900px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1.1rem;
    }
    .cta-section .cta-button {
        font-size: 1.1rem;
        padding: 14px 32px;
    }
}