* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fc;
    color: #222;
}

header {
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #ececec;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #6D5DF6;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: .2s;
}

nav a:hover {
    color: #6D5DF6;
}

.login-btn,
.primary-btn,
.secondary-btn {
    font-family: inherit;
    cursor: pointer;
    border-radius: 12px;
    transition: .2s;
}

.login-btn {
    background: #6D5DF6;
    color: white;
    border: none;
    padding: 12px 22px;
}

.login-btn:hover {
    background: #5848eb;
}

.hero {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 8%;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #ece9ff;
    color: #6D5DF6;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 24px;
}

h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.primary-btn {
    background: #6D5DF6;
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 17px;
}

.primary-btn:hover {
    background: #5848eb;
}

.secondary-btn {
    background: white;
    border: 2px solid #6D5DF6;
    color: #6D5DF6;
    padding: 18px 32px;
    font-size: 17px;
}

.secondary-btn:hover {
    background: #f4f3ff;
}

.preview-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.preview-card h3 {
    margin-bottom: 16px;
}

.preview-card p {
    margin-bottom: 24px;
}

.progress {
    width: 100%;
    height: 10px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: #6D5DF6;
}

footer {
    text-align: center;
    padding: 60px;
    color: #888;
}

@media (max-width:900px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

nav{
display:none;
}

h1{
font-size:42px;
}

}
