body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0D0D0D;
    color: #F5F5F5;
    text-align: center;
}

.hero {
    padding: 80px 20px;
}

.logo {
    width: 120px;
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    color: #7C3AED;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #EDEDED;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #6B21A8;
    color: #FFF;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #9F3AF7;
}

.about-section {
    padding: 60px 20px;
    background-color: #121212;
}

.about-section h2 {
    color: #7C3AED;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.about-section p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.vertical-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    line-height: 2;
    margin: 30px auto 0;
    max-width: 600px;
    text-align: left;
}

.vertical-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.vertical-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7C3AED;
    font-weight: bold;
}

.tagline {
    margin-top: 30px;
    font-style: italic;
    color: #CCCCCC;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.bottom-cta {
    padding: 60px 20px;
    background-color: #121212;
}

.bottom-cta p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #F5F5F5;
}

footer {
    padding: 40px 20px;
    background-color: #0D0D0D;
    color: #AAAAAA;
}

.footer-links a {
    color: #7C3AED;
    margin: 0 10px;
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}