/* style.css */

/* 1. Global Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Define your primary colors based on the UI */
    --primary-green: #07D6A0;
    --primary-dark: #0A3300; 
    --text-light: #F8F8F8; 
    --text-dark: #333; 
    --gradient-start: #DBFCF5;
    --gradient-end: #C7FCEF;
    --button-gradient-start: #07D6A0;
    --button-gradient-end: #07D6A0;
    --form-bg: #F8FFE5;
    --card-bg: #F8F8F8; 
    --border-color: #E0E0E0; 
}

body {
    font-family: 'Manrope', sans-serif; 
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff; 
    overflow-x: hidden; 
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
    position: relative; 
    z-index: 2; 
}



@font-face {
    font-family: 'Manrope';
    src: url('Manrope-Regular.woff2') format('woff2'),
         url('Manrope-Regular.woff') format('woff');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('Manrope-Medium.woff2') format('woff2'),
         url('Manrope-Medium.woff') format('woff');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('Manrope-SemiBold.woff2') format('woff2'),
         url('Manrope-SemiBold.woff') format('woff');
    font-weight: 600; /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('Manrope-Bold.woff2') format('woff2'),
         url('Manrope-Bold.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
}


.navbar {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0; 

    
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 

    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease, padding 0.3s ease, border 0.3s ease;
    z-index: 100; 
    border-radius: 16px; 
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
}

.navbar .container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.0em;
    margin-left: 30px; 
}

.navbar-brand img {
    height: 30px;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-grow: 1;
    justify-content: center; 
}


.nav-link {
    color: var(--text-dark); 
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, font-weight 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}


.nav-link.active {
    color: var(--text-dark); 
    font-weight: 600; 
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; 
    width: 100%;
    height: 2px;
    background-color: #07D6A0; 
    border-radius: 2px;
    transform: scaleX(1); 
    transform-origin: left center;
}


.nav-link:hover { 
    color: #07D6A0; 
}

.btn-primary-nav {
    background: linear-gradient(to right, #07D6A0, #07D6A0); 
    color: white;
    padding: 10px 20px; 
    border: none;
    border-radius: 100px;
    font-size: 0.9em;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    margin-right: 30px; 
}

.btn-primary-nav:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


.btn-secondary-nav {
    background: linear-gradient(to right, #F8FFE5, #F8FFE5); 
    color: #07D6A0;
    padding: 10px 20px; 
    border: none;
    border-radius: 100px;
    font-size: 0.9em;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    margin-right: 30px; 
}

.btn-secondary-nav:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.navbar.scrolled {
    padding: 10px 0; 
    border-radius: 16px; 
    border: 1px solid #BFBFBF; 
    box-shadow: 0 3px 13px 34px rgba(0, 0, 0, 0.16);
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
    position: relative; 
    z-index: 2; 
}


@font-face {
    font-family: 'Manrope';
    src: url('Manrope-Regular.woff2') format('woff2'),
         url('Manrope-Regular.woff') format('woff');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('Manrope-Medium.woff2') format('woff2'),
         url('Manrope-Medium.woff') format('woff');
    font-weight: 500; 
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('Manrope-SemiBold.woff2') format('woff2'),
         url('Manrope-SemiBold.woff') format('woff');
    font-weight: 600; 
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('Manrope-Bold.woff2') format('woff2'),
         url('Manrope-Bold.woff') format('woff');
    font-weight: 700; 
    font-style: normal;
}



.hero-section {
    position: relative; 
    padding: 80px 0 100px; 
    text-align: center;
    overflow: hidden; 
    min-height: 700px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg1.gif') no-repeat center center/cover; 
    background-attachment: fixed; 
    opacity: 0.8; 
    z-index: 1; 
}

.hero-section .container {
    position: relative; 
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.hero-section .logo {
    width: 60px; 
    height: auto;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 3.2em; 
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
    max-width: 800px; 
}

.hero-section .sub-headline {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400; 
}


.waitlist-form {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--form-bg); 
    border-radius: 100px; 
    padding: 8px 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
    width: fit-content; 
}

.waitlist-form .input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
}

.waitlist-form .mail-icon {
    width: 24px; 
    height: auto;
    filter: brightness(0) saturate(100%) invert(35%) sepia(87%) saturate(1450%) hue-rotate(152deg) brightness(97%) contrast(101%); /* Adjust filter to match icon color if needed, or replace with SVG */
}

.waitlist-form input[type="email"] {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 1em;
    color: var(--primary-dark);
    min-width: 250px; 
    outline: none; 
}

.waitlist-form input[type="email"]::placeholder {
    color: #999;
}

.btn-primary {
    background: linear-gradient(to right, var(--button-gradient-start), var(--button-gradient-end));
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 100px;
    font-size: 1em;
    font-weight: 400; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap; 
}

.btn-primary:hover {
    filter: brightness(1.1);
}


.beta-testers {
    display: flex;
    align-items: center;
    gap: 15px; 
    margin-bottom: 50px; 
}

.beta-testers .beta-avatars {
    width: 100px; 
    height: auto;
   
}

.beta-testers p {
    font-size: 0.95em;
    color: var(--text-dark);
    font-weight: 500;
}


.closed-beta-card {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 250px; 
    padding: 15px 20px; 
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: left;
    display: block;
    line-height: 1.5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease, padding 0.3s ease, height 0.3s ease; 
    overflow: hidden; 
}

.closed-beta-card h3 {
    font-size: 1.1em;
    color: #2ED1B0;
    margin-bottom: 10px; 
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.closed-beta-card p {
    font-size: 0.85em; 
    color: #555;
    line-height: 1.4;
    display: none; 
}


.closed-beta-card .green-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2ED1B0;
    border-radius: 50%;
}


.closed-beta-card.expanded {
    width: 350px; 
    padding: 25px 30px; 
    height: auto; 
}

.closed-beta-card.expanded p {
    display: block; 
}


.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: none; 
}

