/* ==================================================
   CSS Variables & Typography
================================================== */
:root {
    --primary-green: #B7E100;
    --primary-green-dim: rgba(183, 225, 0, 0.2);
    --deep-black: #111111;
    --dark-surface: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --soft-grey: #F4F4F4;
    --text-muted: #888888;
    --white: #FFFFFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--deep-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.1;
}

.headline {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-muted);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

/* ==================================================
   Layout & Container
================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-narrow {
    max-width: 1000px;
}

section {
    padding: 8rem 0;
}

section.fullscreen-section {
    height: 100vh;
    padding: 0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.dark-section,
.dark-mode {
    background-color: var(--deep-black);
    color: var(--white);
}

.light-section {
    background-color: var(--white);
    color: var(--deep-black);
}

/* ==================================================
   Buttons
================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--deep-black);
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(183, 225, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--deep-black);
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-store {
    background-color: var(--dark-surface);
    color: var(--white);
    border: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    align-items: flex-start;
}

.btn-store span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-store strong {
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.btn-store:hover {
    background-color: var(--deep-black);
    border-color: var(--primary-green);
}

/* ==================================================
   Navigation
================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.brand .accent {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    left: 0;
    transition: 0.3s;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 18px;
}

/* ==================================================
   Hero Section
================================================== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg,
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img,
.hero-bg video,
.cta-bg img {
    width: 100%;
    height: 120%;
    /* For parallax */
    object-fit: cover;
    transform: translateY(0);
}

.parallax-video {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.7) 0%, rgba(17, 17, 17, 0.3) 50%, rgba(17, 17, 17, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 5rem;
}

.hero-text {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==================================================
   Animations
================================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
    transition-delay: var(--delay, 0s);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: var(--transition-smooth);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ==================================================
   Sections
================================================== */
/* Impact Section */
.stats-grid {
    display: grid;
	grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Glass Section / Services */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green-dim);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem 3rem;
}

.feature-item {
    border-left: 2px solid var(--primary-green);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Split Section */
.split-section {
    display: flex;
}

.half-width {
    flex: 1;
    padding: 8rem 5%;
}

.split-image {
    padding: 0;
    position: relative;
    min-height: 600px;
}

.split-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.check-list {
    list-style: none;
    margin-bottom: 3rem;
}

.check-list li {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
}

.check-list li::before {
    content: '✓';
    color: var(--primary-green);
    margin-right: 1rem;
    font-weight: bold;
}

.highlight-box {
    background-color: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-green);
}

.highlight-box p {
    font-size: 1.2rem;
    margin: 0;
}

.highlight-box strong {
    color: var(--primary-green);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.fleet-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

.fleet-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.fleet-info h3 {
    font-size: 2.5rem;
    margin: 0;
}

/* Story Section */
.story-layout {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.story-content {
    flex: 1;
}

.founder-name {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.3;
    margin: 3rem 0 0;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-green);
    font-style: italic;
    color: var(--deep-black);
}

.story-image {
    flex: 0 0 450px;
}

.portrait-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Logo Carousel */
.carousel-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
    padding: 4rem 0;
}

.logo-carousel {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo-item {
    margin: 0 3rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 60px;
    filter: grayscale(100%) brightness(200%);
    /* Make sure logos appear white-ish */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Cities */
.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    text-align: left;
}

.city-status {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.city-list {
    list-style: none;
}

.city-list li {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    white-space: nowrap; /* ADD THIS */
}


.future .city-list li {
    color: var(--text-muted);
}

.map-visual img {
    width: 100%;
    border-radius: 24px;
    height: 500px;
    object-fit: cover;
}

/* App Section */
.app-layout {
    display: flex;
    align-items: center;
    background: var(--dark-surface);
    border-radius: 40px;
    overflow: hidden;
    padding: 0 5%;
}

.app-content {
    flex: 1;
    padding: 6rem 0;
}

.app-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
}

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
}

.phone-img {
    max-height: 600px;
    margin-bottom: -50px;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 12rem 0;
    overflow: hidden;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-callout h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
}

.callout-numbers {
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--primary-green);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px 0 0 8px;
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-newsletter {
    border-radius: 0 8px 8px 0;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================================================
   Responsive
================================================== */
@media (max-width: 1024px) {
    .story-layout {
        flex-direction: column;
    }

    .split-section {
        flex-direction: column;
    }

    .half-width {
        padding: 4rem 5%;
    }

    .app-layout {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5% 0;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-mockup {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    /* In a real app we'd add mobile menu active classes */
    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}