body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: white;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(59,130,246,0.4);
}

nav a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
}

nav a:hover {
    color: white;
}

/* HERO */

.hero {
    text-align: center;
    margin-top: 120px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta {
    background-color: #3b82f6;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cta:hover {
    background-color: #2563eb;
    transform: scale(1.05);
}

/* HIGHLIGHTS */

.highlights {
    margin-top: 120px;
    padding: 0 60px;
    text-align: center;
}

.highlights h2 {
    margin-bottom: 40px;
    font-size: 24px;
}

.highlight-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.highlight-card {
    background-color: #0f172a;
    padding: 15px;
    border-radius: 16px;
    width: 300px;
    transition: 0.3s;
}

.highlight-card img {
    width: 100%;
    border-radius: 12px;
}

.highlight-card h3 {
    margin: 15px 0 5px 0;
}

.highlight-card p {
    color: #3b82f6;
    font-weight: bold;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(59,130,246,0.2);
}

/* METRICS */

.metrics {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 120px 0;
    font-size: 14px;
    color: #94a3b8;
}

.metrics div span {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: white;
}
/* CAROUSEL */

.carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 15s linear infinite;
}

.highlight-card {
    min-width: 300px;
    background-color: #0f172a;
    padding: 15px;
    border-radius: 16px;
    transition: 0.3s;
    text-decoration: none;
    color: white;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(59,130,246,0.2);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}