.close-icon.expanded {
    display: block; 
}


/* Toggle Button */
.beta-menu-toggle {
    position: fixed;
    top: 90px;
    left: 20px;
    z-index: 9999;
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.beta-menu-toggle:hover {
    filter: brightness(1.1);
}

/* Sidebar Overlay */
.beta-sidebar-overlay {
    position: fixed;
    top: 0;
    left: -260px; /* hidden by default */
    width: 240px;
    height: 100%;
    background-color: #f8f8f8;
    border-right: 1px solid var(--border-color);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 10000;
    transition: left 0.3s ease;
    padding: 20px;
}
.beta-sidebar-overlay.open {
    left: 0;
}

/* Close Button */
.beta-menu-close {
    background: none;
    border: none;
    font-size: 1.4em;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-dark);
}

/* Menu Links */
.beta-sidebar-overlay ul {
    list-style: none;
    padding: 50px 0 0 0;
    margin: 0;
}
.beta-sidebar-overlay li {
    margin-bottom: 15px;
}
.beta-sidebar-overlay a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.beta-sidebar-overlay a:hover,
.beta-sidebar-overlay a.active {
    background-color: var(--primary-green);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .beta-menu-toggle {
        top: 70px;
        left: 10px;
        padding: 8px 12px;
    }
    .beta-sidebar-overlay {
        width: 80%;
        max-width: 300px;
        left: -100%;
    }
}

.product-showcase {
    background-color: #fff; 
    padding: 80px 0; 
    text-align: center; 
}

.product-showcase h2 {
    font-size: 2.8em; 
    font-weight: 600; 
    color: #000;
    margin-bottom: 50px; 
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.product-showcase h2 span {
    color: #2ED1B0;
}

.phone-mockups {
    
    max-width: 1000px; 
    margin: 0 auto; 
}

.phone-mockups img {
    max-width: 100%; 
    height: auto; 
    display: block; 
}


.text-image-section {
    background-color: #f8f8f8; 
    padding: 100px 0; 
}

.text-image-section .content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap; 
    justify-content: center;
    flex-direction: row; 
}

.text-image-section .text-content {
    flex: 1;
    min-width: 320px;
    max-width: 550px;
    text-align: left;
}

.text-image-section .text-content p {
    font-size: 0.9em;
    color: #000;
    line-height: 1.6;
}

.text-image-section .text-content p .colored-word {
    color: #07D6A0;
    font-weight: bold;
}

.text-image-section .image-content {
    flex: 1;
    min-width: 320px;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; 
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.text-image-section .image-content .dynamic-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 4px solid #07D6A0;
    border-radius: 10px;
    box-sizing: border-box;
    transition: opacity 1s ease-in-out, border-color 0.3s ease;
    opacity: 1;
}

