/* BiteSight Inspired Design System */
:root {
    --bs-orange: #FF6B00;
    --bs-orange-light: #FF8B3D;
    --bs-bg: #FFF7F2;
    --bs-text: #1A1A1A;
    --bs-text-muted: #555555;
    --bs-white: #FFFFFF;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bs-bg);
    font-family: var(--font-main);
    color: var(--bs-text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Background Gradients */
.bs-background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #FFD2B1;
    top: -100px;
    right: -100px;
    animation: move-1 20s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #D1E9FF;
    bottom: 10%;
    left: -50px;
    animation: move-2 25s infinite alternate;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #FFC0CB;
    top: 40%;
    right: 15%;
    animation: move-1 15s infinite alternate-reverse;
}

@keyframes move-1 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-50px, 50px);
    }
}

@keyframes move-2 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, -30px);
    }
}

/* Typography */
.bs-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.bs-title span.accent {
    color: var(--bs-orange);
}

.bs-subtitle {
    font-size: 1.25rem;
    color: var(--bs-text-muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Buttons */
.bs-btn-primary {
    background-color: var(--bs-orange);
    color: var(--bs-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.bs-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--bs-orange-light);
    box-shadow: 0 15px 25px rgba(255, 107, 0, 0.3);
    color: var(--bs-white);
}

/* Floating Elements */
.bs-floating-emoji {
    position: absolute;
    font-size: 2.5rem;
    pointer-events: none;
    z-index: 10;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(0, -20px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Hero Section */
.bs-hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.bs-mockup-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.bs-mockup-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid #111;
}

/* Section Spacing */
.bs-section-py {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Glassmorphism Card */
.bs-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.bs-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Icons */
.bs-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--bs-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

/* Grid Layouts */
.bs-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 992px) {
    .bs-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Hero Content Alignment */
.bs-hero-text-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 991px) {
    .bs-section-py {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Footer Improvements */
.bs-footer .logo img {
    height: 50px;
    margin-bottom: 20px;
}

.bs-footer .social-icon {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.bs-footer .social-icon li a img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.bs-footer .social-icon li a:hover img {
    transform: scale(1.2);
}