mkdir -p /home/realtortools/public_html/assets/css

cat > /home/realtortools/public_html/assets/css/home.css <<'CSS'
:root{
  --bg:#05070c;
  --panel:rgba(18,22,32,.62);
  --panel2:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --gold:#f3b11b;
  --gold2:#d39a13;
  --shadow: 0 30px 90px rgba(0,0,0,.55);
  --radius:24px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 700px at 15% 10%, rgba(243,177,27,.10), transparent 55%),
              radial-gradient(1000px 700px at 85% 20%, rgba(70,140,255,.08), transparent 55%),
              var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:1200px; margin:0 auto; padding:0 22px}

/* ====== HERO ====== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:120px 0 70px;
}
.heroVideo{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-3;
  filter: saturate(1.05) contrast(1.08) brightness(.78);
  transform: scale(1.02);
}
.heroOverlay{
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(243,177,27,.10), transparent 60%),
    radial-gradient(1000px 700px at 80% 30%, rgba(70,140,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.55));
  backdrop-filter: blur(2px);
}
.heroNoise{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.10;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* ====== NAV ====== */
.nav{
  position:fixed;
  top:16px; left:0; right:0;
  z-index:50;
}
.navBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  background: rgba(10,12,18,.55);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:240px;
}
.logo{
  width:44px; height:44px; border-radius:14px;
  background: linear-gradient(145deg, rgba(243,177,27,.22), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
  font-weight:900;
  letter-spacing:.5px;
}
.brandTitle{
  display:flex; flex-direction:column; line-height:1.1;
}
.brandTitle b{font-size:16px; letter-spacing:.2px}
.brandTitle span{font-size:12px; color:var(--muted)}
.links{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.link{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  color:rgba(234,240,255,.82);
}
.link:hover{
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.navActions{display:flex; gap:10px; align-items:center}
.btn{
  cursor:pointer;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:800;
}
.btn:hover{background:rgba(255,255,255,.10)}
.btnGold{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  border:none;
  color:#151515;
}
.btnGold:hover{filter:brightness(1.04)}
.lang{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:10px 12px;
  font-weight:800;
}

/* ====== HERO CONTENT ====== */
.heroGrid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 980px){
  .hero{padding-top:110px}
  .heroGrid{grid-template-columns:1fr}
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(234,240,255,.86);
  width:fit-content;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(243,177,27,.14);
}
.h1{
  margin:16px 0 12px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.6px;
}
@media (max-width: 560px){
  .h1{font-size:40px}
}
.sub{
  margin:0;
  color:rgba(234,240,255,.78);
  font-size:16px;
  line-height:1.55;
  max-width:62ch;
}
.heroCtas{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.pill{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color:rgba(234,240,255,.78);
  font-weight:700;
  font-size:13px;
}

/* ====== GLASS CARD ====== */
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow:hidden;
}
.cardInner{padding:20px}
.cardTitle{margin:0 0 10px; font-size:18px; letter-spacing:.2px}
.cardText{margin:0 0 14px; color:rgba(234,240,255,.75); line-height:1.5; font-size:14px}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 560px){.grid2{grid-template-columns:1fr}}
.feature{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.feature b{display:block; margin-bottom:6px}
.feature span{color:rgba(234,240,255,.72); font-size:13px; line-height:1.45}

/* ====== SECTIONS ====== */
.section{padding:70px 0}
.section h2{
  margin:0 0 10px;
  font-size:34px;
  letter-spacing:-.2px;
}
.section p{margin:0; color:rgba(234,240,255,.76); line-height:1.6}
.cards3{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width: 980px){.cards3{grid-template-columns:1fr}}
.smallCard{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  padding:18px;
}
.smallCard h3{margin:0 0 8px; font-size:16px}
.smallCard p{margin:0; font-size:13px}

/* ====== FOOTER ====== */
.footer{
  padding:35px 0 55px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.footerGrid{
  display:flex; gap:18px; justify-content:space-between; flex-wrap:wrap;
  color:rgba(234,240,255,.72);
}
.footer a{color:rgba(234,240,255,.82); text-decoration:underline; text-decoration-color:rgba(243,177,27,.35)}
.footer a:hover{text-decoration-color:rgba(243,177,27,.8)}

/* ====== reveal ====== */
.reveal{opacity:0; transform: translateY(10px); transition: .75s ease}
.reveal.show{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none}
  .heroVideo{display:none}
}
CSS