.faq-section {
    padding: 100px 0;
    background-color: #f8f8f8; 
}

.faq-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: #F8FFE5; 
    border: 4px solid #07D6A0; 
    border-radius: 20px;
    padding: 60px;
}

.faq-left-column {
    flex: 1;
    min-width: 250px; 
    max-width: 350px; 
    
}

.faq-left-column h2 {
    font-size: 2.5em;
    color: #000000; 
    margin-bottom: 15px;
    font-weight: 400;
}

.faq-left-column p {
    font-size: medium;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

.faq-accordion {
    flex: 2; 
    overflow: visible;
    min-width: 450px; 
    max-width: none; 
}

.accordion-item {
    margin-bottom: 15px; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
    padding-bottom: 15px; 
}

.accordion-item:last-child {
    border-bottom: none; 
    margin-bottom: 0;
    padding-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 1.1em; 
    color: #000;
    font-weight: 600;
    flex-grow: 1; 
}

.accordion-icon {
    width: 20px; 
    height: auto;
    transition: transform 0.3s ease;
}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-content p {
    font-size: 0.95em;
    color: #444;
    line-height: 1.6;
    padding-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
}


.accordion-item.open .accordion-content {
    max-height: 1200px; 
    padding-top: 10px; 
    padding-bottom: 15px;
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}


.accordion-item:not(.open) .accordion-icon {
    transform: rotate(0deg); 
}




.bottom-banner-section {
  background: linear-gradient(to bottom, #F8F8F8, #F0FFF0);
  padding: 80px 0 100px;
  text-align: center;
}

.bottom-banner-section .bottom-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bottom-banner-section .bottom-banner-logo {
    width: 60px; 
    height: auto;
    margin-bottom: 10px;
}

.bottom-banner-section h2 {
    font-size: 3em;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
    max-width: 600px;
}

.bottom-banner-section p {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
}



/*ANIMATIONS*/


.initial-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}


.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }



.slide-in-left.initial-hidden {
    opacity: 0;
    transform: translateX(-50px);
}
.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.initial-hidden {
    opacity: 0;
    transform: translateX(50px);
}
.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}



.pop-up.initial-hidden {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}
.pop-up.animated {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}



.pop-in-card.initial-hidden {
    opacity: 0;
    transform: scale(0.8);
}
.pop-in-card.animated {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* A "pop" effect */
}

/* Footer Styles */
/*footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0;
    font-family: 'Manrope', sans-serif;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

footer .container > div {
    flex: 1;
    min-width: 200px;
}

footer h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

footer p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #2ED1B0;
}

footer .newsletter-form {
    display: flex;
    gap: 10px;
    background-color: var(--form-bg);
    padding: 10px;
    border-radius: 8px;
}

footer .newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9em;
    color: var(--text-dark);
    background-color: #fff;
    outline: none;
}

footer .newsletter-form button {
    background: linear-gradient(to right, var(--button-gradient-start), var(--button-gradient-end));
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 400;
    cursor: pointer;
    transition: filter 0.3s ease;
}

footer .newsletter-form button:hover {
    filter: brightness(1.1);
}

footer .social-legal {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

footer .social-links {
    margin-bottom: 20px;
}

footer .social-links a {
    margin: 0 15px;
}

footer .social-links img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
} */


/* Footer Wave Animation */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Thin strip at top of footer */
    background: var(--primary-dark); /* #0A3300 */
    overflow: hidden;
    z-index: 0; /* Behind footer content */
}

