:root {
    --bg-dark: #0f172a;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-primary: #38bdf8;
    --accent-secondary: #818cf8;
    --accent-tertiary: #c084fc;
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3, h4, h5, h6, .logo-text, .badge {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Background & Aurora Effect --- */
.aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(56,189,248,0.5) 0%, rgba(56,189,248,0) 70%);
    animation-delay: 0s;
}

.blob-2 {
    top: 40%;
    right: -20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(129,140,248,0.5) 0%, rgba(129,140,248,0) 70%);
    animation-delay: -5s;
}

.blob-3 {
    bottom: -20%;
    left: 20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(192,132,252,0.4) 0%, rgba(192,132,252,0) 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    color: var(--accent-primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary-small) {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--text-primary);
}

/* --- Buttons --- */
.btn-primary, .btn-primary-small {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(56, 189, 248, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    padding: 0 5%;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(192, 132, 252, 0.15);
    color: var(--accent-tertiary);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* --- Hero Visual (Mockup) --- */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.app-mockup {
    width: 320px;
    padding: 1.5rem;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.app-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.mockup-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    gap: 1rem;
    border: 1px solid transparent;
}

.mockup-item.missing {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.mockup-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.mockup-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mockup-text strong {
    font-size: 0.95rem;
}

.mockup-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.mockup-btn {
    background: var(--accent-primary);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.mockup-btn:hover {
    background: #0ea5e9;
}

/* --- Features Section --- */
.features {
    padding: 6rem 5%;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

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

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* --- Responsive Design --- */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .app-mockup {
        transform: none;
        margin-top: 2rem;
    }
    .nav-links {
        display: none; /* In a real app, add a hamburger menu */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
/* --- Contact / Waitlist Section --- */
.contact {
    padding: 2rem 5% 6rem;
    display: flex;
    justify-content: center;
}

.contact-card {
    max-width: 600px;
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-card .section-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-primary);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--text-secondary);
}

.waitlist-form input[type="email"]:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.form-success {
    margin-top: 1rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    animation: fadeUp 0.5s ease forwards;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #34d399;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    margin-bottom: 0;
    font-size: 1rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- B2B & Showcase Custom Styles --- */
.hero-image-wrapper {
    position: relative;
    width: 320px;
    margin: 0 auto;
}

.app-screenshot {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 8px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.floating-avatar {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: float 6s infinite alternate ease-in-out;
}

.float-left {
    top: 20%;
    left: -60px;
    animation-delay: -2s;
}

.float-right {
    bottom: 20%;
    right: -60px;
    animation-delay: -4s;
}

.partners {
    padding: 6rem 5%;
}

.partners-card {
    padding: 4rem;
    text-align: center;
}

.partners-header {
    margin-bottom: 3rem;
}

.partners-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partners-header p {
    font-size: 1.2rem;
    color: var(--accent-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-feature h4 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.pf-icon {
    font-size: 3rem;
}

.partners-cta p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.showcase {
    padding: 2rem 5% 6rem;
}

.showcase-card {
    padding: 4rem 2rem;
    text-align: center;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.avatars-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.avatar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar-item img {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.avatar-item img:hover {
    transform: scale(1.1);
}

.avatar-item span {
    font-weight: 600;
    color: var(--accent-primary);
}

.highlight-link {
    color: var(--accent-tertiary) !important;
    font-weight: 600;
}
