/* Synkro Marketing Site - Static Export Styles */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Public Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #161616;
    overflow-x: hidden;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.min-h-screen {
    min-height: 100vh;
    background: #161616;
    position: relative;
}

.text-accent {
    color: #C1E063;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes moveParticle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -200px) scale(1.2);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.8);
    }
}

@keyframes moveParticle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-150px, 100px) scale(0.9);
    }
    66% {
        transform: translate(80px, -150px) scale(1.1);
    }
}

@keyframes moveParticle3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(120px, 80px) scale(1.3);
    }
    66% {
        transform: translate(-100px, -120px) scale(0.7);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes flyDiagonal1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(200px, -150px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes flyDiagonal2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-180px, 100px) rotate(-180deg);
        opacity: 0.9;
    }
}

@keyframes flyCircular {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(120px, -80px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(150px, 50px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(50px, 100px) rotate(270deg);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes floatWave {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-100px) translateX(80px) rotate(15deg);
        opacity: 1;
    }
    66% {
        transform: translateY(50px) translateX(-60px) rotate(-10deg);
        opacity: 0.8;
    }
}

@keyframes zigzag {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(100px, -60px) scale(1.2);
        opacity: 0.9;
    }
    50% {
        transform: translate(-80px, -120px) scale(0.9);
        opacity: 1;
    }
    75% {
        transform: translate(120px, -80px) scale(1.1);
        opacity: 0.8;
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Background Layer */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.pointer-events-none {
    pointer-events: none;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #161616 0%, #1d1d1d 50%, #0f0f0f 100%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

/* Optimized Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orb-1 {
    top: 15%;
    left: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(193, 224, 99, 0.2) 0%, rgba(193, 224, 99, 0.1) 50%, transparent 100%);
    filter: blur(64px);
    animation: moveParticle1 25s ease-in-out infinite;
}

.orb-2 {
    top: 45%;
    right: 8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 198, 157, 0.18) 0%, rgba(167, 198, 157, 0.09) 50%, transparent 100%);
    filter: blur(64px);
    animation: moveParticle2 30s ease-in-out infinite;
}

.orb-3 {
    top: 75%;
    left: 25%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(117, 134, 115, 0.16) 0%, rgba(117, 134, 115, 0.08) 50%, transparent 100%);
    filter: blur(64px);
    animation: moveParticle3 28s ease-in-out infinite;
}

/* Section Orbs */
.section-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orb-problem-1 {
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(117, 134, 115, 0.1);
    filter: blur(64px);
    animation: pulse 8s ease-in-out infinite;
}

.orb-problem-2 {
    bottom: 15%;
    left: 15%;
    width: 250px;
    height: 250px;
    background: rgba(193, 224, 99, 0.08);
    filter: blur(64px);
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-solution-1 {
    top: 10%;
    right: 8%;
    width: 350px;
    height: 350px;
    background: rgba(167, 198, 157, 0.08);
    filter: blur(96px);
    animation: floatSlow 8s ease-in-out infinite;
}

.orb-solution-2 {
    bottom: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(193, 224, 99, 0.1);
    filter: blur(96px);
    animation: pulse 8s ease-in-out infinite;
}

.orb-ai-1 {
    top: 15%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(193, 224, 99, 0.15);
    filter: blur(96px);
    animation: float 6s ease-in-out infinite;
}

.orb-ai-2 {
    bottom: 20%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: rgba(167, 198, 157, 0.12);
    filter: blur(96px);
    animation: floatSlow 8s ease-in-out infinite;
}

.orb-contact-1 {
    top: 15%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: rgba(193, 224, 99, 0.12);
    filter: blur(96px);
    animation: pulse 8s ease-in-out infinite;
}

.orb-contact-2 {
    bottom: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: rgba(167, 198, 157, 0.1);
    filter: blur(96px);
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Header */
.header {
    padding: 1rem 1.5rem;
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(117, 134, 115, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    padding: 0;
    max-width: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 14px;
    width: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 14px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #E0E0E0;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #C1E063;
}

.btn-primary {
    padding: 0.625rem 1.5rem;
    background: #C1E063;
    color: #161616;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #A7C69D;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(193, 224, 99, 0.3);
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    color: #FFFFFF;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #E0E0E0;
    font-size: 15px;
    font-weight: 500;
    padding: 0.75rem 0;
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #C1E063;
}

/* Hero Section */
.hero-section {
    padding: 6rem 1rem 4rem;
    position: relative;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    pointer-events: none;
}

.icon-wrapper {
    background: rgba(193, 224, 99, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation: flyDiagonal1 22s ease-in-out infinite;
}

.icon-2 {
    top: 25%;
    right: 12%;
    animation: flyDiagonal2 26s ease-in-out infinite;
}

.icon-3 {
    top: 55%;
    left: 15%;
    animation: floatWave 18s ease-in-out infinite;
}

.icon-4 {
    top: 60%;
    right: 10%;
    animation: zigzag 24s ease-in-out infinite;
}

.icon-5 {
    bottom: 20%;
    left: 20%;
    animation: flyCircular 20s ease-in-out infinite;
}

.icon-6 {
    bottom: 25%;
    right: 20%;
    animation: floatWave 19s ease-in-out infinite 1s;
}

.icon-7 {
    top: 40%;
    left: 10%;
    animation: zigzag 21s ease-in-out infinite 2s;
}

.icon-8 {
    top: 45%;
    right: 15%;
    animation: flyCircular 23s ease-in-out infinite 1.5s;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(193, 224, 99, 0.1);
    color: #C1E063;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #C0C0C0;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    padding: 5rem 1rem;
    background: #262626;
    border-top: 1px solid #393939;
    border-bottom: 1px solid #393939;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #C0C0C0;
    max-width: 700px;
    margin: 0 auto;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pain-point {
    background: #2F2F2F;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #393939;
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-4px);
    border-color: #C1E063;
    box-shadow: 0 8px 24px rgba(193, 224, 99, 0.1);
}

.pain-icon {
    width: 64px;
    height: 64px;
    background: rgba(193, 224, 99, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pain-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.pain-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #C1E063;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.pain-description {
    font-size: 15px;
    line-height: 1.6;
    color: #C0C0C0;
}

/* Solution Section */
.solution-section {
    padding: 2rem 1rem 5rem 1rem;
    background: #161616;
    position: relative;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #262626;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #393939;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #C1E063;
    box-shadow: 0 8px 32px rgba(193, 224, 99, 0.15);
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon-blueprint {
    background: rgba(193, 224, 99, 0.1);
}

.product-icon-launchpad {
    background: rgba(167, 198, 157, 0.1);
}

.product-icon-uplift {
    background: rgba(117, 134, 115, 0.1);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 15px;
    line-height: 1.6;
    color: #C0C0C0;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 14px;
    color: #E0E0E0;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* AI Section */
.ai-section {
    padding: 5rem 1rem;
    background: #262626;
    border-top: 1px solid #393939;
    border-bottom: 1px solid #393939;
    position: relative;
}

.ai-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(193, 224, 99, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: floatSlow 8s ease-in-out infinite;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-feature {
    text-align: center;
}

.ai-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(193, 224, 99, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ai-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.ai-feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #C0C0C0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, #161616 0%, #0d0d0d 100%);
    position: relative;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C1E063 0%, #A7C69D 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(193, 224, 99, 0.2);
    animation: floatSlow 8s ease-in-out infinite;
}

.contact-form {
    background: #262626;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #393939;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #2F2F2F;
    border: 1px solid #393939;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C1E063;
    box-shadow: 0 0 0 3px rgba(193, 224, 99, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8D8D8D;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #C1E063;
    color: #161616;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #A7C69D;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 224, 99, 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.status-badge {
    text-align: center;
    color: #8D8D8D;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #C1E063;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
    padding: 1rem 1.5rem;
    background: #161616;
    border-top: 1px solid #393939;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    color: #8D8D8D;
    font-size: 13px;
    flex: 1;
    text-align: center;
}

.footer-logo {
    /* No animation */
}

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

.footer-nav button {
    color: #C0C0C0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav button:hover {
    color: #C1E063;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        padding: 4rem 1rem 3rem;
    }

    .pain-points-grid,
    .product-cards,
    .ai-features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-copyright {
        order: 3;
    }

    .footer-nav {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}