.footer-wave span {
    content: "";
    position: absolute;
    width: 200px; /* Scaled down from 325vh */
    height: 200px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.footer-wave span:nth-child(1) {
    border-radius: 45%;
    background: var(--primary-green); /* #07D6A0 */
    animation: animate 5s linear infinite;
}

.footer-wave span:nth-child(2) {
    border-radius: 40%;
    background: rgba(10, 51, 0, 0.5); /* Semi-transparent --primary-dark */
    animation: animate 10s linear infinite;
}

.footer-wave span:nth-child(3) {
    border-radius: 42.5%;
    background: rgba(7, 214, 160, 0.5); /* Semi-transparent --primary-green */
    animation: animate 15s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

/* Footer Styling (ensure content is above waves) */
footer {
    position: relative;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 100px 0 60px; /* Adjusted padding to account for wave height */
    font-family: 'Manrope', sans-serif;
}

footer .container {
    position: relative;
    z-index: 1; /* Ensure content is above waves */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-wave {
        height: 80px; /* Slightly smaller for tablet */
    }

    .footer-wave span {
        width: 150px;
        height: 150px;
    }

    footer {
        padding: 80px 0 40px;
    }
}

@media (max-width: 480px) {
    .footer-wave {
        height: 60px; /* Compact for mobile */
    }

    .footer-wave span {
        width: 100px;
        height: 100px;
    }

    footer {
        padding: 60px 0 30px;
    }
}



/* Bento Grid Container */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(150px, auto));
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Bento Card Styling */
.bento-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card h2 {
    font-size: 1.3em;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.bento-card p {
    font-size: 0.85em;
    color: var(--text-dark);
    display: none;
}

.bento-card.active {
    grid-column: span 2;
    grid-row: span 2;
    border: 3px solid var(--primary-green);
    background: linear-gradient(132deg, #93f315,#00ff00, #07bbb8,#57ff04,#28bcad,#ffffff);
    background-size: 400% 400%;
    animation: BackgroundGradient 15s ease infinite;
    min-height: 300px;
    padding: 25px;
}

.bento-card.active p {
    color: var(--text-light);
    display: block;
}

.bento-card.active h2 {
    color: var(--text-light);
    font-size: 1.6em;
}

/* Gradient Animation */
@keyframes BackgroundGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CTA Button in Bento Card */
.bento-card .btn-secondary-nav {
    background: linear-gradient(to right, var(--button-gradient-start), var(--button-gradient-end));
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 100px;
    font-size: 0.85em;
    font-weight: 400;
    text-decoration: none;
    display: none;
    transition: filter 0.3s ease;
    margin-top: 10px;
}

.bento-card.active .btn-secondary-nav {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bento-card {
        min-height: 120px;
    }

    .bento-card h2 {
        font-size: 1.2em;
    }

    .bento-card.active {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 250px;
    }

    .bento-card.active h2 {
        font-size: 1.5em;
    }

    .bento-card p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bento-card {
        min-height: 100px;
    }

    .bento-card h2 {
        font-size: 1.1em;
    }

    .bento-card.active {
        min-height: 200px;
    }

    .bento-card.active h2 {
        font-size: 1.4em;
    }

    .bento-card p {
        font-size: 0.75em;
    }
}


@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    footer .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    footer .newsletter-form input[type="email"],
    footer .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    footer h3 {
        font-size: 1.3em;
    }

    footer p,
    footer a {
        font-size: 0.85em;
    }
}
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.8em;
    }
    .hero-section .sub-headline {
        font-size: 1.1em;
    }
    @media (max-width: 768px) {
    .closed-beta-card {
        width: 200px; 
        padding: 10px 15px;
    }

    .closed-beta-card.expanded {
        width: 90%; 
        max-width: 350px;
        right: 5%;
        bottom: 5%;
        padding: 20px;
    }

    .closed-beta-card h3 {
        font-size: 1em;
    }

    .closed-beta-card p {
        font-size: 0.8em;
    }
}


    .navbar-nav {
        gap: 20px; 
    }
}
@media (max-width: 768px) {
    .text-image-section {
        padding: 60px 0; 
    }

    .text-image-section .content-wrapper {
        flex-direction: column; 
        gap: 30px; 
    }

    .text-image-section .text-content,
    .text-image-section .image-content {
        min-width: unset;
        max-width: 100%; 
        text-align: center; 
    }

    .text-image-section .text-content p {
        font-size: 0.85em; 
    }

    .text-image-section .image-content {
        height: 250px; 
    }
}

@media (max-width: 768px) {
  .navbar-brand,
  .btn-primary-nav {
    display: none !important;
  }

  .navbar-nav {
    gap: 15px;
  }

  .nav-link {
    font-size: 0.85em;
  }
}
@media (max-width: 480px) {
    .text-image-section .text-content p {
        font-size: 0.8em; 
    }

    .text-image-section .image-content {
        height: 200px; 
    }
}

