body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background: #1a2330;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.header {
    width: 100%;
    display: flex;
body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #5f2eea 0%, #a259f7 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.main-content.spaced {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 0 5vw;
    box-sizing: border-box;
}
.main-left {
    flex: 1 1 480px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 32px;
}
.main-right {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
}
.circle-art {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #5f2eea 0% 25%, #a259f7 25% 50%, #1a2330 50% 75%, #5f2eea 75% 100%);
    box-shadow: 0 0 32px #5f2eea55;
    position: relative;
}
h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.subtitle {
    color: #cfd8e3;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 400;
}
.features-minimal {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.features-minimal li {
    color: #aeb8c9;
    font-size: 1.08rem;
    font-weight: 500;
    margin: 0;
}
.cta-row {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}
.cta.main-cta {
    background: #5f2eea;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 36px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    box-shadow: 0 2px 8px #5f2eea33;
}
.cta.main-cta:hover {
    background: #a259f7;
}
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .main-content.spaced {
        flex-direction: column;
        gap: 32px;
        padding: 32px 4vw;
    }
    .main-left, .main-right {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .main-right {
        margin-top: 16px;
    }
}
.feature h2 {
    color: #5f2eea;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 8px #a259f799;
}
.feature p {
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
    opacity: 1;
    text-shadow: 0 1px 6px #5f2eea55;
}
.subtitle {
    color: #e0d7ff;
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.cta {
    display: inline-block;
    background: #fff;
    color: #5f2eea;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 32px;
    background: linear-gradient(90deg, #a259f7 0%, #5f2eea 100%);
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(95,46,234,0.12);
}
.cta:hover {
    background: #5f2eea;
    color: #fff;
}
