* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}
header {
    background: linear-gradient(135deg, #1e2a44, #4b5e8c);
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
h1 {
    font-size: 3em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a0a8c3;
    text-shadow: 0 0 10px rgba(160, 168, 195, 0.8);
}
.tagline {
    font-size: 1.2em;
    opacity: 0.9;
}
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
#hero {
    background: rgba(30, 42, 68, 0.8);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in;
}
#hero h2 {
    font-size: 2.5em;
    color: #a0a8c3;
}
.cta {
    display: inline-block;
    padding: 12px 24px;
    background: #a0a8c3;
    color: #1e2a44;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}
.cta:hover {
    background: #8c94b0;
}
#features {
    animation: bounceIn 1s ease-out;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.feature {
    background: #1e2a44;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: staggerFade 0.8s ease-out forwards;
}
    transform: translateY(-5px);
    animation: pulse 1.5s infinite;
}
.feature h3 {
    color: #e0e0e0;
    margin-bottom: 10px;
}
.timeline {
    list-style: none;
}
.timeline li {
    padding: 15px;
    background: #1e2a44;
    margin-bottom: 10px;
    border-left: 4px solid #a0a8c3;
    border-radius: 4px;
}
footer {
    background: #1e2a44;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}
footer a {
    color: #a0a8c3;
}
button {
    padding: 8px 16px;
    background: #a0a8c3;
    border: none;
    color: #1e2a44;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background: #8c94b0;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes staggerFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0% { box-shadow: 0 5px 15px rgba(160, 168, 195, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(160, 168, 195, 0.6); }
    100% { box-shadow: 0 5px 15px rgba(160, 168, 195, 0.3); }
}
@keyframes bounceIn {
    0% { transform: scale(0.9); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}