@media (max-width: 768px) {
    
    .hero-background {
        background: url('bg mobile.png') no-repeat center center/cover;
        background-attachment: scroll; 
    }

  
    .desktop-only {
        display: none !important;
    }

   
    .mobile-only {
        display: block !important;
    }

    .hero-section {
        padding: 60px 0 80px;
    }
    .hero-section h1 {
        font-size: 2.2em;
    }
    .hero-section .sub-headline {
        font-size: 1em;
    }
    .waitlist-form {
        flex-direction: column;
        padding: 15px;
        width: 90%;
        max-width: 400px;
        border-radius: 16px; 
    }
    .waitlist-form .input-group {
        padding-left: 0;
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .waitlist-form .mail-icon {
        display: none; 
    }
    .waitlist-form input[type="email"] {
        min-width: unset;
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 100px;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .btn-primary {
        width: 100%;
        padding: 12px 25px;
        border-radius: 100px;
    }
    .closed-beta-card {
        width: 200px; 
        padding: 10px 15px;
        position: fixed; 
        right: 16px;
        bottom: 16px;
    }
    .closed-beta-card.expanded {
        width: 90%; 
        max-width: 350px;
        right: 5%;
        bottom: 5%;
        padding: 20px;
    }
    .closed-beta-card h3 {
        font-size: 1em;
    }
    .closed-beta-card p {
        font-size: 0.8em;
    }


    
    .mobile-drawer {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        transition: right 0.4s ease-in-out;
        overflow-y: auto; 
    }

    .mobile-drawer.open {
        right: 0; 
    }

    .drawer-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .close-drawer {
        font-size: 1.8em;
        cursor: pointer;
        color: var(--text-dark);
    }

    .mobile-drawer .navbar-brand {
        margin-left: 0; 
    }

    .drawer-nav {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
        width: 100%;
        text-align: center;
    }

    .mobile-drawer .nav-item .nav-link {
        font-size: 1.5em;
        color: var(--primary-dark);
        font-weight: 600;
        padding: 10px 0;
        display: block; 
    }

    .mobile-drawer .btn-primary-nav {
        width: 80%; 
        max-width: 300px;
        padding: 15px 25px;
    }


    
    .mobile-phone-mockups-sticky {
        position: relative;
        height: 150vh; 
        margin-bottom: 50px; 
    }

    .sticky-phone-wrapper {
        position: sticky;
        top: 100px; 
        display: flex;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 200px); 
        overflow: hidden; 
    }

    .sticky-phone {
        position: absolute;
        max-width: 80%; 
        height: auto;
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .sticky-phone.active-phone {
        opacity: 1;
        transform: scale(1);
    }

 
    .phone-scroll-trigger {
        position: absolute;
        width: 100%;
        height: 50vh; 
        z-index: -1; 
    }
    #phone-trigger-1 { top: 0vh; } 
    #phone-trigger-2 { top: 50vh; } 
    #phone-trigger-3 { top: 100vh; } 


    .text-image-section .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .text-image-section .text-content,
    .text-image-section .image-content {
        min-width: unset;
        max-width: 90%;
        text-align: center;
    }
    .text-image-section .image-content {
        height: 300px;
    }

    .faq-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    .faq-left-column,
    .faq-accordion {
        min-width: unset;
        max-width: 100%;
    }
    .faq-left-column {
        text-align: center;
    }
}


@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0; 
    }

    .faq-container {
        flex-direction: column; 
        gap: 20px; 
        padding: 20px; 
        border-radius: 15px; 
        text-align: center
    }

    .faq-left-column,
    .faq-accordion {
        min-width: unset; 
        max-width: 100%; 
        text-align: center;
    }

    .faq-left-column h2 {
        font-size: 1.8em; 
        text-align: center; 
        color: #F8FFE5;
    }

    .faq-left-column p {
        font-size: 0.9em; 
        text-align: center; 
        color: #F8FFE5;
    }

    .accordion-header h3 {
        font-size: 0.95em; 
    }

    .accordion-content p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .faq-left-column h2 {
        font-size: 1.5em; 
    }

    .accordion-header h3 {
        font-size: 0.9em; 
    }

    .accordion-content p {
        font-size: 0.8em; 
    }
}


@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8em;
    }
    .hero-section .sub-headline {
        font-size: 0.9em;
    }
    .beta-testers {
        flex-direction: column;
        gap: 10px;
    }
    .mobile-drawer .nav-item .nav-link {
        font-size: 1.2em; 
    }
}


.desktop-only {
    display: block;
}
.mobile-only {
    display: none;
}




