/* Fonts */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    position: relative;
    padding: 2rem;
}

.gradient-text {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SVG Wave */
.wave {
    margin-top: -1px;
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.4s;
}
.fade-in.delay-2 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    font-size: 0.95rem;
}
