:root {
    --bg-color: #030513;
    /* Deep Midnight */
    --surface-dark: #0a0d26;
    --text-primary: #ffffff;
    --text-secondary: #aab2cd;

    /* Nano Banana Palette */
    --accent-banana: #F4E04D;
    /* Vibrant Yellow */
    --accent-cyan: #00DBDE;
    /* Electric Cyan */
    --accent-pink: #FC00FF;
    /* Hot Pink */
    --accent-purple: #8A2BE2;
    /* Blue Violet */

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --nav-height: 80px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 120px 0;
}

.center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-banana), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--glass-highlight);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    border-radius: 30px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 1px solid var(--accent-banana);
    background: linear-gradient(145deg, rgba(244, 224, 77, 0.1), rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #ddd;
}

.pricing-features li::before {
    content: '•';
    color: var(--accent-banana);
    margin-right: 10px;
}

/* Fix Images */
.visual-card {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Removed padding to let image fill */
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Changed to cover to fill container */
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, var(--accent-banana));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-secondary);
    margin-left: 40px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-banana);
}

.btn-primary {
    background: var(--accent-banana);
    color: #000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(244, 224, 77, 0.4);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    /* Reduced width to focus content */
    text-align: center;
    /* Centered hero */
    margin: 0 auto;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(244, 224, 77, 0.1);
    color: var(--accent-banana);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(244, 224, 77, 0.2);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    margin-bottom: 60px;
}

.btn-secondary {
    background: var(--accent-purple);
    border: 1px solid var(--accent-purple);
    padding: 11px 29px;
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    margin-left: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-secondary:hover {
    background: #7a15d6;
    border-color: #7a15d6;
    transform: scale(1.05);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Partners Ticker */
.partners-ticker {
    background: var(--surface-dark);
    padding: 30px 0;
    /* Increased padding */
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    z-index: 5;
    /* Ensure it stays above/below correctly */
}

.ticker-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 40s linear infinite;
    /* Slowed down slightly */
    white-space: nowrap;
    /* Prevent wrapping */
}

.ticker-track span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    /* Muted aesthetic */
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* Features Deep Dive */
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1;
}

.section-header {
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ddd;
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-banana);
    margin-right: 15px;
    font-weight: bold;
}

.visual-card {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}

/* How It Works */
.bg-darker {
    background: #020309;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-icon {
    position: absolute;
    top: -20px;
    background: var(--accent-banana);
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(244, 224, 77, 0.5);
}

.step-img {
    height: 120px;
    margin: 30px 0;
    object-fit: contain;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    border-radius: 20px;
    padding: 40px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #eee;
}

.user-profile {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--accent-banana);
}


/* Scroll Animations */
.fade-up,
.fade-right,
.fade-left {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-up {
    transform: translateY(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.fade-left {
    transform: translateX(40px);
}

.visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-cta {
    text-align: center;
    padding: 60px;
    border-radius: 30px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(244, 224, 77, 0.1), rgba(0, 219, 222, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-buttons {
    margin-top: 30px;
}

.store-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 10px;
    transition: transform 0.2s;
    display: inline-block;
    text-decoration: none;
}

.store-btn:hover {
    transform: scale(1.05);
    color: black;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: white;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--accent-banana);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pricing-card.featured {
        transform: scale(1);
        /* Reset scale on mobile */
    }

    .feature-list li {
        justify-content: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-links {
        display: none;
        /* simple hidden for mobile MVP */
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.showcase-item {
    padding: 10px;
    /* Minimal padding for image focus */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
    border-radius: 24px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Form Styles for Modal */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label span {
    color: #ff6b6b;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--accent-cyan);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-banana), var(--accent-cyan));
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 224, 77, 0.3);
}

/* Success Message */
.notify-success-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.notify-success-message .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.notify-success-message h2 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.notify-success-message p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* Store Button as Link */
a.store-btn {
    display: inline-block;
    text-decoration: none;
}