@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    /* Color Palette from App UI */
    --primary: #C6FF00;
    --primary-hover: #b3e600;
    --primary-dark: #121212;
    --accent-green: #1B5E20;

    /* Neutral Palette */
    --bg-main: #fcfdfa;
    --bg-secondary: #f3f4f1;
    --white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border: #e1e4dc;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-full: 9999px;
    --radius-lg: 24px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#antigravity-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

/* Floating Blobs Background */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.1) 0%, rgba(198, 255, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite alternate;
}

.blob-1 {
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
    background: radial-gradient(circle, rgba(27, 94, 32, 0.05) 0%, rgba(27, 94, 32, 0) 70%);
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    word-wrap: break-word;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.mobile-only {
    display: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
    touch-action: manipulation;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Beta Ticker Tape */
.beta-ticker {
    background-color: #ffd600;
    color: #000;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    overflow: hidden;
    position: relative;
    z-index: 2000;
    white-space: nowrap;
    border-bottom: 2px solid #000;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.site-header {
    position: sticky;
    top: 0;
    background: var(--bg-main);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.site-header.nav-hidden {
    transform: translateY(-100%);
}

/* Beta Notices */
.beta-notice-banner {
    background-color: #fff8e1;
    border-left: 5px solid #ffca28;
    color: #8a6d3b;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(255, 202, 40, 0.1);
}

.beta-notice-banner svg {
    color: #ffca28;
    flex-shrink: 0;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    background: #fff8e1;
    color: #8a6d3b;
    border: 1px solid #ffca28;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
    vertical-align: middle;
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    justify-self: start;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    color: var(--text-muted);
    justify-self: center;
}

.nav-links a {
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-self: end;
}

.nav-auth .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
}

.btn-lime {
    background-color: var(--primary);
    color: var(--primary-dark);
}

.btn-lime:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-content span.highlight {
    background-color: var(--primary);
    padding: 0 0.5rem;
    border-radius: 8px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    /* Forcing app-like aspect ratio if desirable, or let it be auto */
}

.video-slider {
    position: relative;
    width: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.video-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.video-slide.active {
    z-index: 1;
}

.hero-image-wrapper img,
.hero-image-wrapper video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Floating Cards (Glassmorphism) */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 2;
}

.card-stats {
    top: 10%;
    right: -20px;
    width: 180px;
}

.card-low-stock {
    bottom: 15%;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Trusted By Section */
.trusted {
    padding: 3rem 0;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted p {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-grid {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    max-width: 100vw;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    align-items: center;
    opacity: 0.8;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

/* Features Bento Grid */
.features {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
    z-index: -2;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card:hover,
.bento-card:active {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bento-card.dark {
    background-color: var(--accent-green);
    color: var(--white);
}

.bento-card.lime {
    background-color: var(--primary);
    color: var(--primary-dark);
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-card .stat {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: auto;
}

/* Mini Cards Refinement */
.card-mini {
    padding: 1.25rem !important;
    border: 1px solid var(--border) !important;
    background: var(--white) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.card-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-mini p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-mini-lime {
    border-top: 4px solid var(--primary) !important;
}

.card-mini-lime h4 {
    color: var(--accent-green);
}

.card-mini-green {
    border-top: 4px solid var(--accent-green) !important;
}

.card-mini-green h4 {
    color: var(--accent-green);
}

.card-mini-dark {
    border-top: 4px solid var(--text-main) !important;
}

.card-mini-dark h4 {
    color: var(--text-main);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: transparent;
    border-radius: 40px;
    margin: 2rem;
    position: relative;
    z-index: 1;
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #eef2eb 100%);
    border-radius: 40px;
    z-index: -2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition), scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    scale: 1;
    position: relative;
}

.pricing-card:hover {
    scale: 1.05;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 20px rgba(198, 255, 0, 0.15);
    z-index: 10;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(198, 255, 0, 0.2);
    scale: 1.05;
}

.pricing-card.featured:hover {
    scale: 1.1;
}


.pricing-card .price {
    font-size: 4rem;
    font-weight: 700;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .price span {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.5rem;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pricing-features li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: transparent;
    color: var(--text-main);
    border-radius: 40px;
    margin: 2rem;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f9f5 0%, var(--bg-secondary) 100%);
    border-radius: 40px;
    z-index: -2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 1240px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-item {
    background: var(--white);
    padding: 0.8rem 0.6rem;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: transparent;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.contact-info h4 {
    font-size: 0.75rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    opacity: 0.7;
}

.contact-info p {
    font-size: 0.8rem;
    color: var(--text-main);
    font-weight: 600;
    overflow-wrap: anywhere;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.social-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.neon-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.neon-link {
    color: #00ff88;
    /* A slightly more neon green for the effect */
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.neon-link:hover {
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.8), 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Footer (Revised) */

/* Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.fade-up {
    transform: translateY(40px);
}

.fade-down {
    transform: translateY(-40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.zoom-in {
    transform: scale(0.9);
}

.zoom-out {
    transform: scale(1.1);
}

/* Staggered Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Animation Delay Utilities */
.anim-delay-1 {
    animation-delay: 0.5s;
}

.anim-delay-2 {
    animation-delay: 1s;
}

.anim-delay-3 {
    animation-delay: 1.5s;
}

/* Mobile Touch Feedback */
@media (hover: none) {
    .btn:active {
        transform: scale(0.96);
        opacity: 0.9;
    }

    .pricing-card:active,
    .contact-item:active,
    .social-icon:active {
        transform: translateY(-4px) scale(0.98);
        box-shadow: var(--shadow-md);
    }
}

/* Unified Float & Breath Animation */
.float-anim {
    animation: float-breath 6s ease-in-out infinite;
}

@keyframes float-breath {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.03);
    }
}

@media (max-width: 768px) {
    .reveal {
        transition-duration: 0.6s;
        /* Faster animations on mobile */
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .bento-card {
        padding: 1.5rem;
    }
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    z-index: -2;
}

.benefits {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    z-index: -2;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
    align-items: center;
}

.footer-links a {
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    position: relative;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-out, height 0.5s ease-out;
    z-index: -1;
}

.footer-social-link:hover {
    color: var(--primary-dark);
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(198, 255, 0, 0.4);
}

.footer-social-link:hover::before {
    width: 300%;
    height: 300%;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .floating-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .card-low-stock {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-logo+p {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    nav {
        display: flex !important;
        justify-content: space-between !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: radial-gradient(circle at top right, rgba(198, 255, 0, 0.15), transparent),
            linear-gradient(135deg, rgba(252, 253, 250, 0.95) 0%, rgba(243, 244, 241, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        gap: 2.5rem;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.4s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(1.05);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .nav-links .mobile-only {
        display: block;
        width: 80%;
        max-width: 300px;
        text-align: center;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-main);
        letter-spacing: -0.02em;
        position: relative;
    }

    .nav-links a::after {
        display: none;
        /* Hide desktop underline effect */
    }

    .nav-links .btn-primary {
        background-color: var(--primary-dark) !important;
        color: var(--white) !important;
        font-size: 1.1rem !important;
        padding: 1rem 2.5rem !important;
        margin-top: 1.5rem;
        box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
        width: 100% !important;
        border-radius: 12px;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-links li:active {
        transform: scale(0.95);
        opacity: 0.7;
        transition: transform 0.1s ease;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        background: var(--primary) !important;
        border: none;
        border-radius: 14px;
        z-index: 2000;
        color: var(--primary-dark) !important;
        flex-shrink: 0;
        cursor: pointer;
        box-shadow: 0 8px 16px -4px rgba(198, 255, 0, 0.3);
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.85);
        box-shadow: 0 4px 8px -2px rgba(198, 255, 0, 0.4);
    }

    .mobile-menu-toggle svg {
        transition: var(--transition);
        width: 26px;
        height: 26px;
    }

    .mobile-menu-toggle.active {
        background: var(--primary-dark) !important;
        color: var(--primary) !important;
        transform: rotate(180deg);
    }

    .mobile-menu-toggle.active .line-1 {
        opacity: 0;
    }

    .mobile-menu-toggle.active .line-2 {
        transform: rotate(45deg) translate(5px, 5px);
        transform-origin: center;
    }

    .mobile-menu-toggle.active .line-3 {
        transform: rotate(-45deg) translate(5px, -5px);
        transform-origin: center;
    }

    .nav-auth .btn,
    .nav-auth .btn-primary {
        display: none !important;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-card.wide,
    .bento-card.tall {
        grid-column: span 1;
        grid-row: auto;
    }

    .bento-card .stat {
        font-size: 2.5rem;
    }

    .features {
        padding: 3rem 0;
    }

    .benefits {
        padding: 3rem 0;
    }

    .pricing {
        padding: 3rem 0;
        margin: 1rem 0;
        border-radius: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 3rem 0;
        margin: 1rem 0;
        border-radius: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Additional mobile adjustments */
    .logo {
        font-size: 1.1rem;
        gap: 0.25rem;
    }

    .logo-icon {
        width: 22px;
        height: 22px;
    }

    /* Let's show the download button inside the mobile menu instead */
    .nav-links .btn {
        display: inline-block;
        margin-top: 1rem;
    }

    .pricing-card {
        padding: 2rem 1rem;
    }

    .pricing-card .price {
        font-size: 2.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .footer-socials {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social-link {
        width: 100%;
    }
}

/* Download Page Specific Styles */
.download-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.steps-section {
    padding: 4rem 0 8rem;
    max-width: 700px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    z-index: 0;
    opacity: 0.3;
}

.step-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 1;
    width: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(198, 255, 0, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.step-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.download-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.download-btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 40px rgba(198, 255, 0, 0.2);
}

.download-btn-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(198, 255, 0, 0.3);
}

@media (max-width: 768px) {
    .download-hero {
        padding: 4rem 1rem 2rem;
    }

    .steps-section {
        padding: 2rem 0 4rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }
}

/* Beta Notice Styles */
.beta-notice {
    background: #fff9c4;
    /* Brighter yellow */
    border: 2px solid #fbc02d;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(251, 192, 45, 0.2);
}

.beta-notice-icon {
    color: #f57f17;
    flex-shrink: 0;
}

.beta-notice p {
    font-size: 0.95rem;
    color: #5f4a00;
    margin: 0;
    line-height: 1.5;
}

.beta-notice strong {
    color: #f57f17;
}