/* =================================
PLANELLIO PREMIUM SAAS STYLE
================================= */

:root{

--bg-dark:#0f172a;
--bg-panel:#111827;
--bg-soft:#f8fafc;

--accent:#6366f1;
--accent2:#8b5cf6;

--text-main:#eef1ff;
--text-soft:rgba(238,241,255,.75);

--border:rgba(255,255,255,.06);

--shadow-soft:0 20px 40px rgba(0,0,0,.35);
--shadow-card:0 10px 30px rgba(0,0,0,.25);

--radius:12px;
}


/* =================================
RESET
================================= */

*{
box-sizing:border-box;
}

body{
margin:0;
font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
background:linear-gradient(180deg,#0f172a,#020617);
color:var(--text-main);
line-height:1.6;
-webkit-font-smoothing:antialiased;
}


/* =================================
LAYOUT
================================= */

.container{
max-width:1180px;
margin:auto;
padding:0 20px;
}

.section{
padding:90px 0;
position:relative;
}


/* =================================
HEADER
================================= */

.site-header{
position:sticky;
top:0;
z-index:20;
backdrop-filter:blur(10px);
background:rgba(15,23,42,.65);
border-bottom:1px solid var(--border);
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
height:72px;
}

.brand{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
color:white;
}

.brand img{
height:36px;
}

.brand-text strong{
display:block;
font-size:16px;
}

.brand-text span{
font-size:12px;
opacity:.7;
}


/* =================================
NAV
================================= */

.nav{
display:flex;
gap:26px;
}

.nav a{
color:rgba(255,255,255,.8);
text-decoration:none;
font-size:14px;
}

.nav a:hover{
color:white;
}

.header-cta{
display:flex;
gap:12px;
}


/* =================================
BUTTONS
================================= */

.btn{
display:inline-block;
padding:12px 22px;
border-radius:10px;
font-weight:500;
font-size:14px;
text-decoration:none;
cursor:pointer;
border:1px solid var(--border);
transition:.25s;
}

.btn-primary{
background:linear-gradient(135deg,var(--accent),var(--accent2));
border:none;
color:white;
box-shadow:0 6px 20px rgba(99,102,241,.45);
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 10px 30px rgba(99,102,241,.6);
}

.btn-ghost{
background:rgba(255,255,255,.04);
color:white;
}

.btn-ghost:hover{
background:rgba(255,255,255,.08);
}

.btn-small{
padding:8px 16px;
font-size:13px;
}


/* =================================
HERO
================================= */

.hero{
padding:120px 0 100px 0;
background:
radial-gradient(circle at 20% 20%,rgba(99,102,241,.25),transparent 40%),
radial-gradient(circle at 80% 10%,rgba(139,92,246,.18),transparent 40%);
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:44px;
line-height:1.2;
margin-bottom:18px;
}

.hero p{
color:var(--text-soft);
font-size:16px;
max-width:520px;
}

.hero-actions{
margin-top:22px;
display:flex;
gap:12px;
}

.hero-meta{
margin-top:22px;
display:flex;
flex-wrap:wrap;
gap:8px;
}

.pill{
background:rgba(255,255,255,.06);
padding:6px 12px;
border-radius:20px;
font-size:12px;
border:1px solid var(--border);
}


/* =================================
HERO IMAGE
================================= */

.hero-visual .frame{
background:linear-gradient(180deg,#020617,#0f172a);
border-radius:14px;
padding:18px;
box-shadow:var(--shadow-soft);
border:1px solid var(--border);
}

.hero-visual img{
width:100%;
border-radius:8px;
}


/* =================================
BADGES
================================= */

.badge-row{
margin-top:16px;
display:flex;
gap:10px;
}

.badge{
display:flex;
gap:10px;
align-items:center;
background:rgba(255,255,255,.05);
padding:10px 12px;
border-radius:10px;
border:1px solid var(--border);
font-size:13px;
}

.dot{
width:8px;
height:8px;
border-radius:50%;
background:var(--accent);
}

.dot.cyan{
background:#06b6d4;
}

.dot.green{
background:#22c55e;
}


/* =================================
SECTION HEADERS
================================= */

.section-head{
margin-bottom:38px;
}

.section-head h2{
font-size:32px;
margin-bottom:10px;
}

.section-head p{
color:var(--text-soft);
max-width:700px;
}


/* =================================
CARDS
================================= */

.card{
background:rgba(255,255,255,.04);
border:1px solid var(--border);
border-radius:var(--radius);
padding:26px;
box-shadow:var(--shadow-card);
transition:.25s;
}

.card:hover{
transform:translateY(-4px);
background:rgba(255,255,255,.06);
}

.card h3{
margin-top:0;
font-size:18px;
margin-bottom:10px;
}

.card p{
color:var(--text-soft);
}


/* =================================
GRIDS
================================= */

.grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
}

.grid-3{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:24px;
}

.grid-4{
display:grid;
grid-template-columns:1fr 1fr 1fr 1fr;
gap:24px;
}


/* =================================
SPLIT PANELS
================================= */

.split{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.panel img{
width:100%;
margin-top:16px;
border-radius:10px;
border:1px solid var(--border);
}


/* =================================
PRICING
================================= */

.pricing{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:26px;
}

.price-card{
background:rgba(255,255,255,.04);
padding:28px;
border-radius:14px;
border:1px solid var(--border);
}

.price{
font-size:34px;
margin:12px 0;
}

.price small{
font-size:14px;
opacity:.7;
}

.price-card.featured{
background:linear-gradient(180deg,#312e81,#0f172a);
border:1px solid rgba(99,102,241,.6);
}

.ribbon{
position:absolute;
background:var(--accent);
color:white;
font-size:12px;
padding:6px 10px;
border-radius:6px;
margin-top:-10px;
}


/* =================================
CTA
================================= */

.cta{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
background:linear-gradient(135deg,#312e81,#0f172a);
padding:40px;
border-radius:16px;
border:1px solid var(--border);
}

.cta h2{
margin-top:0;
}


/* =================================
FOOTER
================================= */

.footer{
margin-top:100px;
padding:30px 0;
border-top:1px solid var(--border);
background:#020617;
}

.footer-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.footer a{
color:rgba(255,255,255,.7);
margin-left:20px;
text-decoration:none;
}

.footer a:hover{
color:white;
}


/* =================================
RESPONSIVE
================================= */

@media (max-width:980px){

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

.grid-3{
grid-template-columns:1fr;
}

.grid-4{
grid-template-columns:1fr;
}

.split{
grid-template-columns:1fr;
}

.pricing{
grid-template-columns:1fr;
}

.cta{
flex-direction:column;
align-items:flex-start;
}

.nav{
display:none;
}

}