*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#f5f5f7;
padding:20px;
min-height:100vh;
}

.container{
max-width:550px;
margin:auto;
}

/* HERO */

.hero-card{
background:linear-gradient(
135deg,
#c6a8ff 0%,
#8b5cf6 50%,
#5b3fd1 100%
);
border-radius:42px;
padding:40px 30px;
color:#fff;
box-shadow:
0 25px 60px rgba(91,63,209,.35);
margin-bottom:30px;
overflow:hidden;
position:relative;
}

.hero-card::before{
content:'';
position:absolute;
width:250px;
height:250px;
background:rgba(255,255,255,.15);
border-radius:50%;
top:-100px;
right:-80px;
filter:blur(30px);
}

.logo{
font-size:28px;
font-weight:700;
margin-bottom:25px;
position:relative;
z-index:2;
}

.hero-card h1{
font-size:52px;
font-weight:800;
line-height:1.05;
margin-bottom:18px;
position:relative;
z-index:2;
}

.hero-card p{
font-size:17px;
line-height:1.7;
opacity:.95;
margin-bottom:35px;
position:relative;
z-index:2;
}

/* MINI CARDS */

.hero-icons{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:35px;
position:relative;
z-index:2;
}

.mini-card{
width:100px;
height:110px;
border-radius:28px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(20px);
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
font-size:32px;
border:1px solid rgba(255,255,255,.15);
}

.mini-card span{
font-size:13px;
font-weight:600;
margin-top:8px;
}

.mini-card.active{
border:2px solid rgba(255,255,255,.9);
transform:scale(1.05);
}

/* BUTTONS */

.hero-buttons{
display:flex;
gap:12px;
justify-content:center;
flex-wrap:wrap;
position:relative;
z-index:2;
}

.btn-primary{
background:#fff;
color:#5b3fd1;
padding:14px 24px;
border-radius:18px;
font-weight:700;
text-decoration:none;
}

.btn-secondary{
background:rgba(255,255,255,.15);
border:1px solid rgba(255,255,255,.25);
color:#fff;
padding:14px 24px;
border-radius:18px;
font-weight:700;
text-decoration:none;
}

/* OPTION CARDS */

.option-card{
display:flex;
align-items:center;
padding:24px;
background:#fff;
border-radius:32px;
text-decoration:none;
margin-bottom:20px;
box-shadow:
0 10px 30px rgba(0,0,0,.08);
transition:.25s;
}

.option-card:hover{
transform:translateY(-3px);
}

.icon{
width:72px;
height:72px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
margin-right:18px;
flex-shrink:0;
}

.creator .icon{
background:#f1e6ff;
}

.agency .icon{
background:#fff3d8;
}

.content{
flex:1;
}

.content h2{
font-size:30px;
font-weight:800;
margin-bottom:6px;
}

.content p{
font-size:15px;
color:#666;
line-height:1.5;
}

.creator h2{
color:#7c3aed;
}

.agency h2{
color:#d97706;
}

.arrow{
font-size:36px;
color:#999;
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:10px;
}

.feature-card{
background:#fff;
padding:20px;
border-radius:24px;
text-align:center;
font-weight:700;
box-shadow:
0 6px 20px rgba(0,0,0,.06);
}

/* FOOTER */

.footer{
text-align:center;
padding:30px 10px;
color:#777;
font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

body{
padding:15px;
}

.hero-card{
padding:35px 25px;
border-radius:36px;
}

.hero-card h1{
font-size:42px;
}

.hero-icons{
gap:10px;
}

.mini-card{
width:90px;
height:100px;
}

.content h2{
font-size:24px;
}

.features{
grid-template-columns:1fr;
}

}