@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --primary-color: #9333EA;
    /* Purple */
    --accent-color: #22C55E;
    /* Green */
    --gradient-bg: linear-gradient(135deg, #f3f4f6 0%, #e9d5ff 100%);
    --card-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--primary-color) 0%, #6366f1 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.top-banner p {
    margin: 0;
}

.top-banner a {
    color: #fde047;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.top-banner a:hover {
    text-decoration: underline;
}

/* Header/Nav */
header {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 40px 0 20px 0;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-pill {
    background: var(--accent-color);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.nav-pill:hover {
    opacity: 0.8;
}

.nav-pill.waitlist {
    background: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #4B0082;
    /* Deep Indigo */
}

.logo img {
    height: 50px;
    /* Slightly larger for the new icon */
    margin-right: 12px;
    border-radius: 12px;
    /* Soften corners */
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    position: relative;
    overflow: visible;
    /* Changed to visible to let blur bleed */
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, rgba(34, 197, 94, 0.1) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    flex: 1;
    min-width: 400px;
    padding: 0 20px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.phone-mockup {
    max-width: 300px;
    /* Slightly smaller base size */
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 8px solid #1f1f1f;
    overflow: hidden;
    position: relative;
    background: #000;
    transition: transform 0.3s ease;
}

.phone-mockup img {
    width: 100%;
    display: block;
    height: auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.highlight {
    color: var(--primary-color);
}

.highlight-green {
    color: var(--accent-color);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #4b5563;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

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

.cta-group p {
    margin: 0;
}

.cta-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
}

.cta-promo {
    font-size: 1rem;
    margin-top: 5px;
}

.disclaimer {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    /* Match phone mockup curve */
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
}

.pulsate-bold {
    font-weight: 900;
    color: var(--primary-color);
    animation: pulsate 2s infinite;
    display: inline-block;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
}

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

.roadmap-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(75, 0, 130, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ede9fe;
    position: relative;
}

.roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(75, 0, 130, 0.12);
}

.roadmap-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.roadmap-card h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 700;
}

.roadmap-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.roadmap-status {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #4B0082;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.feature-card img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-card p {
    color: #6b7280;
    font-size: 1rem;
}

/* Footer Enhancements */
footer {
    padding: 60px 0 40px 0;
    background: #fff;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 30px;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 15px 20px;
        margin-top: 10px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        justify-content: center;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .hero {
        flex-direction: column-reverse;
        padding-top: 30px;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        padding: 0 10px;
        min-width: unset;
    }

    .hero-image {
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup {
        max-width: 55%;
        min-width: 200px;
        margin: 0 auto;
    }

    .cta-group {
        width: 100%;
        align-items: center;
        padding: 0 20px;
    }

    .cta-button {
        width: auto;
        text-align: center;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
        display: inline-block;
        margin-top: 10px;
    }
}