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

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

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.gradient-text {
    background: linear-gradient(90deg, #00A86B 0%, #008f5c 50%, #00A86B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient-bg {
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.15) 0%, rgba(0, 143, 92, 0.1) 40%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.flow-lines {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    z-index: 1;
}

.flow-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 107, 0.4), rgba(0, 143, 92, 0.4), transparent);
    border-radius: 50%;
    animation: flow 8s ease-in-out infinite;
}

.flow-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
    transform: rotate(-10deg);
}

.flow-line:nth-child(2) {
    top: 35%;
    animation-delay: 0.5s;
    transform: rotate(5deg);
}

.flow-line:nth-child(3) {
    top: 50%;
    animation-delay: 1s;
    transform: rotate(-5deg);
}

.flow-line:nth-child(4) {
    top: 65%;
    animation-delay: 1.5s;
    transform: rotate(8deg);
}

@keyframes flow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-30px) scale(1.05);
    }
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 168, 107, 0.1);
}

.green-gradient-blob {
    position: absolute;
    top: -150px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.12) 0%, rgba(0, 143, 92, 0.08) 40%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}
