/* Site-03: Clean Minimal Design */
*{margin:0;padding:0;box-sizing:border-box}
:root{
    --bg:#1a1a2c;
    --bg2:#141422;
    --surface:#222238;
    --white:#ffffff;
    --gray:#a0a0be;
    --primary:#7473FA;
    --grad:linear-gradient(90deg,#FB8466 0%,#BD5BD4 33%,#7473FA 66%,#53B2FA 100%);
    --r:10px;
}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:var(--bg);color:var(--white);line-height:1.65}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
.wrap{max-width:1140px;margin:0 auto;padding:0 24px}
.center{text-align:center}

/* Topbar */
.topbar{
    position:absolute;top:0;left:0;right:0;z-index:100;
    display:flex;align-items:center;justify-content:space-between;
    padding:20px 32px;
    transition:all .3s;
}
.topbar.fixed{
    position:fixed;
    background:rgba(26,26,44,.97);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 20px rgba(0,0,0,.4);
    padding:14px 32px;
}
.logo img{height:34px}
.topbar-right{display:flex;align-items:center;gap:16px}
.link-subtle{color:var(--gray);font-weight:500;font-size:15px}
.link-subtle:hover{color:var(--white)}
.btn-accent{
    background:var(--grad);
    color:var(--white);
    padding:10px 22px;
    border-radius:var(--r);
    font-weight:600;
    font-size:14px;
    transition:transform .2s,box-shadow .2s;
}
.btn-accent:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(116,115,250,.4)}
.btn-outline{
    border:2px solid var(--white);
    color:var(--white);
    padding:10px 22px;
    border-radius:var(--r);
    font-weight:600;
    font-size:14px;
}
.btn-outline:hover{background:rgba(255,255,255,.1)}
.btn-big{padding:14px 32px;font-size:16px}
.btn-white{background:var(--white);color:var(--bg);padding:14px 32px;border-radius:var(--r);font-weight:600}
.btn-white:hover{background:#f0f0f0}
.btn-ghost-white{border:2px solid var(--white);color:var(--white);padding:14px 32px;border-radius:var(--r);font-weight:600}
.btn-ghost-white:hover{background:rgba(255,255,255,.15)}

/* Hero Full */
.hero-full{
    min-height:100vh;
    display:flex;align-items:center;justify-content:center;
    position:relative;
    text-align:center;
    padding:120px 24px 80px;
    overflow:hidden;
}
.hero-overlay{
    position:absolute;inset:0;
    background:
        radial-gradient(circle at 30% 20%,rgba(251,132,102,.12),transparent 40%),
        radial-gradient(circle at 70% 80%,rgba(83,178,250,.1),transparent 35%),
        radial-gradient(circle at 50% 50%,rgba(116,115,250,.08),transparent 50%);
}
.hero-center{position:relative;z-index:1;max-width:640px}
.hero-badge{
    width:140px;
    margin:0 auto 24px;
    filter:drop-shadow(0 0 50px rgba(255,255,255,.25));
}
.hero-full h1{
    font-size:4rem;
    font-weight:800;
    letter-spacing:-1px;
    background:var(--grad);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    margin-bottom:16px;
}
.hero-full p{color:var(--gray);font-size:1.15rem;margin-bottom:32px;line-height:1.7}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.scroll-hint{
    position:absolute;bottom:32px;left:50%;transform:translateX(-50%);
    display:flex;flex-direction:column;align-items:center;gap:8px;
    color:var(--gray);font-size:12px;text-transform:uppercase;letter-spacing:1px;
}
.scroll-line{width:1px;height:40px;background:linear-gradient(to bottom,var(--gray),transparent)}

/* Sections */
.section-light{background:var(--surface);padding:80px 0}
.section-dark{background:var(--bg);padding:80px 0}
.section-gradient{background:linear-gradient(135deg,var(--bg2),var(--bg));padding:80px 0}
.section-cta{background:var(--grad);padding:100px 0}

.intro-text{max-width:700px;margin:0 auto;text-align:center}
.intro-text h2{font-size:2.2rem;margin-bottom:16px}
.intro-text p{color:var(--gray);font-size:1.1rem}

/* Grid Features */
.grid-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}
.feat-box{
    display:flex;gap:20px;
    background:var(--surface);
    padding:28px;
    border-radius:var(--r);
    border:1px solid rgba(255,255,255,.06);
    transition:border-color .3s,transform .3s;
}
.feat-box:hover{border-color:rgba(116,115,250,.3);transform:translateY(-4px)}
.feat-icon{
    width:48px;height:48px;flex-shrink:0;
    background:var(--grad);
    border-radius:12px;
    display:flex;align-items:center;justify-content:center;
}
.feat-icon svg{width:24px;height:24px;stroke:var(--white)}
.feat-info h3{font-size:1.1rem;margin-bottom:6px}
.feat-info p{color:var(--gray);font-size:.95rem;line-height:1.6}

