* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1c1509;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow-x: hidden;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-1 { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.animate-2 { animation: fadeUp 0.6s ease 0.15s forwards; opacity: 0; }
.animate-3 { animation: fadeUp 0.6s ease 0.3s forwards; opacity: 0; }
.animate-4 { animation: fadeUp 0.6s ease 0.45s forwards; opacity: 0; }
.animate-5 { animation: fadeUp 0.6s ease 0.6s forwards; opacity: 0; }
.animate-6 { animation: fadeUp 0.6s ease 0.75s forwards; opacity: 0; }

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1100px;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 480px;
    text-align: left;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a08c6e;
    margin-bottom: 12px;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #f4f4f6;
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 span {
    color: #1a54c0;
    font-family: 'Zalando Sans Expanded', sans-serif;
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    color: #b0a090;
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: rgba(26, 84, 192, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(26, 84, 192, 0.35);
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    background: rgba(20, 65, 160, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 84, 192, 0.45);
}

.preview {
    flex-shrink: 0;
}

.mini-board {
    display: flex;
    gap: 12px;
}

.mini-col {
    background: #333;
    border-radius: 10px;
    padding: 12px;
    width: 130px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-col-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #f7f7f7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-align: center;
}

.mini-card {
    background: #f4f4f6;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: 0.72rem;
    color: #333;
    margin-bottom: 8px;
    border-left: 3px solid transparent;
    line-height: 1.4;
}

.mini-card.high  { border-left-color: #c0392b; }
.mini-card.medium { border-left-color: #b07800; }
.mini-card.low   { border-left-color: #2e7d32; }

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #a08c6e;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    h1 {
        font-size: 2.8rem;
    }

    .mini-board {
        gap: 8px;
    }

    .mini-col {
        width: 100px;
    }
}