:root{
–navy:#0C1F3F;
–blue:#1E7BFF;
–pearl:#FAFBFC;
–sky:#F5FAFF;
}
*{box-sizing:border-box}
body{
margin:0;
font-family:Inter,sans-serif;
background:linear-gradient(180deg,var(–sky),var(–pearl));
color:var(–navy);
}
section{
max-width:1200px;
margin:auto;
padding:90px 20px;
}
h1,h2,h3{
font-family:”Playfair Display”,serif;
}
h1{font-size:40px}
h2{font-size:32px}
p{max-width:850px;line-height:1.7}
/* HERO */
.hero{text-align:center}
/* SVG TIMELINE */
.vip-timeline text{
font-size:16px;
fill:var(–navy);
}
.vip-timeline circle{
fill:var(–blue);
cursor:pointer;
transition:transform .25s ease;
}
.vip-timeline .node:hover circle{
transform:scale(1.25);
}
/* GLASS MODAL */
.vip-modal{
position:fixed;
inset:0;
display:none;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.35);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
z-index:9999;
}
.vip-modal-box{
background:rgba(255,255,255,.78);
padding:32px;
border-radius:24px;
max-width:480px;
width:90%;
}
.vip-modal-box button{
margin-top:20px;
width:100%;
padding:14px;
border:none;
background:var(–blue);
color:white;
border-radius:14px;
font-size:16px;
}
/* AI CARDS */
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}
.card{
background:white;
padding:26px;
border-radius:18px;
box-shadow:0 14px 32px rgba(0,0,0,.06);
}
/* FORM */
form{
background:white;
padding:40px;
border-radius:26px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
}
input,select,textarea{
width:100%;
padding:14px;
margin-bottom:16px;
border-radius:12px;
border:1px solid #ddd;
}
button.submit{
background:var(–blue);
color:white;
padding:18px;
border:none;
width:100%;
border-radius:16px;
font-size:17px;
}
footer{
text-align:center;
padding:30px;
font-size:14px;
opacity:.8;
}
The VIP Experience: Your Private Path to Ownership
Welcome to the San Diego Homes Realty VIP program.
This portal is your exclusive gateway to the California real estate market.
We don’t just find houses — we secure lifestyles through AI-driven intelligence,
total transparency, and a risk-free commitment to your success.
Responsible Broker: San Diego Homes Realty ·
Mike Aqrawi, Broker / REALTOR® ·
CalDRE License #01930877
The Path to Ownership
SDHR AI Opportunity Lab
Initialize Your VIP Search Profile
Stage Details
document.querySelectorAll(‘.vip-timeline .node’).forEach(n=>{
n.addEventListener(‘click’,()=>{
document.getElementById(‘vipText’).innerText=n.dataset.text;
document.getElementById(‘vipModal’).style.display=’flex’;
});
});
function closeVIP(){
document.getElementById(‘vipModal’).style.display=’none’;
}