/* Steps */
.center-title{text-align:center;font-size:2rem;margin-bottom:48px}
.steps-row{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:0;
    flex-wrap:wrap;
}
.step-card{
    flex:1;max-width:280px;
    text-align:center;
    padding:24px;
}
.step-badge{
    display:inline-flex;
    width:56px;height:56px;
    align-items:center;justify-content:center;
    background:var(--grad);
    border-radius:50%;
    font-size:1.4rem;font-weight:700;
    margin-bottom:20px;
}
.step-card h3{font-size:1.15rem;margin-bottom:8px}
.step-card p{color:var(--gray);font-size:.95rem}
.step-divider{
    width:60px;height:3px;
    background:linear-gradient(90deg,var(--primary),transparent);
    margin-top:50px;
    flex-shrink:0;
}

/* Promo Row */
.promo-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.promo-content h2{font-size:2rem;margin-bottom:16px}
.promo-content p{color:var(--gray);margin-bottom:24px;line-height:1.8}
.check-marks{list-style:none;margin-bottom:28px}
.check-marks li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:var(--gray);
}
.check-marks li::before{
    content:'✓';
    position:absolute;left:0;
    color:var(--primary);
    font-weight:700;
}
.promo-visual{
    position:relative;
    height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.visual-blob{
    position:absolute;
    width:280px;height:280px;
    background:var(--grad);
    border-radius:50%;
    filter:blur(60px);
    opacity:.3;
}
.visual-card{
    position:absolute;
    background:var(--surface);
    padding:14px 28px;
    border-radius:var(--r);
    font-weight:600;
    box-shadow:0 8px 30px rgba(0,0,0,.3);
    border:1px solid rgba(255,255,255,.1);
}
.vc1{top:15%;left:10%;animation:bob 5s ease-in-out infinite}
.vc2{top:50%;right:15%;animation:bob 6s ease-in-out infinite .3s}
.vc3{bottom:15%;left:25%;animation:bob 5.5s ease-in-out infinite .6s}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

/* CTA Section */
.section-cta h2{font-size:2.4rem;margin-bottom:12px}
.section-cta p{font-size:1.1rem;opacity:.9;margin-bottom:28px}
.cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* Footer */
.site-foot{background:var(--bg2);padding:60px 0 24px}
.foot-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}
.foot-brand img{height:32px;margin-bottom:14px}
.foot-brand p{color:var(--gray);font-size:.9rem;line-height:1.7}
.foot-links h4{font-size:.95rem;margin-bottom:14px}
.foot-links a,.foot-links p{display:block;color:var(--gray);font-size:.9rem;margin-bottom:8px}
.foot-links a:hover{color:var(--white)}
.foot-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:20px;text-align:center}
.foot-bottom p{color:var(--gray);font-size:.85rem}

/* Responsive */
@media(max-width:900px){
    .grid-features{grid-template-columns:1fr}
    .promo-row{grid-template-columns:1fr;text-align:center}
    .promo-visual{height:250px;margin-top:40px}
    .check-marks{display:inline-block;text-align:left}
    .foot-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
    .topbar{padding:14px 16px}
    .topbar.fixed{padding:10px 16px}
    .link-subtle{display:none}
    .hero-full{padding:100px 16px 60px}
    .hero-full h1{font-size:2.6rem}
    .hero-badge{width:110px}
    .hero-actions{flex-direction:column;align-items:center}
    .hero-actions a{width:100%;max-width:280px;text-align:center}
    .scroll-hint{display:none}
    .section-light,.section-dark,.section-gradient{padding:50px 0}
    .intro-text h2,.center-title,.promo-content h2{font-size:1.6rem}
    .steps-row{flex-direction:column;align-items:center}
    .step-divider{width:3px;height:30px;margin:0}
    .section-cta{padding:60px 0}
    .section-cta h2{font-size:1.8rem}
    .cta-buttons{flex-direction:column;align-items:center}
    .cta-buttons a{width:100%;max-width:280px}
    .foot-grid{grid-template-columns:1fr;gap:28px}
}

/* Legal Pages */
.pg-container{padding-top:90px;min-height:100vh}
.pg-head{text-align:center;padding:40px 24px;border-bottom:1px solid rgba(255,255,255,.08)}
.pg-head h1{font-size:2.2rem;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.pg-head span{color:var(--gray);font-size:.95rem}
.pg-body{max-width:760px;margin:0 auto;padding:40px 24px}
.pg-section{margin-bottom:36px}
.pg-section h2{font-size:1.3rem;margin-bottom:14px;padding-bottom:8px;border-bottom:2px solid rgba(116,115,250,.25)}
.pg-section h3{font-size:1.05rem;margin:18px 0 10px}
.pg-section p{color:var(--gray);line-height:1.8;margin-bottom:12px}
.pg-section ul{list-style:none;padding:0}
.pg-section li{padding-left:20px;margin-bottom:8px;color:var(--gray);position:relative}
.pg-section li::before{content:'';position:absolute;left:0;top:9px;width:6px;height:6px;background:var(--primary);border-radius:50%}
.pg-section strong{color:var(--white)}
.pg-section a{color:var(--primary)}
.pg-box{background:var(--surface);padding:20px;border-radius:var(--r);border-left:4px solid var(--primary);margin:16px 0}
.pg-cta{text-align:center;padding:28px;border-top:1px solid rgba(255,255,255,.08)}
