/* Eversight AI - Main Stylesheet */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-width: 1200px;
    background: #1a1a1a;
    /* Change this color */
}

/* Header - ALWAYS WHITE */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white !important;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Header Logo - BIG with transparent background */
.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    padding: 5px;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-contact {
    color: #2c5282;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-contact:hover {
    color: #1a365d;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a202c 50%, #2d3748 100%);
    color: white;
    padding: 12rem 4rem 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 173, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.coming-soon-badge {
    display: inline-block;
    color: #f6ad55;
    padding: 0.8rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #cbd5e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Solutions Preview */
.solutions-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem auto;
    max-width: 800px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(246, 173, 85, 0.3);
}

/* Solution Icons - Custom Images */
.solution-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.1), rgba(237, 137, 54, 0.1));
    border: 2px solid rgba(246, 173, 85, 0.2);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon-img {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.2), rgba(237, 137, 54, 0.2));
    border-color: rgba(246, 173, 85, 0.4);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f6ad55;
}

.solution-desc {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 24px;
    margin: 5rem auto;
    max-width: 800px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: #f6ad55;
    background: rgba(255, 255, 255, 0.15);
}

.signup-btn {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: #2d3748;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 173, 85, 0.4);
}

.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 4rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 4rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

/* Footer Logo - Custom Image */
.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: brightness(1.1);
    position: relative;
    z-index: 10;
}

.footer-company {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 10;
}

.footer-tagline {
    color: #cbd5e0;
    margin-bottom: 4rem;
    /* Increased to push contact links further down */
    margin-top: 0.5rem;
    /* Add this line to reduce space above tagline */
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #f6ad55;
}

.footer-bottom {
    color: #718096;
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hide old CSS logo styles */
.logo-icon,
.footer-logo-icon {
    display: none;
}

/* Floating particles animation */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(246, 173, 85, 0.1);
    border-radius: 50%;
    animation: floatUp 15s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-delay: 8s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 7s;
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 4s;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.8s;
}

.fade-in:nth-child(5) {
    animation-delay: 1.0s;
}

/* Keyframe Animations */
@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(44, 82, 130, 0.3),
            0 0 8px rgba(246, 173, 85, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(44, 82, 130, 0.5),
            0 0 12px rgba(246, 173, 85, 0.6);
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    body {
        min-width: auto;
    }

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

    .solutions-preview {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 2rem;
    }

    .hero {
        padding: 6rem 2rem 6rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .email-signup {
        flex-direction: column;
        max-width: 300px;
    }

    .privacy-note {
        margin-top: 4rem;
    }

    .footer {
        padding: 3rem 2rem 2rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-section {
        padding: 3rem 2rem;
        margin: 3rem 1rem;
    }

    .solutions-preview {
        margin: 3rem auto;
    }

    .solution-card {
        padding: 2rem 1.5rem;
    }

    /* Fix footer logo on mobile */
    .footer-logo {
        margin-bottom: 1rem;
        padding: 1rem 0;
    }

    .footer-logo-img {
        height: 60px;
        margin-bottom: 2rem;
    }

    .footer-tagline {
        margin-bottom: 6rem;
        /* Push contact links even further down on mobile */
        margin-top: 0.5rem;
        /* Reduce space between company name and tagline */
    }
}